:root {
  --font-family-base: kozuka-gothic-pr6n, sans-serif;
  --font-family-clean: fot-tsukubrdgothic-std, sans-serif;
  --font-family-number: oswald, sans-serif;
  --font-family-ryumin: a-otf-ryumin-pr6n, serif;
  --font-family-kiwi: kiwi-maru, sans-serif;
  --font-family-normal: Inter sans-serif;

  --color-green-blue: rgba(74, 152, 180, 1);
  --color-qa-blue: #caf2f5;
  --color-light-blue: rgba(233, 243, 244, 1);
  --color-blue: #bfeafa;
  --color-dark-blue: rgba(36, 123, 255, 1);
  --color-gray: rgba(230, 230, 230, 1);
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(33, 33, 33, 1);
  --color-off-white: #fafafa;
  --color-brown: #614d3e;
  --color-light-gray: #bababa;
  --color-red: #e26565;
  --color-pink: #ffc4c4;
  --color-light-pink: #fff6f6;
  --color-green: #008000;

  --max-width: 1200px;
  --max-width-mini: 800px;
  --max-width-middle: 1000px;
}

html {
  font-size: 82.5%;
  font-family: var(--font-family-base);
  font-style: normal;
  font-weight: 400;
}

body {
  background-color: var(--color-off-white);
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
td,
span,
time {
  color: var(--color-black);
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

/* タブレット
------------------------------------------ */
@media screen and (min-width: 768px) {
  html {
    font-size: 87.5%;
  }
}

/* PC
------------------------------------------ */
@media screen and (min-width: 1024px) {
  html {
    font-size: 100%;
  }
}

/*-------------------------
  ヘッダー
-------------------------*/
.l-header {
  padding: 1rem;
  z-index: 2;
  position: relative;
  background-color: var(--color-off-white);
}

.c-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-family-clean);
  font-style: normal;
  font-weight: 400;
}

.c-logo > p {
  display: none;
}

.c-logo__items {
  display: flex;
  gap: 0.625rem;
  text-decoration: none;
}

.c-logo__items > img {
  width: 2.4rem;
}

.c-logo__params {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.c-logo__params > p {
  color: var(--color-green-blue);
  font-weight: bold;
}

.c-logo__params p:nth-child(1) {
  font-size: 1.2rem;
}

.c-logo__params p:nth-child(2) {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.c-logo > p:last-child {
  font-size: 1.2rem;
  position: relative;
  left: 18.5%;
  margin-top: -0.4rem;
}

.l-header__info {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/** テーブル(Header) **/
.c-table-container {
  display: none;
}

.c-table {
  border-collapse: collapse;
  font-family: var(--font-family-clean);
}

.c-table th,
td {
  border: 1px solid var(--color-gray);
}

.c-thead {
  color: var(--color-white);
}

.c-thead tr {
  background-color: var(--color-green-blue);
}

.c-thead th {
  padding: 0.4rem 1.25rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.c-tbody tr td {
  text-align: center;
  padding: 0.5rem 1.25rem;
  font-weight: bold;
}

.c-tbody tr td:first-child {
  font-size: 1.1rem;
  padding: 1rem;
}

.c-table-container > p:last-child {
  font-size: 1.1rem;
  margin-top: 0.4rem;
  font-family: var(--font-family-clean);
}

/** テーブル(footer) **/
.p-table-container.p-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.p-table-container.p-phone table {
  width: 100%;
  max-width: 600px;
}

.p-table-container.p-phone .p-cations > p {
  font-size: 1.2rem;
}

.p-table-container {
  margin-top: 2rem;
}

.p-table-container.p-phone {
  margin-top: 4rem;
  margin-bottom: 0rem;
}

.p-table-container .c-table td {
  background-color: var(--color-white);
}

.p-table-container .c-thead th {
  padding: 0.4rem 1.25rem;
  font-weight: 400;
}

.p-table-container .c-tbody tr td {
  padding: 1.5rem;
}

.p-table-container.p-phone .c-tbody tr td {
  padding: 0.6rem;
}

.p-table-container .c-tbody tr td:first-child {
  font-size: 1.2rem;
  padding: 1rem;
}

.p-table-container.p-phone .c-tbody tr td:first-child {
  font-size: 1rem;
  padding: 1.2rem 0.6rem;
}

.p-table-container .p-cations {
  font-family: var(--font-family-clean);
  font-weight: 400;
  margin-top: 1.2rem;
  font-size: 1.1rem;
}

.p-table-container .p-cations p:last-child {
  margin-top: 0.6rem;
}

.p-table-container.p-phone .c-thead th {
  padding: 0.8rem 0.4rem;
  font-size: 1.1rem;
  font-weight: 400;
}

/** 電話(Header) **/
.c-reserve p {
  font-family: var(--font-family-clean);
}

.c-reserve p > span {
  font-size: 1.25rem;
  color: var(--color-green-blue);
  font-weight: bold;
  margin: 0 0.4rem;
}

.c-tel {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.c-tel img {
  padding-top: 0.4rem;
  width: 1.4rem;
}

.c-tel__param > p,
.c-tel__param > a {
  font-family: var(--font-family-number);
  letter-spacing: 0.1em;
  color: var(--color-green-blue);
}

.c-tel__param > p {
  display: none;
}

.c-tel__param a {
  text-decoration: none;
  font-size: 2rem;
  color: var(--color-green-blue);
  letter-spacing: 0.12em;
}

/** 電話(Footer) **/
.p-reserve > p {
  font-size: 1.125rem;
}

.p-tel {
  font-family: var(--font-family-number);
  margin-top: 0.5rem;
}

.p-tel > p > span,
.p-tel > p > a {
  font-family: var(--font-family-number);
  font-weight: 400;
  margin-left: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--color-green-blue);
}

.p-tel > p > a {
  text-decoration: none;
  font-size: 2rem;
}

/* --- ナビゲーション --- */
.l-navbar {
  margin-top: 2rem;
  display: none;
}

.l-navbar--mobile {
  display: block;
}

.navbar {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0rem;
  color: var(--color-black);
  font-family: var(--font-family-clean);
  position: relative;
  z-index: 10;
}

.navbar__logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  position: relative;
}

.navbar__item {
  position: relative;
}

.navbar__item a,
.navbar__item p {
  color: var(--color-black);
  padding: 0.5rem 0;
  font-size: 1.25rem;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;

  display: inline-block;
  transition: opacity 0.3s;
  font-weight: bold;
}

.navbar__item a .mini {
  color: var(--color-green-blue);
  font-size: 0.75rem;
}

.navbar__item p .mini {
  color: var(--color-green-blue);
  font-size: 0.75rem;
}

.navbar__item a:hover {
  opacity: 0.7;
}

/* --- サブメニュー --- */
.submenu {
  display: none;
  position: absolute;
  top: 60%;
  left: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-green-blue);
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 4, 4, 0.25);
  z-index: 20;
  min-width: 16rem;
}

.submenu__bird {
  position: absolute;
  top: 7rem;
  right: -1.8rem;
  width: 3rem;
  height: auto;
  z-index: 25;
  pointer-events: none;
  z-index: -1;
}

.submenu li {
  list-style: none;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-green-blue);
  padding: 0.2rem 0;
}

.submenu li:last-of-type {
  border-bottom: none;
}

.submenu li a {
  color: #333;
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1.3rem;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: var(--color-gray);
}

/* --- ホバーで表示 --- */
.has-submenu:hover .submenu {
  display: block;
}

/*-------------------------
  カバー画像
-------------------------*/
.l-cover {
  width: 100%;
  height: 11.25rem;

  background-image: url(/public/cover.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

.l-cover > h1,
.l-cover > p {
  font-family: var(--font-family-clean);
  color: var(--color-brown);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.1em;
}

.l-cover > span {
  display: block;
  width: 10%;
  margin: 0 auto;
  margin-top: 0.4rem;
  height: 1px;
  background-color: var(--color-brown);
}

/*-------------------------
  タイトル枠
-------------------------*/
.c-title {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  height: 12rem;
  background-image: url(/public/title-frame.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;

  display: flex;
  justify-content: center;
  align-items: center;
}

.c-title > h2 {
  font-family: var(--font-family-clean);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

/*-------------------------
  共通レイアウト
-------------------------*/
.l-max {
  max-width: var(--max-width);
  margin: 0 auto;
}

.l-wrapper {
  width: 100%;
}

.l-m2 {
  margin-top: 2rem;
}

.l-m3 {
  margin-top: 3rem;
}

.l-m4 {
  margin-top: 4rem;
}

.l-m5 {
  margin-top: 5rem;
}

.l-m6 {
  margin-top: 6rem;
}

.l-m7 {
  margin-top: 7rem;
}

.l-m8 {
  margin-top: 8rem;
}

.l-m10 {
  margin-top: 10rem;
}

/*-------------------------
  フッター
-------------------------*/
.l-footer {
  padding-top: 2rem;
  padding-bottom: 0;
  border-top: 2px dashed var(--color-green-blue);
  background-color: var(--color-off-white);
}

.l-info-section {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 1rem;
}

.l-reserve {
  flex: 3;
}

.l-reserve.footer {
  padding: 0 2rem;
}

.l-map {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.l-map.footer {
  margin-top: 2rem;
  padding: 0 2rem;
}

.l-map__param {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-family-clean);
}

.l-map__param p {
  font-size: 1.2rem;
}

.l-map__display {
  aspect-ratio: 4 / 3;
  width: 100%;
}

.l-map__display iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.c-reserve.footer {
  display: block;
}

.l-copy {
  text-align: center;
  margin-top: 4rem;
  background-color: var(--color-green-blue);
  color: var(--color-white);
  padding: 1.6rem 4rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/*-------------------------
  フッターテーブル
-------------------------*/
.c-table-container.footer {
  display: none;
}

/* 予約メッセージ */
.c-reserve {
  display: none;
}

.c-reserve.footer > p {
  text-align: center;
}

.c-tel.footer {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

/*-------------------------
  ハンバーガーメニュー
-------------------------*/
.hamburger {
  display: block;
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  z-index: 1001;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-green-blue);
  margin: 5px 0;
}

/* モバイル用のナビゲーション（スライドイン用） */
.l-navbar--mobile {
  position: fixed;
  margin-top: 0;
  top: 0;
  left: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  z-index: 4;
  padding-top: 6rem;
}

.l-navbar--mobile .navbar__item.icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-navbar--mobile .navbar__item.list {
  border-bottom: 1px solid var(--color-gray);
}

/* メニューが開いている状態 */
.l-navbar--mobile.active {
  right: 0;
}

.mobile .navbar__list {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  position: relative;
}

/* アコーディオン用 */
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  list-style: none;
}

/*-------------------------
  トースト
-------------------------*/
.toast {
  width: 80%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-green);
  color: #fff;
  padding: 1.2rem 3rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, bottom 0.5s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  bottom: 50px;
}

/*-------------------------
  タブレット
-------------------------*/
@media screen and (min-width: 768px) {
  /* ヘッダー */
  /* ハンバーガーを消す */

  /* ロゴの文字 */
  .c-logo__params p:nth-child(1) {
    font-size: 1.4rem;
  }

  .c-logo__params p:nth-child(2) {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }

  /* ロゴのサイズ */
  .c-logo__items > img {
    width: 3.46rem;
  }

  .c-tel__param a {
    font-size: 1.6rem;
  }

  .l-header__top {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* タイトル枠 */
  .c-title {
    width: 38rem;
    height: 20rem;
  }

  .c-title > h2 {
    font-size: 1.875rem;
  }

  /* テーブル */
  .p-table-container.p-phone table {
    max-width: 840px;
  }

  .p-table-container.p-phone .c-thead th {
    padding: 0.6rem 1.6rem;
    font-size: 1.4rem;
    font-weight: 400;
  }

  .p-table-container.p-phone .c-tbody tr td:first-child {
    font-size: 1.4rem;
    padding: 1.2rem;
  }

  .p-table-container.p-phone .p-cations > p {
    font-size: 1.4rem;
  }
}

/*-------------------------
  PC
-------------------------*/
@media screen and (min-width: 1200px) {
  /* PC版のときは電話をかけないようにする */
  a[href*="tel:"] {
    pointer-events: none;
  }

  /* テーブル */
  .c-table-container {
    display: block;
  }

  .c-tel__param a {
    font-size: 2rem;
  }

  .c-tel__param > p {
    display: block;
  }

  /* --- ナビゲーション --- */
  .l-navbar {
    display: block;
  }

  .l-header__top {
    justify-content: space-around;
    align-items: flex-start;
    gap: 2rem;
  }

  .l-header {
    padding: 2rem 1rem;
  }

  /* ハンバーガーを消す */
  .hamburger {
    display: none;
  }

  .c-reserve {
    display: block;
  }

  .c-logo > p {
    display: block;
  }

  /* フッター */
  .l-footer {
    padding-top: 4.18rem;
    padding-bottom: 0;
  }

  .l-reserve.footer {
    padding: 0rem;
  }

  .l-info-section {
    padding: 0 2rem;
    flex-direction: row;
    margin-top: 5rem;
  }

  .c-table-container.footer {
    display: block;
  }

  .c-reserve.footer > p {
    text-align: left;
  }

  .c-tel.footer {
    flex-direction: row;
    align-items: baseline;
    gap: 0.6rem;
  }

  .responsive-break {
    display: none;
  }

  .p-table-container.p-phone {
    display: none;
  }

  /* 予約メッセージ */
  .l-copy {
    margin-top: 6rem;
  }
}

/*-------------------------
  タイトルサイズ 微調整
-------------------------*/
.p-t1 > h2 {
  font-size: 1.8rem;
}

.p-t2 > h2 {
  font-size: 1.4rem;
}

.p-t3 > h2 {
  font-size: 1.3rem;
}

.p-t4 > h2 {
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .p-t1 > h2 {
    font-size: 2.6rem;
  }

  .p-t2 > h2 {
    font-size: 2.4rem;
  }

  .p-t3 > h2 {
    font-size: 2.2rem;
  }

  .p-t4 > h2 {
    font-size: 2rem;
  }
}
