/* フォント */
html{
  font-size: 62.5%;
}

/* リセット追加分 */
ul{
  margin: 0;
  padding: 0;
}
li{
  list-style: none;
}
a{
  text-decoration: none;
  word-break: break-all;
}

/* 共通 */
body{
  margin-top: 8rem;
  margin-left: 0;
  margin-right: 0;
  font-family: fot-tsukubrdgothic-std, sans-serif; /* フォントについて NotoSansJPかM PLUS Rounded 1c */
  font-weight: 400;
  background: #FFFDF8;
  color: #865D4D;
}
html{
  scroll-behavior: smooth;
}

/* 段落ち防止 */
.sp_br{
  display: none;
}

/* フェードイン */
.fadein{
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease; /* ふわっと速度 */
}
.fadein.show{
  opacity: 1;
  transform: translateY(0);
}

/* 画像用のスケールフェードイン */
.fadein-scale{
  opacity: 0;
  transform: scale(0.9) translateZ(0);
  transition: transform 0.8s ease, opacity 0.8s ease;
  will-change: transform, opacity;
}
.fadein-scale.show{
  opacity: 1;
  transform: scale(1) translateZ(0);
}

/* ヘッダー */
header{
  position: fixed;
  top: 0;
  left: 0;
  background: #F8C6BD;
  width: 100%;
  height: 8rem;
  border-bottom: 1px solid #865D4D;
  z-index: 100;
}
.header-inner{
  max-width: 111rem; /* 美咲さんに伝えるPt:1108px */
  margin: 0 auto;
  height: inherit;
}
.sns-wrapper{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3rem;
  height: inherit;
}
.sns-icon a img{
  height: 4rem;
}

/* イントロダクション */
.introduction{
  padding: 5.2rem 0;
}
.introduction-inner{
  max-width: 128.6rem;
  margin: 0 auto;
}
.introduction-title{
  font-size: 8rem;
  font-weight: bold;
  color: #F8C6BD;
}
.introduction-title span{
  text-transform: uppercase;
  font-size: 11rem;
  font-family: "gothic-a1", sans-serif;
  font-weight: 900;
}
.introduction-subtitle{
  font-size: 4.6rem;
  font-weight: bold;
}
.introduction-text-wrapper{
  width: 87.4%;
  margin: 11.5rem auto 0;
  position: relative;
}
.introduction-text-wrapper::before{
  content: '';
  position: absolute;
  background: url(/image/bird.png) no-repeat center / cover;
  width: 24.4rem;
  height: 12.9rem;
  left: -11.1rem;
  top: -6.1rem;
  z-index: 2;
}
.introduction-text-wrapper p{
  text-align: center;
  background: #fff;
  padding: 2.9rem 3rem 4.2rem;
  font-size: 2.4rem;
  position: relative;
}
.introduction-text-wrapper p::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #865D4D;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(1.69deg);
}
.introduction-text-wrapper p::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #865D4D;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-1.54deg);
}

/* 店舗検索 */
.map{
  padding: 16.9rem 0;
}
.map-inner{
  max-width: 114rem;
  margin: 0 auto;
}
.map h2{
  font-size: 4.8rem;
  font-weight: bold;
}
.map h2 span{
  font-size: 3.6rem;
}
.map-wrapper{
  display: flex;
  gap: 3.2rem;
  padding-left: 1rem;
}
.map-img{
  width: 54.1rem;
  height: 57rem;
}
.map-category{
  width: calc(100% - 57.3rem);
}
.map-category ul{
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 3.3rem;
}
.map-category ul li{
  width: calc((100% - 3.3rem) / 2);
}
.map-category ul li a{
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 25rem;
  padding: 2.3rem 0;
  text-align: center;
  border-radius: 1rem;
  /* transition: .3s; */
  transition-duration: .4s;
}
.map-category ul li a:hover{
  /* opacity: 0.7; */
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
}

/* 代表紹介 */
.greeting{
  padding: 5.2rem 0 10.5rem;
}
.greeting-inner{
  max-width: 97rem;
  margin: 0 auto;
}
.greeting h2{
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
}
.greeting-wrapper{
  margin-top: 7rem;
  display: flex;
  gap: 11.4rem;
}
.greeting-img{
  width: 33.5rem;
  height: 43.4rem;
}
.greeting-img img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.greeting-textBox{
  width: calc(100% - 44.9rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.textBox-title{
  font-size: 3.7rem;
  font-weight: bold;
}
.textBox-text{
  font-size: 2.4rem;
  font-weight: bold;
}

/* ページトップ */
.page-top{
  position: fixed;
  right: 5.3rem;
  bottom: 1rem;
  width: 10.1rem;
  height: 8rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
.page-top.active{
  opacity: 1;
  pointer-events: auto;
}
.page-top:hover{
  transform: scale(1.1);
}
.page-top p{
  font-size: 1.5rem;
  color: #000;
  text-align: center;
  font-family: "Shadows Into Light", cursive;
}

footer{
  padding: 2rem 0;
}
/* 特商法・プラポリ */
footer ul{
  display: flex;
  justify-content: center;
  gap: 3rem;
}
footer ul li a{
  font-size: 1.6rem;
  transition: .3s;
}
footer ul li a:hover{
  opacity: 0.7;
}

/* レスポンシブ */
/* 画面幅1300px以下でリキッド */
@media screen and (max-width: 1300px){
  html{
    font-size: calc(10 / 1300 * 100vw);
  }
}
@media screen and (max-width: 768px){
  .introduction{
    padding: 5.2rem 2rem;
  }
  .map{
    padding: 16.9rem 2rem;
  }
  .greeting{
    padding: 5.2rem 2rem 10.5rem;
  }
}

/* 修正20251128追記 */
/* ヘッダーの中にロゴ */
.header-inner{
  display: flex;
  justify-content: space-between;
}
.logo-img{
  height: inherit;
}
.logo-img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* イントロダクションデザイン変更 */
.introduction-text-wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 3rem; */
}
.introduction-text-wrapper p{
  width: 70%;
}
.introduction-img{
  width: 50%;
}
.introduction-img-sp{
  display: none;
}
/* 代表紹介デザイン変更 */
/* .greeting-textBox-sp{
  display: none;
} */
.textBox-title span{
  font-size: 2.6rem;
}
/* 余白修正 */
.introduction{
  padding: 3rem 0;
}
.map{
  padding: 8rem 0;
}
@media screen and (max-width: 768px){
	/* SP時ヘッダー高さ */
	header{
		height: 24rem;
	}
	.sns-icon a img{
		height: 12rem;
	}
	body{
		margin-top: 24rem;
	}
  /* ヘッダーにロゴ設置 */
  .logo-img{
    width: 45%;
  }
	/* フッター文字サイズ */
	footer ul li a{
		font-size: 3.6rem;
	}
	.copyright{
		font-size: 1.6rem;
	}
	/* ページトップ */
	.page-top{
		bottom: 15rem;
    right: 0.3rem;
    width: 35rem;
	}
  /* イントロダクションデザイン変更 */
  .introduction{
    padding: 10rem 0 0;
  }
  .introduction-text-wrapper{
    flex-direction: column-reverse;
    margin: 0 auto;
    gap: 10rem;
  }
  .introduction-text-wrapper::before{
    content: none;
  }
  .introduction-text-wrapper p{
    width: 100%;
    font-size: 5rem;
    background: transparent;
  }
  .introduction-text-wrapper p::before{
    top: 0;
    left: 0;
    transform: unset;
    content: none;
  }
  .introduction-text-wrapper p::after{
    content: none;
  }
  .introduction-img{
    display: none;
  }
  .introduction-img-sp{
    display: block;
  }
  .sp-none{
    display: none;
  }
  /* 余白修正 */
  .map{
    padding: 10rem 0;
  }
  /* 段落ち */
  .sp_br{
    display: block;
  }
  /* テキストの大きさ修正 */
  .map h2,
  .greeting h2{
    font-size: 8rem;
  }
  .map h2 span{
    font-size: 5rem;
  }
  .textBox-title{
    font-size: 5rem;
  }
  /* 代表紹介デザイン変更 */
  .greeting{
    padding: 5.2rem 5rem 10.5rem;
  }
  .greeting-inner{
    max-width: 100%;
  }
  .greeting-wrapper{
    gap: 5rem;
    align-items: center;
    justify-content: space-between;
  }
  .greeting-img{
    width: 30%;
    min-height: 167px;
    min-height: 193px;
  }
  .greeting-img img{
    object-position: center;
  }
  .textBox-title{
    font-size: 5rem;
  }
  .textBox-title span{
    font-size: 3.5rem;
  }
  .textBox-text{
    font-size: 3rem;
    font-weight: 400;
    margin-top: 1rem;
  }
  /* .greeting-textBox-sp{
    display: block;
    width: 90%;
    margin: 5rem auto 0;
  }
  .textBox-text-sp{
    font-size: 4em;
    font-weight: bold;
  } */
}
