/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-light: #f0f4fd;
  --pink-mid: #e2eaf9;
  --pink-border: #c8d8f0;
  --pink-accent: #6a8fc4;
  --pink-btn: #8aaee8;
  --cream: #f0f4fd;
  --text: #2d3a50;
  --text-light: #7890b0;
  --white: #ffffff;
  --font-ja: "Noto Sans JP", sans-serif;
  --font-tetl: "Pinyon Script", cursive;
  --transition: 0.4s ease;
}

.pinyon-script-regular {
  font-family: "Pinyon Script", cursive;
  font-weight: 400;
  font-style: normal;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  line-height: 1.9;
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}
a:hover {
  opacity: 0.7;
}

ul,li {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}
.sp-only{
  display: none;
}

/* ========================================
   HEADER
======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(240, 244, 253, 0.5);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--pink-border);
  height: 54px;
}

.gnav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  height: 52px;
  align-items: center;
}

.gnav li a {
  display: block;
  padding: 0 18px;
  font-family: var(--font-tetl);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--pink-accent);
  height: 52px;
  line-height: 52px;
  transition: background var(--transition);
}

.gnav li a:hover {
  background: var(--pink-mid);
  opacity: 1;
}

/* ========================================
   HERO
======================================== */
.hero {
  margin-top: 52px;
  position: relative;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: relative;
}

.hero-bg {
  height: 85vh;
  min-height: 480px;
  background-size: cover;
  background-position: center;
}

.hero-bg--1 {
  background-color: #8aaac8;
  background-image: url("img/room-01.png");
  /* background-image: linear-gradient(
    160deg,
    #7aa0cc 0%,
    #6a8fba 40%,
    #5a7ea8 100%
  ); */
}
.hero-bg--2 {
  background-color: #8098c4;
  background-image: url("img/room-02.png");
  /* background-image: linear-gradient(
    160deg,
    #90a8d0 0%,
    #7a92be 40%,
    #6a82ac 100%
  ); */
}
.hero-bg--3 {
  background-color: #7a9ab8;
  background-image: url("img/room-03.png");
  /* background-image: linear-gradient(
    160deg,
    #88aac8 0%,
    #7898b6 40%,
    #6888a4 100%
  ); */
}

/* Slick dots */
.slick-dotted.slick-slider{
  margin-bottom: 0;
}
.slick-dots {
  bottom: 16px;
}
.slick-dots li button::before {
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
}
.slick-dots li.slick-active button::before {
  color: var(--white);
}
.slick-prev,
.slick-next {
  z-index: 5;
}
.slick-prev {
  left: 16px;
}
.slick-next {
  right: 16px;
}
.slick-prev::before,
.slick-next::before {
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: var(--text-light);
  width: 100%;
  padding: 0 24px;
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-tetl);
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-desc {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-icons {
  display: flex;
  justify-content: center;
  gap: 32px;
  pointer-events: all;
}

.hero-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-family: var(--font-tetl);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.hero-icon-circle {
  width: 52px;
  height: 52px;
  border: 1.5px solid var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.hero-icon-circle svg {
  width: 22px;
  height: 22px;
}

.hero-icon-btn:hover .hero-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

/* ========================================
   ROOMS SLIDER
======================================== */
.rooms-slider .slick-dots {
  bottom: -28px;
}
.rooms-slider .slick-dots li button::before {
  color: var(--pink-border);
  font-size: 7px;
}
.rooms-slider .slick-dots li.slick-active button::before {
  color: var(--pink-accent);
}
.rooms-slider {
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rooms-slider .rooms-block {
  text-align: center;
}

/* ========================================
   CONTENT SECTIONS COMMON
======================================== */
.content-section {
  padding: 80px 24px;
  background: var(--white);
}

.content-section--pink {
  background: var(--pink-light);
}

.section-title {
  font-family: var(--font-tetl);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--pink-accent);
  margin: 0 auto 4rem;
  border-bottom: 1px dashed var(--pink-accent);
  max-width: 24%;
  line-height: 1.2;
  padding: 0 0 1rem;
}

.section-title em {
  font-style: italic;
}
.section-title p {
  font-size: 18px;
}
/* ========================================
   ROOMS
======================================== */
.rooms-block {
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.rooms-img {
    width: 80%;
    margin: 0 auto;
}

.img-box {
  width: 100%;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ja);
  font-size: 13px;
  color: var(--text-light);
  border: 1px solid var(--pink-border);
  border-radius: 4px;
}

.img-box--rooms {
  background: #dce8f4;
  background-image: url("img/room-01-a.png");
  background-size: cover;
  background-position: center;
}
.img-box--rooms2 {
  background: #dce8f4;
  background-image: url("img/room-02.png");
  background-size: cover;
  background-position: center;
}
.img-box--rooms3 {
  background: #dce8f4;
  background-image: url("img/room-03.png");
  background-size: cover;
  background-position: center;
}
.img-box--rooms4 {
  background: #dce8f4;
  background-image: url("img/room-04.png");
  background-size: cover;
  background-position: center;
}
.img-box--waffle {
  background: #d8e2f0;
}
.img-box--mansion {
  background: #d4dff0;
}
.rooms-text.reveal {
    width: 80%;
    margin: 1rem auto 0;
}

.rooms-text {
    position: relative;
}
.rooms-name {
  color: var(--pink-accent);
}

.rooms-name-title {
  display: block;
  font-style: italic;
  font-family: var(--font-tetl);
  font-weight: 300;
  font-size: 30px;
  border-bottom: 1px dashed var(--pink-accent);
}


.rooms-desc {
    color: var(--pink-accent);
    padding: 2rem;
}



/* ========================================
   PLACE
======================================== */
.place-block {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--pink-border);
    border-radius: 4px;
    padding: 32px 30px;
    background: var(--pink-light);
}
.price-table {
  border-collapse: collapse;
  font-size: 16px;
  font-weight: 500;
  color: var(--pink-accent);
}

.price-table tr {
  line-height: 3;
}

.price-table td {
  padding: 0 16px;
}

.pt-time {
  text-align: left;
  white-space: nowrap;
  padding-right: 24px;
}

.pt-dots {
  text-align: center;
  letter-spacing: 0.2em;
  padding: 0 24px;
}

.pt-yen {
  text-align: right;
  white-space: nowrap;
  padding-left: 24px;
}

.price-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--pink-accent);
  line-height: 2;
  text-align: center;
  font-weight: 500;
}

.place-item {
  padding: 24px 0;
  text-align: center;
}

.place-divider {
  height: 1px;
  background: var(--pink-border);
  margin: 0 auto;
  width: 60%;
}

.place-room {
  font-size: 15px;
  font-weight: 500;
  color: var(--pink-accent);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.place-addr {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}

.place-access {
  font-size: 12px;
  color: var(--text-light);
}

/* ========================================
   basic_equipment
======================================== */

.basic-block {
  max-width: 700px;
  margin: 0 auto 5rem;
  border: 1px solid var(--pink-border);
  border-radius: 4px;
  padding: 32px 40px;
  background: var(--white);
}

.basic-list {
  text-align: center; 
}

.basic-list li {
  font-size: 13px;
  position: relative;
  color: var(--pink-accent);
}

.basic-tetl {
    color: var(--pink-accent);
    font-weight: 500;
    text-align: center;
}


/* ========================================
   
======================================== */



/* ========================================
   AMENITY
======================================== */

.amenity-block {
  max-width: 700px;
  margin: 0 auto 5rem;
  border: 1px solid var(--pink-border);
  border-radius: 4px;
  padding: 32px 40px;
  background: var(--pink-light);
}

.amenity-list {
  text-align: center; 
}

.amenity-list li {
  font-size: 13px;
  position: relative;
  color: var(--pink-accent);
}


/* ========================================
   CAUTION
======================================== */
.caution-block {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}


.caution-head {
  font-size: 14px;
  font-weight: 500;
  color: var(--pink-accent);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.caution-text {
  font-size: 13px;
  line-height: 2;
  color: var(--text);
}

/* ========================================
   RESERVE
======================================== */
.reserve-block {
  max-width: 640px;
  margin: 0 auto;
}

.reserve-lead {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.req {
  font-size: 10px;
  background: var(--pink-accent);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--pink-border);
  border-radius: 4px;
  background: var(--pink-light);
  font-family: var(--font-ja);
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8b8cc;
}

.form-group textarea {
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.submit-btn {
  display: inline-block;
  padding: 14px 60px;
  background: var(--pink-btn);
  color: var(--white);
  border: none;
  border-radius: 30px;
  font-family: var(--font-ja);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background var(--transition);
}

.submit-btn:hover {
  background: var(--pink-accent);
}

/* ========================================
   CONTACT
======================================== */
.contact-section {
  padding: 80px 24px;
  background: var(--cream);
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.contact-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--pink-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-accent);
  background: var(--white);
  transition:
    background var(--transition),
    color var(--transition);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-icon:hover {
  background: var(--pink-accent);
  color: var(--white);
  opacity: 1;
}

.contact-tel {
  font-family: var(--font-tetl);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--pink-border);
  padding: 24px;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ========================================
   SCROLL REVEAL
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
======================================== */
/* ========================================
   HAMBURGER (SP only)
======================================== */
.nav-toggle {
  display: none;
}

@media (max-width: 768px) {
  .sp-only{
  display: block;
}
  /* ハンバーガーボタン */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 200;
    padding: 4px;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--pink-accent);
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform-origin: center;
  }

  /* × に変化 */
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* ナビ非表示 → オープン時に表示 */
  .gnav {
    display: none;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    background: rgba(240, 244, 253, 0.97);
    border-bottom: 1px solid var(--pink-border);
    z-index: 100;
  }

  .gnav.is-open {
    display: block;
  }

  .gnav ul {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
  }

  .gnav li a {
    height: 48px;
    line-height: 48px;
    font-size: 15px;
    padding: 0 24px;
    border-bottom: 1px solid var(--pink-border);
  }

  .gnav li:last-child a {
    border-bottom: none;
  }

  .hero-bg {
    height: 70vh;
  }
  .hero-title {
    font-size: 44px;
  }
  .hero-desc {
    font-size: 12px;
  }
  .hero-icons {
    gap: 20px;
  }

  .content-section {
    padding: 60px 20px;
  }
  .section-title {
    margin-bottom: 32px;
    max-width: 100%;
  }

  .rooms-block,
  .waffle-block {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }
  .amenity-block {
    padding: 24px;
  }

  .contact-tel {
    font-size: 20px;
  }

 .rooms-text.reveal,
  .rooms-img,.rooms-desc{
    width: 100%;
  }
  .rooms-desc {
    padding: 2rem 1rem;
    font-size: 18px;
}
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
}
