body {
  font-family: 'Noto Sans JP', sans-serif;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p {
  margin: 0;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

ul, ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.5;
}

/* =========================================
   ヘッダー
========================================= */

.l__header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}

/* ハンバーガーボタン */
.c__hamburger {
  position: relative;
  width: 48px;       /* クリック領域を広く */
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: transparent;
  z-index: 200;
}

/* ハンバーガー線 */
.c__hamburger span {
  position: absolute;
  display: block;
  width: 26px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* 各線の配置 */
.c__hamburger span:nth-of-type(1) {
  top: 14px;
}
.c__hamburger span:nth-of-type(2) {
  top: 22px;
}
.c__hamburger span:nth-of-type(3) {
  top: 30px;
}


/* アクティブ時の変化 */
.c__hamburger.is-active span:nth-of-type(1) {
  top: 22px;
  transform: rotate(45deg);
}

.c__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
  transform: scaleX(0);
}

.c__hamburger.is-active span:nth-of-type(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* メニュー（ナビゲーション）の初期状態（非表示） */
.p__header-nav {
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  right: -100%;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background: transparent;
  opacity: 0;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}

/* ハンバーガーアイコン（右上に配置） */
.p__header-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
}

/* メニューが開いた時の状態 */
.p__header-nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: #fff;
}

/* ナビゲーション内リストのスタイル */
.p__nav-list {
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}

.p__nav-item {
  position: relative;
  width: 100%;
}

.p__nav-link {
  color: black;
  display: block;
  padding: 20px;
  width: 100%;
}

/* 768px以上（PCサイズ）でのレイアウト */
@media screen and (min-width: 1025px) {
  .p__header-hamburger {
    width: 95px;
  }
  .p__header-nav.is-active {
    width: 50%;           /* 右半分だけ */
    right: 0;             /* 右端に固定 */
    left: auto;           /* 左側を開ける */
    opacity: 1;
    background-color: #fff;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1); /* 影を付けると自然 */
  }
}

/* =========================================
   コンテンツの内側余白設定
========================================= */
.section_inner {
  padding-top: 50px;
  padding-bottom: 100px;
}

.content_inner {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .section_inner {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .content_inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =========================================
   見出しスタイル
========================================= */
.section_title {
  color: #E2BEBA;
  font-size: 40px;
  margin-bottom: 80px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  background: linear-gradient(transparent 80%, #E2BEBA 10%);
}

/* スマホサイズでの見出し調整 */
@media (max-width: 599px) {
  .section_title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

/* =========================================
   共通スタイル
========================================= */
.main {
  overflow:hidden;
}
.commonTxt {
  margin-bottom: 30px;
}

/* =========================================
   FV
========================================= */
.fv {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 右側 */
.fv__item.item1 {
  flex: 1.2;
  overflow: hidden;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
}

.fv__item.item1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左側 */
.fv__item.item2 {
  flex: 0.8;
  text-align: center;
  background-color: #f6e7e4;
  opacity: 0.8;
  padding: 170px 0;
  border-radius: 50%;
  margin-left: -50px;
  color: #b48b8f;
}

@media screen and (max-width: 1024px) {
  .fv__item.item1 {
     flex: 1;
   }
  .fv__item.item2 {
     flex: 1;
     padding: 100px 0;
     margin-left: -100px;
   }
}

@media screen and (max-width: 800px) {
  
  .fv {
     flex-flow: column;
   }
  .fv__item.item1 {
     width: 100%;
     border-top-right-radius: 0;
     border-bottom-right-radius: 0;
   }
  .fv__item.item2 {
     width: 100%;
     padding: 10px 0;
     border-radius: 0;
     margin-left:0;
     margin-top: -20px;
   }
}

/* =========================================
   CONCEPT セクション
========================================= */
.sec01__box {
  display: flex;
  align-items: center; /* 上下を中央揃え */
  justify-content: space-between;
  position: relative;
  gap: 50px; /* 左右の余白 */
  margin-top: 60px;
}

.sec01__box-item {
  width: 50%;
}

/* 左側（テキスト） */
.sec01__box-item.item1 {
  background-color: #b48b8f; /* 背景色 */
  color: #fff;
  padding: 30px 40px;
  box-shadow: 10px 10px 0 rgba(235, 180, 180, 0.5);
  border-radius: 8px;
  width: fit-content; /* テキスト量に合わせて幅を縮める */
  max-width: 45%; /* 長文対策 */
  position: relative;
  z-index: 2;
}

/* 右側（画像） */
.sec01__box-item.item2 {
  position: relative;
  z-index: 1;
  transform: translateX(-40px); /* 左へずらす（重なり効果） */
}

.sec01__box-item.item2 img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* スマホ対応 */
@media only screen and (max-width: 768px) {
  .sec01__box {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .sec01__box-item {
    width: 100%;
  }

  .sec01__box-item.item1 {
    width: auto;
    max-width: 100%;
    box-shadow: none;
  }

  .sec01__box-item.item2 {
    transform: none; /* スマホでは重なり解除 */
  }
}

/* =========================================
   MENU セクション
========================================= */
.sec02__box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sec02__box-item {
  width: calc((100% - 30px * 2) / 3);
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-flow: column;
  border: solid #c57d86;
}

/* 画像部分 */
.sec02__box-item .img {
  margin-bottom: 10px;
  text-align: center;
}
.sec02__box-item .img img {
  width: 100%;
  height: 200px; /* 画像の高さを固定 */
  object-fit: cover;
}

.sec02__box-item .title {
  flex-grow: 1;
}

/* 価格部分 */
.sec02__box-item .price {
  margin-bottom: 10px;
  text-align: right;
}

/* ボタンスタイル */
.sec02__box-item .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: .9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #c57d86;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}

.sec02__box-item .btn:hover {
  background-color: #b56d76;
}

/* 画面幅に応じてレイアウトを変える */
@media only screen and (max-width: 900px) {
  .sec02__box {
    gap: 20px;
  }
  .sec02__box-item {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 599px) {
  .sec02__box-item {
    width: 100%;
  }
}

/* =========================================
   GALLERY セクション
========================================= */
.gallery img {
  width: 100%;
  height: 500px; /* 画像の高さを固定 */
  object-fit: cover;
}
.choice-btn img {
  width: 100%;
  height: 150px; /* 画像の高さを固定 */
  object-fit: cover;
}

/*メイン画像下に余白をつける*/
.gallery{
	margin:0 0 5px 0;
}

.gallery li{
list-style:none;
}
/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
list-style:none;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}
@media only screen and (max-width: 599px) {
  .gallery img {
    height: 300px; /* 画像の高さを固定 */
  }
}
/* =========================================
   SALON セクション
========================================= */
.sec04__box {
  display: flex;
  gap: 30px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.sec04__box-item {
  width: calc((100% - 30px) / 2);
}

.sec04__box-item.item2 {
    border: solid 3px #b48b8f;
    border-radius: 5px;
    padding: 20px;
    color: #b48b8f;
}

/* 店舗情報テーブル */
.store {
  text-align: left;
  border-collapse: collapse;
  width: 100%;
}
.store th, .store td {
  padding: 6px 0;
  font-weight: normal;
}
.store th {
  width: 23%;
}
.store td {
  width: 77%;
}

/* スマホ時は縦並び */
@media only screen and (max-width: 768px) {
  .sec04__box {
    flex-flow: column;
  }
  .sec04__box-item {
    width: 100%;
  }
}

/* =========================================
   フッター
========================================= */
footer {
  background-color: #f6e7e4;
  opacity: 0.8;
  padding: 50px;
}

/* ロゴ部分 */
.footer__logo {
  text-align: center;
  margin-bottom: 50px;
}

/* メニュー部分 */
.footer__menu {
  max-width: 980px;
  margin: 0 auto;
}

/* メニューリストの横並び設定 */
.footer__menuList {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* コピーライト */
.copyright {
  text-align: center;
  font-size: 14px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* スマホ時は縦並びに変更 */
@media (max-width: 699px) {
  .footer__menuList {
    flex-flow: column;
    align-items: center;
    gap: 10px;
  }
}
