@charset "utf-8";
/*============================
common
===========================*/

:root{
    --primar-white: #F6F6F6;
    --primary-blue: #8DC2D1;
    --primary-black:#251E1C;
    --primary-brown:#A86726;
    --primary-gray:#EDECE8;
    --contentWidth: 81%;
    --contentPadding: 0 9.4%;
}
html{
    font-size: 62.5%;
    position: relative;
    margin: 0 auto;
}
body{
    font-family: 
        'Shippori Mincho',
        Courier, 
        monospace;
    
    font-style: normal;
    color: var(--primary-black);
    background-color: var(--primar-white);
    line-height: 3;
}
img{
    max-width: 100%;
}

/*============================
nav
===========================*/
.nav{
    background-image: url(../images/Vector\ \(1\).png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height:95vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    padding: 50px;
     transform: translateY(-100%);
    transition: transform 1.5s; 
}


.nav.active{
    transform: translate(0);
}



.nav__list{
    display: inline-block;
    font-size: 14px;
    margin: 50px 0;
    text-align: left;
    
}
.nav__item{
    line-height: 3;
}
.nav_logo{
    width: 78px;
    height: 112px;
}
.nav__eader{
    text-align: center;
    margin-top:30%;
}
@media screen and (max-width: 600px) {
    /* ハンバーガーアイコンをモバイルでのみ表示 */
    .nav__list{
    font-size: 17px;
    margin: 50px 0;
    text-align: left;
    
}
  }


/*=============================
.btn-trigger
=============================*/
.btn-trigger {
    position: relative;
    width: 50px;
    height: 50px;
    cursor: pointer;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #fff;
    border-radius: 2px;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 5px;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 16px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 3px;
  }
  



/*=============================
#btn18
=============================*/

#btn18{
    display: block;
    z-index: 200;
    position: fixed;
    position: relative; /* アニメーションのための基準 */
    width: 30px; /* サイズ調整 */
    height: 30px;
    cursor: pointer;
}
/* モバイル表示 (768px以下でハンバーガーメニューを表示) */
@media screen and (max-width: 768px) {
    /* ハンバーガーアイコンをモバイルでのみ表示 */
    #btn18 {
        display: block; 
    }
}
#btn18 span:nth-of-type(1) {
    -webkit-animation: btn18-bar01 .5s forwards;
    animation: btn18-bar01 .5s forwards;
  }
  @-webkit-keyframes btn18-bar01 {
    0% {
      -webkit-transform: translateY(10px) rotate(-45deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn18-bar01 {
    0% {
  
      transform: translateY(10px) rotate(-45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn18 span:nth-of-type(2) {
    top: 15px;
    -webkit-animation: btn18-bar02 .5s forwards;
    animation: btn18-bar02 .5s forwards;
  }
  @-webkit-keyframes btn18-bar02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes btn18-bar02 {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  #btn18 span:nth-of-type(3) {
    -webkit-animation: btn18-bar03 .5s forwards;
    animation: btn18-bar03 .5s forwards;
  }
  @-webkit-keyframes btn18-bar03 {
    0% {
      -webkit-transform: translateY(-20px) rotate(45deg);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn18-bar03 {
    0% {
      transform: translateY(-20px) rotate(45deg);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn18::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    margin: -16px 0 0 -16px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.3);
    transition: all .1s;
    opacity: 0;
  }
  #btn18.active::after {
    -webkit-animation: circle .5s;
    animation: circle .5s;
  }
  @-webkit-keyframes circle {
    0% {
      -webkit-transform: scale(.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      -webkit-transform: scale(3.5);
      opacity: 0;
    }
  }
  @keyframes circle {
    0% {
      transform: scale(.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(3.5);
      opacity: 0;
    }
  }
  #btn18.active span:nth-of-type(1) {
    -webkit-animation: active-btn18-bar01 .5s .5s forwards;
    animation: active-btn18-bar01 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    100% {
      -webkit-transform: translateY(20px) rotate(-45deg);
    }
  }
  @keyframes active-btn18-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(20px) rotate(-45deg);
    }
  }
  #btn18.active span:nth-of-type(2) {
    
    -webkit-animation: active-btn18-bar02 .5s .5s forwards;
    animation: active-btn18-bar02 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar02 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  @keyframes active-btn18-bar02 {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  #btn18.active span:nth-of-type(3) {
    -webkit-animation: active-btn18-bar03 .5s .5s forwards;
    animation: active-btn18-bar03 .5s .5s forwards;
  }
  @-webkit-keyframes active-btn18-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0px) rotate(45deg);
    }
  }
  @keyframes active-btn18-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    100% {
      transform: translateY(0px) rotate(45deg);
    }
  }
  
/*============================
header
===========================*/
.header{
    padding: 0 4.2% 0 4.2%;
    height: 69px;
    width: auto;
    display: flex;
    align-items: center;
    background-color: var(--primary-blue);
    color: var(--primar-white);
    justify-content:space-between;
    position: fixed;
  top: 0px; /* 画面上から50px */
  left: 0px; /* 画面左から50px */
    width: 100%;
  z-index: 9;

    
}
.nav_logo02{
  display: none;
    }

.b__header{
    display: flex;
    align-items: center;
    letter-spacing: 0.3rem;
}
.b_logo{
    display: block;
    height: 42.5px;
    padding-right: 1.3rem;
}
.header__btn{
    display: block;
    height: 16px;
    width: 27px;
}
.scroll_position::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    background-image: url(../images/yazirushi.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5.5px;
    height: 24px;

}
.scroll_position{
    display: block;
    width: 90px;
    height:90px;
    position: absolute;
    bottom: -35px;
    left: 30px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.scroll {
  animation: rotate 12s infinite linear;
}
.scroll02{
  display: none;
}
.concept{
    display: block;
    height: 150px;
    width: 150px;
    margin-top: 50px;
}
.mainCaption{
    
    font-size: 1.4rem;
}
.concept_waku{
  padding: var(--contentPadding);
}
.mainCaption_txt{
line-height: 2.5;
margin-top: 20px;
margin-bottom: 20px;
letter-spacing: 3px;
}
.mainVisual_pc{
  display: none;
}
.mainVisual_sp{
   margin-top: 49px;
}
.syouhin_menu{
  margin-top: 69px;
}




/* レスポンシブ */
@media screen and (min-width:600px){
  .syouhin_menu{
  margin-top: 0px;
}
.mainVisual{
  margin: 0;
}

  .header{
    position: absolute;
    top: 60px;
    max-width: 1280px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    width: 160px;
    height: 600px;
    border-radius: 40rem;
    padding: 36px;
    flex-direction: column;
    left: 34px;
  }

.mainVisual_sp{
   display: none;
}
.mainVisual_pc{
        display: block;
        height: 800px;
        width: 100%;
        object-fit: cover;
        object-position: right;
        
}

.nav{
  position: static;
  height: auto;
  transform: translateY(0);
  padding: 0;
  background-image: none;
}
.b__header{
  display: none;
}
.nav_logo{
  display: none;
}
.nav_logo02{
  display: block;
  background-image: url(../images/logo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}
.nav__item{
  color: var(--primary-black);
}

.content{
  display: none;
}
.scroll_position{
    display: none;
}


.scroll02{
  display: block;
    margin-top: 20px;
    animation: rotate 12s infinite linear;
    z-index: 200;
}
.scroll02_position{
  position: relative;
}
.scroll02_position::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: block;
    background-image: url(../images/yazirushi.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5.5px;
    height: 24px;

}

}
@media screen and (min-width:800px){
  .concept_waku{
    width: 60%;
  }
}



.concept01{
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}
.concept02{
    position: absolute;
    right: 0;
    display: block;
    width: 80%;
    height: auto;
    
}
.concept03{
    display: block;
    width: 70%;
    height: auto;
    margin-bottom: 25px;
}
.concept04{
    display: block;
    width: 50%;
    height: auto;
}

.concept_syasin,
.concept_syasin02{
    display: block;
    margin-right: 25px;
    position: relative;
    width: 50%;
}

.concept_syasin02{
    padding-top: 140px;
}
.syasin{
    display: flex;
    margin: 80px 0 280px;
    max-width: 700px;
}

@media screen and (min-width:769px){
  
#concept{
  display: flex;
  margin: 20% 0;
}
.syasin{
  padding: 54px 20px;
  width: 50%;
  align-items: center;
  margin: 0 auto;
}
}



/*============================
 メニューについて
===========================*/

#menu{
    display: block;
   background-image: url(../images/haikei.png);
}
.menu_topic{
    writing-mode: vertical-rl;
    display: flex;
    text-align: left;
    display: flex;
    font-size: 16px;
    text-align: left;
    align-items: center;
}

.center{
  text-align: center;
  align-items: center;
  color: #515151;
}
.center span{
  padding-right: 10px;
}
.menu_txt{
    font-size: 1.4rem;
    padding-right: 5%;
    margin-top: 50px;
}

.menu_button{
    font-size: 1.4rem;
    margin-top: 45px;
    padding-bottom: 85px;
    letter-spacing: 0.3rem;
}

.cake_menu{
display: block;
width: 90%;
}
.cake_icon{
  display: block;
  width: 16px;
  height: 12px;
  margin: 0 0 10px;
}

.cake02,.cake03{
width: 50%;
}
.cake_txt{
  padding-left: 10%;
}

.yokonarabi{
    display: flex;
}
.gray_logo{
    width: 47px;
    height: 68px;
    margin: 22px 15px ;
}
.menu_haiti{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
}

.article__header{
    display: block;
    position: relative;
}


.arrow {
  position: relative;
  display: inline-block;
  width: 120px;
  height: 0.5px;
  margin-top: 6.4px;
  border-radius: 9999px;
  background-color: #000000;
  margin-left: 15px;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 10px;
  height: 0.5px;
  border-radius: 9999px;
  background-color: #000000;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}
@media screen and (min-width:600px){
  .cake_menu{
display: flex;
flex-direction: row;
width: 90%;
}
  .cake01{
    width: 50%;
  }
  .cakes_234{
    width: 50%;
  }
}

/*============================
 ご挨拶
===========================*/

.sudakitou{
  color: var(--primary-brown);
  border-bottom: 1px solid var(--primary-brown);
}
.kikuchi_txt{
  font-size: 14px;
  margin-top: 20px;

}
.kikuti_ouna-{
  display: block;
  width: 39%;
  
}
.kikuchi img{
      display: block;
    width: auto;
    height: 30px;
    object-fit: cover;
}
.goaisatu_naiyou{
    margin: 50px 0;
    padding: var(--contentPadding)
}
.moyou{
    width: 80%;
    margin-top: 50px;
}
.moyou_tate{
    display: block;
    width: 55px;
}
.moyou_ari{
    display: flex;
}
.tennai_syasin{
    margin-top: 80px;
}

.slider{
    margin: 160px 0;
    position: relative;
}
.slider::before{
    content: "";
    position: absolute;
    top: -2px;
    left: 0px;
    width: 100%;
    height: auto;
    background-image: url(../images/nami.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    aspect-ratio: 561 / 43;
}
.moyou_yoko_sp{
  height: 100%;
}
@media screen and (min-width:1000px){
.moyou,
.moyou_yoko_sp{
  display: none;
}



  .goaisatu_naiyou,
  .moyou_ari{
    position: relative;
  }
  .kikuti_mozi{
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-content: flex-start
  }
  .moyou_ari::before{
    content: "";
    position: absolute;
    top: -6%;
    background-image: url(../images/pc_yokonami.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 1030 / 70;
  }
  .moyou_ari::after{
    content: "";
    position: absolute;
    bottom: -5%;
    background-image: url(../images/pc_yokonami.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    height: auto;
    aspect-ratio: 1030 / 70;
  }

  .goaisatu_naiyou::before{
    content: "";
    position: absolute;
    left: -6%;
    top: 5.5%;
    background-image: url(../images/pc_tatenami02.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 4%;
    height: 100%;
    aspect-ratio: 44 / 648;
  }
  .goaisatu_naiyou::after{
    content: "";
    position: absolute;
    right: -9%;
    top: 0%;
    background-image: url(../images/pc_tatenami.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 4%;
    height: 100%;
    aspect-ratio: 44 / 648;
  }

.section--goaisatu{
    margin: 163px;
    padding: 40px;
}
.kikuti_honnin{
    width: 40%;
    max-height: 500px;
}
.kikuti_goaisatu{
    width: 60%;
}
.goaisatu_naiyou{
    display: flex;
    gap: 50px;
    align-items: center;
    flex-direction: row-reverse;
    padding: 50px;
}
.kikuti_ouna-{
      display: block;
    width: auto;
    height: 30px;
    object-fit: cover;
    padding-left: 20px;
}
.kikuchi_txt {
    font-size: 16px; 
    margin-top: 10px;
  }

} 
/*============================
 店舗情報
===========================*/

#tenpo{
    padding: 30px 0;
}
.syozaiti h3{
  margin: 30px 0 12px;
}
.tenpozyouhou{
    background-color: var(--primary-gray);
  
}

h2{
    font-size: 16px;
    line-height: 1.5;
    margin: 20px 0;
    letter-spacing: 0.4rem;

}

h2 span{
    font-size: 14px;
}
h3{
    display: block;
    font-size: 16px;
    background-color: var(--primary-brown);
    color: var(--primar-white);
    width: 105px;
    height: 30px;
    margin:  30px 0 12px;
    text-align: center;
    line-height: 30px;
}

.map{
    font-size: 16px;
    color: var(--primary-brown);
    position: relative;
    display: flex;
    padding-left: 20px;
}

.map::before{
    content: "";
    position: absolute;
    top: 17px;
    left: 0;
    background-image: url(../images/map.png);
    display: block;
    width: 12px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.tenpo_txt{
    font-size: 16px;
    line-height: 2.5;
}
.tenpozyouhou_naiyou{
    margin: var(--contentPadding);
}
.tenpozyouhou img{
  padding: var(--contentPadding);
}
.denwa{
    position: relative;
    color: var(--primary-brown);
    padding: 0 18px 0 31px;
    display: flex;
    letter-spacing: 0.4rem;
    border: 0.5px solid var(--primary-brown);
    display: inline-block;
    border-radius: 2rem;
    background-color: var(--primar-white);
    margin-top: 10px;
}
.sns:hover,
.denwa:hover{
  background: #f9ffc8;
}

.denwa::before{
  content: "";
  display: block;
  background-image: url(../images/denwa.png);
  width: 13px;
  height: 15px;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 15px;
  left: 12px;
  
}

.sns{
    position: relative;
    color: var(--primary-brown);
    padding-left: 20px;
    display: flex ;
    letter-spacing: 0.2rem;
    border: 0.5px solid var(--primary-brown);
    display: inline-block;
    border-radius: 2rem;
    margin-bottom: 20px;
    padding: 0 19px 0 36px;
    background-color: var(--primar-white);
    margin-top: 10px;
}
.sns::before{
    content: "";
    background-image: url(../images/sns.png);
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 14px;
    left: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.tenpo_haikei{
    width: 100%;}

@media screen and (min-width:1000px){
  .tenpozyouhou img{
  padding: 0;
  margin: 0 4.2%;
}
  .syozaiti{
    padding: 0;
    display: block;
    width: auto;
    height: 150px;
  }
  .syozaiti p{
    height: 30px;
  }
   .tenpozyouhou{
     display: flex;
     align-items: center;
     margin-top: 100px;
     padding-top: 50px;
     justify-content: space-evenly;
   }

  .tenpozyouhou_naiyou{
    align-items: center;
    margin: 0;
     }

   
   .tenpozyouhou img{
    width: 453px;
    height: 541px;
    margin: 0;
   }

}


/*============================
 よくある質問
===========================*/
.logo-image {
    /* 親要素の幅いっぱいに広げる */
    width: 100%; 
    
    /* 高さは自動調整し、縦横比を保持する */
    height: auto;
}
.qa_haikei{
    background-image: url(../images/qa_haikei.png);
}
#situmon{
  position: relative;
}

@media screen and (min-width: 531px) { 
  .a_txt::before,
  .q_txt::before {
    top: -3px;
  }}
#situmon::before{
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  background-image: url(../images/tenpo_haikei.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
  width: 100%;
  height: auto;
  aspect-ratio: 561 / 43;
}

.inner {
  width:750px;
  margin: 20px auto;
}

.qa_box{
    margin-bottom: 5px;
}

.qa_box .qa_q {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 36px 54px;
    position: relative;
    cursor: pointer;
    color: var(--primary-brown);
   
}

.toggle_icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -15px;
}
.toggle_icon:before{
  position: absolute;
  content: "▼";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}

.qa_q.open .toggle_icon:before{
    position: absolute;
    content: "ー";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
    background-color: none;
    
}

.qa_box .qa_a {
    display: none;
    padding: 36px 54px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid #c8a685;
}


.q_txt{
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
    font-size: 16px;
    color: var(--primary-black);
}

.q_txt::before {
    position: absolute;
    left: 0;
    content: "Q．";
    color: var(--primary-brown);
    font-size: 20px;
    font-weight: bold;
}

.a_txt {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 2.3;
    font-size: 16px;
    text-align: left;
    align-items: center;
    border-radius: 5px;
    color: var(--primary-black);
}

.a_txt::before {
    position: absolute;
    left: 0;
    content: "A．";
    color: var(--primary-brown);
    font-size: 20px;
    font-weight: bold;
}
.inner{
    width: 100%;
    padding: var(--contentPadding);
}
.situmon_title{
    text-align: center;
    font-size: 40px;
    color: var(--primar-white);
}
  .situmon{
    background-image: url(../images/Group\ 127.png);
    background-position: center;
    background-size: cover;
            object-position: bottom;
    padding: 150px 0 210px;
  }

  .syasin_pakege{
    margin-top: -80px;
}
@media screen and (min-width: 750px) { 
  .situmon{
    background-image: url(../images/Group\ 121.png);
    background-position: center;
    background-size: cover;
            object-position: bottom;
    padding: 150px 0 210px;
  }
  .inner{
    width: auto;
    }
    
    .toggle_icon {
        right: 0.8rem;
    }
    
    .toggle_icon:before {
        width: 15px;
    }
    .toggle_icon:after {
        height: 15px;
        right: 7px;
    }
}

@media screen and (max-width: 480px) { 
    .toggle_icon {
        right: 0.4rem;
    }
}

.article__footer img{
    position: relative;
}
.article__footer img::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/footer_nami.png);
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.syasin_pakege{
  position: relative;
  
}
.syasin_pakege::before{
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  background-image: url(../images/footer_nami.png);
  background-position: center;
  background-size: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 33;
  z-index: 4;
}
/*============================
footer
===========================*/

.footer{
    background-color: var(--primary-blue);
    position: relative;
}
.pagetop{
    width: 150px;
    height: 150px;
  position: absolute;
      top: -23%;
  right: 10%;
  z-index: 5;
  
}

@media screen and (max-width: 600px) { 
 .pagetop{
   width: 100px;
        height: 100px;
        position: absolute;
        top: -17%;
        right: 6%;
        z-index: 6;
}
}

.footer__eader{
    display: flex;
    gap: 20px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.footer__list{
    display: inline-block;
    margin: 50px 0;
    text-align: left;
    padding-left: 40px; 
    

    
}
.footer__item{
    line-height: 2.5;
    color: var(--primar-white);
    font-size: 16px;
}
.footer_logo{
    width: 78px;
    height: 112px;
}
.footer__eader{
    text-align: center;
    padding-bottom: 70px;
}

/* fadein */
.fadeIn{
  transform: translate(0,50px);
  opacity: 0;
  transition: 0.8s;
}
.fadeIn.animated{
   transform: translate(0,0);
  opacity: 1;
}
/* fadeOut */
.fadeOut{
  opacity: 0.3;
  transition: 1s;
}
.fadeOut.animated{
   transform: translate(0,0px);
  opacity: 1;
  filter: blur(0px);
}


/*============================
menu_しょうひん
===========================*/

.syouhin_menu:nth-child(3){
        padding-bottom: 25%;
}
.syouhin_menu h1{
  text-align: center;
  font-size: 20px;
  margin: 40px 0 50px;
  color: var(--primary-brown);
  line-height: 1.5;
}

.syouhin_menu h1 span{
  font-size: 14px;
}
.syouhinn_rainrappu{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-bottom: 160px;
}
.syouhinn_list{
  text-align: center;
  padding-bottom: 20px;
  font-size: 16px;
  position: relative;
  max-width: 45%;
  color: var(--primary-brown);
  z-index: 8;
  position: relative;
}
.syouhinnbtn{
position: relative;
}
.syouhinnbtn::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(../images/Group\ 137.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 12%;
  height: 13%;
}

.syouhinn_list::after{
  position: absolute;

}

@media screen and (min-width: 600px) { 
.syouhin_menu_main{
  margin-top: 0px;
}
.syouhin_menu h1{
  text-align: center;
  font-size: 40px;
  margin: 80px 0 100px;
  color: var(--primary-brown);
  line-height: 1;
}
.syouhin_menu h1 span{
  font-size: 20px;
}
.syouhinn_list{
  text-align: center;
  padding-bottom: 20px;
  font-size: 16px;
  position: relative;
  max-width: 30%;
  color: var(--primary-brown);
}
}

/*============================
モーダル用
===========================*/



.modal_list{
  display: none;
    z-index: -10;
    opacity: 0;
    transition: 1s;
    padding: 8px;
    background-color: #B22830;
    box-shadow: 2px 4px 12px 4px rgba(255, 255, 255, 0.8);
    width: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal_list:nth-child(2){
  background-color: #775245;
}
.modal_list:nth-child(3){
  background-color: #c57457;
}
.modal_list:nth-child(4){
  background-color: #593729;
}
.modal_list:nth-child(5){
  background-color: #bf8631;
}
.modal_list:nth-child(6){
  background-color: #9b553c;
}
.modal_list:nth-child(7){
  background-color: #b6ba99;
}
.modal_list:nth-child(9){
  background-color: #5b5e46;
}
.modal_list:nth-child(10){
  background-color: #e39c3f;
}
.modal_list:nth-child(11){
  background-color: #5b5e46;
}
.modal_list:nth-child(12){
  background-color: #e39c3f;
}



.modal_list.open{
  display: block;
    z-index: 1000;
    opacity: 1;
    width: 80%;
    max-width: 800px;
}
.modal_list img{
  width: 50%;
}
@media screen and (max-width: 600px) { 
  .modal_naiyou{
    display: flex;
    flex-direction: column}
  .modal_list img{
    width: auto;
    }
  
  }
.modal_naiyou{
  display: flex;
  align-items: center;
      margin: 25px;
}
.modal_txt{
  font-size: 15px;
  color: white;
  padding-left: 5%;
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.modal_txt p{
  margin-top: 20px;
}
.modal_title{
  font-size: 25px;
  line-height: 1.5;
}

.modal_naiyou_txt{
  margin: 20px 0;
  font-size: 15px;
  line-height: 2;
}
.modal_naiyou_txt{
  font-size: 15px;
  line-height: 2.5;
  }
.genzairyou{
  margin-top: 15px;
  font-size: 15px;
  line-height: 2.5;

}
modal_txt p:nth-child(3){
  padding: 0;
}
.modal_txt span{
  border: 1px solid white;
  border-radius: 50rem;
  padding: 3px 10px;
  margin-top: 20px;
}

/* 背景のグリーン */
.syouhin_menu::after{
  display: none;
  content: '';
  background-color: #ffffffc8;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 900;
}
.syouhin_menu.open::after{
  display: block;
}

/* 閉じるボタン */
.close{
  display: none;
  position: fixed;
  width: 24px;
  height: 24px;
  position: fixed;
  right: 3%;
  top: 3%;
  z-index: 1001;

}
.close img{
  width: 100%;
}
.close.open{
 display: block;
}
.fadeOut {
  opacity: 1;
  transition: opacity 0.4s linear;
  will-change: opacity;
}

