@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    color: #fff;
}
main{
 font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #323232;
}


@media screen and (min-width: 768px) {
    body {
        min-width: 1200px;
    }
}


li {
    list-style-type: none;
}

a {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

a:focus {
    outline: none;
}

button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none
}

main img {
    vertical-align: bottom;
}


.forthanniversary-sp{
    display: none;
}
.forthanniversary-pc{
    display: block;
}
.zen {
   font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
.kau {
    font-family: "Kaushan Script", cursive;
    font-weight: 400;
    font-style: normal;
  }


.gab {
    font-family: "Gabriela", serif;
    font-weight: 400;
    font-style: normal;
  }


/* メインビジュアル　*/

#forthanniversary-mainvisual {
    width: 100%;
}

#forthanniversary-mainvisual img {
    width: 100%;
    vertical-align: bottom;
}

/* リード */
.forthanniversary-wrap{
    text-align: center;
    overflow: hidden;
}

.forthanniversary-leadbox{
 text-align: center;

}
.forthanniversary-lead {
    padding-top: 80px;
    padding-bottom: 80px;
     background-image: url(/img/usr/forthanniversary/lead-bg.png);
 background-size: cover;
 background-repeat: no-repeat;
}


.forthanniversary-leadtext {
    font-size: 2rem;
  text-align: center;
    letter-spacing: 0.1em;
   padding-top: 50px;
    font-weight: bold;
   line-height: 2;
   margin-bottom: 80px;
   position: relative;
   display: inline-block;
   text-shadow: 2px 4px 5px #fff;
}
.forthanniversary-btnwrap{
display: flex;
justify-content: center;
gap: 50px;
}
.forthanniversary-cont{
width: 450px;

}
.forthanniversary-title{
    background-color: #E95517;
    color: #fff;
    font-size: 2rem;
    padding: 5px 30px 5px 0;
}
.forthanniversary-title2{
    background-color: #E95517;
    color: #fff;
    font-size: 2rem;
    padding: 5px 0;
    width: 850px;
    margin: 0 auto 20px;
}
.forthanniversary-box{
    background-color: #FFFCE4;
    padding-bottom: 35px;
    box-shadow: 0px 0px 15px rgba(218, 205, 188, 1);
}
.text01{
color: #E95517;
font-size:2.5rem;
padding-top: 20px;
}
.text02{
font-size: 1.8rem;
text-align: left;
display: inline-block;
font-weight: 500;
}
.text03{
font-size: 1.6rem;
font-weight: 400;
margin: 5px auto 25px;
}
.text04{
color: #E95517;
font-size:2.5rem;
padding-top: 8px;
}
.text05{
font-size:2.5rem;
padding-bottom: 15px;
}
.forthanniversary-leadimg img{
width: 120px;
margin: 30px auto 20px;
}
.forthanniversary-leadimg2 img{
width: 340px;
margin: 10px auto 15px;
}
.forthanniversary-lead-btn {
width: 200px;
margin: 0 auto;
}
.forthanniversary-lead-btn img{
width: 200px;
}


.forthanniversary-tabcontents {
    padding-top: 80px;
    padding-bottom: 80px;
     background-image: url(/img/usr/forthanniversary/tab-bg.png);
 background-size: cover;
 background-repeat: no-repeat;
}
.caution{
    font-size: 1.4rem;
}
        .content-area {
            padding: 1rem; /* p-6 */
        }
        @media (min-width: 767px) {
            .content-area {
                padding: 2rem; /* sm:p-8 */
            }
        }

        /* === タブボタンのスタイル === */
        .tab-bar {
            /* モバイルデフォルトは2列グリッド */
            gap: 0.75rem; /* ボタン間の隙間 */
 display: grid;
            grid-template-columns: repeat(1, 1fr);
            /* 枠線、背景色、影をすべて削除 (透明のまま維持) */
            border-bottom: none;
            background-color: transparent;
            padding: 0.25rem;
            box-shadow: none;
        }
        /* レスポンシブ対応: 画面幅が640px以上の場合、横一列のFlexに戻す */
        @media (min-width: 767px) {
            .tab-bar {
                display: flex; /* Flexに戻す */
                flex-wrap: wrap;
                gap: 20px; /* Flexでは gap は不要 */
                padding-bottom: 0px; /* デスクトップ向け 48px */
            }
        }

        .tab-button {
            flex-grow: 1; /* flex-1 (デスクトップのFlexモードで有効) */
            border: none;
            cursor: pointer;
            outline: none;
            /* 画像を中央に配置するための設定 */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .tab-button:hover {
            opacity: 0.7;
        }
        /* ボタンが押された時のスケールエフェクト */
        .tab-button:active {
            transform: scale(1); /* active:scale-[0.98] */
        }

        /* === アクティブなタブボタンのスタイル === */
        .tab-button.active {
            /* 背景色、下線はなし */
            background-color: transparent;
            box-shadow: none;
            border-bottom: 2px solid transparent;
        }

        /* === 画像のスタイル (ここを追加・調整) === */
        .tab-button img {
            display: block;
            width: 500px;
          /* 画像の最大幅を設定 */
            height: auto;
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
        }
              @media (max-width: 767px) {
 .tab-button img {
            width: 95%;
            margin: 0 auto;
        }
              }
        /* アクティブなタブの画像にわずかな影を追加し、持ち上げる */
        .tab-button.active img {
            transform: translateY(-1px);
        }

        /* === コンテンツのスタイルと切り替えアニメーション === */
        .tab-content-item {
            /* 初期状態 */
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            /* コンテンツの基本スタイル */
            line-height: 1.5; /* leading-relaxed */
            width: 1000px;
            padding-top: 80px;
            padding-bottom:60px;
             box-shadow: 0px 0px 44px rgba(122, 95, 23, 0.4);
        }

        .tab-content-item.active {
            /* アクティブ状態 */
            display: block;
            opacity: 1;
        }

        /* コンテンツ内の見出し・強調スタイル */
        .forthanniversary-contents-title {
            font-size: 3rem; /* text-3xl */
            margin-bottom: 1rem; /* mb-4 */
        }
           .under{
            border-bottom: 3px solid #E4C04D;
        }
        .red{
           color: #C20303;
        }
/* 期間ずっと */
.forthanniversary-kikandetail{
padding-top: 80px;
padding-bottom: 80px;
}
.forthanniversary-title3{
    color: #E95517;
    font-size: 3rem;
    padding: 5px 40px;
   display: inline-block;
   border-top: 2px solid #E95517;
    border-bottom: 2px solid #E95517;
    margin: 0 auto 20px;
}
.forthanniversary-cont2{
width: 850px;
padding-top: 90px;
margin: 0px auto 30px;
}

.text06{
color: #E95517;
font-size:3rem;
padding-top: 20px;
}
.detail-wrap{
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.forthanniversary-detailimg img{
    width: 300px;
}
.detail-text{
   text-align: left;
}
.detail-title{
background-color: #E95517;
color: #fff;
text-align: left;
display: inline-block;
font-size: 1.6rem;
padding: 2px 5px;
margin-left: 15px;
}
.text07{
font-size:1.6rem;
padding-bottom: 15px;
text-align: left;
  border: 2px solid #E95517;
    padding: 25px 15px 15px;
    margin-top: -15px;
}
.detail-wrap2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
gap: 20px;
}
.detail-wrap2 img{
    width: 160px;
}
.caution-text{
font-size: 1.8rem;
display: inline-block;
font-weight: 500;
border-bottom: 5px dotted #E95517;
padding: 0 6px;
}
.forthanniversary-member-btn{
    width: 250px;
    margin: 0 auto;
}
.forthanniversary-member-btn img{
    width: 250px;
}
.text08{
font-size:1.8rem;
margin-top: 20px;
margin-bottom: 30px;
line-height: 1.6em;
}

.accordion-008 {
    width: 600px;
    margin:0 auto 30px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.accordion-008 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-size: 2rem;
    cursor: pointer;
    justify-content: center;
}

.accordion-008 summary::-webkit-details-marker {
    display: none;
}

.accordion-008 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-008[open] summary::after {
    transform: rotate(225deg);
}

.accordion-008 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    transition: transform .5s, opacity .5s;
}

.accordion-008[open] p {
    transform: none;
    opacity: 1;
    font-size: 1.4rem;
    text-align: left;
    line-height: 2;
}





.one{
position: relative;
}
.one::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/one.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 27px;
 height: 53px;
   top: -15px;
  right: 34%;
}
.two{
position: relative;
}
.two::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/two.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 32px;
 height: 53px;
   top: -15px;
  right: 32%;
}


.one-2{
position: relative;
}
.one-2::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/one.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 27px;
 height: 53px;
   top: -15px;
  right: 41%;
}
.two-2{
position: relative;
}
.two-2::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/two.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 32px;
 height: 53px;
   top: -15px;
  right: 40%;
}



.forthanniversary-tab,
.forthanniversary-contentsbox{
    width: 1080px;
    margin: 0 auto;
}
.forthanniversary-contents{
       background-image: url(/img/usr/forthanniversary/contentsbg.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: top;
 padding-top: 200px;
 padding-bottom: 80px;
}

#content-1{
    background-image: url(/img/usr/forthanniversary/content-bg.png);
 background-size: cover;
position: relative;
}

#content-1::before{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/icon01.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
   left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
top: -120px;
}

#content-2{
   background-image: url(/img/usr/forthanniversary/content-bg.png);
 background-size: cover;
position: relative;
}
#content-2::before{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/icon02.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
   left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
top: -120px;
}
#content-3{
   background-image: url(/img/usr/forthanniversary/content-bg.png);
 background-size: cover;
position: relative;
}
#content-3::before{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/icon03.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
   left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
top: -120px;
}
#content-4{
   background-image: url(/img/usr/forthanniversary/content-bg.png);
 background-size: cover;
position: relative;
}
#content-4::before{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/icon04.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
   left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
top: -120px;
}
#content-5{
   background-image: url(/img/usr/forthanniversary/content-bg.png);
 background-size: cover;
position: relative;
}

#content-5::before{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/icon05.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
   left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
top: -120px;
}
.forthanniversary-kikan{
    font-size: 2rem;
    margin: 20px auto;
    background-color: #EEE2D4;
   width: 400px;
}
.forthanniversary-set{
    font-size: 2rem;
    margin: 20px auto 0;
    background-color: #E95517;
    color: #fff;
    width: 400px;
}
.forthanniversary-kikan-end{
    font-size: 2rem;
    margin-top: 20px;
    background-color: #DB0D31;
    color: #fff;
}
.hidden{
    display: none;
}
.forthanniversary-text{
    font-size: 1.8rem;
    color: #323232;
    font-weight: 500;
    margin-top: 20px;
}
.forthanniversary-product-content{
    padding-top: 40px;
padding-bottom: 40px;
margin: 40px auto 0;
background-color: #FDF7F2;
width: 800px;
box-shadow: 0px 0px 20px #C1C2C3;
}

.forthanniversary-product-detail-img img{
    width: 500px;
    margin: 0 auto;
}


.forthanniversary-product-content-text{
    font-size: 1.6rem;
    width: 450px;
font-weight: 400;
    text-align: left;
    line-height: 2;
        display: inline-block;
        margin-bottom: 10px;
}
.forthanniversary-product-text {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
        width: 400px;
    font-weight: lighter;
}

.forthanniversary-soryo{
    font-size: 16px;
    background-color: #fff;
    border-radius: 20px;
    color: #E95517;
    border: 2px solid #E95517;
    font-weight: lighter;
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 15px;
}
.forthanniversary-price {
    font-size: 2.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    font-weight: 400;
     color: #323232;
}

.forthanniversary-price-en {
    font-size: 1.6rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    letter-spacing: 0.1em;
    color: #323232;
}

.forthanniversary-cart a {
    transition: .3s;
}
@media screen and (min-width:768px) {
     a:hover {
        opacity: 0.7;
    }
}
.forthanniversary-cart{
    width: 250px;
    margin: 0 auto;
}
.forthanniversary-cart a img {
    width: 250px;
}
.forthanniversary-cart-text a{
     text-decoration: none;
border-bottom: 2px dashed #515050;
display: inline-block;
      margin: 10px auto 0;
      color: #515050;
   font-size: 18px;
   letter-spacing: 0.1em;
}

.forthanniversary-product-name {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: #E95517;
    border-bottom: 3px solid #E95517;
    display: inline-block;
}
.forthanniversary-product-detail-set{
    font-size: 2rem;
    font-weight: 500;
    margin-top: 25px;
}
.forthanniversary-product-detail{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
    display: block;
    margin: 5px auto 30px;
    width: 700px;
    line-height: 1.5;
}
/* 第二弾 */

.forthanniversary-product-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}
.forthanniversary-product-wrap02{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}
.forthanniversary-product-detail-img03 img{
width: 300px;
}
.forthanniversary-price-nom{
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-weight: 400;
     color: #323232;}

     .forthanniversary-product-off{
        margin-bottom: 15px;
     }
.forthanniversary-product-off img{
width: 120px;
}





/* 第三弾 */
.forthanniversary-product-saleimg{
    margin-bottom: 20px;
}
.forthanniversary-product-saleimg img{
    width: 250px;
}
.forthanniversary-product-wrapcontent02{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 680px;
    justify-content: center;
    margin: 0 auto;
}
.date{
background-color: #E95517;
color: #fff;
font-size: 2.5rem;
}
.forthanniversary-product-content02{
  background-color: #FDF7F2;
width: 320px;
box-shadow: 0px 0px 20px #C1C2C3;
padding-bottom: 30px;
margin-top: 60px;
}
.forthanniversary-product-name02 {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #E95517;
    border-bottom: 3px solid #E95517;
    display: inline-block;
    line-height: 1.3;
}
.forthanniversary-product-name03 {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #E95517;
    border-bottom: 3px solid #E95517;
    display: inline-block;
    line-height: 1.3;
}
.forthanniversary-text02{
    font-size: 1.8rem;
    color: #323232;
    font-weight: 500;
    margin-bottom: 30px;
}
.forthanniversary-text03{
    font-size: 1.8rem;
    color: #323232;
    font-weight: 500;
    margin-bottom: 10px;
}
.forthanniversary-product-detail-img02{
margin-top: 40px;
margin-bottom: 20px;
}
.forthanniversary-product-detail-img02 img{
    width: 520px;
}
.news{
margin: 30px auto;
width: 300px;
}
.news img{
    width: 300px;
}
.forthanniversary-bottombtn{
        width: 600px;
        margin: 80px auto 0;
}
.forthanniversary-bottombtn img{
    width: 600px;
}
@media screen and (max-width:767px) {

    .forthanniversary-sp {
        display: block;
    }
 .forthanniversary-pc {
        display: none;
    }
/* リード */
     .forthanniversary-contents-title {
            font-size: 2.3rem; /* text-3xl */
            font-weight: 500; /* font-bold */
            line-height: 1.5;
        }
.forthanniversary-wrap{
    padding-bottom: 0px;
}

.forthanniversary-leadbox{
     width: 95%;
       height:auto;
    margin:  0 auto;
    padding: 0;
}
.forthanniversary-lead {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 10px;
    padding-right: 10px;
}

.forthanniversary-leadtext {
    font-size: 1.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: lighter;
}
.forthanniversary-btnwrap{
flex-direction: column;
justify-content: center;
gap: 50px;
}
.forthanniversary-cont{
width: 80%;
margin:0 auto;

}
.forthanniversary-title{
    background-color: #E95517;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 30px 5px 0;
}
.forthanniversary-title2{
    background-color: #E95517;
    color: #fff;
    font-size: 1.8rem;
    padding: 5px 0;
    width: 100%;
    margin: 0 auto 20px;
}
.text01{
color: #E95517;
font-size:2rem;
padding-top: 20px;
}
.text02{
font-size: 1.5rem;
text-align: left;
display: inline-block;
font-weight: 500;
}
.text03{
font-size: 1.4rem;
font-weight: 400;
margin: 5px 10px 25px;
}
.text04{
color: #E95517;
font-size:2rem;
padding-top: 8px;
}
.text05{
font-size:2rem;
padding-bottom: 15px;
font-weight: lighter;
}
.forthanniversary-leadimg img{
width: 120px;
margin: 30px auto 20px;
}
.forthanniversary-leadimg2 img{
width: 80%;
margin: 10px auto 15px;
}
.forthanniversary-lead-btn {
width: 200px;
margin: 0 auto;
}
.forthanniversary-lead-btn img{
width: 200px;
}
.caution{
    font-size: 1.2rem;
    font-weight: lighter;
}



.one{
position: relative;
}
.one::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/one.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 20px;
 height: 40px;
   top: -8px;
  right: 28%;
}
.two{
position: relative;
}
.two::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/two.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 25px;
 height: 40px;
   top: -8px;
  right: 25%;
}


.one-2{
position: relative;
}
.one-2::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/one.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 20px;
 height: 40px;
   top: -8px;
  right: 30%;
}
.two-2{
position: relative;
}
.two-2::after{
content: "";
    display: inline-block;
    position: absolute;
       background-image: url(/img/usr/forthanniversary/two.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: center;
 width: 25px;
 height: 40px;
   top: -8px;
  right: 28%;
}

/* 期間ずっと */
.forthanniversary-title3{
    color: #E95517;
    font-size: 2.3rem;
}
.forthanniversary-cont2{
width: 85%;
padding-top: 70px;
}

.text06{
color: #E95517;
font-size:2.3rem;
padding-top: 20px;
}
.detail-wrap{
  flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.forthanniversary-detailimg img{
    width: 90%;
}

.detail-title{
background-color: #E95517;
color: #fff;
text-align: left;
display: inline-block;
font-size: 1.4rem;
padding: 2px 5px;
margin-left: 15px;
font-weight: lighter;
}
.text07{
font-size:1.4rem;
padding-bottom: 15px;
text-align: left;
  border: 2px solid #E95517;
    padding: 25px 10px 10px;
    margin: -15px auto 0;
    width: 100%;
    font-weight: lighter;
}
.detail-wrap2{
flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
gap: 20px;
}
.detail-wrap2 img{
    width: 160px;
}
.caution-text{
font-size: 1.6rem;
font-weight: lighter;
border-bottom: 3px dotted #E95517;
padding: 0 6px;
}
.forthanniversary-member-btn{
    width: 250px;
    margin: 0 auto;
}
.forthanniversary-member-btn img{
    width: 250px;
}
.text08{
font-size:1.6rem;
font-weight: lighter;
margin-top: 20px;
margin-bottom: 30px;
line-height: 1.6em;
}

.accordion-008 {
    width: 90%;
    margin:0 auto 30px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.accordion-008 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    font-size: 1.6rem;
    font-weight: lighter;
    cursor: pointer;
    justify-content: center;
}

.accordion-008 summary::-webkit-details-marker {
    display: none;
}

.accordion-008 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-008[open] summary::after {
    transform: rotate(225deg);
}

.accordion-008 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    transition: transform .5s, opacity .5s;
}

.accordion-008[open] p {
    transform: none;
    opacity: 1;
    font-size: 1.3rem;
    font-weight: lighter;
    text-align: left;
    line-height: 2;
}









.tab-content-item {
    width: 100%;
}
.forthanniversary-tab,
.forthanniversary-contentsbox{
    width: 95%;
}
.forthanniversary-ashirai{
padding-left: 30px;
}

#content-1::before{
   left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height:140px;
top: -80px;
}
#content-2::before{
   left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height:140px;
top: -80px;
}
#content-3::before{
   left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height:140px;
top: -80px;
}
#content-4::before{
   left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height:140px;
top: -80px;
}
#content-5::before{
   left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height:140px;
top: -80px;
}

.forthanniversary-contents{
       background-image: url(/img/usr/forthanniversary/contentsbg.png);
 background-size: cover;
 background-repeat: no-repeat;
 background-position: top;
 padding-top: 150px;
 padding-bottom: 80px;
}


.forthanniversary-kikan{
    font-size: 1.8rem;
    font-weight: lighter;
   width: 100%;
}
.forthanniversary-set{
   font-size: 1.8rem;
    font-weight: lighter;
   width: 100%;
}
.forthanniversary-kikan-end{
    font-size: 1.8rem;
    margin-top: 20px;
    background-color: #DB0D31;
    color: #fff;
}


.forthanniversary-product-content{
    padding-top: 40px;
padding-bottom: 40px;
margin: 40px auto 0;
background-color: #FDF7F2;
width: 90%;
box-shadow: 0px 0px 10px #C1C2C3;
}




.forthanniversary-product-content-text{
    font-size: 1.6rem;
    width: 450px;
font-weight: 400;
    text-align: left;
    line-height: 2;
        display: inline-block;
        margin-bottom: 10px;
}
.forthanniversary-product-text {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
    display: inline-block;
        width: 400px;
    font-weight: lighter;
}

.forthanniversary-soryo{
    font-size: 16px;
    background-color: #fff;
    border-radius: 20px;
    color: #E95517;
    border: 2px solid #E95517;
    font-weight: lighter;
    display: inline-block;
    padding: 3px 10px;
    margin-bottom: 15px;
}



.forthanniversary-product-name {
    font-size: 2.1rem;
    font-weight: lighter;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
    color: #E95517;
    border-bottom: 3px solid #E95517;
    display: inline-block;
}
.forthanniversary-product-detail-set{
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 25px;
}
.forthanniversary-product-detail{
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
    display: block;
    margin: 5px auto 30px;
    width: 90%;
    font-weight: lighter;
    line-height: 1.8;
}
/* 第二弾 */

.forthanniversary-product-wrap{
   flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}
.forthanniversary-product-wrap02{
   flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}
.forthanniversary-product-detail-img03 img{
width: 300px;
}
.forthanniversary-price-nom{
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    font-weight: 400;
     color: #323232;}

     .forthanniversary-product-off{
        margin-bottom: 15px;
     }
.forthanniversary-product-off img{
width: 120px;
}





/* 第三弾 */
.forthanniversary-product-saleimg{
    margin-bottom: 20px;
}
.forthanniversary-product-saleimg img{
    width: 250px;
}
.forthanniversary-product-wrapcontent02{
flex-direction: column;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    justify-content: center;
align-items: center;
}
.date{
background-color: #E95517;
color: #fff;
font-size: 2.2rem;
}
.forthanniversary-product-content02{
  background-color: #FDF7F2;
width: 320px;
box-shadow: 0px 0px 20px #C1C2C3;
padding-bottom: 30px;
margin-top: 60px;
}
.forthanniversary-product-name02 {
    font-size: 2.3rem;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-bottom: 20px;
   font-weight: lighter;
    border-bottom: 3px solid #E95517;
    display: inline-block;
    line-height: 1.3;
}
.forthanniversary-product-name03 {
    font-size: 2.3rem;
    font-weight: lighter;
    letter-spacing: 0.1em;
    margin-top: 10px;
    margin-bottom: 10px;
    color: #E95517;
    border-bottom: 3px solid #E95517;
    display: inline-block;
    line-height: 1.3;
}
.forthanniversary-text02{
    font-size: 1.8rem;
    color: #323232;
    font-weight: 500;
    margin-bottom: 30px;
}
.forthanniversary-text03{
    font-size: 1.8rem;
    color: #323232;
    font-weight: 500;
    margin-bottom: 10px;
}
.forthanniversary-product-detail-img02{
margin-top: 40px;
margin-bottom: 20px;
}
.forthanniversary-product-detail-img02 img{
    width: 90%;
}
.news{
margin: 30px auto;
width: 300px;
}
.news img{
    width: 300px;
}
.forthanniversary-bottombtn{
        width: 100%;
        margin: 60px auto 0;
}


.forthanniversary-text{
    font-size: 1.6rem;
    padding: 0 10px;
}
.forthanniversary-product-content{
flex-direction: column;
    gap: 0px;
padding-bottom: 40px;
margin-top: 40px;
}
.forthanniversary-product-content02{
flex-direction: column-reverse;
    gap: 0px;
padding-bottom: 30px;
margin-top: 40px;
}
.forthanniversary-product-detail-img img{
    width: 80%;
    margin-bottom: 30px;
}
.forthanniversary-product-content-text{
    font-size: 1.5rem;
    width: 90%;
}
.forthanniversary-product-text {
    font-size: 1.5rem;
    width: 90%;
}


.forthanniversary-bottombtn img{
width: 90%;

}

}