@charset "UTF-8";

:root {
  /* テキスト */
  --color-text-main: #4a4436;
  --color-text-accent: #f26b6b;

  /* カラー */
  --color-primary: #f2abab;

  /* フォントファミリー */
  --font-main:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  --font-accent:
    "Zen Maru Gothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", YuGothic, sans-serif;

  /* Noto Sans JP のフォントウェイト */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;

  /* テキストサイズ */
  --font-base: 1.6rem;
  --font-small: 1.4rem;
  --font-xs: 1.2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #fbfaf3;
  color: var(--color-text-main);
  font-family: var(--font-main);
  font-size: var(--font-base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  transition: color 0.3s ease;
}
img {
  vertical-align: bottom;
}

/* 改行 */
.pc-br {
  display: block;
}
.sp-br,
.xs-br {
  display: inline;
}

/* =============================
  ヘッダー
===============================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(to bottom, #feeae7, #f9f7e8);
  z-index: 100;
}
.header__logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo {
  width: 125px;
  flex-shrink: 0;
}
.header__logo-tagline {
  color: #4a4949;
  font-size: var(--font-xs);
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2.4rem;
  margin-left: auto;
  color: var(--color-text-accent);
}
.header__nav-link {
  white-space: nowrap;
  font-size: clamp(1.2rem, 1.5vw, 1.6rem);
  transition: color 0.3s;
}
.header__nav-item:not(.header__contact-btn) .header__nav-link:hover {
  color: var(--color-primary);
  opacity: 0.8;
}
/* お問い合わせボタン */
.header__contact-btn {
  position: relative;
  padding: 12px 36px 12px 24px;
  background-color: var(--color-primary);
  border-radius: 99px;
  color: #fff;
}
.header__contact-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
}
.header__contact-btn:hover {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
/* 電話番号 ハンバーガーの時のみ表示 */
.header__nav-item--tel {
  display: none;
}

/* =============================
  ハンバーガー
===============================*/
@media (max-width: 1023px) {
  .header__nav-list {
    position: fixed;
    width: 100%;
    height: calc(100vh - 90px);
    top: 90px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-top: 80px;
    background: #fff;
    color: var(--color-text-main);
    opacity: 0;
    /* メニュー内容が画面高さを超えたらスクロール可能にする */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    transform: translateX(100%);
    transition: 0.3s ease;
    z-index: 1000;
  }
  .header__contact-btn {
    margin-top: 60px;
  }
  /* 電話番号 */
  .header__nav-item--tel {
    display: block;
    margin-top: 60px;
  }
  .header__nav-link--tel {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
  }
  .header__nav-tel-icon {
    width: 18px;
    transform: translateY(2px);
  }
  .p-hamburger {
    position: absolute;
    top: 24px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: block;
    cursor: pointer;
    z-index: 1000;
  }
  .p-hamburger::before {
    content: "";
    position: absolute;
    width: 48px;
    height: 48px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/hamburger-bg.png");
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .p-hamburger__line {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  .p-hamburger__line::before,
  .p-hamburger__line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
  }
  .p-hamburger__line::before {
    top: -10px;
  }
  .p-hamburger__line::after {
    top: 10px;
  }

  /* 開いたときのXアニメーション */
  .p-hamburger[aria-expanded="true"] .p-hamburger__line {
    background-color: transparent;
  }
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
    transform: rotate(45deg);
    top: 0;
  }
  .p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
    transform: rotate(-45deg);
    top: 0;
  }

  /* 開いたとき */
  body.is-active-drawer .header__nav-list {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
  /* 背景固定防止 */
  body.is-active-drawer {
    overflow: hidden;
  }
}
/* =============================
  セクションタイトル
===============================*/
.section__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 44px;
  font-family: var(--font-accent);
  font-size: 2.6rem;
  font-weight: var(--fw-bold);
}
.section__title-sub {
  padding-bottom: 4px;
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: var(--fw-bold);
}

/* ----------------------------
  予約ボタン
-------------------------------*/
.c-booking-btn {
  max-width: 280px;
  margin: 0 auto;
}
.c-booking-link {
  position: relative;
  width: 100%;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  color: #fff;
  font-size: 2rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

/* 矢印（footer と同じ思想） */
.c-booking-link::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
}
/* ホバー */
.c-booking-link:hover {
  background-color: #fff;
  color: #f2abab;
}

/* =============================
  フッター
===============================*/
#footer {
  width: 100%;
}
/* ボタン */
.footer__contact {
  position: relative;
  padding-bottom: 112px;
}
.footer__contact-link {
  width: min(400px, 80%);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
  padding-inline: 24px;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}
/* アイコン */
.footer__contact-icon {
  width: 32px;
  height: auto;
  margin: 0;
  flex-shrink: 0;
}

/* 矢印 */
.footer__contact-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}
/* ホバー */
.footer__contact-link:hover {
  background-color: #fff;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.footer__contact-link:hover .footer__contact-icon {
  content: url("../images/speech-bubble_icon-pink.svg");
}
.footer__info {
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding-block: 84px;
  background: linear-gradient(to bottom, #f8fae0, #ffe0e0);
}

.footer__privacy-link {
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.footer__privacy-link:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .footer__contact-link {
    width: min(280px, 74%);
    height: 44px;
    padding-inline: 8px;
    font-size: var(--font-small);
  }
  .footer__contact-icon {
    width: 32px;
  }
}
