@charset "utf-8";
/* CSS Document */
html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  color: #444444;
  background-color: #d3d3d3;
}
@media screen and (min-width: 960px) {
    body {
      font-size: 15px;
    }
}
h2{
 font-size: 18px;
 letter-spacing: 1px;
 text-align: center;
 font-weight: normal;
}
@media screen and (min-width: 960px) {
     h2{
         font-size: 24px;
    }
}
h3{
 font-size: 16px;
 letter-spacing: 1px;
 text-align: center;
 font-weight: normal;
}
@media screen and (min-width: 960px) {
  h3{
         font-size: 20px;
    }
}
p{
    text-align: justify;
}
@media screen and (min-width: 960px) {
  p{
         line-height: 2;
    }
}
.header{
    padding: 16px 20px 35px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #444444;
    color: #d3d3d3;
}
/*header-pc*/
@media screen and (min-width: 960px) {
    .header{
        padding: 40px 120px 66px 120px;
    }
}

.shop-hamburger{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 161px; 
    justify-content: space-between;
}
.pc-nav{
        display: none;
    }
.header-instagram{
    display: none;
}

/*pc-nav*/
@media screen and (min-width: 960px) {
  .hamburger{
    display: none;
}
    .pc-nav{
        display: block;
    }
    .pc-logo-nav{
        display: flex;
        width: calc(512 / 1440 * 100%);
        justify-content: space-between;
    }
    .pc-nav-items li{
        display: grid;
        grid-template-columns: auto 40px auto;
        grid-template-areas:
            "no li tx";
        justify-self: start;
        align-items: center;
        column-gap: 10px;
        margin-bottom: 10px;
    }
    .pc-no{
        grid-area: no;
    }
    .pc-line{
        height:1px;
        background: #b4b4b4;
        display: block;
        grid-area: li;
        width: 100%;
    }
    .pc-txt{
        grid-area: tx;
    }
    .logo a > img{
        width: 130px;
        height: 116px;
    }
    
    /*instagram onlineshop*/
    .header-instagram{
        display: block;
    }
    .header-insta{
        display: flex;
        gap: 10px;
        margin-top: 25px;
        margin-bottom: 50px;
}
    .shop-hamburger{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
}


.online-shop{
    border: solid 1px #d3d3d3;
    padding: 15px;
}
.scroll{
    display: none;
    
}
@media screen and (min-width: 960px) {
    .scroll-txt{
        color: #d3d3d3;
    }
.scroll{
  display: block;
  position: absolute;
  right: 5%;
  top: 70%;
  writing-mode: vertical-rl;
  letter-spacing: 4px;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #d3d3d3;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
}
.mv{
    background-color: #444444;
}
.mv-img{
    height: 650px;
    width: calc(355 / 375 * 100%);
    background: url("../images/pc-mv.jpg") no-repeat center/cover;
    object-fit: cover;
    position: relative;
}

/*pc-mv*/
@media screen and (min-width: 960px) {
  .mv-img{
    height: 600px;
    width: calc(1275 / 1440 * 100%);
    background: url("../images/mv.jpg") no-repeat center/cover;
    object-fit: cover;
      position: relative;
    
  }
}
.mv-cc{
    font-size: 24px;
    font-weight: normal;
    color: #fff8f1;
    writing-mode: vertical-rl;
   position: absolute;
    top: 22.3%;
    right: 14.6%;
  z-index: 1;
}
.mv-cc span{
    display: block;
} 
@media screen and (min-width: 960px) {
    .mv-cc{
        font-size: 32px;
        font-weight: normal;
        writing-mode: horizontal-tb;
        position: absolute;
        top:50%;
    　　right: 0;
    }
    .mv-cc span{
    display: inline;
}
}
/* SP用ハンバーガー */
.hamburger {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 48px;
  height: 48px;
  border: none;
  background: #444;
  border-radius: 50%;
  cursor: pointer;
  z-index: 110;
}
.hamburger .line {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
  transition: transform .3s ease, opacity .2s ease, top .3s ease;
}
.hamburger .line:nth-child(1){
	top: 14px;
}
.hamburger .line:nth-child(2){
	top: 22px;
}
.hamburger .line:nth-child(3){
	top: 30px;
}
.hamburger.active .line:nth-child(1){
	top:22px; transform:rotate(-45deg);
}
.hamburger.active .line:nth-child(2){
	opacity:0;
}
.hamburger.active .line:nth-child(3){
	top:22px; transform:rotate(45deg);
}

/* 背景の半透明レイヤー */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  z-index: 90;
}
.body--nav-open{
	overflow: hidden;
}
@media (min-width:960px){
  .hamburger,
  .nav-backdrop {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .pc-nav { display: block; }
  #global-nav {
    position: fixed;
    top: 0; left: 0;
    width: 78%;
    max-width: 360px;
    height: 100vh;
    background: #2d2d2d;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 100;
  }
  #global-nav.active { transform: translateX(0); }

  .pc-no, .pc-line { display: none; }
  .pc-txt {
    display: block;
    padding: 12px 8px;
    min-height: 44px; 
    color: #fff;
    text-decoration: none;
  }
}

/*intro*/
.intro-sec{
    padding-top: 100px;
    padding-bottom: 50px;
}
.intro-inner{
    width: calc(315 / 375 * 100%);
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .intro-inner{
    width: calc(960 / 1440 * 100%);
    max-width: 960px;
    margin: 0 auto;
}
}
.inner{
    width: calc(315 / 375 * 100%);
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .inner{
    width: calc(1200 / 1440 * 100%);
    max-width: 1200px;
    margin: 0 auto;
}
}
.intro-ttl{
    margin-bottom: 40px;
}
@media screen and (min-width: 960px) {
  .intro-ttl{
    text-align: left;
}
}
.intro-txt{
    margin-bottom: 45px;
}
@media screen and (min-width: 960px) {
  .intro-txt{
    width: calc(412 / 1440 * 100%);
}
}
/*
.intro-img{
    height: 415px;
    background-image: url("../images/intro-2.jpg"),url("../images/intro-1.jpg");
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom, left top;
}
*/
.pc-intro-img img{
    margin: 0 auto;
    position: relative;
}
.pc-intro-img1{
    padding: 50px 200px 30px 0;
}
.pc-intro-img2{
    padding-left: 200px;
    
}
.pc-intro-img3{
    position: absolute;
    top: -50px;
    left: -20px;
    z-index: 1;
}
/*pc intro img*/
@media screen and (min-width: 960px) {
    .pc-intro-img2{
    padding-left: 0px;
        margin: 0 auto;
}
  .pc-intro-img{
   display: block;
    display: flex;
    justify-content: space-between;
    padding: 100px 0;
}
  .pc-intro-img img:nth-child(2){
      transform: translateY(-60px);
      z-index: 1;
    }
    .intro-sec{
        margin-top: 50px;
    }
    .pc-intro-img1{
    padding: 0;
}
.pc-intro-img3{
    position: static;
    top: auto;
    left: auto;
}
}
/*feature*/
.feature-sec{
    background-color: #444444;
    color: #d3d3d3;
    padding-top: 50px;
    padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
    .feature-sec{
        padding: 100px 0;
    }
}
.all-ttl{
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: 1fr auto 1fr;
    grid-template-areas:
        "num . ."
        "lineL txt lineR"
        ". . en";
    align-items: center;
    text-align: center;
}
.ttl-no{
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  grid-area: num;
  justify-self: start;
}
@media screen and (min-width: 960px) {
 .ttl-no{
    font-size: 24px;
}
}
.ttl-line-left{
    width: 52px;
    height:1px;
    background: #b4b4b4;
    display: block;
    grid-area: lineL;
    justify-self: start;
}
.ttl-line-right{
    width: 52px;
    height:1px;
    background: #b4b4b4;
    display: block;
    grid-area: lineR;
    justify-self: end;
}
@media screen and (min-width: 960px) {
 .ttl-line-left,
 .ttl-line-right{
    width: 250px;
}
}
.ttl-ja{
    grid-area: txt;
    justify-self: center;
    font-size: 18px;
}
@media screen and (min-width: 960px) {
 .ttl-ja{
    font-size: 24px;
}
}
.ttl-en{
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-style: normal;
  grid-area: en;
  justify-self: end;
  font-size: 14px;
}
@media screen and (min-width: 960px) {
 .ttl-en{
    font-size: 24px;
}
}


.sec-img{
    padding-top: 50px;
    padding-bottom: 10px;
}
.sec-img > img{
    margin: 0 auto;
}
@media screen and (min-width: 960px) {
     .sec-img{
       width: calc(600 / 1440 * 100%);
}
}
.sub-ttl{
    margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
 .sub-ttl{
    text-align: left;
}
}
.sub-ttl-line{
    width: 100%;
    height:1px;
    background: #b4b4b4;
    display: block;
    margin-bottom: 10px;
}
.sub-ttl-txt{
    margin-bottom: 45px;
}
@media screen and (min-width: 960px) {
 .pc-flex{
        display: flex;
        align-items: center;
        justify-content: space-between;
         margin: 50px;
    }
    .row-reverse{
        flex-direction: row-reverse;
    }
    .pc-sub-ttl{
        width: calc(600 / 1440 * 100%);
    }
}
.button-black{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 375px;
    width: 100%;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #d3d3d3;
    background-color: #444444;
    border-radius: 25px;
    color: #d3d3d3;
    font-size: 1em;
}

.button-black::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #d3d3d3;
    border-right: 2px solid #d3d3d3;
    content: '';
}

/*product*/
.product-sec{
    padding: 50px 0;
}
@media screen and (min-width: 960px) {
    .product-sec{
          padding: 100px;
          padding-bottom: 50px;
    }
}
.sub-ttl-en{
    margin-bottom: 3px;
}
@media screen and (min-width: 960px) {
 .sub-ttl-en{
    text-align: left;
}
}
.button-gray{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 375px;
    margin:0 auto;
    padding: .9em 2em;
    border: 1px solid #444444;
    background-color: #d3d3d3;
    border-radius: 25px;
    color: #444444;
    font-size: 1em;
}
.product-btn{
        margin-bottom: 30px;
    }

.button-gray::after {
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    margin-left: 10px;
    border-top: 2px solid #444444;
    border-right: 2px solid #444444;
    content: '';
}
.product-shop-btn{
        margin-bottom: 50px;
    }
@media screen and (min-width: 960px) {
    .product-btn{
        margin-bottom: 30px;
    }
    .product-shop-btn{
        margin-bottom: 100px;
    }
    .button-gray,
    .button-black{
        width: 230px;
    }
}
.sub-ttl-column{
	margin-bottom: 20px;
}
@media screen and (min-width: 960px) {
    .pc-column{
        display: flex;
        justify-content: space-between;
    }
    .pc-flex-column{
        width: calc(475 / 1200 * 100%);
    }
    .column-img{
         width: 100%;
    }
    .sub-ttl-en-column{
        text-align: center;
        margin-bottom: 3px;
    }
    .sub-ttl-column{
        text-align: center;
        margin-bottom: 15px;
}
}
.fixed-img{
    background: url("../images/fixed.jpg") no-repeat center/cover;
    height: 150px;
    margin-bottom: 50px;
}
@media screen and (min-width: 960px) {
 .fixed-img{
     background: url("../images/fixed.jpg");
     background-size: cover;
     height: 400px;
}
}
/*access*/
.access-sec{
    padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
    .access-sec{
        padding: 100px;
    }
}
.google-map{
    margin: 50px 0;
    text-align: center;
}
.address-txt,
.time-txt{
    padding-bottom: 40px;
}
.address-txt p,
.time-txt p{
    padding-left: 10px;
    border-left: solid 1px #b4b4b4;
}
.address-txt p:first-child,
.time-txt p:first-child{
    padding-bottom: 10px;
}
.address-time{
        width: 70%;
}
@media screen and (min-width: 960px) {
    .address-time{
        width: 70%;
        display: flex;
        justify-content: flex-start;
        gap: 190px;
    }
    .address-txt{
        width: calc(475 / 1200 * 100%);
    }
    
    .address-txt p,
    .time-txt p{
        padding-left: 60px;
}  
}
/*contact*/
.contact-sec{
    background-color: #444444;
    color: #d3d3d3;
    padding-top: 50px;
}
@media screen and (min-width: 960px) {
    .contact-sec{
        padding-top: 100px;
    }
}
.contact-txt{
    padding-top: 40px;
    padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
    .contact-txt{
        width: calc(474 / 1200 * 100%);
        margin: 0 auto;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .contact-btn{
        margin-bottom: 80px;
    }
}
/*slider*/
.slide-images{
    padding-top: 50px;
    padding-bottom: 0px;
}
.slide-img{
   display: flex;
    gap: 10px;
    justify-content: center;
    padding-bottom: 0;
    width: 100%;
}
@media screen and (min-width: 960px) {
  .slide-img {
    width: 100%;
  }
}
.slide-img li {
  width: 24%;
  aspect-ratio: 91 / 91;
  padding: 0 3px;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .slide-img li {
    width: 20%;
    aspect-ratio: 300 / 300;
  }
}
/*footer*/
.footer{
    padding: 30px 30px 5px 30px;
}
@media screen and (min-width: 960px) {
 .footer{
    padding-top: 100px;
     padding-bottom: 10px;
     padding-left: 180px;
     padding-right: 180px;
}
}
.footer-logo a > img{
    width: 61px;
    height: 61px;
    margin: 0 auto;
    pdding-bottom: 30px;
    
} 
@media screen and (min-width: 960px) {
    .footer-logo a > img{
        width: 115px;
    height: 111px;
    }
    .footer-logo{
        margin: 0 auto;
    }
}
.footer-nav-items li{
   display: grid;
    grid-template-columns: auto 40px auto;
    grid-template-areas:
        "no li tx";
    justify-self: start;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    
}
@media screen and (min-width: 960px) {
    .footer-nav-items li{
        margin-bottom: 20px;
    }
}
.footer-no{
    grid-area: no;
}
.footer-line{
    height:1px;
    background: #b4b4b4;
    display: block;
    grid-area: li;
    width: 100%;
}
.footer-txt{
    grid-area: tx;
}
.insta{
    display: flex;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 50px;
}
.copy{
    font-size: 10px;
}
@media screen and (min-width: 960px) {
 .copy p{
    text-align: center;;
}
}
img.clip-img.bottom{
  display:block;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: -webkit-clip-path .9s ease, clip-path .9s ease;
}
img.clip-img.bottom.reveal{
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}