@charset "UTF-8";

/* =========================
   CSS Variables
   ========================= */
:root {
  --bg:      #faf8f6;
  --paper:   #ffffff;
  --text:    #2f2f2f;
  --muted:   #7b7b7b;
  --line:    rgba(0, 0, 0, 0.08);
  --accent:  #c7b5a6;
  --accent2: #b89c86;
  --shadow:  0 14px 40px rgba(0, 0, 0, 0.10);
  --shadow2: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius:  20px;
}

/* =========================
   Reset & Base
   ========================= */
*[class*="cp-"],
*[class*="cp-"] * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  vertical-align: bottom;
  height: auto;
}

/* =========================
   Header
   ========================= */
.cp-header01 {
  position: fixed;
  height: 72px;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
}

.cp-header01__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1065px;
  height: 72px;
  margin: auto;
  padding: 0 22px;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

/* Logo */
.cp-header01__logo {
  flex-shrink: 0;
}

.cp-header01__logo a {
  font-family: 'Great Vibes', cursive;
  font-size: 2.8rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s ease;
  background: linear-gradient(90deg, #3a8fd9 0%, #5fb3c4 45%, #8fd0c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cp-header01__logo a:hover {
  opacity: 0.7;
}

/* Navigation */
.cp-header01__navi {
  margin-left: auto;
  margin-right: 20px;
}

.cp-header01__items {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cp-header01__item:not(:last-child) {
  margin-right: 32px;
}

.cp-header01__item a {
  position: relative;
  display: inline-block;
  color: #6c6c6c;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cp-header01__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.cp-header01__item a:hover::after {
  width: 100%;
}

/* Reserve Button */
.reserve {
  position: absolute;
  top: 12px;
  right: 12px;
}

.reserve .hover {
  display: none;
}

.reserve a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding: 0.95em 1.5em;
  font-size: 1.4rem;
  font-weight: 400;
  color: #5b4a3f;
  background: #f3ede7;
  border-radius: 999px;
  box-shadow: var(--shadow2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.reserve a::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #5b4a3f;
  border-right: 2px solid #5b4a3f;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.reserve a:hover {
  background: #eadfd6;
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.reserve a:hover .hover { display: inline; }
.reserve a:hover .none  { display: none; }

/* Hamburger — button は PC で非表示、overlay は transform で制御 */
.cp-header01__hamburger__button {
  display: none;
}
.cp-header01__hamburger__content {
  visibility: hidden;
  pointer-events: none;
}

.cp-header01__hamburger__item a {
  text-decoration: none;
}

/* =========================
   Header — Responsive
   ========================= */
@media screen and (max-width: 1024px) {
  .cp-header01 {
    position: fixed;
  }

  .cp-header01__navi {
    display: none;
  }

  .cp-header01__logo a {
    font-size: 2.2rem;
  }

  /* Reserve */
  .reserve {
    position: static;
    margin-left: auto;
    margin-right: 50px;
  }

  .reserve a {
    width: auto;
    padding: 0.85em 1.2em;
  }

  /* Hamburger button */
  .cp-header01__hamburger__button {
    display: block;
    position: absolute;
    top: 15px;
    right: 20px;
    width: 42px;
    height: 42px;
    z-index: 9999;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
  }

  .cp-header01__hamburger__button span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #6c6c6c;
    transition: 0.2s ease-in-out;
  }

  .cp-header01__hamburger__button span:nth-child(1) { top: 10px; }
  .cp-header01__hamburger__button span:nth-child(2) { top: 20px; }
  .cp-header01__hamburger__button span:nth-child(3) { top: 30px; }

  .cp-header01__hamburger__button.active span:nth-child(1) {
    top: 16px;
    transform: rotate(-45deg);
  }
  .cp-header01__hamburger__button.active span:nth-child(2),
  .cp-header01__hamburger__button.active span:nth-child(3) {
    top: 16px;
    transform: rotate(45deg);
  }

  /* Hamburger menu overlay（header外に配置済み = backdrop-filter干渉なし） */
  .cp-header01__hamburger__content {
    display: grid;
    place-items: center;
    position: fixed;
    z-index: 9998;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    background: rgba(250, 248, 246, 0.96);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
    transition: opacity 0.25s ease, visibility 0.25s;
  }

  .cp-header01__hamburger__content nav {
    text-align: center;
    padding: 20px 40px 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .cp-header01__hamburger__items {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .cp-header01__hamburger__content.active {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .cp-header01__hamburger__item {
    text-align: center;
    list-style: none;
  }

  .cp-header01__hamburger__item a {
    display: inline-block;
    padding: 22px 0;
    font-size: 2.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    background: linear-gradient(90deg, #3a8fd9 0%, #5fb3c4 45%, #8fd0c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: opacity 0.2s ease;
  }

  .cp-header01__hamburger__item a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 599px) {
  .cp-header01__container {
    padding-right: 1px;
    padding-left: 10px;
  }

  .cp-header01__logo a {
    font-size: 1.8rem;
  }

  .reserve {
    margin-right: 68px;
  }

  .reserve .none {
    font-size: 1.1rem;
  }
}

/* =========================
   Main / Hero
   ========================= */
.main {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.main.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1.8s;
}

.main .main-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: none;
  display: block;
}

/* Dark overlay via pseudo-element */
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 0;
}

/* Title — gradient text */
.main .main-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Great Vibes', cursive;
  font-size: 12rem;
  font-weight: 400;
  letter-spacing: 0.10em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  background: linear-gradient(90deg, #3a8fd9 0%, #5fb3c4 45%, #8fd0c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 1;
}

@media screen and (max-width: 599px) {
  .main .main-title {
    font-size: 6.2rem;
  }
}

/* =========================
   Welcome (sub-title)
   ========================= */
.sub-title {
  position: relative;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 42px;
  text-align: center;
  background: transparent;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.sub-title.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1.8s;
}

.sub-title h2 {
  margin-bottom: 20px;
  font-family: 'Great Vibes', cursive;
  font-size: 4.0rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #3b3b3b;
}

.sub-title p {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.6rem;
  line-height: 2.6;
  color: var(--muted);
}

@media screen and (max-width: 599px) {
  .sub-title h2 {
    font-size: 2.6rem;
  }

  .sub-title p {
    font-size: 1.45rem;
    line-height: 2.3;
  }
}

/* =========================
   Info / News
   ========================= */
.info {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  padding-top: 30px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--muted);
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.info.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1.8s;
}

.info h3 {
  margin-bottom: 30px;
  font-family: 'Great Vibes', cursive;
  font-size: 3.6rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: #3b3b3b;
}

.item {
  margin: 18px 0;
  padding: 0 20px;
}

.title {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.7;
  text-decoration: none;
}

.title a {
  text-decoration: none;
  color: #374251;
}

.title:hover {
  opacity: 0.7;
}

.time {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.3rem;
  color: #9a9a9a;
}

@media screen and (max-width: 599px) {
  .info h3 {
    font-size: 2.4rem;
  }

  .title {
    font-size: 1.6rem;
  }
}

/* =========================
   Blog Page
   ========================= */
.i-blog {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-top: 110px;
}

.b-title {
  margin-bottom: 30px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 3.4rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #374251;
}

.i-blog p {
  margin: 30px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.7rem;
  line-height: 2.3;
  color: #3b3b3b;
  max-width: 900px;
}

.nav-links {
  margin: 30px;
  display: flex;
  justify-content: space-around;
}

.nav-links a {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.4rem;
  color: #6c6c6c;
}

.nav-links a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 599px) {
  .b-title {
    font-size: 3rem;
  }

  .i-blog p {
    font-size: 1.6rem;
    line-height: 2.3;
  }
}

/* =========================
   Staff
   ========================= */
.staff {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 90px;
  padding-bottom: 90px;
  width: 100%;
  background: #f3ede7;
  opacity: 0;
  transform: translate3d(0, 50px, 0);
}

.staff.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1.8s;
}

.staff img {
  width: 320px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.staff-text {
  margin-left: 7%;
  max-width: 520px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: 400;
  color: #4a4a4a;
}

.staff-text h5 {
  font-family: 'Great Vibes', cursive;
  font-size: 3.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #3b3b3b;
}

.staff-text h6 {
  padding-top: 40px;
  font-size: 1.5rem;
  color: #6f6f6f;
  line-height: 2.2;
}

.staff-text span {
  display: block;
  padding-top: 20px;
  font-size: 1.5rem;
  color: #6f6f6f;
  line-height: 2.2;
}

@media screen and (max-width: 599px) {
  .staff {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .staff img {
    width: 260px;
  }

  .staff-text {
    margin-left: 0;
    margin-top: 30px;
    padding: 0 20px;
  }

  .staff-text h5 {
    font-size: 2.8rem;
  }
}

/* =========================
   Menu Page
   ========================= */

/* ページ全体のラッパー */
.menu {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 24px 60px;
  box-sizing: border-box;
}

/* section のはみ出し防止 */
section:has(.menu) {
  width: 100%;
  overflow-x: hidden;
}

/* カテゴリ行 */
.fx {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* カテゴリカード */
.main-menu {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow2);
  padding: 24px 24px 18px;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

/* カテゴリ見出し */
.main-menu h2 {
  display: inline-block;
  padding: 0 0 16px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  /* ロゴと同じグラデーション */
  background: linear-gradient(90deg, #3a8fd9 0%, #5fb3c4 45%, #8fd0c7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, #3a8fd9, #8fd0c7) 1;
  margin-bottom: 16px;
}

/* メニューリスト */
.c-menu {
  margin: 0;
  padding: 0;
}

.c-menu > div {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.c-menu > div:last-child {
  border-bottom: none;
}

/* 名前と価格を横並び */
.c-menu dt {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.ta {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #3b3b3b;
  flex: 1;
}

.price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #5fb3c4;
  white-space: nowrap;
  flex-shrink: 0;
}

.ex {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 4px;
  padding: 0;
}

/* キッズカット料金表 */
.kids-price {
  margin-top: 8px;
  border-collapse: collapse;
  width: auto;
}

.kids-price td {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.25rem;
  padding: 4px 16px 4px 0;
  color: var(--muted);
  border: none;
  white-space: nowrap;
}

.kids-price td:last-child {
  color: #5fb3c4;
  font-weight: 600;
  text-align: right;
  padding-left: 12px;
}

.kids-price tr + tr td {
  border-top: 1px solid var(--line);
}

@media screen and (max-width: 768px) {
  .fx {
    grid-template-columns: 1fr;
  }

  .menu {
    padding-top: 90px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 599px) {
  .menu {
    padding: 80px 12px 40px;
  }

  .main-menu {
    padding: 18px 14px 12px;
  }

  .ta {
    font-size: 1.4rem;
  }

  .price {
    font-size: 1.3rem;
  }
}

/* =========================
   Access Page
   ========================= */
.access {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
}

.side-img {
  width: 50%;
  margin-top: 36px;
}

.side-img img {
  width: 100%;
  height: 100%;
}

.side-contents {
  /* margin-top: 80px; */
  width: 50%;
}

.side-text {
  margin-top: 80px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.6rem;
  color: #6f6f6f;
  line-height: 2.1;
}

.td-1 {
  width: 30%;
}

.side-text tr td {
  padding: 20px;
  border-bottom: 1px solid rgba(199, 181, 166, 0.6);
}

.map {
  align-items: center;
  padding: 10px;
}

@media screen and (max-width: 1024px) {
  .access {
    justify-content: center;
    flex-direction: column;
  }

  .side-contents {
    padding-top: 30px;
  }

  .map {
    padding-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .access {
    justify-content: center;
    flex-direction: column;
  }

  .side-img {
    width: 100%;
    margin-top: 72px;
  }

  .side-contents {
    width: 100%;
    padding-top: 10px;
  }

  .side-text {
    font-size: 1.3rem;
    line-height: 2rem;
  }

  .side-text tr .td-1 {
    width: 70px;
    padding: 10px;
  }
}

/* =========================
   Contact Page
   ========================= */
.contact {
  display: flex;
  justify-content: center;
  padding-top: 120px;
}

.contact p {
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: #3b3b3b;
  letter-spacing: 0.08em;
}

.wpcf7-form-control-wrap {
  margin: 30px;
}

.contact input,
.contact textarea {
  margin: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  outline: none;
}

.contact input {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 15px 90px;
}

.contact textarea {
  padding: 10px 80px;
}

.contact input:focus,
.contact textarea:focus {
  border-color: rgba(199, 181, 166, 0.9);
}

@media screen and (max-width: 1024px) {
  .wpcf7-form-control {
    padding-top: 30px;
  }
}

@media screen and (max-width: 599px) {
  .contact p {
    font-size: 1.5rem;
  }

  .wpcf7-form-control-wrap {
    margin: 15px;
  }

  .contact input {
    padding: 7px 20px;
  }

  .contact textarea {
    padding: 5px 20px;
  }
}

/* =========================
   Footer
   ========================= */
.cp-footer01 {
  position: relative;
  height: 100%;
  background: #efe7df;
  border-top: none;
  z-index: 1;
}

.cp-footer01__container {
  width: 100%;
  max-width: 1065px;
  margin: auto;
  padding: 40px 20px;
}

/* Footer nav */
.cp-footer01__navi {
  margin-top: 20px;
}

.cp-footer01__navi__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cp-footer01__navi__item a {
  display: inline-block;
  padding: 12px 16px;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #7a6a5a;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cp-footer01__navi__item a:hover {
  opacity: 0.7;
}

/* SNS icons */
.cp-footer01__icons {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}

.cp-footer01__icon:not(:last-child) {
  margin-right: 24px;
}

.cp-footer01__icon a {
  font-size: 26px;
  color: #7a6a5a;
  transition: opacity 0.2s ease;
}

.cp-footer01__icon a:hover {
  opacity: 0.7;
}

/* Copyright */
.cp-footer01__copywriter {
  padding: 8px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.45);
  background: transparent;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .cp-footer01__container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* =========================
   Utilities
   ========================= */
.visually-hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}