@charset "UTF-8";

/* font-family: "EB Garamond", serif; */
/* font-family: "Noto Sans JP", sans-serif; */
/* font-family: "Mochiy Pop P One", sans-serif; */
/* font-family: "Klee One", cursive; */

/* ==============

共通部分の設定
（初期設定）

================ */
html{
  font-size: 62.5%;
  /* 16*62.5%=10px 1rem=10px */
}
body{
  font-size: 1.6rem;
  font-family: "Mochiy Pop P One", sans-serif;
  color: #3f3f3f;
  line-height: 1;
  letter-spacing: 0.05em;
}
a{
  color: #fff;
  text-decoration: none;
  transition: .3s ease-in-out;
}
a:hover{
  opacity: .8;
  /* 不透明度80% */
}
img{
  /* レスポンシブサイトを作る際に必須 */
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  /* たまに現れる画像下の余白を無くす */
}
ul{
  list-style: none;
}
/* 共通のスタイル */
.inner{
  max-width: 1000px;
  margin: 0 auto;
}
.flexB{
  display: flex;
  justify-content: space-between;
}
/* セクションのタイトル */
.section-ttl{
  font-size: 5.6rem;
  font-family: "EB Garamond", serif;
  text-align: center;
  font-weight: normal;
  text-transform: uppercase;
  /* テキストを大文字に表記する */
  margin-bottom: 4rem;
}
.section-ttl span{
  display: block;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
.section-ttl span::before{
  /* 擬似要素でspanの上に線を引く */
  content: "";
  /* 擬似要素を入れる際にマストの項目！文字などを入れるプロパティ。今回は線を引くので値は空なので""としておく */
  display: block;
  /* 幅や高さを指定する際は必要 */
  width: 120px;
  /* 線の幅を設定 */
  border-bottom: 1px solid #3f3f3f;
  /* borderで1pxの線を引く */
  margin: 0.6rem auto;
  /* 英字と日本語との距離、そして中央配置 */
}

@media(max-width:768px){
  body{
    font-size: 1.4rem;
  }
  .section-ttl{
    font-size: 3.2rem;
  }
  .section-ttl span{
    font-size: 1.2rem;
  }
  .section-ttl span::before{
    width: 80px;
    margin: .5rem auto .7rem;
  }
  .inner{
    padding: 0 1.4rem;
  }
  .flexB{
    flex-direction: column;
  }
}
/* max-width:768px */

/* ==============

header

================ */
header{
  background: #000;
  font-family: "EB Garamond", serif;
  padding: 3.6rem 3.73% 1.8rem;
}
.logo{
  font-weight: normal;
  font-size: 3.6rem;
}
header nav ul{
  display: flex;
  gap: 3rem;
  font-size: 1.8rem;
  align-items: flex-end;
}

@media(max-width:768px){
  header{
    padding: 1.5rem 0 1.3rem;
  }
  .logo{
    font-size: 3.2rem;
  }
  nav{
    display: none;
    /* ハンバーガーメニューを作るまで非表示にしておく */
  }

}
/* max-width:768px */

/* ==============

mv

================ */
.mv{
  position: relative;
}
.mv__ttl{
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  /* x y の順番 */
  /* topとleftに50%をかけると微妙にズレた位置に配置されるため、要素の半分ずつを戻してあげると全体が上下左右中央に配置される */
  color: #fff;
  text-shadow: 2px 2px 5px rgba(102, 102, 102, 0.8);
  font-size: 5.6rem;
  font-family: "EB Garamond", serif;
  font-weight: normal;
}
.mv__ttl span{
  display: block;
  font-size: 2.8rem;
  margin-top: 1rem;
  text-align: center;
}

@media(max-width:768px){
.mv__ttl{
  font-size: 4.8rem;
  width: 100%;
  text-align: center;
}
.mv__ttl span{
  font-size: 2.4rem;
}
}
/* max-width:768px */

/* ==============

concept

================ */
.concept{
  padding: 7rem 3.73% 10rem;
}
.concept p{
  line-height: 2;
}


@media(max-width:768px){
  .concept{
    padding: 5.3rem 0 5rem;
  }
}
/* max-width:768px */

/* ==============

items

================ */
.items{
  padding: 10rem 3.73%;
  background: #f7f5f3;
}
.items ul{
  gap: 5%;
  /* 5rem / 1000px * 100 = 5% %の計算 */
}
.items li{
  width: calc((100% - 10%) / 3);
  /* ul全体の幅（この場合1000px）から余白分の50pxが2つあるので100pxを引いたものを3等分するという計算
  結果、伸縮しても同じ等分を保ってくれるようになる */
}
.items li h3{
  font-size: 1.6rem;
  font-weight: normal;
  border-bottom: 1px solid #bfbfbf;
  margin: 2rem 0 1rem;
  padding-bottom: 1rem;
}
.items li p{
  line-height: 1.625;
}

@media(max-width:768px){
  .items{
    padding: 5rem 0;
  }
  .items ul{
    gap: 3rem;
    max-width: 400px;
  }
  .items li{
    width: 100%;
  }
  .items li h3{
    font-size: 1.4rem;
    margin: 1rem 0 0.7rem;
  }
  .items li p{
    line-height: 1.642;
  }
}
/* max-width:768px */

/* ==============

shop info

================ */
.shopinfo{
  padding-bottom: 10rem;
}
.shopinfo__ttl{
  background: url(../images/bg_shopinfo.jpg) no-repeat center/cover;
  padding-top: 26.5%;
  /* 高さ / 幅 * 100 = 比率
  heightでは%は効かないのでpadding-topもしくはpadding-bottomで高さをとる */
  position: relative;
  margin-bottom: 4rem;
}
.shopinfo__ttl .section-ttl{
  /* .shopinfoエリアの中の.section-ttlだけに適用する場合は.section-ttlだけでなく、.shopinfoもしくは.shopinfo__ttlの中の.section-ttlと書く */
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: #fff;
}
.shopinfo__ttl .section-ttl span::before{
  /* ::beforeにつけたborderの色だけを変える場合も同じく頭に.shopinfoもしくは.shopinfo__ttlをつけること */
  border-color: #fff;
  /* 今回はboderの色だけ変更なのでborder-colorとした。 */
}
.shopinfo__detail{
  padding: 0 3.73%;
}
.map{
  width: 50%;
}
.map iframe{
  width: 100%;
}
.shopinfo table{
  width: 45%;
}
.shopinfo table th{
  width: 30.2%;
  text-align: left;
  font-weight: normal;
}
.shopinfo table tr{
  vertical-align: top;
}
.shopinfo .flexB{
  gap: 5%;
}
@media(max-width:768px){
.shopinfo{
  padding-bottom: 5rem;
}
.shopinfo__ttl{
  background: url(../images/bg_shopinfo_sp.jpg) no-repeat center/cover;
  padding-top: 43%;
  margin-bottom: 2rem;
}
.shopinfo .flexB{
  gap: 4rem;
}
.map{
  width: 100%;
  position: relative;
  padding-top: 64.84%;
}
.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.shopinfo table{
  width: 100%;
}
.shopinfo table tr{
  display: flex;
  flex-direction: column;
}
.shopinfo table th,.shopinfo table td{
  margin-bottom: 0.7rem;
}
.shopinfo table td{
  line-height: 1.43;
}
.shopinfo table br{
  display: none;
}
}
/* max-width:768px */

/* ==============

contact

================ */
.contact{
  background: #000;
  color: #fff;
  padding: 10rem 0;
  text-align: center;
}
.contact .section-ttl span::before{
  border-color: #fff;
}
.contact .contact_txt{
  font-size: 1.4rem;
  line-height: 1.7;
}
.contact .contact_btn{
  border: 1px solid #fff;
  display: block;
  /* aタグはインライン要素なので、そのままだとwidthは適用されない。幅を指定したいときはブロック要素（もしくはinline-block）にする */
  width: 400px;
  /* height: 50px;
  line-height: 50px; 
  1行テキストのボタンのみ適用可能*/
  padding: 1.6rem 0;
  /* 一般的な適用の仕方 */
  margin: 3rem auto;
}
.contact .contact_tel{
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1.7rem;
}
.contact .contact_tel a{
  font-family: "EB Garamond", serif;
  font-weight: bold;
  font-size: 3rem;
}
.contact .contact_hour{
  font-size: 1.4rem;
  letter-spacing: 0;
}

@media(max-width:768px){
  .contact{
    padding: 5rem 1.4rem 8rem;
  }
  .contact .contact_txt{
    line-height: 1.642;
    text-align: left;
    display: flex;
    justify-content: center;
  }
  .contact .contact_btn{
    width: 300px;
    padding: 1.2rem 0;
    margin-top: 4rem;
  }
  .contact .contact_tel{
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
  .contact .contact_tel a{
    font-size: 2.4rem;
  }
}
/* max-width:768px */

/* ==============

footer

================ */
footer{
  background: #000;
  color: #fff;
  padding: 2.1rem 3.73%;
  font-size: 1.2rem;
}
@media(max-width:768px){
  footer{
    padding: 2rem 0;
    text-align: center;
    font-size: 1rem;
  }
}
/* max-width:768px */


/* ==============

Contact Page

================ */
.contact-page{
  padding: 10rem 0;
}
.contact-page__read-txt{
  line-height: 2;
  margin-bottom: 3.2rem;
}
.contact-page__tel-box{
  border: 1px solid #000;
  max-width: 400px;
  margin: 0 auto 4.5rem;
  padding: 2rem 0;
  text-align: center;
}
.tel-box__ttl{
  font-size: 1.6rem;
  font-weight: normal;
  margin-bottom: 1.1rem;
}
.tel-box__tel{
  text-transform: uppercase;
  font-size: 2.4rem;
  margin-bottom: 0.7rem;
}
.tel-box__tel a{
  color: #3f3f3f;
  font-size: 3rem;
  font-family: "EB Garamond", serif;
  font-weight: bold;
}
.tel-box__hour{
  font-size: 1.4rem;
}
.required{
  background: #fd5460;
  color: #fff;
  font-size: 1rem;
  display: inline-block;
  padding: 0.3rem 0.4rem;
}
.form__txt{
  margin-bottom: 2rem;
}
.form__txt .required{
  margin-right: 0.5rem;
}
.form__list{
  margin-bottom: 6rem;
}
.form__list dt{
  background: #e1e1e1;
  padding: 1rem 0 0.9rem 1.5rem;
}
.form__list dt .required{
  margin-left: 1rem;
  position: relative;
  top: -1px;
}
.form__list dd{
  padding: 1.6rem;
}

/* form parts reset */
input,textarea{
  appearance: none;
  outline: none;
  /* どちらもフォーム特有のスタイルを打ち消すためのCSS */
}
input::placeholder,textarea::placeholder{
  color: #e1e1e1;
  /* 入力見本の文字色を設定 */
}
.textbox,.textarea{
  border: 1px solid #e1e1e1;
  padding: 1.3rem 2rem 1.5rem;
  width: 100%;
  border-radius: 5px;
}
.radio{
  width: 16px;
  height: 16px;
  border: 1px solid #e1e1e1;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-left: 7rem;
}
.radio:first-of-type{
  margin-left: 0;
}
/* ラジオボタンを選択したとき */
.radio:checked{
  background: #e1e1e1;
  box-shadow: 0 0 0 1px #fff,0 0 0 2px #e1e1e1;
  /* 
  今回使ったbox-shadowは影としての使用ではなく、線を作るために使用した。
  0 0 0 は左からXの距離、Yの距離、ぼかしになるが全て０にし、最後の影の範囲のみ適用。左側から内側→外側に線ができる仕組み。
  */
}
.form__list dd:nth-of-type(6){
  padding: 3.3rem 1.6rem 2.7rem;
}
.form__list dd:last-of-type{
  padding-bottom: 0;
}
.textarea{
  height: 160px;
  min-height: 160px;
}
.submit-btn{
  background: #000;
  color: #fff;
  display: block;
  width: 360px;
  margin: 0 auto;
  /* height: 60px; 
  buttonタグに関してだけ、heightを入れることで高さ&テキストが上下中央に配置される*/
  padding: 2.2rem 0;
}
.sp_only{
  display: none;
}

@media(max-width:768px){
  .contact-page{
    padding: 5rem 0 6rem;
  }
  .contact-page .inner{
    padding: 0 1.2rem;
  }
  .contact-page__read-txt{
    margin-bottom: 2rem;
  }
  .contact-page__tel-box{
    padding: 1.8rem 0 2.4rem;
    margin-bottom: 3rem;
  }
  .tel-box__ttl{
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
  .tel-box__tel{
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
  }
  .tel-box__tel a{
    font-size: 2.4rem;
  }
  .tel-box__hour{
    font-size: 1.2rem;
  }
  .form__txt{
    margin-bottom: 2.8rem;
  }
  .form__txt .required{
    margin-right: 1.2rem;
  }
  .form__list{
    margin-bottom: 4rem;
  }
  .form__list dt{
    padding: .9rem 0 .9rem 1.2rem;
  }
  .form__list dd{
    padding: 2rem 0 2.8rem;
  }
  .textbox,.textarea{
    padding: 1rem 1.2rem .8rem;
  }
  .form__list dd:nth-of-type(6){
    padding: 1.9rem 0 2.7rem;
  }
  .radio{
    margin-right: 0.4rem;
    margin-left: 5.2rem;
    margin-bottom: 1.8rem;
    vertical-align: top;
  }
  .sp_only{
    display: block;
  }
  .radio:nth-of-type(3){
    margin-left: 0;
  }
  .radio:nth-of-type(n+3){
    margin-bottom: 0;
  }
  .textarea{
    height: 150px;
    min-height: 150px;
  }
  .submit-btn{
    width: 100%;
    padding: 1.8rem 0;
  }
}
/* max-width:768px */

/* =================================================
   プロフィールセクションの強制上書き設定
================================================= */

/* 1. 横並びのバランスを 50:50 に固定 */
#concept .profile-flex-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 4% !important;
  flex-direction: row; /* PCでは横並び */
}

/* 2. 写真側の設定（幅を制限） */
#concept .profile-left {
  width: 48% !important;
}

#concept .profile-left img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* 3. 右側テキスト（ボックス）の設定 */
#concept .profile-right {
  width: 48% !important;
}

/* 四角い枠の設定 */
.profile-box {
  border: 1px solid #3f3f3f;
  margin-bottom: 1.5rem;
  display: flex;
  background: #fff; /* 背景を白にして見やすく */
}

.box-label {
  background: #3f3f3f;
  color: #fff;
  padding: 1.2rem;
  width: 10rem;
  text-align: center;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-text {
  padding: 1.2rem 1.5rem;
  font-size: 1.6rem;
  flex: 1;
  margin: 0; /* 余計なマージンを消す */
  line-height: 1.5;
}

/* 4. スマホサイズ（768px以下）の設定 */
@media screen and (max-width: 768px) {
  #concept .profile-flex-container {
    flex-direction: column !important; /* 縦に並べる */
  }
  #concept .profile-left, 
  #concept .profile-right {
    width: 100% !important;
  }
  #concept .profile-left {
    margin-bottom: 2rem;
  }
}