@charset "UTF-8";
/*
Theme Name: viviane-template
*/

/* * ==================================================================================
         * CSS Variables (Variables & Settings)
         * SCSSの変数定義に相当します
         * ==================================================================================
         */
:root {
  /* Colors */
  --color-primary: #37993f;
  --color-secondary: #997037;
  --color-text-title: #333;
  --color-text-body: #555;
  --color-text-light: #777;
  --color-text-lighter: #c2c2c2;
  --color-white: #ffffff;
  --color-bg-base: #ffffff;
  --color-bg-gray: #f9fafb; 
  --color-bg-dark: #1f2937; 
  --color-border-base: #d1d5db; 
  --color-border-light: #e5e7eb;
  --color-border-dark: #374151;
  --color-btn: #376099;
  --color-accent: #993f37; 
  --color-overlay: rgba(0, 0, 0, 0.3);
  --color-anchor: #376099;

  /* Spacing */
  --sp-xs: 0.25rem; /* 4px */
  --sp-sm: 0.5rem; /* 8px */
  --sp-md: 1rem; /* 16px */
  --sp-lg: 1.5rem; /* 24px */
  --sp-xl: 3rem; /* 48px */
  --sp-section: 5rem;

  /* Typography */
  --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  --font-accent: "Georgia", serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;

  --radius-base: 0.75rem;
  --radius-sm: 0.25rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* Breakpoints (CSS内では直接使用できませんが設計指針として記載) */
  /* md: 768px */
}

/* * ==================================================================================
       * Base (Reset & Common)
       * ==================================================================================
       */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text-body);
  background-color: var(--color-bg-base);
  font-weight: 400;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a.anchor {
  text-decoration: underline;
  color: var(--color-anchor);
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Helpers */
.u-hidden-pc {
  display: block;
}
.u-hidden-sp {
  display: none;
}

@media (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
}

/* Placeholder Image Style */
.placeholder-img {
  background-color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-weight: bold;
  font-size: var(--font-size-sm);
}

/* * ==================================================================================
       * Layout (l-)
       * ==================================================================================
       */
.l-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .l-container {
    padding: 0;
  }
}

.l-container--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.l-section {
  padding-top: var(--sp-section);
  padding-bottom: var(--sp-section);
}

.l-section--narrow {
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
}

.l-section--gray {
  background-color: var(--color-bg-gray);
}

/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.5s, color 0.5s, box-shadow 0.5s;
  color: var(--color-white);
  background-color: transparent;
}

/* Header Scrolled State */
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.75);
  color: var(--color-text-body);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px; 
}

.l-header__logo-placeholder {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.l-header__logo-image {
  height: 40px;
  width: auto;
  transition: opacity 0.5s ease;
}

.l-header__typo {
  font-weight: bold;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1100;
}

@media (min-width: 768px) {
  .l-header__typo {
    font-size: var(--font-size-lg);
  }
}

.l-header__logo-image.is-white {
    opacity: 1;
    position: relative;
    z-index: 2;
}

.l-header__logo-image.is-black {
    opacity: 0; /* 最初は隠す */
    position: absolute; /* 白ロゴの上に重ねる */
    z-index: 1100;
}

/* --- スクロール時（.is-scrolledが付与された時）の挙動 --- */

/* 白ロゴを消す */
.l-header.is-scrolled .l-header__logo-image.is-white {
    opacity: 0;
}

/* 黒ロゴを出す */
.l-header.is-scrolled .l-header__logo-image.is-black {
    opacity: 1;
}

/* Desktop Nav (Menu Name "global") */

.menu-pc-header-nav-container {
  display: none;
}

@media (min-width: 768px) {
  .menu-pc-header-nav-container {
    display: block;
  }
  #menu-pc-header-nav {
    display: flex;
    gap: var(--sp-lg);
    font-size: var(--font-size-base);
    font-weight: 500;
  }
}

/* Footer */
.l-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-lighter);
  padding-top: 4rem;
  padding-bottom: 7rem; /* Space for fixed button on SP */
}

@media (min-width: 768px) {
  .l-footer {
    padding-bottom: 4rem;
  }
}

.l-footer__top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .l-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.l-footer__info {
  width: 100%;
}

@media (min-width: 768px) {
  .l-footer__info {
    width: 50%;
  }
}

.l-footer__logo-placeholder {
  width: 6rem;
  height: 6rem;
  margin-bottom: var(--sp-lg);
}

.l-footer__name {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .l-footer__name {
    font-size: 1.25rem;
  }
}

.l-footer__address {
  margin-bottom: 0.5rem;
}

.l-footer__address p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.l-footer__contact {
  margin-bottom: 1.5rem;
}

.l-footer__contact-item {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.l-footer__sns {
  display: flex;
  gap: 1.5rem;
  font-size: 1.5rem;
}

ul#menu-footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.75rem;
  font-size: var(--font-size-sm);
}

@media (min-width: 768px) {
  ul#menu-footer-nav {
    gap: 1rem 3rem;
    justify-items: end;
  }
}

.l-footer__bottom {
  border-top: 1px solid var(--color-border-base);
  padding-top: 2rem;
  text-align: center;
  gap: 1rem;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* * ==================================================================================
       * Components (c-)
       * ==================================================================================
       */

/* Buttons */
.c-btn {
  display: inline-block;
  border: 1px solid var(--color-btn);
  border-radius: var(--radius-base);
  color: var(--color-btn);
  padding: 0.75rem 2rem;
  font-size: var(--font-size-sm);
  font-weight: bold;
  transition: all 0.3s;
  background: transparent;
  text-align: center;
}

.c-btn:hover {
  background-color: var(--color-btn);
  color: var(--color-white);
  opacity: 1; /* Override default a:hover */
}

.c-btn--sm {
  padding: 0.5rem 1.5rem;
}

.c-btn--insta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-color: #4b5563;
  background-color: #374151;
  color: var(--color-white);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
}

.c-btn--insta:hover {
  background-color: #4b5563;
}

/* Section Titles */
.c-section-header {
  color: var(--color-text-title);
  text-align: center;
  margin-bottom: 3rem;
}

.c-section-header__en {
  display: block;
  color: var(--color-text-light);
  font-size: var(--font-size-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.c-section-header__jp {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .c-section-header {
    margin-bottom: 4rem;
  }
  .c-section-header__jp {
    font-size: 1.875rem;
  }
}

.c-section-header__desc {
  margin-top: 1rem;
  color: var(--color-text-body);
}

/* Floating Button */
.c-floating-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
}

.c-floating-btn__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .c-floating-btn__link {
    width: 8rem;
    height: 8rem;
  }
}

.c-floating-btn__link:hover {
  opacity: 1;
  transform: scale(1.05);
}

.c-floating-btn__icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.c-floating-btn__text {
  font-size: 0.875rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .c-floating-btn__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .c-floating-btn__text {
    font-size: 1.125rem;
  }
}

/* Hamburger Button */
.c-hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  color: var(--color-white);
}

.l-header.is-scrolled .c-hamburger {
  color: var(--color-text-light);
}

@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

/* Tag Label */
.c-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 4px;
}

.c-tag--dark {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
}

.c-tag--light {
  background-color: var(--color-bg-gray);
  color: var(--color-text-body);
}

/* Pagination */
 .c-pagination {
          margin-top: 4rem;
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 0.5rem;
      }
      
      .c-pagination__item {
          width: 2.5rem;
          height: 2.5rem;
          display: flex;
          align-items: center;
          justify-content: center;
          border-radius: 0.25rem;
          font-weight: bold;
          transition: all 0.3s;
      }
      
      .c-pagination__item--current {
          background-color: var(--color-primary);
          color: var(--color-white);
      }
      
      .c-pagination__item--link {
          background-color: var(--color-white);
          border: 1px solid var(--color-border-light);
          color: var(--color-text-body);
      }
      
      .c-pagination__item--link:hover {
          background-color: var(--color-bg-gray);
      }

/* * ==================================================================================
       * Project (p-)
       * ==================================================================================
       */

/* Mobile Menu */
.p-mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--color-white);
  color: var(--color-text-body);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.p-mobile-menu.is-active {
  transform: translateX(0);
}

.menu-sp-hamburger-nav-container {
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

ul#menu-sp-hamburger-nav {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 1.125rem;
}

ul#menu-sp-hamburger-nav li.menu-item {
  padding: 0.75rem 0;
}

ul#menu-sp-hamburger-nav li.menu-item::before {
  content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 12px 0 8px;
    background-color: var(--color-accent);
    border-radius: 100%;
}

.p-mobile-menu__footer {
  padding: 0 2rem;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.p-mobile-menu__sns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.p-mobile-menu__name {
  font-weight: bold;
}

.p-mobile-menu__address {
  margin: 0.5rem 0 1rem 0;
}

.p-mobile-menu__address p {
  font-size: 0.875rem;
}

.p-mobile-menu__tel, .p-mobile-menu__mail {
  display: inline-flex; 
  align-items: center; 
  gap: 0.5rem;
  padding: 0.25rem 0.75rem; 
  font-weight: bold;
  color: var(--color-text-light);
  border: 1px solid var(--color-border-base); 
  border-radius: var(--radius-sm);
}

.p-mobile-menu__tel {
  margin-bottom: 0.75rem;
}

/* ------------------------------
  Main Visual
------------------------------ */
.p-mv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111827;
  overflow: hidden;
}

.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-mv__item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: mvFadeZoom 18s infinite;
}

.p-mv__item:nth-child(1) {
  animation-delay: 0s;
}
.p-mv__item:nth-child(2) {
  animation-delay: 6s;
}
.p-mv__item:nth-child(3) {
  animation-delay: 12s;
}

@keyframes mvFadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  5% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  38% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
  }
}

.p-mv__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: 10;
}

.p-mv__content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: var(--color-white);
  padding: 0 var(--sp-md);
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.p-mv__title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .p-mv__title {
    font-size: 3rem;
  }
}

.p-mv__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .p-mv__lead {
    font-size: 1.25rem;
  }
}

/* ------------------------------
  News Ticker
------------------------------ */
.p-news-ticker {
  background-color: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border-light);
  padding: 1rem 0;
}

.p-news-ticker__inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
}

.p-news-ticker__item {
  padding: 0;
}

.p-news-item__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .p-news-item__inner {
    flex-direction: row;
  }
}

.p-news-item__meta {
  display: flex;
  gap: 0.75rem;
}

.p-news-item__title {
  color: var(--color-text-title);
}

@media (min-width: 768px) {
  .p-news-ticker {
    padding: 1.5rem 0;
  }
  .p-news-ticker__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

/* ------------------------------
  Concept
------------------------------ */
.p-concept__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .p-concept__content {
    flex-direction: row;
    gap: 3rem;
  }
}

.p-concept__image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .p-concept__image {
    width: 50%;
  }
}

.p-concept__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
@media (min-width: 768px) {
  .p-concept__text {
    width: 50%;
  }
}

.p-concept__text-desc {
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

/* ------------------------------
  Infinite Loop Slider
------------------------------ */
.p-loop-slider {
  padding: 4rem 0 2rem;
  overflow: hidden;
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .p-loop-slider {
    padding: 8rem 0 4rem;
  }
}

.p-loop-slider__track {
  display: flex;
  width: max-content;
  animation: infinite-scroll 40s linear infinite;
}

.p-loop-slider__item {
  width: 240px;
  height: 160px;
  margin: 0 1rem;
  border-radius: var(--radius-base);
  flex-shrink: 0;
  overflow: hidden;
  background-size: cover;
}

@media (min-width: 768px) {
  .p-loop-slider__item {
    width: 330px;
    height: 220px;
    margin: 0 16px;
  }
}

@keyframes infinite-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ------------------------------
  Paragraph
------------------------------ */
.p-para__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 768px) {
  .p-para__list {
    gap: 5rem;
  }
}

.p-para__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 768px) {
  .p-para__item {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  /* Even items reversed */
  .p-para__item:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.p-para__img-wrapper {
  width: 90%;
}

@media (min-width: 768px) {
  .p-para__img-wrapper {
    width: 45%;
    max-width: 680px;
    flex-shrink: 0;
  }
}

/* SP: Left/Right alternation styling manually if needed, 
         but simplified here to match Tailwind logic: 
         Odd/Even logic for margins in SP was tricky in Tailwind, simplified here to standard stacked.
      */

/* Specific adjustments to match original design intent */
.p-para__item:nth-child(even) .p-para__img-wrapper {
  margin-left: auto; /* Right align on SP for even items */
}
@media (min-width: 768px) {
  .p-para__item:nth-child(even) .p-para__img-wrapper {
    margin-left: 0;
  }
}

.p-para__img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  object-fit: cover;
}

/* Rounded corners logic */
.p-para__item:nth-child(even) .p-para__img {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.p-para__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  padding: 2rem 1.5rem 0 1.5rem;
}

@media (min-width: 768px) {
  .p-para__content {
    width: 55%;
    max-width: 720px;
    gap: 0.75rem;
    padding: 2rem 3rem;
    justify-content: center;
    align-items: flex-start;
  }
}

.p-para__num {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 300;
  line-height: 100%;
  color: var(--color-accent);
}

.p-para__num:before {
    content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 12px 0 8px;
    background-color: var(--color-accent);
    border-radius: 100%;
}

.p-para__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text-title);
}

.p-para__text {
  font-size: 1rem;
  color: var(--color-text-body);
}

/* ------------------------------
  Rooms
------------------------------ */
.p-room-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-border-light);
}

.p-room-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .p-room-item {
    flex-direction: row;
  }
  .p-room-item--reverse {
    flex-direction: row-reverse;
  }
}

.p-room-item__gallery {
  width: 100%;
}

@media (min-width: 768px) {
  .p-room-item__gallery {
    width: 50%;
  }
}

.p-room-item__main-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.p-room-item__sub-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.p-room-item__sub-img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.p-room-item__info {
  width: 100%;
}

@media (min-width: 768px) {
  .p-room-item__info {
    width: 50%;
  }
}

.p-room-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-room-item__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text-title);
  margin-bottom: 0.75rem;
}

.p-room-item__title::before {
  content: '';
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    margin: 0 12px 0 8px;
    background-color: var(--color-accent);
    border-radius: 100%;
}

.p-room-item__desc {
  font-size: 1rem;
  color: var(--color-text-body);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ------------------------------
  Facilities
------------------------------ */
.p-facilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.p-facilities__col-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--color-text-title);
  border-left: 4px solid var(--color-primary);
  padding-left: 0.75rem;
  margin-bottom: 1.5rem;
}

.p-facility-media {
  display: flex;
  gap: 1rem;
}

.p-facility-media__img {
  width: 8rem;
  height: 6rem;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .p-facility-media__img {
    width: 12rem;
    height: 8rem;
  }
}

.p-facility-media__title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-text-title);
  margin-bottom: 0.5rem;
}

.p-facility-media__desc {
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.4;
}

.p-amenity-list {
  background-color: var(--color-bg-base);
  padding: 1.5rem;
  border-radius: var(--radius-base);
}

.p-amenity-list--gray {
  background-color: var(--color-bg-gray);
}

.p-amenity-list dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  font-size: 0.875rem;
}

.p-amenity-list dt {
  font-weight: bold;
}

.p-amenity-list dd {
  color: var(--color-text-body);
}

/* ------------------------------
  Grid Gallery
------------------------------ */
.p-grid-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 cols on mobile */
  gap: 2rem 1rem;
}

@media (min-width: 768px) {
  .p-grid-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-grid-gallery--type-b {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
  .p-grid-gallery--type-b {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.p-grid-gallery--type-b__img {
  width: 100%;
  margin-bottom: 0.75rem;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-base);
}

.p-grid-gallery--type-b__title {
  margin-bottom: 0.25rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-text-title);
}

@media (min-width: 768px) {
  .p-grid-gallery--type-b__title {
    font-size: 1.125rem;
  }
}

.p-grid-gallery--type-b__desc {
  font-size: 0.875rem;
  color: var(--color-text-body);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.p-card-overlay {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.p-card-overlay__bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s;
}

.p-card-overlay:hover .p-card-overlay__bg {
  background-color: rgba(0, 0, 0, 0.5);
}

.p-card-overlay__text {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.125rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------
  Access
------------------------------ */
.p-access-box {
  background-color: var(--color-bg-base);
  padding: 1rem;
  border-radius: var(--radius-lg);
}

.p-access-box--gray {
  background-color: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .p-access-box { 
    padding: 2rem; 
  }
}
      
.p-access-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
      
@media (min-width: 768px) {
  .p-access-layout {
    flex-direction: row;
    gap: 2rem;
  }
}

.p-access-map {
  width: 100%;
}
      
@media (min-width: 768px) {
  .p-access-map { 
    width: 50%; 
  }
}
      
.p-access-map__frame {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-weight: bold;
  border-radius: 0.25rem;
  overflow: hidden; /* iframeの角丸用 */
}
      
@media (min-width: 768px) {
  .p-access-map__frame { 
    aspect-ratio: auto; 
    height: 100%; } 
}
      
.p-access-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
 
.p-access-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
      
@media (min-width: 768px) {
  .p-access-info { 
    width: 50%; 
  }  
}
      
.p-access-info__title {
  color: var(--color-text-title);
  font-size: 1.25rem;
  font-weight: bold;
}

.p-access-info__item p {
  font-size: var(--font-size-sm);
}
      
.p-access-detail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--font-size-sm);
}
      
.p-access-detail__label {
  color: var(--color-text-title);
  font-weight: bold;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
}
      
.p-access-detail__icon {
  margin-right: 0.5rem;
  width: 1rem;
  text-align: center;
}

.p-access-detail__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-body);
}
      
.p-access-link__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--color-border-light); 
  border-radius: var(--radius-base);
  background-color: var(--color-white);
  font-size: var(--font-size-sm);
  font-weight: bold;
  transition: background-color 0.3s;
}  
      
.p-access-link__btn:hover {
  background-color: var(--color-bg-gray);
}

/* ------------------------------
  FAQ
------------------------------ */
.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-faq-item {
  background-color: var(--color-bg-base);
  border-radius: var(--radius-base);
}

.p-faq__list--gray .p-faq-item {
  background-color: var(--color-bg-gray);
}

.p-faq-item__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

/* Remove default marker */
.p-faq-item__summary::-webkit-details-marker {
  display: none;
}

@media (min-width: 768px) {
  .p-faq-item__summary {
    padding: 1.5rem;
  }
}

.p-faq-item__icon {
  transition: transform 0.3s;
  color: var(--color-text-light);
}

.p-faq-item[open] .p-faq-item__icon {
  transform: rotate(180deg);
}

.p-faq-item__content {
  padding: 0 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .p-faq-item__content {
    padding: 0 1.5rem 1.5rem;
  }
}

/* ------------------------------
  Post List 
------------------------------ */
.p-post-list {
  margin-bottom: 3rem;
  border-top: 1px solid var(--color-border-light);
}

.p-post-item {
  display: block;
  border-bottom: 1px solid var(--color-border-light);
  padding: 1rem 0.5rem;
}

.p-post-item__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .p-post-item__inner {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.p-post-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.p-post-item__date {
  color: var(--color-text-body);
  font-weight: 500;
}

.p-post-item__title {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  color: var(--color-text-title);
}

.p-post-item:hover .p-post-item__title {
  color: var(--color-text-body);
}

.p-post-list__empty {
  margin-bottom: 3rem;
  text-align: center;
}

/* ------------------------------
  Navigation Card
------------------------------ */
.p-nav-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center; 
}
@media (min-width: 768px) {
  .p-nav-box {
      flex-direction: row;
  }
}

.p-nav-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  text-align: center;
  text-decoration: none; 
  width: 100%;
}

@media (min-width: 768px) {
  .p-nav-card {
      width: calc(50% - 1rem); 
  }
}

.p-nav-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}

.p-nav-card:hover .p-nav-card__bg {
  transform: scale(1.05);
}

.p-nav-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  transition: background-color 0.3s;
  z-index: 10;
}

.p-nav-card:hover .p-nav-card__overlay {
  background-color: rgba(0,0,0,0.5);
}

.p-nav-card__content {
  position: relative;
  z-index: 20;
  color: var(--color-white);
}

.p-nav-card__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.p-nav-card__link-text {
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 0.25rem;
}

/* ------------------------------
  Contact
------------------------------ */
.p-contact-box {
            background-color: var(--color-bg-base);
            padding: 1.5rem 1rem;
            border-radius: var(--radius-base);
            text-align: center;
        }

.p-contact-box--gray {
            background-color: var(--color-bg-gray);
        }

        @media (min-width: 768px) {
            .p-contact-box { 
              padding: 3rem; 
            }
        }

        .p-contact-text {
            color: var(--color-text-body);
            margin-bottom: 1.5rem;
        }

        .p-contact-methods {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        @media (min-width: 768px) {
          .p-contact-text {
              margin-bottom: 2rem;
          }
            .p-contact-methods { 
              flex-direction: row; 
              margin-bottom: 2rem;
            }
        }

        .p-contact-btn {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1rem;
            width: 100%;
            min-width: 280px;
            background-color: var(--color-white);
            border: 1px solid var(--color-border-base);
            padding: .75rem 1rem;
            border-radius: var(--radius-base);
            transition: all 0.3s;
        }
        @media (min-width: 768px) {
            .p-contact-btn { width: auto; }
        }

        .p-contact-btn__icon {
          display: block;
            font-size: 1.25rem;
            color: var(--color-accent);
            margin-bottom: 4px;
            transition: color 0.3s;
        }

        .p-contact-btn__label {
          display: block;
            font-size: 0.75rem;
            font-weight: bold;
            color: var(--color-text-light);
            line-height: 1;
        }

        .p-contact-btn__value {
            font-size: 1rem; 
            font-weight: bold;
            text-align: left;
            color: var(--color-text-body);
            transition: color 0.3s;
            word-break: break-all;
        }

        .p-contact-note {
            font-size: 0.875rem;
            color: var(--color-text-light);
            line-height: 1.6;
        }


.p-note {
  background-color: var(--color-bg-base);
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius-base);
}

.p-note--gray {
  background-color: var(--color-bg-gray);
}

@media (min-width: 768px) {
  .p-note {
    margin-top: 4rem;
  }
}

.p-note__text {
  font-size: var(--font-size-base);
  color: var(--color-text-body);
}

/* ---------------------------------------------------------------

       * 投稿ページ

 --------------------------------------------------------------- */

/* Page Header (News, etc.) */
.p-page-header {
  position: relative;
  height: 40vh;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111827;
  overflow: hidden;
  color: var(--color-white);
  text-align: center;
}

.p-page-header__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.p-page-header__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay);
  z-index: 10;
}

.p-page-header__content {
  position: relative;
  z-index: 20;
  padding: 0 var(--sp-md);
}

.p-page-header__title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-page-header__title {
    font-size: 2.25rem;
  }
}

.p-page-header__subtitle {
  font-size: var(--font-size-sm);
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .p-page-header__subtitle {
    font-size: var(--font-size-base);
  }
}

/* Breadcrumb */
.p-breadcrumb {
  background-color: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border-light);
  padding: 0.75rem 0;
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-text-light);
  list-style-type: none;
}

.p-breadcrumb__separator {
  color: var(--color-text-light);
}

.p-breadcrumb__current {
  font-weight: bold;
  color: var(--color-text-body);
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) {
  .p-breadcrumb__current {
    max-width: none;
  }
}

/* Single Post Layout */
.p-single-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Entry Header */
.p-entry-header {
  margin-bottom: 2rem;
}

.p-entry-header__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: var(--font-size-sm);
}

.p-entry-header__date {
  color: var(--color-text-body);
  font-weight: 500;
}

.p-entry-header__title {
  color: var(--color-text-title);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .p-entry-header__title {
    font-size: 1.875rem;
  }
}

.p-entry-header__thumbnail {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
}

/* Entry Content (WordPress Body) */
.p-entry-content {
  margin-bottom: 3rem;
  color: var(--color-text-body);
}

.p-entry-content > p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.wp-block-heading {
  color: var(--color-text-title);
}

.p-entry-content > h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-border);
}

.p-entry-content > h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.p-entry-content > ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.p-entry-content > ol {
  list-style-type: decimal;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.p-entry-content > img {
  max-width: 100%;
  height: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.p-entry-content > blockquote {
  border-left: 4px solid #d1d5db;
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1.5rem;
  color: var(--color-secondary);
  font-style: italic;
}

/* Post Footer */
.p-post-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--color-border);
}

/* Social Share */
.p-social-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.p-social-share__label {
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--color-text-light);
}

.p-social-share__link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--color-bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-body);
  transition: background-color 0.3s;
}

.p-social-share__link:hover {
  background-color: var(--color-border-light);
}

/* Post Navigation */
.p-post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 3rem;
}

.p-post-nav__link {
  width: 50%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: 0.25rem;
  transition: background-color 0.3s;
}

.p-post-nav__link:hover {
  background-color: var(--color-bg-gray);
}

.p-post-nav__link--next {
  justify-content: flex-end;
  text-align: right;
}

.p-post-nav__icon {
  font-size: 1.125rem;
  color: var(--color-text-light);
  transition: transform 0.3s;
  margin-top: 0.1rem;
}

.p-post-nav__link:hover .p-post-nav__icon--prev {
  transform: translateX(-4px);
}
.p-post-nav__link:hover .p-post-nav__icon--next {
  transform: translateX(4px);
}

.p-post-nav__label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.p-post-nav__title {
  font-size: var(--font-size-sm);
  font-weight: bold;
  color: var(--color-primary);
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}

.p-post-nav__link:hover .p-post-nav__title {
  color: var(--color-secondary);
}

/* Sidebar Area */
.p-sidebar-area {
  width: 100%;
  border-top: 1px solid var(--color-bg-light);
}

/* Banner Widget */
.p-widget-banner {
  display: block;
  background-color: var(--color-accent);
  color: var(--color-white);
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-widget-banner:hover {
  background-color: var(--color-accent-hover);
  transform: scale(1.02);
}

.p-widget-banner__text {
  font-size: var(--font-size-sm);
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.p-widget-banner__title {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Category Widget */

.p-widget-categories {
  background-color: var(--color-bg-gray);
  padding: 2rem;
  border-radius: var(--radius-base);
}

.p-widget-categories__title {
  font-size: var(--font-size-sm);
  font-weight: bold;
  border-left: 4px solid var(--color-primary);
  padding-left: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-title);
}

.p-widget-categories__list {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
}

.p-widget-categories__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  background-color: var(--color-bg-base);
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
}



/* Archive */

.p-archive-header {
  margin-bottom: 3rem;
}

.p-archive-header__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-text-title);
  margin-bottom: 0.25rem;
}

.p-archive-header__desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-body);
}

.p-archive-list {
  display: flex;
          flex-direction: column;
          gap: 2rem;
          margin: 0 auto;
}

      /* Post Card */
      
      .p-post-card {
          border-bottom: 1px solid var(--color-border-light);
          padding-bottom: 2rem;
          transition: opacity 0.3s;
      }

      .p-post-card:first-child {
          border-top: 1px solid var(--color-border-light);
          padding-top: 2rem;
      }
      
      .p-post-card__link {
          display: block;
      }

      .p-post-card__header {
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          margin-bottom: 0.75rem;
      }
      @media (min-width: 768px) {
          .p-post-card__header {
              flex-direction: row;
              align-items: center;
              gap: 1rem;
          }
      }

      .p-post-card__meta {
          display: flex;
          align-items: center;
          gap: 0.75rem;
          font-size: var(--font-size-sm);
          flex-shrink: 0;
      }

      .p-post-card__date {
          color: var(--color-text-light);
          font-weight: 500;
      }

      .p-post-card__title {
        color: var(--color-text-title);
          font-size: 1rem;
          font-weight: bold;
          line-height: 1.5;
          margin-bottom: 0.75rem;
          transition: color 0.3s;
      }
      @media (min-width: 768px) {
          .p-post-card__title { font-size: 1.25rem; }
      }

      .p-post-card__excerpt {
          font-size: var(--font-size-sm);
          color: var(--color-text-body);
          line-height: 1.5;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
      }


.p-404 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* 要素の表示アニメーション */

/* 初期状態：透明にして少し下に配置 */
.js-fade-in {
  opacity: 0;
  transform: translateY(30px); /* 下に30pxずらす */
  transition: opacity 1s ease, transform 1s ease; /* 1秒かけて変化 */
  will-change: opacity, transform; /* パフォーマンス最適化 */
}

/* 表示状態：不透明にして元の位置に戻す */
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
