@charset "utf-8";

/* =========================================
   Base & Variables
   ========================================= */
:root {
  /* Colors */
  --main-color: #1a471d;
  --text-color: #3c3837;
  --bg-color: #ffffff;
  --gray-color: #b7adaa;
  --label-color: #005d08;
  /* Fonts */
  --font-serif: "Noto Serif JP";
  --font-accent: "Uchen";

  /* Header Height */
  --header-height: 80px;
  --header-height-pc: 80px;
  --header-height-sp: 64px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-pc);
}

body {
  font-family: var(--font-serif);
  color: var(--text-color);
  line-height: 1.8;
  margin: 0;
  background: var(--bg-color);
  font-feature-settings: "palt";
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

ul,
ol,
dl {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

/* =========================================
   Layout & Components
   ========================================= */
.container {
  width: 100%;
  max-width: 1114px;
  margin: 0 auto;
}

.section {
  padding: 10rem 0 2.5rem;
  margin-bottom: 0;
}

.section-heading-line {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4rem;
}
.section-heading-line-narrow {
  margin-bottom: 2.5rem;
}

.section-heading-line h2 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
  position: relative;
  padding-left: 96px; /* 線のスペース */
}
.section-heading-line h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 80px; /* 線の長さ */
  height: 1px;
  background-color: var(--text-color);
}
.section-heading-line .subheading {
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding-left: 100px;
}
.pc {
  display: block !important;
}
.tab {
  display: none !important;
}
.sp {
  display: none !important;
}
.tab-sp {
  display: none !important;
}
.none {
  display: none !important;
}
/* =========================================
   Header
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  padding: 0 5rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.navbar {
  display: flex;
  gap: 64px;
  align-items: center;
}
.navbar a {
  white-space: nowrap;
}
.nav-link {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.btn-contact {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 1rem 3.5rem;
  border-radius: 100px;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  white-space: nowrap;
}
.mobile-menu {
  display: none;
}
.header-contect {
  display: flex;
  padding: 0.5rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: var(--main-color);
  color: var(--white, #fff);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.hamburger {
  display: none;
}
/* =========================================
   Hero & Concept
   ========================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-color);
  text-align: center;
  margin-bottom: -1px;
}
.hero video {
  width: 100%;
}
.concept {
  background: url("img/concept.webp") center/cover;
  padding: 17.5rem 0;
  text-align: center;
  color: var(--bg-color);
}
.concept h1 {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 3.75rem;
  text-shadow:
    0 0 10px #000,
    0 2px 24px #000,
    0 0 10px #000,
    0 1px 1px #000;
}
.concept p {
  font-weight: 600;
  font-size: 18px;
  line-height: 280%;
  letter-spacing: 2.16px;
  text-shadow:
    0 0 10px #000,
    0 2px 24px #000,
    0 0 10px #000,
    0 1px 1px #000;
}

/* =========================================
   Stay in Stories
   ========================================= */
.stay-tabs {
  display: flex;
  border-bottom: 0.5px solid var(--border-color);
  margin-bottom: 4rem;
}
.tab-link {
  flex: 1;
  text-align: center;
  padding: 1.125rem 0 2.5rem 0;
  font-family: var(--font-serif);
  border-bottom: 0.5px solid transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  color: var(--text-color);
  border-bottom-color: var(--text-color);
  position: relative;
}

.tab-link::after {
  content: "";
  position: absolute;
  bottom: 24px;
  left: 50%;

  width: 8px;
  height: 8px;
  border-right: 0.5px solid var(--text-color);
  border-bottom: 0.5px solid var(--text-color);
  transform: translateX(-50%) rotate(45deg);
}

.story-content {
  display: flex;
  gap: 95px;
  margin-bottom: 10rem;
}

#story-03 {
  margin-bottom: 0px;
}
.story-index {
  width: 150px;
  flex-shrink: 0;
  text-align: center;
}
.story-num {
  font-family: var(--font-accent);
  font-size: 56px;
  color: var(--main-color);
  font-weight: 400;
  line-height: 140%;
  display: block;
  padding: 1.5rem 0 0.5rem 0;
  border-top: 0.5px solid transparent;
  border-color: var(--black);
}
.story-title-vertical {
  writing-mode: vertical-rl;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin: 0 auto;
  text-align: left;
}
.story-body {
  flex: 1;
  display: flex;
  gap: 2.6875rem;
}
.story-img {
  flex: 1.2;
}
.story-desc {
  flex: 1;
  width: 100%;
  max-width: 338px;
}
.story-desc h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  margin-bottom: 16px;
  border-bottom: 1px solid #000;
  padding-bottom: 16px;
  display: inline-block;
  min-width: 50%;
  width: 100%;
  max-width: 338px;
}
.story-desc p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  display: inline-block;
}
/* =========================================
   Accommodation
   ========================================= */
.accommodation-lead {
  margin-bottom: 2.5rem;
  padding-left: 100px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
}
.facility-list-outer {
  display: flex;
  gap: 6.5rem;
  padding-left: 100px;
}
.facility-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100px;
  margin-bottom: 5rem;
  padding-left: 1rem;
  border-left: 0.5px solid var(--label-color); /* 全体の左線 */
}
.facility-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--label-color);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  padding: 0.25rem 0;
}
.facility-list li a span::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 0.5px solid var(--label-color);
  border-right: 0.5px solid var(--label-color);
  margin-bottom: 2px;
  transform: rotate(45deg);
}
/* Room Slider */
.room-header-vertical {
  display: flex;
}
.sidebar {
  width: 244px;
  flex-shrink: 0;
}
.sidebar h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 2.25rem;
}
.room-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.room-nav-list li {
  margin-bottom: 1.5rem;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  transition: color 0.3s;
  display: inline-block;
}
.room-nav-list li:last-of-type {
  margin-bottom: 0;
}
.room-nav-list li.active {
  color: var(--text-color);
  font-weight: bold;
}
.main-content {
  flex-grow: 1;
  width: 100%;
}
.room-title {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding: 0 0 1.5rem 3.75rem;
}
.slider-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: var(--bg-color);
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.arrow-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.arrow-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border-top: 0.5px solid var(--text-color);
  border-right: 0.5px solid var(--text-color);
  transform: translate(-50%, -50%);
}
.arrow-btn.prev::before {
  transform: translate(-30%, -50%) rotate(-135deg); /* 左向き */
}
.arrow-btn.next::before {
  transform: translate(-70%, -50%) rotate(45deg); /* 右向き */
}
.arrow-btn.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.thumbnail-list {
  display: flex;
  gap: 20px;
  margin: 0 3.75rem 1.25rem 3.75rem;
}
.thumbnail-list img {
  width: calc((100% - 80px) / 5);
  aspect-ratio: 3 / 2;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}
.room-spec {
  display: flex;
  gap: 1.875rem;
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  color: var(--text-color);
  padding: 0 60px;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon {
  width: 16px;
}
.room-desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  margin-bottom: 1.875rem;
  padding: 0 60px;
}
.info-card {
  border: 0.5px solid var(--gray-color);
  padding: 1rem;
  margin: 0 3.75rem;
  width: fit-content;
  min-width: 200px;
}
.info-row {
  display: flex;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}
.info-label {
  white-space: nowrap;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

/* =========================================
   Map
   ========================================= */
.map-section-new {
  margin-top: 5rem;
}
.map-layout {
  display: flex;
  gap: 25px;
  align-items: center;
}
/* サムネイル */
.map-left-thumbs,
.map-right-thumbs {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  gap: 1.5rem;
}
.map-right-thumbs {
  padding-left: 41px;
}
.map-thumb-item {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.map-thumb-item img {
  max-width: 150px;
  margin: 0 auto 0.25rem auto;
  display: block;
}
.map-thumb-item span {
  white-space: nowrap;
}

/* 中央：メインマップ */
.map-main {
  flex: 0 0 55%;
}

/* =========================================
   Cuisine
   ========================================= */
.cuisine-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.cuisine-top {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-start;
}
.cuisine-main-img {
  flex: 1.5;
}
.cuisine-desc {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10rem;
}
.cuisine-desc h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.cuisine-desc p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
}
.cuisine-bottom-grid {
  display: flex;
  gap: 1.5rem;
}
.cuisine-bottom-grid img {
  width: calc((100% - 72px) / 4);
  aspect-ratio: 3/2;
}

/* =========================================
   Services
   ========================================= */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.service-text-col {
  flex: 1;
}
.service-text-col {
  display: flex;
  justify-content: space-between;
}
.service-block h3 {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 3rem;
}
.service-block p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}

.service-row {
  display: flex;
}
.service-img-col.pc {
  max-width: 56%;
}
/* =========================================
   Sample Plans
   ========================================= */
.plan-layout {
  display: flex;
  gap: 60px;
}
.plan-info-side {
  flex: 0.9;
}
.plan-label {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  display: block;
  margin-bottom: 1rem;
}
.plan-info-side h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 5rem;
}
.plan-info-side p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.plan-dl {
  border-top: 1px solid var(--text-color);
  margin-top: 1.875rem;
}
.plan-dl div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1.125rem 0;
  border-bottom: 1px solid var(--text-color);
}
.plan-dl dt {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.plan-dl dd {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.plan-img-side {
  flex: 1.1;
}

/* Timeline */
.timeline-wrapper {
  margin-top: 3.75rem;
}
.timeline-day {
  display: flex;
  flex-direction: column;
  margin-bottom: 4.5rem;
}
.timeline-day:last-child {
  margin-bottom: 0;
}
.day-title {
  font-size: 29px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: var(--main-color);
  margin: 0 1.875rem 0.875rem 0;
}
.day-content {
  flex: 1;
  border-left: 1px solid var(--text-color);
  padding: 3.75rem 0 0 3.125rem;
  margin-left: 1.875rem;
}
.t-event.t-box-style {
  border: 0.5px solid var(--gray-color);
  padding: 1rem;
  margin: 0 0 3rem 0;
}
.t-event.t-box-style::before {
  display: none;
}
.t-text {
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.t-event p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  width: fit-content;
}
.t-event {
  position: relative;
  margin-bottom: 5rem;
  width: fit-content;
  max-width: 707px;
}
.t-event:last-child {
  margin-bottom: 0;
}
.t-event::before {
  content: "";
  position: absolute;
  left: -3.5rem;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--main-color);
  border-radius: 50%;
}
.t-event.t-connect-line::after {
  content: "";
  position: absolute;
  left: calc(-3.5rem + 11px);
  top: 13px;
  width: 32px;
  height: 0.5px;
  background-color: var(--text-color);
}
.t-event-img {
  display: flex;
  gap: 1rem;
  max-width: 707px;
}
.t-event-img:last-of-type {
  max-width: 950px;
}
.t-event-img-1 {
  position: absolute;
  right: -56%;
  top: 25%;
  max-width: 50%;
}
.t-event-img-2 {
  max-width: 24%;
}
.t-name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  display: inline-block;
  margin-bottom: 1rem;
  width: fit-content;
}

/* =========================================
   Access
   ========================================= */
.access-content {
  margin: 0 auto;
}
.access-desc {
  display: flex;
  align-items: flex-start;
  padding-left: 6.25rem;
  font-family: "Noto Serif JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  margin-bottom: 4rem;
}
.japan-map {
  text-align: center;
  margin-bottom: 4rem;
}
.access-diagrams {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.diagram-block h3 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  padding-bottom: 1rem;
}

/* =========================================
   News List Scroll & Layout
   ========================================= */
.news-part {
  padding-bottom: 10rem;
  align-items: flex-start;
  display: flex;
  gap: 12.5rem;
}
.news-h2 h2 {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  padding-left: 0;
}
.section-heading-line.news-h2 h2::before {
  display: none;
}
.news-layout {
  flex: 1;
  width: 100%;
  max-height: 336px;
  overflow-y: auto;
  padding-right: 24px;
  border: none;
}
.news-layout li {
  padding: 1.125rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 0.5px solid var(--text-color);
}
.news-layout li:first-of-type {
  border-top: 0.5px solid var(--text-color);
}
.news-layout::-webkit-scrollbar-track {
  background: var(--gray-color);
  border-radius: 2px;
}
.news-layout::-webkit-scrollbar-thumb {
  background: var(--text-color);
  border-radius: 2px;
}
.news-layout li {
  cursor: pointer;
  transition: background-color 0.2s;
}
.news-date {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
.news-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 20000;
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  background: var(--bg-color);
  max-width: 1114px;
  width: 90%;
  height: auto;
  max-height: 85vh;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.modal-scroll-wrapper {
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding: 3rem 3.75rem;
}
.modal-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 32px;
  height: 32px;
  background: rgb(255 255 255 / 0.8);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.modal-close-btn span {
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: var(--text-color);
  display: block;
}
.modal-close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.modal-close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}
.modal-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.modal-header h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--text-color);
}
.modal-date {
  display: block;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  margin-bottom: 1rem;
  color: var(--text-color);
  padding: 0 1rem;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 1.75rem;
  padding: 0 1rem;
}
.modal-divider {
  width: 100%;
  height: 1px;
  background-color: var(--text-color);
  margin-bottom: 1.75rem;
}
.modal-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
  white-space: pre-wrap;
  text-align: justify;
  padding: 0 1rem;
}
/* =========================================
   Contact
   ========================================= */
.contact-part {
  border-top: 0.5px solid var(--text-color);
  margin: 0 0 10rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 249px;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 32px;
  margin: 4rem 0 0.5rem 0;
  border-bottom: 0.5px solid var(--text-color);
  padding-bottom: 0.5rem;
}
.c-tel img {
  width: 21px;
}
.c-hours {
  margin-top: 0.5rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 220%;
}

.btn-contact-white {
  display: inline-block;
  background: var(--main-color);
  color: var(--bg-color);
  padding: 1rem 3.5rem;
  margin-top: 2.5rem;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  border: 0.5px solid var(--bg-color);
  transition: 0.3s;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 5rem 0;
  text-align: center;
}
.footer-nav-wrap {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-logo {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  display: block;
  margin: 1.125rem 3.875rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.25rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.copyright {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.footer-contact-btn {
  padding: 0.5rem 1.5rem;
  background: var(--bg-color);
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
/* ボタン・aタグのホバー */
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .btn-contact:hover {
    opacity: 0.7;
  }
  .news-layout li:hover {
    opacity: 0.7;
  }
  .footer-contact-btn:hover {
    opacity: 0.7;
  }
  .room-nav-list li:hover {
    color: rgba(60, 56, 55, 0.7);
  }
  .thumbnail-list img:hover {
    opacity: 0.7;
  }
  .btn-contact-white:hover {
    background: var(--bg-color);
    color: var(--main-color);
    border: 0.5px solid var(--main-color);
  }
}
@media (max-width: 1370px) {
  .header-inner {
    padding: 0 2.5rem;
  }
}
/* =========================================
   TAB
   ========================================= */
@media (max-width: 1279px) {
  .container {
    max-width: 70%;
  }
  .navbar {
    display: none;
  }
  :root {
    --header-height: 78px;
  }
  .section {
    padding: 4.5rem 0 0 0;
  }
  .section-heading-line {
    margin-bottom: 2rem;
  }
  .section-heading-line h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    padding-left: 72px;
  }
  .section-heading-line h2::before {
    width: 64px;
  }
  .section-heading-line .subheading {
    padding-left: 76px;
  }
  .pc {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .tab-sp {
    display: block !important;
  }
  .none {
    display: none !important;
  }
  /* =========================================
   Hamburger Menu
   ========================================= */
  .header-inner {
    padding: 0 1.25rem;
    justify-content: space-between;
  }
  .hamburger {
    display: block;
    position: fixed;
    top: 29px;
    right: 20px;
    width: 30px;
    height: 20px;
    z-index: 15000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger span {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--text-color);
    transition: all 0.4s;
    margin-top: -0.5px;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(-10px);
  }
  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(10px);
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    background-color: var(--text-color);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    background-color: var(--text-color);
  }

  /* =========================================
   Mobile Menu Styles
   ========================================= */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 8;
    background: var(--main-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.3s,
      visibility 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-menu-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
    padding-top: 78px;
    max-height: 100%;
    overflow-y: auto;
  }
  .mobile-link {
    color: var(--bg-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
  }
  .btn-mobile-contact {
    margin-top: 20px;
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
  }
  /* =========================================
   Hero & Concept
   ========================================= */
  .concept {
    background: url("img/concept-tab.webp") center/cover;
    padding: 10.125rem 0;
  }
  .concept h1 {
    font-size: 36px;
  }
  .concept p {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 280%;
    letter-spacing: 1.92px;
  }

  /* =========================================
   Stay in Stories
   ========================================= */
  .stay-tabs {
    margin-bottom: 0;
  }
  .tab-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
  }
  .story-content {
    flex-direction: column;
    margin-bottom: 0;
    gap: 1.5rem;
  }
  .story-index {
    width: 100%;
  }
  .story-num {
    padding-top: 2rem;
    font-size: 40px;
    border-top: none;
  }
  .story-title-vertical {
    writing-mode: unset;
    font-family: "Noto Serif JP";
    font-size: 24px;
    text-align: center;
  }
  .story-body {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .story-img {
    width: 100%;
  }
  .story-desc {
    max-width: 100%;
  }

  /* =========================================
   Accommodation
   ========================================= */
  .accommodation-lead {
    margin-bottom: 2rem;
    padding-left: 0;
    font-size: 15px;
  }
  .facility-list-outer {
    padding-left: 0;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    border-left: 0.5px solid var(--main-color);
  }
  .facility-list {
    margin-bottom: 0;
    border-left: none;
    height: auto;
  }
  .facility-list li a {
    font-size: 12px;
    padding: 0.5rem 0;
  }

  /* Room Slider */
  .room-header-vertical {
    flex-direction: column;
  }
  .sidebar {
    width: fit-content;
    margin-bottom: 2rem;
  }
  .sidebar h3 {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }
  .room-nav-list li {
    margin-bottom: 1rem;
  }
  .room-title {
    font-size: 16px;
    padding-bottom: 0.5rem;
  }
  .room-spec {
    margin-bottom: 0.75rem;
  }
  .room-desc {
    font-size: 15px;
    margin-bottom: 0.75rem;
  }
  .info-row {
    font-size: 12px;
  }
  .info-card {
    padding: 0.375rem;
  }

  /* =========================================
   Map
   ========================================= */
  .map-thumbs {
    width: 100%;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .map-thumb-item {
    line-height: 150%;
    text-align: center;
  }
  .map-thumb-item img {
    max-width: 100%;
  }
  .map-layout {
    gap: 1.5rem;
  }
  .map-right-thumbs {
    padding-left: 0;
  }
  .map-main {
    margin-bottom: 2rem;
  }

  /* =========================================
   Cuisine
   ========================================= */
  .cuisine-layout {
    gap: 1.5rem;
  }
  .cuisine-top {
    gap: 1.5rem;
  }
  .cuisine-desc {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cuisine-desc h3 {
    font-size: 16px;
  }
  .cuisine-desc p {
    font-size: 15px;
  }
  .cuisine-bottom-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr;
  }
  .cuisine-bottom-grid img {
    width: 100%;
  }
  /* =========================================
   Services
   ========================================= */
  .service-text-col {
    gap: 3rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  .service-block h3 {
    font-size: 16px;
    padding-bottom: 0.75rem;
  }
  .services-grid {
    gap: 3rem;
  }
  .service-row {
    flex-direction: column;
  }
  .service-img-col {
    margin-bottom: -1.5rem;
  }
  .service-img-col-last {
    margin-bottom: 1.5rem;
  }

  /* =========================================
   Sample Plans
   ========================================= */
  .plan-img {
    margin-bottom: 1.5rem;
  }
  .plan-label {
    font-size: 12px;
    margin-bottom: 0.5rem;
  }
  .plan-info-side {
    flex: 1;
  }
  .plan-info-side h3 {
    font-size: 27px;
    margin-bottom: 1.5rem;
  }
  .plan-info-side p {
    font-size: 15px;
  }
  .plan-dl div {
    gap: 10rem;
    padding: 1.125rem 2rem;
    justify-content: flex-start;
  }
  .plan-dl dt {
    width: 84px;
  }
  .plan-dl dd {
    font-size: 15px;
  }
  .timeline-wrapper {
    margin-top: 3.375rem;
  }
  .day-content {
    padding: 0 0 0 3rem;
    margin-left: 0.5rem;
  }
  .t-event {
    margin-bottom: 2.5rem;
  }
  .t-event::before {
    left: -3.375rem;
  }
  .t-name {
    font-size: 16px;
  }
  .t-event p {
    font-size: 15px;
  }
  .t-event.t-box-style {
    margin: 0 0 2rem 0;
  }

  /* =========================================
   Access
   ========================================= */
  .access-desc {
    padding-left: 4.5rem;
    font-size: 15px;
    margin-bottom: 2rem;
  }
  .access-diagrams {
    gap: 2em;
  }
  .diagram-block h3 {
    padding-bottom: 0.5rem;
  }
  /* =========================================
   News
   ========================================= */
  .news-part {
    align-items: center;
    gap: 2rem;
    flex-direction: column;
    padding-bottom: 4.5rem;
  }
  .news-h2 {
    margin-bottom: 0;
  }
  .news-h2 h2 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    padding-left: 0;
  }
  .news-layout {
    max-height: 371px;
  }
  .news-layout li {
    gap: 1rem;
  }
  .news-title {
    font-size: 15px;
  }
  /* =========================================
   Modal
   ========================================= */
  .modal-container {
    width: 70%;
    max-height: 80vh;
  }
  .modal-scroll-wrapper {
    padding: 3rem 3.75rem;
  }
  .modal-close-btn {
    top: 1rem;
    right: 1rem;
  }
  .modal-text {
    font-size: 15px;
  }
  /* =========================================
   Contact
   ========================================= */
  .contact-part {
    border-top: none;
    margin: 0 0 5.75rem 0;
  }
  .c-tel {
    width: 243px;
    font-size: 22px;
    font-weight: 600;
    margin: 3rem 0 0.5rem 0;
  }
  .c-hours {
    font-size: 15px;
  }
  /* =========================================
   footer
   ========================================= */
  .footer {
    padding: 1rem 0 2rem 0;
  }
  .footer-nav-wrap {
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.5rem;
  }
  .footer-logo {
    font-size: 22px;
  }
  .footer-nav {
    max-width: 725px;
    gap: 1.5rem 2rem;
  }
}
/* =========================================
   SP
   ========================================= */
@media (max-width: 709px) {
  .container {
    max-width: 88%;
  }
  :root {
    --header-height: 64px;
  }
  .section {
    padding: 3.5rem 0 0 0;
  }
  .section-heading-line h2 {
    font-size: 32px;
    padding-left: 20px;
  }
  .section-heading-line h2::before {
    width: 12px;
  }
  .section-heading-line .subheading {
    font-size: 10px;
    padding-left: 24px;
  }
  .pc {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .tab-sp {
    display: block !important;
  }
  .none {
    display: none !important;
  }
  /* =========================================
   Hamburger Menu
   ========================================= */
  .header-contect {
    font-size: 10px;
    padding: 0.375rem 1rem;
  }
  .hamburger {
    top: 22px;
    right: 28px;
  }
  /* =========================================
   Mobile Menu Styles
   ========================================= */
  .mobile-menu-inner {
    padding-top: 64px;
  }
  .mobile-link {
    font-size: 14px;
  }
  .btn-mobile-contact {
    margin-top: 0;
    font-size: 10px;
    font-weight: 700;
  }
  /* =========================================
   Hero & Concept
   ========================================= */
  .concept {
    background: url("img/concept-sp.webp") center/cover;
    padding: 4.375rem 0;
  }
  .concept h1 {
    font-size: 32px;
  }
  .concept p {
    font-size: 14px;
    letter-spacing: 1.68px;
  }

  /* =========================================
   Stay in Stories
   ========================================= */
  .stay-section {
    margin-top: 0.5rem;
  }
  .stay-tabs {
    flex-direction: column;
    gap: 2rem;
  }
  .tab-link {
    padding: 1.125rem 0 2.625rem 0;
    font-size: 16px;
  }
  .story-num {
    padding-top: 2rem;
    font-size: 36px;
  }
  .story-title-vertical {
    font-size: 22px;
  }
  .story-img {
    width: 100%;
  }
  .story-desc {
    max-width: 100%;
  }
  .story-desc p {
    font-size: 13px;
  }

  /* =========================================
   Accommodation
   ========================================= */
  .accommodation-lead {
    font-size: 13px;
  }
  .facility-list li a {
    font-size: 12px;
    padding: 0.5rem 0;
  }

  /* Room Slider */
  .room-title {
    padding: 0 0 0.5rem 3rem;
  }
  .sidebar {
    margin-bottom: 2rem;
  }
  .room-nav-list li {
    margin-bottom: 1rem;
  }
  .slider-container {
    gap: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .thumbnail-list {
    gap: 0.4375rem;
    margin: 0 3rem 0.75rem 3rem;
  }
  .thumbnail-list img {
    width: calc((100% - 28px) / 5);
  }
  .arrow-btn {
    width: 24px;
    height: 32px;
  }
  .arrow-btn::before {
    width: 16px;
    height: 16px;
  }
  .room-spec {
    font-size: 13px;
    gap: 1rem;
    padding: 0 3rem;
  }
  .room-desc {
    font-size: 13px;
    padding: 0 3rem;
  }
  .info-row {
    font-size: 12px;
  }
  .info-card {
    margin: 0 3rem;
  }

  /* =========================================
   Map
   ========================================= */
  .map-layout {
    gap: 1rem;
    align-items: flex-start;
  }
  .map-thumbs {
    display: grid !important;
    gap: 1rem;
  }
  .map-right-thumbs {
    padding-left: 0;
  }
  .map-thumb-item {
    font-size: 12px;
    line-height: 150%;
  }
  .map-main {
    margin-bottom: 1.5rem;
  }

  /* =========================================
   Cuisine
   ========================================= */
  .cuisine-desc p {
    font-size: 13px;
  }
  /* =========================================
   Services
   ========================================= */
  .service-text-col {
    gap: 3rem;
    flex-direction: column;
    justify-content: flex-start;
  }
  .service-block p {
    font-size: 13px;
  }
  /* =========================================
   Sample Plans
   ========================================= */
  .plan-info-side h3 {
    font-size: 28px;
  }
  .plan-info-side p {
    font-size: 12px;
  }
  .plan-dl {
    margin-top: 1.5rem;
  }
  .plan-dl div {
    gap: 6.875rem;
    padding: 1.125rem 1rem;
    justify-content: flex-start;
  }
  .plan-dl dt {
    width: 78px;
    font-size: 13px;
  }
  .plan-dl dd {
    font-size: 14px;
  }
  .day-title {
    font-size: 22px;
  }
  .day-content {
    padding: 0 0 0 2rem;
  }
  .t-event::before {
    left: -2.3rem;
  }
  .t-event.t-connect-line::after {
    left: calc(-3.5rem + 23px);
  }
  .t-event p {
    font-size: 13px;
  }
  .t-event.t-box-style {
    margin-bottom: 3rem;
  }

  /* =========================================
   Access
   ========================================= */
  .access-desc {
    font-size: 13px;
    padding-left: 1.25rem;
  }
  .japan-map {
    margin-bottom: 2rem;
  }
  .diagram-block h3 {
    font-size: 13px;
    padding-bottom: 1rem;
  }
  /* =========================================
   News
   ========================================= */
  .news-part {
    padding-bottom: 3.5rem;
  }
  .news-layout {
    max-height: 434px;
  }
  .news-h2 h2 {
    font-size: 16px;
    padding-left: 0;
  }
  .news-date {
    font-size: 13px;
  }
  .news-title {
    font-size: 14px;
  }
  /* =========================================
   Modal
   ========================================= */
  .modal-container {
    background: var(--bg-color);
    max-width: 1114px;
    width: 90%;
    height: auto;
    max-height: 85vh;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .modal-scroll-wrapper {
    padding: 3rem 1rem;
  }
  .modal-close-btn {
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
  }
  .modal-close-btn span {
    width: 24px;
  }
  .modal-header h2 {
    font-size: 16px;
  }
  .modal-date {
    font-size: 13px;
    padding: 0 0.5rem;
    margin-bottom: 0.5rem;
  }
  .modal-title {
    font-size: 16px;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }
  .modal-divider {
    margin-bottom: 1rem;
  }
  .modal-text {
    font-size: 13px;
    padding: 0 0.5rem;
  }
  /* =========================================
   Contact
   ========================================= */
  .contact-part {
    border-top: none;
    margin: 0 0 6rem 0;
  }
  .c-tel {
    margin: 0 0 0.5rem 0;
  }
  .c-hours {
    font-size: 13px;
  }
  .btn-contact-white {
    font-size: 12px;
  }
  /* =========================================
   footer
   ========================================= */
  .footer-nav-wrap {
    margin-bottom: 1rem;
  }
  .footer-logo {
    font-size: 18px;
  }
  .footer-nav {
    font-size: 12px;
    gap: 1rem 1.5rem;
    padding: 0 1.875rem;
  }
  .footer-contact-btn {
    font-size: 12px;
  }
  .copyright {
    font-size: 9px;
  }
}
