@charset "UTF-8";
/* font-family: "EB Garamond", serif; */
/* font-family: "Noto Sans JP", sans-serif; */

/* CSS Variables */
/* 変数を扱う際は必ず2つのハイフンから始めないといけない。そして、変数を呼び出す際もこのハイフンを含めた変数名を使用すること */
:root{
  /* font */
  --font-en: "EB Garamond", serif;
  --font-ja: "Noto Sans JP", sans-serif;
  /* 数値 */
  --sec-pad: 5rem .875rem;
}
@media(min-width:768px){
  :root{
    --sec-pad: 6.25rem 4%;
  }
}

html{
  font-size: 100%;
}
body{
  font-family: var(--font-ja);
  font-size: .875rem;
  line-height: 1;
  color: #3f3f3f;
  background-color: #fff;
}
ul{
  list-style: none;
}
img{
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a{
  text-decoration: none;
}
/* .font-en{
  font-family: "EB Garamond", serif;
}
.font-ja{
  font-family: "Noto Sans JP", sans-serif;
} */
 .inner{
  max-width: 1000px;
  margin: 0 auto;
 }

 @media(min-width:768px){
  body{
    font-size: 1rem;
  }
 }
/* =========================
header
========================= */
.header{
  background-color: #000;
  padding: 9px 14px;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}
.header .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header a{
  color: #fff;
}
.header__logo{
  font-family: var(--font-en);
  font-size: 2rem;
}
.header__nav{
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: calc(100vh - 59px);
  position: absolute;
  left: 0;
  top: -1059px;
  z-index: 1;
  padding: 3.75rem 0;
  transition: .5s ease-in-out;
}
/* ハンバーガーメニューをクリックした時のナビゲーション */
.open .header__nav{
  transform: translateY(1118px);
}
.header__nav-list{
  text-align: center;
}
.header__nav-list a{
  display: block;
  padding: 1.25rem 0;
}
.header__hamburger{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 5px;
}
.header__hamburger span{
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  transition: .35s ease-in-out;
  position: relative;
}
/* ハンバーガーメニューをクリックした時 */
.open .header__hamburger span:nth-child(1){
  transform: rotate(45deg);
  position: relative;
  top: 10px;
}
.open .header__hamburger span:nth-child(2){
  transform: translateX(50%);
  width: 0;
}
.open .header__hamburger span:nth-child(3){
  transform: rotate(-45deg);
  position: relative;
  top: -10px;
}

@media(min-width:768px){
  .header{
    padding: 27px 4%;
  }
  .header__logo{
    font-size: 2.25rem;
  }
  .header__nav{
    background: transparent;
    height: auto;
    position: static;
    padding: 0;
    width: auto;
  }
  .header__nav-list{
    display: flex;
    gap: 2.1875rem;
    align-items: flex-end;
    font-size: 1.125rem;
    font-family: var(--font-en);
  }
  .header__nav-list a{
    padding: 0;
  }
  .header__hamburger{
    display: none;
  }
}

/* main{
  padding-top: 60px;
}
@media(min-width:768px){
  main{
    padding-top: 90px;
  }
} */
/* =========================
mv
========================= */
.mv{
  position: relative;
}
.mv__content{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  text-align: center;
}
.mv__title{
  color: #fff;
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: normal;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}
.mv__title span{
  font-size: 1.5rem;
  display: block;
  margin-top: .375rem;
}

@media(min-width:768px){
  .mv__title{
    font-size: 3.5rem;
  }
  .mv__title span{
    font-size: 1.75rem;
    margin-top: 0;
  }
}
/* =========================
section common
========================= */
.section__title{
  font-family: var(--font-en);
  font-size: 2.625rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.5rem;
}
.section__title span{
  font-size: .875rem;
  font-family: var(--font-ja);
  letter-spacing: 0;
  display: block;
}
.section__title span::before{
  /* .section__title spanの直前に擬似要素を配置 */
  content: "";
  /* テキストや画像などのコンテンツを挿入するためのプロパティ。擬似要素を使う際には必須 */
  display: block;
  /* 幅・高さを設定するためにブロック要素にする */
  width: 90px;
  height: 1px;
  /* 幅・高さを設定し、線の枠を作る */
  background-color: #000;
  /* 枠の背景色に黒色を設定 */
  margin: .5rem auto;
  /* 上下の余白とともにautoで左右中央に配置 */
}
.section__title--white{
  color: #fff;
}
.section__title--white span::before{
  background-color: #fff;
}

@media(min-width:768px){
  .section__title{
    font-size: 3.5rem;
    margin-bottom: 3.75rem;
  }
  .section__title span{
    font-size: 1rem;
  }
  .section__title span::before{
    width: 120px;
    margin: .625rem auto;
  }
}

/* =========================
section concept
========================= */
.concept{
  padding: var(--sec-pad);
}
.concept__text p{
  line-height: 2;
}
@media (min-width:768px) {
  
}

/* =========================
section items
========================= */
.items{
  padding: var(--sec-pad);
  background-color: #f7f5f3;
}
.items__list{
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.item-card{
  max-width: 600px;
  margin: auto;
}
.item-card a{
  color: inherit;
}
.item-card__img-wrap{
  margin-bottom: 1.25rem;
  overflow: hidden;
  /* ホバーしたときに中の画像が拡大されるが、枠からはみ出た部分は非表示にし枠の中だけで拡大させる */
}
.item-card__img-wrap img{
  transition: .6s ease;
  /* 動きを0.6秒かけてゆっくり変化させる */
}
.item-card__img-wrap:hover img{
  transform: scale(1.3);
  /* 画像を拡大させる（）の中に倍率を入れる */
}
.item-card__name{
  font-size: 1rem;
  margin-bottom: .625rem;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: .5rem;
}
.item-card__desc{
  line-height: 1.6;
}

@media(min-width:768px){
  .items__list{
    flex-direction: row;
    gap: 5%;
  }
  .item-card__name{
    font-size: 1.125rem;
  }
}

/* =========================
section shopinfo
========================= */
.shopinfo__ttl-bg{
  background: url(../images/section__ttl_bg_sp.webp) no-repeat center/cover;
  padding-top: 42.6%;
  position: relative;
  margin-bottom: 2.5rem;
}
.shopinfo__contents{
  padding: 0 .875rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.shopinfo__ttl-bg .section__title{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  margin-bottom: 0;
}
.shopinfo__map{
  position: relative;
  width: 100%;
  padding-top: 121%;
}
.shopinfo__map iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.shopinfo__table{
  width: 100%;
}
.shopinfo__table tr{
  display: flex;
  flex-direction: column;
  padding: .1875rem 0;
}
.shopinfo__table th{
  text-align: left;
  font-weight: normal;
  padding-bottom: .1875rem;
}
.shopinfo__table td{
  line-height: 1.6;
}

@media(min-width:768px){
  .shopinfo__ttl-bg{
    background: url(../images/section__ttl_bg.webp) no-repeat center/cover;
    padding-top: 29.583%;
    margin-bottom: 3.75rem;
  }
  .shopinfo__contents-wrap{
    padding: 0 4%;
  }
  .shopinfo__contents{
    padding: 0 0 6.25rem;
    flex-direction: row;
    gap: 5%;
  }
  .shopinfo__map{
    /* padding-top: 84%;
    今回の場合、親要素の1000pxを参照してしまい思った高さにならない */
    padding-top: 0;
    aspect-ratio: 25/21;
    max-width: 500px;
    width: 50%;
  }
  .shopinfo__details{
    width: 45%;
  }
  .shopinfo__table tr{
    flex-direction: row;
    padding: .375rem 0;
  }
  .shopinfo__table th{
    max-width: 136px;
    width: 100%;
    padding-bottom: 0;
    line-height: 1.6;
    flex: 1;
  }
  .shopinfo__table td{
    flex: 2;
  }
}

/* =========================
section contact
========================= */
.contact{
  background-color: #000;
  color: #fff;
  padding: var(--sec-pad);
}
.contact__text{
  line-height: 1.6;
  margin-bottom: 1.875rem;
  display: flex;
  justify-content: center;
}
.contact__btn{
  display: block;
  color: #fff;
  max-width: 300px;
  border: 1px solid #fff;
  padding: 1rem 0;
  text-align: center;
  margin: 0 auto 1.875rem;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
}
.contact__btn:hover{
  background-color: #fff;
  color: #000;
}
.contact__tel{
  font-family: var(--font-en);
  margin-bottom: .625rem;
  display: flex;
  gap: .375rem;
  justify-content: center;
  align-items: center;
}
.contact__tel-label{
  font-size: 1rem;
  text-transform: uppercase;
}
.contact__tel a{
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
}
.contact__hours{
  text-align: center;
}

@media(min-width:768px){
  .contact__btn{
    max-width: 400px;
  }
  .contact__tel{
    gap: .4375rem;
  }
  .contact__tel-label{
    font-size: 1.125rem;
  }
  .contact__tel a{
    font-size: 2rem;
  }
}

/* =========================
footer
========================= */
.footer{
  background-color: #000;
  color: #fff;
  padding: 1.25rem .875rem;
}
.footer__copy{
  font-family: var(--font-en);
}
.footer__copy small{
  font-size: .75rem;
}
@media(min-width:768px){
  .footer{
    padding: 1.25rem 4%;
  }
}

/* =========================
page contact
========================= */
.page-contact{
  padding: var(--sec-pad);
}
.page-contact__txt{
  line-height: 1.6;
  margin-bottom: 1.875rem;
}
.page-contact__tel-box{
  border: 1px solid #000;
  padding: 1.25rem 0;
  text-align: center;
  margin-bottom: 2.5rem;
}
.tel-box__ttl{
  font-size: 1rem;
  margin-bottom: 1.0625rem;
}
.tel-box__tel{
  font-family: var(--font-en);
  font-size: 1.5rem;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .625rem;
  margin-bottom: .375rem;
}
.tel-box__tel a{
  color: #3f3f3f;
  font-size: 2rem;
}
.form__required{
  background: #fd5460;
  color: #fff;
  font-size: .625rem;
  padding: .1875rem .3125rem;
  display: inline-block;
}
.form__txt{
  display: flex;
  gap: .375rem;
  margin-bottom: 1.875rem;
}
.form__contents{
  margin-bottom: 2.5rem;
}
.form__contents-ttl{
  background: #e1e1e1;
  padding: .625rem 1rem .75rem;
}
.form__contents-ttl .form__required{
  margin-left: .5625rem;
}
.form__contents-data{
  padding: .875rem;
}

/* formパーツのリセット */
input, textarea{
  appearance: none;
  outline: none;
  /* どちらもフォーム特有のスタイルを打ち消すためのCSS */
}
input::placeholder, textarea::placeholder{
  color: #e1e1e1;
}
.textbox, .textarea{
  border: 1px solid #e1e1e1;
  padding: .625rem 1rem;
  border-radius: .3125rem;
  width: 100%;
}
.radio{
  width: 16px;
  height: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  vertical-align: top;
  margin: 0 .375rem 1.25rem 3.125rem;
}
.radio:first-of-type, .radio:nth-of-type(3){
  margin-left: 0;
}
.radio:nth-of-type(n+3){
  margin-bottom: 0;
}
.radio:checked{
  background: #e1e1e1;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #e1e1e1;
  /* 
  今回使ったbox-shadowはコンテンツの影としての使用ではなく、線を作るために使用した。
  0 0 0はXの距離、Yの距離、ぼかしに該当するが今回は全て0にし、最後の影の広がりのみ適用。
  左側から内側→外側に線を作るという仕組み。
  */
}
.textarea{
  height: 160px;
}
.form-btn{
  background: #000;
  color: #fff;
  display: block;
  width: 100%;
  padding: 1.4375rem 0;
}

 @media(min-width:768px){
  .page-contact__tel-box{
    max-width: 400px;
    margin: 0 auto 3.75rem;
  }
  .tel-box__hour{
    font-size: .875rem;
  }
  .form__contents{
    margin-bottom: 6.25rem;
  }
  .form__contents-data{
    padding: 1rem;
  }
  .radio-area br{
    display: none;
  }
  .radio{
    margin: 0 .375rem 0 4.375rem;
    vertical-align: middle;
  }
  .radio:nth-of-type(3){
    margin-left: 4.375rem;
  }
  .form-btn{
    max-width: 360px;
    margin: auto;
    padding: 1.375rem 0;
  }
 }

 /* =========================
page Item Details
========================= */
.page-item-details{
  padding: 5rem 0;
}
.item-detail__info{
  padding: 0 .875rem;
  margin-bottom: 2.5rem;
}
.item-detail__name{
  font-size: 1.125rem;
  margin-bottom: .625rem;
}
.item-detail__price{
  font-size: 1rem;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}
.item-detail__desc{
  line-height: 1.6;
  margin-bottom: 2.5rem;
}
.item-detail__size-title{
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: .375rem;
}
.item-detail__size-row{
  display: flex;
  line-height: 1.6;
}
.item-detail__main-img{
  margin-bottom: .625rem;
}
.item-detail__tmb-list{
  display: flex;
}
.item-detail__tmb-item{
  transition: 0.2s ease-in;
}
/* サムネイルをクリックした時にサムネイルが半透明に */
.item-detail__tmb-item.current{
  opacity: 0.3;
}
.other-items{
  padding: 5rem .875rem 0;
}
.other-items__title{
  font-size: 1.625rem;
  font-family: var(--font-en);
  font-weight: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.other-items__title::before,.other-items__title::after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #000;
}
.other-items__list{
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-bottom: 3.75rem;
}
.other-items__list .item-card__img-wrap{
  margin-bottom: 1rem;
}
.other-items__list .item-card__name{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
}
.other-items__btn{
  background: #000;
  color: #fff;
  display: block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 1rem;
}

@media(min-width:768px){
  .page-item-details{
    padding: var(--sec-pad);
  }
  .item-detail__wrap{
    display: flex;
    flex-direction: row-reverse;
    gap: 8%;
    justify-content: space-between;
  }
  .item-detail__gallery{
    width: 60%;
  }
  .item-detail__info{
    width: 32%;
    padding: 0;
    margin: 0;
  }
  .item-detail__name{
    font-size: 1.5rem;
  }
  .item-detail__price{
    font-size: 1.125rem;
    margin-bottom: 1.875rem;
  }
  .item-detail__size-title{
    font-size: 1.125rem;
  }
  .other-items{
    padding: 6.25rem 0 0;
  }
  .other-items__title{
    font-size: 2rem;
  }
  .other-items__title::before, .other-items__title::after{
    width: 100px;
  }
  .other-items__list{
    flex-direction: row;
    justify-content: space-between;
    gap: 5%;
    margin-bottom: 5rem;
  }
  .other-items__list .item-card__name{
    font-size: 1rem;
  }
  .other-items__btn{
    max-width: 360px;
    margin: auto;
  }
}

/* page-top */
.page-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  color: #3f3f3f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  border: 1px solid #000;
  font-size: 1rem;
}


/* =============================================
スクロールするとふわっと下から表示するアニメーション
============================================== */
/* ふわっと下から表示させたいコンテンツにclass="js-fade"をつける */
/* ふわっと表示させる前の初期状態 */
.js-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s; /* 1秒かけて変化 */
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}
.fade-box {
  width: 300px;
  margin: 100px auto;
  padding: 40px;
  background: #333;
  color: #fff;
  text-align: center;
}
