@charset "utf-8";



  
  /* header sp */
.header{
    padding: var(--contentPadding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_pc{
    display: none;
  }

  .logo_sp{
    width: 68.2px;
    height: 28px;
    flex-shrink: 0; 
  }  
  .header_logo a,
  .nav_header a{
    width: 68.2px;
    height: 28px;
  }

  .header_logo a,
  .nav_header a{
    display: flex;
    align-items: center;
  }
  
  .header__btn{
    display: flex;
    justify-content: space-between;
  }

  .order-button {
    font-weight: 400;
    letter-spacing: 1.12px;
    background-color: var(--primary-green); /* ボタンの背景色 (グリーン) */
    color: var(--primary-white); /* テキストの色 */
    padding: 7px 9px; /* ボタンの内側の余白 */
    border: none; /* ボーダーをなくす */
    cursor: pointer;
    margin-right: 20px;
  }
  
  .order-button:hover {
    background-color:var(--primary-green); /* ホバー時の色 */
  }

  .btn_eria{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* navの表示 */
  .nav {
    background-image:url(../images/nav_bg_sp.png) ;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    transform: translateX(-100%);
    transition: linear 0.4s;
}

.nav_header {
    display: flex;
    padding: 24px 4.2% 0;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 218px;
}


.nav__list {
    margin-top: 78px;
}

.nav_item{
    color: #FFFCF0;
    font-family: Cormorant Garamond;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.04px;
    padding: 0 4.2% ;
    margin-top: 35px;
}

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

.nav_order--Btn a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:120px auto 0;
    padding: 1em 2em;
    width: 312px;
    height: 50px;
    color: var(--primary-white);
    background-color: var(--primary-green);
    font-family: "Cormorant Garamond";
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 1.82px;
}

.nav_order--Btn a::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--primary-black);
    border-right: 1px solid var(--primary-black);
    transform: rotate(45deg);
    z-index: 100;
    position: relative;
  }

  .nav_order--Btn a::before {
    content: '';
    position: absolute;
    bottom: 309px;
    right: 77px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--primary-yellow);
    border-radius: 50vh;
  }

  /* header pc */

  @media screen and (min-width:769px){
    .header {
      padding: var(--contentPadding);
      height: 70px;
      display: flex;
      align-items: center;
      text-align: center;
      justify-content: space-between;
  }
  

  .logo_sp{
    display: none;
  }

  .logo_pc{
    display: block;
    width: 176px;
  }

  .nav_header{
    display: none;
}
.nav {
    background: transparent;
    width: auto;
    height: auto;
    padding: 0;
    position: static;
    transform: translateX(0);
}

.nav__list{
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.nav_item{
    color: var(--primary-black);
    text-align: center;
    font-size: 2rem;
    margin: 0 70px 0 0;
}

.nav__item::before{
    display: none;
}

.nav_order--Btn{
  display: none;
}

.order-button{
  width: 180px;
  margin:0 ;
  color: var(--primary-white);
  font-family: "Cormorant Garamond";
  font-size: 2.6rem;
  font-weight: 300;
  letter-spacing: 2.66px;
}

.header__btn{
    display: none;
}
  
}

/* pc  769px */

  /* main sp */

  .article__header{
    margin-top: 40px;
  }

  .main_title{
    font-size: 3.8rem;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.9px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 100;
  }

  .main_img{
    height: 307px;
    width: 100%;
    position: relative;
  }

  .image {
    position: absolute;
    top:-11px;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;
    animation: image-switch-animation 25s infinite;
  }
  
  .src1 {
    background-image: url(../images/sp_mv1.png)
  }
  .src2 {
    background-image: url(../images/sp_mv2.png)
  }
  .src3 {
    background-image: url(../images/sp_mv3.png)
  }
  .src4 {
    background-image: url(../images/sp_mv4.png)
  }
  .src5 {
    background-image: url(../images/sp_mv5.png)
  }

  @keyframes image-switch-animation {
    0%{ opacity: 0;}
    5%{ opacity: 1;}
    25%{ opacity: 1;}
    30%{ opacity: 0;}
    100%{ opacity: 0;}
  }

  .image:nth-of-type(1) {
    animation-delay: 0s;
  }
  .image:nth-of-type(2) {
    animation-delay: 5s;
  }
  .image:nth-of-type(3) {
    animation-delay: 10s;
  }
  .image:nth-of-type(4) {
    animation-delay: 15s;
  }
  .image:nth-of-type(5) {
    animation-delay: 20s;
  }

  /* slider */
  .loop-wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 55px;
  }
  .loop-area {
    background: url(../images/slider_sp_mv.png) repeat-x;
    width: 100%;
    height: 55px;
    animation: loop-slide 80s infinite linear;
  }
  @keyframes loop-slide {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -1413px 0;
    }
  }


  @media screen and (min-width: 769px){
  
    .article__header{
      margin-top: 80px;
    }

    .main_img {
        height:850px;
        position: relative;
    }

    .main_title{
      text-align: center;
      color: var(--primary-black);
      font-family: "Cormorant Garamond";
      font-size: 12rem;
      font-weight: 300;
      line-height: normal;
      letter-spacing: 8.4px;
      top: 25px;
      z-index: 100;
    }


    .image {
      position: absolute;
      top:-11px;
      left: 0;
      bottom: 0;
      right: 0;
      opacity: 0;
      background-size: cover;
      background-position: center center;
      animation: image-switch-animation 25s infinite;
    }
    
    .src1 {
      background-image: url(../images/pc_mv1.png)
    }
    .src2 {
      background-image: url(../images/pc_mv2.png)
    }
    .src3 {
      background-image: url(../images/pc_mv3.png)
    }
    .src4 {
      background-image: url(../images/pc_mv4.png)
    }
    .src5 {
      background-image: url(../images/pc_mv5.png)
    }
  
    @keyframes image-switch-animation {
      0%{ opacity: 0;}
      5%{ opacity: 1;}
      25%{ opacity: 1;}
      30%{ opacity: 0;}
      100%{ opacity: 0;}
    }
  
    .image:nth-of-type(1) {
      animation-delay: 0s;
    }
    .image:nth-of-type(2) {
      animation-delay: 5s;
    }
    .image:nth-of-type(3) {
      animation-delay: 10s;
    }
    .image:nth-of-type(4) {
      animation-delay: 15s;
    }
    .image:nth-of-type(5) {
      animation-delay: 20s;
    }
  
  /* slider */
  .loop-wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 153px;
  }
  .loop-area {
    background: url(../images/slider_pc_mv.png) repeat-x;
    width: 100%;
    height: 146px;
    animation: loop-slide 80s infinite linear;
  }
  @keyframes loop-slide {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -4131px 0;
    }
  }

}

/* pc 769px */


/* Home sp */

.section--Home{
    margin: 60px auto 0;
}

.topic{
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.3rem;
    font-style: normal;
    font-weight: 300;
    line-height: 30px; /* 130.435% */
    letter-spacing: 0.92px;
}

.mainCaption{
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 33px; /* 253.846% */
    letter-spacing: 0.91px;
    margin-top: 25px;
}

.brsp{
  display: none;
}


/* home pc */

@media screen and (min-width: 769px){

  .section--Home{
    display:flex ;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.topic{
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.56px;
  line-height: 44px;
  margin-right:92px ;
}

.mainCaption{
  text-align: start;
  color: var(--primary-black);
  font-family: "Shippori Mincho";
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 1.26px;
}

.spbr{
  display: none;
}


}


/* Gallery */

.section--Gallery{
    margin-top: 73px;
}

.slider_img_pc{
  display: none;
}
.slider{
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 298px;
}
.slider_area {
  background: url(../images/sp_slider.png) repeat-x;
  width: 100%;
  height: 298px;
  animation: loop-slide 80s infinite linear;
}
@keyframes loop-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1007px 0;
  }
}


.gallery_btn{
  display: inline-flex;
  padding: 30px var(--contentPadding) 0;
  /* width:134px ; */
  align-items: center;
    justify-content: flex-end;
}


@media screen and (min-width: 769px){

.section--Gallery{
  margin-top: 200px;
}

.slider_img_pc{
  display: block;
}

.slider_img_sp{
  display: none;
}

.line{
    display: inline-block;
    width: 80px; /* 線の長さ */
    height: 1px; /* 線の太さ */
    background-color: var(--primary-black); /* 線の色 */
    margin-right: 8px; /* 線とテキストの間のスペース */
}

.text{
  color: #403432;
  font-family: "Cormorant Garamond";
  font-size: 3.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 55px; /* 112.245% */
  letter-spacing: 3.43px;
}


.slider{
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 551px;
}
.slider_area {
  background: url(../images/pc_slider.png) repeat-x;
  width: 100%;
  height: 551px;
  animation: loop-slide 80s infinite linear;
}
@keyframes loop-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1845px 0;
  }
}
}

/* pc 769px */


/* about sp */

.section--About{
    margin-top: 100px;
    background-image: url(../images/bg_about_sp.png);
    background-repeat: no-repeat;
    background-position: center;
    flex-direction: column;
    align-items: center;
}


.about_content{
    margin: 45px auto 0;
    text-align: center;
}

.about_title{
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 400;
    line-height: 29px; /* 106.25% */
    letter-spacing: 0.96px;
}


.about_text{
    margin: 30px auto 0;
    width: 249px;
    align-items: center;
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 1.3rem;
    font-style: normal;
    font-weight: 400;
    line-height: 37px; /* 284.615% */
    letter-spacing: 1.3px;
    }

 .about_btnarea{
    display: block;
    text-align: center;
 }   

.top_photo{
    display: flex;
    justify-content: flex-start;
    padding: 0 var(--contentPadding);
}
.bottom_photo{
    display: flex;
    justify-content: flex-end;
    padding: 0 var(--contentPadding);
}

.about_btnarea{
  padding: 0 64px;
}

.about_btnarea a{
  display: flex;
  height: auto;
  align-items: center;
}

/* about pc */

@media screen and (min-width: 769px){

.section--About{
  height: 1000px;
  background-image: url(../images/about_bg_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
}


.photo-real_sp,
.photo-fake_sp{
  display: none;
}

.about_content{
  margin-left: 355px;
  margin-top: 110px;
}

.about_title{
  color: var(--primary-black);
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 44px; /* 159.375% */
  letter-spacing: 1.92px;
  text-align: start;
  width: 370px;
  margin: 0 auto;
}

.about_text{
  color: var(--primary-black);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 30px; /* 272.222% */
  letter-spacing: 1.8px;
  width: 368px;
  text-align: start;
}


.about_label,
.class_label{
 margin: 30px 170px 0;
}

.about_btnarea{
padding: 145px 120px 0 ;
}

}




  

