  :root{
  --main-color: #707070;
  --sub-color: #F2D719;
  --base-color: #2c2e33;
  --point-color: #ffc93c;
  }

/* Header Styles */
.container{
    color:#565A53;

}
@media (min-width: 1200px) {
    .container{
    max-width: 1000px!important;
    }
}
h2{
    text-align: center;
    text-decoration:underline;
    text-decoration-color:var(--sub-color);
    text-underline-offset: 5px;
    font-weight: bold!important;
    margin: 2rem 0;
    padding: 2rem 0;
}
.header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.header-container {
    text-align: center;
}

  .bnr{
    position: relative;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto; 
    z-index: 0;
  }
  
/*
  .bnr-text{
    position: absolute; 
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: .9rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    background-color: rgba(000, 000, 000, 0.7);
    padding: 20px 14px;
    letter-spacing: 3px;
    width: 100%;
  }
  */
  .bnr-text{
    position: relative;     /* 画像上に重ねる */
    top: 25%;               /* 垂直位置を中央に */
    left: 50%;              /* 水平方向も中央に */
    transform: translate(-50%, -6%); /* 完全な中央揃え */
    color: var(--base-color);           /* テキストの色（画像に合わせて調整） */
    font-size: 1.3rem;        /* テキストサイズを適宜調整 */
    font-weight: bold;      /* 太字 */
    text-align: center;     /* テキストを中央揃え */
    padding: 20px 14px;
    letter-spacing: 3px;
    width: 100%;
  }
.bnr-text span{
    font-size: 1.9rem; 
  }
  

.main-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navigation ul li {
    margin: 0 15px;
}

.navigation ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.navigation ul li a:hover {
    text-decoration: underline;
}


/* Steps Section Styles */
.steps-section {
    padding: 50px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.step {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.step span {
    display: block;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffc107;
    margin-bottom: 10px;
}

.step p {
    margin: 0;
    color: #333;
}

.description {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

/* Product Search Section */
.bg-light {
    background-color: #f8f9fa !important;
}

button.btn-warning {
    font-size: 1.1rem;
}

/* Store Links Section */
.store-links a {
    font-size: 1.2rem;
    padding: 10px 20px;
}

.flow-card {
    flex: auto;
    margin-bottom: 1.3rem;
}
.flow-card-step{
    display: flex;
    flex-direction: column;
    justify-content: center;  /* 水平中央 */
    background-color: var(--main-color);
    color: var(--sub-color); 
    text-align: center;
    margin: 0 auto;
    align-items: center;
    position: relative;
    font-size: calc(1rem + .5vw);
  }
  .flow-card-step:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #707070 transparent transparent transparent;
    border-width: 20px 20px 0 20px;
  }
.step-text{
    padding: 1rem;
}
.step-text h5{
    font-weight: bold;
}
.flow-card-step span{
    font-size: 30px;
}
.flow-card-step d{
    font-size: calc(1.375rem + 1.5vw);
    margin: 0 0;
}
.flow-card-icn{
    align-items: center;
} 
.icn-img{
    width: 120px;
    height: auto;
    align-items: center;
    justify-content: center;
}
.card-body{
    padding: 0px!important;
}
.btn {
    display: flex!important;
    flex-direction: column; /* 要素を縦に並べる */
    align-items: center;    /* 必要に応じて中央揃え */
    justify-content: center; /* 縦方向の中央揃え（必要に応じて） */
}
.btn-yellow {
    color: #707070!important;
    background-color: var(--sub-color)!important;
    border-color: var(--sub-color)!important;
}
.btn-yellow:hover{
    background-color: #F2EB72!important;
}
.btn-yellow h4{
    color: white;
    background-color: var(--main-color)!important;
    padding: 0 10px;
}
.search{
    align-self: flex-end;
    margin-top: 10px;
}
.btn-store {
    color: #707070!important;
    background-color: var(--sub-color)!important;
    border-color: var(--sub-color)!important;
}
.bg-gray{
    background-color: #edf0f4!important;
    padding: 3rem;
}

@media (max-width: 768px) {
    .bnr-text{
    font-size: .8rem; 
    font-weight: bold;
    text-align: center; 
    padding: 10px 10px;
    letter-spacing: 0px;
    width: 100%;
    }
    .bnr-text span{
        font-size: 1.1rem; 
      }
      
    .bg-gray{
        padding: 3rem 0rem;
    }
  }

