body {
  font-family: 'Sawarabi Mincho', 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%;
  background-color: #E2BEBA; /* ヘッダー背景色 */
}

/* ハンバーガーボタンの基本設定 */
.c__hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}

/* ハンバーガー3本線の見た目設定 */
.c__hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: black;
  transition: all 0.4s;
}

/* 各線の配置（上・中・下） */
.c__hamburger span:nth-of-type(1) {
  top: -4px;
}
.c__hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c__hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}

/* ハンバーガーが開いた時のアニメーション */
.c__hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c__hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}

/* メニュー（ナビゲーション）の初期状態（非表示） */
.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-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding: 0 60px;
}

/* ロゴ画像サイズ */
.p__header-title img {
  width: 200px;
}

/* ハンバーガーアイコン（右上に配置） */
.p__header-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 95px;
  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: 768px) {
  .p__header-hamburger {
    display: none; /* PCではハンバーガーを非表示 */
  }
  .p__nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .p__header-nav {
    position: static;
    opacity: 1;
    height: inherit;
    width: initial;
  }
  .p__nav-list {
    padding-right: 0;
    padding-left: 0;
    display: flex; /* PCではメニューを横並び */
  }
}

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

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

@media (max-width: 1024px) {
  .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;
}

.title_wh {
  color: #fff;
}

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

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

.common_bg {
  background-color: #E9B5B6;
}

/* =========================================
   CONCEPT セクション
========================================= */
.sec01__box {
  display: flex;
  gap: 30px;
}

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

.sec01__box-item .title {
  font-size: 22px;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 100;
}

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

/* =========================================
   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;
}

/* 画像部分 */
.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 {
  columns: 4; /* 段組み数 */
  padding: 0 15px; /* 左右余白 */
  margin: 0;
}
.gallery li {
  margin-bottom: 20px; /* 各画像の下に余白 */
  list-style: none;
}

/* 画像の基本設定 */
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /* 下に余白が出ないように */
}

/* 段組み数を画面幅で調整 */
@media only screen and (max-width: 900px) {
  .gallery {
    columns: 3;
  }
}
@media only screen and (max-width: 768px) {
  .gallery {
    columns: 2;
  }
}

/* =========================================
   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);
}

/* 店舗情報テーブル */
.store {
  text-align: left;
  border-collapse: collapse;
  width: 100%;
  color: #fff;
}
.store tr:not(:last-child) {
  border-bottom: 1px solid;
}
.store th, .store td {
  padding: 10px 0;
  border: none;
  font-weight: normal;
}
.store th {
  width: 20%;
}
.store td {
  width: 80%;
}

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

/* =========================================
   フッター
========================================= */
footer {
  background-color: #E2BEBA;
  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;
  }
}
