/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px; /* 追加：ヘッダーの高さ分、スクロール停止位置をずらす */
}
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  background-color: #fff;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
}
.mobile-only {
  display: none;
}
.pc-only {
  display: inline;
}
.d-block-sp {
  display: inline;
}
/* Layout */
.layout {
  display: block;
  position: relative;
  min-height: 100vh;
}
/* Sidebar */
.sidebar {
  position: fixed; /* absoluteから変更 */
  top: 0;
  left: 0;
  width: 190px;
  height: 190px;
  z-index: 1000; /* top-navと同じ階層まで引き上げ */
}
.logo {
  width: 100%;
  height: 100%;
  background-color: #231f20;
  overflow: hidden;
}
.sidebar-logo-img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.logo:hover .sidebar-logo-img {
  transform: scale(1.06);
}
/* Main Content Area */
.main-content {
  display: block;
  width: 100%;
  padding-top: 74px; /* 追加：固定ヘッダーに隠れないようにメインを下げる */
}
/* Top Navigation */
.top-nav {
  background-color: #fff;
  padding: 25px 0px;
  /* margin-left: 190px; は削除 */
  position: fixed; /* 追加 */
  top: 0; /* 追加 */
  left: 190px; /* 追加 */
  right: 0; /* 追加 */
  z-index: 999; /* 追加 */
}
.nav-title {
  display: none;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin-left: 140px;
  /* <--- CHANGE THIS SINGLE VALUE TO MOVE LEFT / RIGHT */
}
.mobile-menu-info {
  display: none !important;
}
.nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.nav-checkbox {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  /* Unchecked state: Standalone Square Box SVG */
  background-image: url('images/icon-checkbox-empty.svg');
  transition: background-image 0.2s ease;
  flex-shrink: 0;
  transform: translateY(-4px);
}
.nav-checkbox.active, .nav-links li a.active .nav-checkbox, .nav-links li a:hover .nav-checkbox {
  /* Checked state: Standalone Box + Tick SVG (Asset 34) */
  background-image: url('images/icon-checkbox-checked.svg');
}
/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
/* Background image for Hero Section */
.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #111;
}
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: kenburns 24s linear infinite 0s; /* 12s から 24s に変更 */
  animation: kenburns 24s linear infinite 0s;         /* 12s から 24s に変更 */
}
.hero-slide:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.hero-slide:nth-child(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}
.hero-slide:nth-child(3) {
  -webkit-animation-delay: 12s; /* 追加: 3枚目は12秒後からスタート */
  animation-delay: 12s;
}
.hero-slide:nth-child(4) {
  -webkit-animation-delay: 18s; /* 追加: 4枚目は18秒後からスタート */
  animation-delay: 18s;
}
.hero-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
@-webkit-keyframes kenburns {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.02) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.02) rotate(0.01deg) translate3d(0, 0, 0);
  }
  5% { /* フェードイン完了 */
    opacity: 1;
  }
  25% { /* 完全に表示されたまま、次の画像がフェードインしてくるのを待つ */
    opacity: 1;
  }
  30% { /* 次の画像が完全に表示されたタイミングで、前の画像が完全に消える（クロスフェード完了） */
    opacity: 0;
    -webkit-transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
  }
  100% { /* ループの最後まで非表示のまま */
    opacity: 0;
    -webkit-transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
  }
}

@keyframes kenburns {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.02) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.02) rotate(0.01deg) translate3d(0, 0, 0);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  30% {
    opacity: 0;
    -webkit-transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
    transform: scale(1.08) rotate(0.01deg) translate3d(0, 0, 0);
  }
}
/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.hero-subtitle {
  color: #fff;
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 22px;
  letter-spacing: 0.15em;
  line-height: 28px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-title {
  color: #fff;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 64px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.hero-details {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 25px;
}
.detail-group {
  display: contents;
}
.detail-left {
  color: #111;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 32px;
  padding: 8px 0;
  border-top: 3px double #111;
  border-bottom: 3px double #111;
  transform: translateY(-16px);
}
.detail-middle {
  color: #111;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 36px;
  display: flex;
  align-items: baseline;
}
.highlight-number {
  color: #9d1018;
  /* Rich red matching CMYK (34, 100, 90, 21) */
  font-size: 96px;
  margin: 0 8px;
  line-height: 0.8;
  transform: translateY(6px);
}
.detail-right {
  color: #9d1018;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 36px;
}
/* Concept Intro Section */
.concept-intro-section {
  background-color: #fff;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.intro-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
.intro-text {
  width: 100%;
  text-align: center;
}
.intro-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: 500;
  color: #111;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}
.intro-heading-top {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.intro-heading-bottom {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.intro-paragraph {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 40px;
  letter-spacing: 0.2em;
}
.intro-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-35%);
  width: 280px;
}
.dog-illustration {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1400px) {
  .intro-image {
    width: 220px;
  }
  .intro-heading-top {
    font-size: 28px;
    white-space: normal;
  }
  .intro-heading-bottom {
    font-size: 24px;
    white-space: normal;
  }
  .intro-paragraph {
    font-size: 16px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .concept-intro-section {
    padding: 50px 20px;
  }
  .intro-container {
    flex-direction: column;
    align-items: center;
  }
  .intro-text {
    margin-bottom: 0px;
  }
  .intro-image {
    display: none !important;
  }
  .intro-heading {
    gap: 20px;
    margin-bottom: 30px;
  }
  .intro-heading-top {
    font-size: 22px;
    white-space: normal;
    line-height: 1.4;
  }
  .intro-heading-bottom {
    font-size: 18px;
    white-space: normal;
    line-height: 1.4;
  }
  .intro-paragraph {
    font-size: 14px;
    line-height: 28px;
  }
}
@media (min-width: 901px) and (max-width: 1000px) {
  .concept-intro-section {
    padding: 60px 40px;
  }
  .intro-container {
    position: static !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
  .intro-text {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .intro-heading {
    gap: 20px;
    margin-bottom: 25px;
    align-items: center !important;
  }
  .intro-heading-top {
    font-size: 21px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-heading-bottom {
    font-size: 18px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-paragraph {
    font-size: 13.5px !important;
    line-height: 28px !important;
  }
  .intro-image {
    position: absolute !important;
    right: -20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 150px !important;
    display: block !important;
  }
}
@media (max-width: 900px) {
  /* Hide the dog illustration below 900px */
  .intro-image {
    display: none !important;
  }
  .intro-container {
    position: static !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
  .intro-text {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .intro-heading {
    gap: 20px;
    margin-bottom: 25px;
    align-items: center !important;
  }
  .intro-heading-top {
    font-size: 21px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-heading-bottom {
    font-size: 18px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-paragraph {
    font-size: 13.5px !important;
    line-height: 28px !important;
  }
}
@media (min-width: 1001px) and (max-width: 1200px) {
  .concept-intro-section {
    padding: 60px 40px;
  }
  .intro-container {
    position: static !important;
    padding-right: 0 !important;
    box-sizing: border-box;
  }
  .intro-text {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .intro-heading {
    gap: 25px;
    margin-bottom: 30px;
    align-items: center !important;
  }
  .intro-heading-top {
    font-size: 25px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-heading-bottom {
    font-size: 21px !important;
    white-space: normal;
    line-height: 1.3;
  }
  .intro-paragraph {
    font-size: 15px !important;
    line-height: 32px !important;
  }
  .intro-image {
    position: absolute !important;
    right: -20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 200px !important; /* Slightly increased size */
    display: block !important;
  }
}
/* Concept Detail Section */
.concept-detail-section {
  display: flex;
  width: 100%;
  min-height: 500px;
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  margin-bottom: 50px;
}
.concept-text-side {
  flex: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.concept-text-wrapper {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.concept-label {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.concept-main-heading {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 50px;
  font-weight: 500;
  -webkit-text-stroke: 0.3px #111;
  /* Workaround for intermediate thickness */
  color: #111;
  line-height: 62px;
  margin-bottom: 40px;
}
.concept-sub-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 23px;
  /* 12pt * 1.857 */
  font-weight: 600;
  /* Increased to 600 */
  color: #111;
  line-height: 34px;
  /* 18pt * 1.857 */
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  /* Tracking 200 */
}
.concept-paragraphs {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16px;
  /* 7pt * 1.857 */
  font-weight: 500;
  /* Toned down from bold */
  color: #111;
  line-height: 40px;
  /* 18pt * 1.857 */
  letter-spacing: 0.17em;
  /* Tracking 170 */
}
.concept-paragraphs p {
  margin: 0;
}
.concept-paragraph-group:not(:last-child) {
  margin-bottom: 40px;
}
.concept-image-side {
  flex: 0 0 40%;
  display: flex;
  /* Remove background color since the image will cover it */
}
.concept-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-dog-icon-mobile {
  display: none;
}
/* Land Plan Section */
.land-plan-section {
  display: flex;
  width: 100%;
  min-height: 500px;
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
}
.land-plan-images-side {
  flex: 0 0 38%;
  /* Decrease width slightly from 42% to 38% */
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
.land-plan-photo {
  width: 100%;
  height: 350px;
  /* Set height to 350px */
  object-fit: cover;
  display: block;
}
.land-plan-text-side {
  flex: 1;
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.land-plan-label {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #111;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.land-plan-main-heading {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 50px;
  font-weight: 500;
  -webkit-text-stroke: 0.3px #111;
  /* Workaround for intermediate thickness */
  color: #111;
  line-height: 62px;
  margin-bottom: 40px;
}
.land-plan-sub-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 23px;
  /* 12pt * 1.857 */
  font-weight: 600;
  /* Increased to 600 */
  color: #111;
  line-height: 34px;
  /* 18pt * 1.857 */
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  /* Tracking 200 */
}
.land-plan-paragraphs {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16px;
  /* Increased from 13px */
  font-weight: 500;
  /* Toned down from bold */
  color: #111;
  line-height: 40px;
  /* 18pt * 1.857 */
  letter-spacing: 0.17em;
  /* Tracking 170 */
}
.land-plan-paragraphs p {
  margin: 0;
}
/* Contact Us Section */
.contact-section {
  padding: 0px 40px 60px;
  display: flex;
  justify-content: center;
  background-color: #fff;
}
.contact-container {
  width: 100%;
  max-width: 1150px;
  /* Container width set to 1170px */
  background-color: rgb(70, 85, 88);
  /* Exact RGB values from Illustrator Swatch */
  padding: 50px 45px;
  /* Adjusted padding so white inner card expands */
  position: relative;
}
.contact-heading {
  position: absolute;
  top: 22px;
  /* Moved down so the bottom of the text overlaps the inner card */
  left: 85px;
  /* Moved right to align with the newly padded brochure */
  color: #fff;
  background-color: transparent;
  /* Ensures no solid background, as requested */
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  z-index: 10;
  /* Ensures the white text sits visibly ON TOP of the cyan border */
}
.contact-inner-card {
  background-color: #fff;
  border: 8px solid #8ea6a9;
  height: auto;
  /* Height is now determined by content and padding */
  padding: 10px 28px 0px 40px;
  /* Adjusted bottom padding to 0px */
  position: relative;
}
.contact-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  /* Reduced gap to bring brochures and text block closer */
  margin-top: 0px;
  /* Reduced from 10px */
  margin-bottom: -30px;
}
.contact-brochures {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}
.brochure-image {
  width: auto;
  filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.25));
  position: relative;
}
.brochure-image:nth-child(1) {
  height: 210px;
  /* <--- Adjust image 1 height here */
  margin-left: -50px;
  /* Pull the first image to the left to remove visual gap */
  z-index: 1;
}
.brochure-image:nth-child(2) {
  height: 210px;
  /* <--- Adjust image 2 height here */
  margin-left: -68px;
  /* Massive negative margin to eat the empty space */
  z-index: 2;
}
.brochure-image:nth-child(3) {
  height: 205px;
  /* <--- Adjust image 3 height here */
  margin-left: -60px;
  /* Pull it in tight and overlap */
  z-index: 3;
}
.brochure-image:nth-child(4) {
  height: 195px;
  /* <--- Adjust image 4 height here */
  margin-left: -85px;
  /* Overlap on top of book 3 and 5 */
  z-index: 4;
}
.brochure-image:nth-child(5) {
  height: 205px;
  /* <--- Adjust image 5 height here */
  margin-left: -85px;
  /* Tuck deeply behind book 4 to match the tight gap */
  z-index: 1;
}
.contact-info {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: -85px;
  /* Pull text closer to brochure images */
  align-self: flex-start;
  margin-top: 18px;
  /* Reduced to pull the text block up */
}
.contact-sub-phrase {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 23px;
  /* Set to 23px as requested */
  font-weight: bold;
  color: #111;
  background-color: transparent;
  letter-spacing: 0.08em;
  line-height: 28px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.contact-main-phrase {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 23px;
  /* Set to 23px as requested */
  font-weight: bold;
  color: #111;
  background-color: transparent;
  letter-spacing: 0.08em;
  line-height: 32px;
  margin-bottom: 24px;
  /* Increased from 10px to 20px */
  white-space: nowrap;
}
.contact-buttons {
  display: flex;
  gap: 20px;
}
.btn {
  text-decoration: none;
  color: #fff;
  font-family: 'Yu Gothic Pr6N', 'Yu Gothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  /* Increased from 14px */
  font-weight: 600;
  /* Demi bold */
  letter-spacing: 0.2em;
  /* Matches tracking 200 */
  text-indent: 0.2em;
  /* Centers text perfectly with letter-spacing */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  /* Scaled down slightly from 266px */
  height: 38px;
  /* Adjusted to 38px */
  transition: opacity 0.3s ease;
}
.btn:hover {
  opacity: 0.8;
}
.btn-brochure {
  background-color: #3c2415;
  /* Updated color from color picker */
}
.btn-reserve {
  background-color: #633a11;
  /* Updated based on CMYK swatch (40, 65, 90, 35) -> rgb(99, 58, 17) */
}
/* Responsive adjustments */
@media (max-width: 767px) {
  .contact-content {
    flex-direction: column;
  }
  .contact-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .contact-heading {
    left: 30px;
    font-size: 32px;
  }
}
/* Gallery Collage Section */
.gallery-collage-section {
  background-color: #fff;
  padding: 80px 0 40px;
  width: 100%;
}
.gallery-collage-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  row-gap: 20px;
  column-gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
/* Left column holds 3 stacked items */
.gallery-left-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
/* Right column holds 2 tall items */
.gallery-right-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.gallery-item {
  width: 100%;
  overflow: hidden;
  background-color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
}
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-dining {
  width: 80%;
  align-self: flex-end;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
/* Middle: small portrait, aligned to the right edge */
.item-closet {
  width: 50%;
  align-self: flex-end;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
/* Bottom: wide landscape — loft/desk */
.item-desk {
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
}
/* Right Column Items */
/* Top: tall portrait spanning ~55% of column height */
.item-living {
  width: 80%;
  align-self: flex-start;
  aspect-ratio: 2 / 3;
  flex-shrink: 0;
}
/* Bottom: large landscape/portrait — dog photo */
.item-dog {
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
/* Responsive adjustments for mobile */
@media (max-width: 767px) {
  .gallery-collage-section {
    padding: 50px 0 30px 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .gallery-collage-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
  }
  .gallery-left-col, .gallery-right-col {
    display: contents !important;
    flex: none !important;
    gap: 0 !important;
  }
  .item-dining {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-bottom: 0 !important;
    width: 100% !important;
    align-self: auto !important;
  }
  .item-closet {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-bottom: 0 !important;
    aspect-ratio: 1 / 1 !important;
    width: 75% !important;
    margin-left: auto !important;
    /* Aligns to the right like the design */
  }
  .item-living {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-bottom: 0 !important;
    aspect-ratio: 2 / 3 !important;
    width: 100% !important;
    align-self: auto !important;
  }
  .item-desk {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
    margin-bottom: 0 !important;
    aspect-ratio: 3 / 2 !important;
  }
  .item-dog {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    margin-bottom: 0 !important;
    aspect-ratio: 3 / 2 !important;
  }
}
/* Point Section */
.point-section {
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  padding: 100px 0;
  width: 100%;
  border-bottom: 15px solid #fff;
}
.point-section:last-of-type {
  border-bottom: none;
}
.point-container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.point-container.reverse {
  flex-direction: row-reverse;
}
.point-text-side {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
}
.point-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.point-label {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 48px;
  font-weight: 500;
  font-style: italic;
  color: #111;
  letter-spacing: 0;
  text-shadow: 0 0 0.2px #111, 0.15px 0 0 #111;
}
.point-number {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 84px;
  font-weight: 500;
  font-style: italic;
  color: #111;
  line-height: 1;
  transform: translateY(-4px);
}
.point-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  -webkit-text-stroke: 0.35px #111;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: 0.075em;
}
.point-description {
  font-family: 'Yu Gothic Pr6N', 'Yu Gothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 18px;
  font-weight: 500;
  -webkit-text-stroke: 0.25px #111;
  color: #111;
  line-height: 34px;
  letter-spacing: 0.05em;
}
.point-description p {
  margin: 0;
}
.point-images-side {
  flex: 0 0 52%;
  display: flex;
  gap: 15px;
}
.point-images-side.single {
  justify-content: flex-start;
}
.point-images-side.single .point-image-wrapper {
  flex: 0 0 calc(50% - 7.5px);
}
.point-image-wrapper {
  flex: 1;
  aspect-ratio: 1 / 1;
  background-color: #e0e0e0;
  overflow: hidden;
}
.point-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .point-container {
    flex-direction: column;
    gap: 40px;
  }
  .point-images-side {
    width: 100%;
  }
}
/* Point Summary Section */
.point-summary-section {
  background-color: #fff;
  padding: 40px 0 80px;
  width: 100%;
}
.point-summary-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}
.point-summary-header {
  text-align: center;
  margin-bottom: 50px;
}
.point-summary-label {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 40px;
  font-weight: 500;
  font-style: italic;
  color: #111;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.point-summary-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 26px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.15em;
}
.point-carousel-btn {
  display: none;
}
.point-summary-carousel-wrapper {
  display: block;
}
.point-summary-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.point-summary-item {
  width: calc(33.333% - 27px);
  /* (100% - 2*40px)/3 */
  display: flex;
  flex-direction: column;
  align-items: center;
}
.point-summary-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 12px;
  /* <--- CONFIGURE THIS value to change the gap between image and label text */
}
.point-summary-text {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 768px) {
  .point-summary-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .point-summary-item {
    width: 100%;
  }
}
/* Bottom Gallery Section */
.bottom-gallery-section {
  background-color: #fff;
  padding: 100px 0;
  width: 100%;
}
.bottom-gallery-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1.3225fr 1.15fr;
  grid-template-areas:
    "walk ."
    "fluffy living"
    "petting living";
  gap: 30px;
  align-items: start;
}
.bottom-gallery-item {
  width: 100%;
  overflow: hidden;
  background-color: #f7f7f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bottom-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.bottom-gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-family-walk {
  grid-area: walk;
  aspect-ratio: 144.579 / 96.326;
  width: 135%;
}
.item-fluffy-dog {
  grid-area: fluffy;
  aspect-ratio: 52.617 / 57.523;
  width: 49.12%;
  justify-self: start;
  margin-left: 61.85%;
}
.item-living-room {
  grid-area: living;
  aspect-ratio: 80.695 / 88.219;
  width: 75.34%;
  align-self: start;
  justify-self: end;
}
.item-family-petting {
  grid-area: petting;
  aspect-ratio: 99.565 / 66.335;
  width: 92.97%;
  justify-self: start;
  margin-left: 18%;
}
@media (max-width: 768px) {
  .bottom-gallery-section {
    padding: 40px 0 !important;
    overflow-x: hidden !important;
  }
  .bottom-gallery-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-areas: unset !important;
    gap: 15px !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    align-items: start !important;
  }
  /* Reset ALL grid-area named placements from desktop */
  .item-family-walk, .item-fluffy-dog, .item-living-room, .item-family-petting {
    grid-area: auto !important;
    justify-self: unset !important;
    align-self: unset !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Image 1: full-width, pinned left, 85% wide */
  .item-family-walk {
    grid-column: 1 / 3 !important;
    width: 85% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    aspect-ratio: 144.579 / 96.326 !important;
  }
  /* Image 2 (fluffy dog): left column, smaller, NOT touching left edge */
  .item-fluffy-dog {
    grid-column: 1 / 2 !important;
    width: 75% !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    aspect-ratio: 52.617 / 57.523 !important;
  }
  /* Image 3 (living room): right column, full width, pinned to right */
  .item-living-room {
    grid-column: 2 / 3 !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    aspect-ratio: 80.695 / 88.219 !important;
  }
  /* Image 4: full-width, pinned left, smaller, pushed down */
  .item-family-petting {
    grid-column: 1 / 3 !important;
    width: 70% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: 20px !important;
    aspect-ratio: 99.565 / 66.335 !important;
  }
}
/* Final Banner Section */
.final-banner-section {
  position: relative;
  width: 100%;
  height: 700px;
}
.final-banner-image {
  width: 100%;
  height: 100%;
  display: block;
}
.final-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 100%;
  display: block;
}
.final-banner-content {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 10;
}
.final-banner-details {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 25px;
}
.final-banner-detail-group {
  display: contents;
}
.final-banner-detail-left {
  color: #111;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 32px;
  padding: 8px 0;
  border-top: 3px double #111;
  border-bottom: 3px double #111;
  transform: translateY(-16px);
}
.final-banner-detail-middle {
  color: #111;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 36px;
  display: flex;
  align-items: baseline;
}
.final-banner-highlight-number {
  color: #9d1018;
  font-size: 96px;
  margin: 0 8px;
  line-height: 0.8;
  transform: translateY(6px);
}
.final-banner-detail-right {
  color: #9d1018;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 36px;
}
@media (max-width: 767px) {
  .final-banner-section {
    height: 260px;
  }
  .final-banner-content {
    top: 12px;
  }
  .final-banner-details {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .final-banner-detail-left {
    transform: none !important;
    font-size: 19px !important;
    border-top: 3px double #111 !important;
    border-bottom: 3px double #111 !important;
    padding: 3px 0 !important;
    display: table !important;
    width: auto !important;
    margin: 0 auto !important;
    white-space: nowrap !important;
  }
  .final-banner-detail-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .final-banner-detail-middle, .final-banner-detail-right {
    font-size: 25px !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
  }
  .final-banner-highlight-number {
    font-size: 56px !important;
    margin: 0 4px !important;
    transform: translateY(2px) !important;
  }
}
/* Increase height for larger mobile screens so text doesn't overlap cars */
@media (min-width: 475px) and (max-width: 767px) {
  .final-banner-section {
    height: 380px !important;
  }
}
/* Floor Plan Section */
.floor-plan-section {
  width: 100%;
  padding: 30px 40px 10px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.floor-plan-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 0;
  /* Ensures they touch exactly in the middle like the screenshot */
}
.floor-plan-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: inline-block;
}
.floor-plan-image {
  width: 100%;
  height: auto;
  display: block;
}
.floor-plan-overlay {
  position: absolute;
  object-fit: fill;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.floor-plan-overlay.revealed {
  opacity: 0 !important;
}
.overlay-left {
  left: 10.3%;
  width: 42%;
  top: 10.3%;
  height: 67.4%;
  /* <--- CONFIGURE height and top of the LEFT green overlay here */
}
.overlay-right {
  left: 52.3%;
  width: 38.8%;
  top: 8.9%;
  height: 69%;
  /* <--- CONFIGURE height and top of the RIGHT brown overlay here */
}
.floor-plan-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  transition: opacity 0.3s ease;
}
.floor-plan-text.revealed {
  opacity: 0 !important;
}
.floor-plan-text.text-left {
  left: 10.3%;
  width: 42%;
}
.floor-plan-text.text-right {
  left: 52.3%;
  width: 38.8%;
}
.overlay-plan-title {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 15px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.overlay-cursive {
  position: absolute;
  right: 100%;
  margin-right: 10px;
  bottom: 8px;
  font-family: 'Brush Script MT', 'Comic Sans MS', cursive, sans-serif;
  font-size: 50px;
  line-height: 1;
  font-weight: normal;
}
.overlay-number {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 80px;
  line-height: 1;
  font-weight: normal;
}
.overlay-area {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.overlay-price-label {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  margin-bottom: 5px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.overlay-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-left: 70px;
}
.overlay-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 55px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.overlay-price-unit-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: flex-end;
  padding-bottom: 0;
}
.overlay-price-tax {
  font-size: 13px;
  line-height: 1.2;
}
.overlay-price-unit {
  font-size: 22px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  /* Floor Plan Overlays 900px - 1200px */
  .overlay-cursive {
    font-size: 40px;
    margin-right: 8px;
    bottom: 6px;
  }
  .overlay-number {
    font-size: 65px;
  }
  .overlay-plan-title {
    margin-bottom: 12px;
  }
  .overlay-area {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.4;
  }
  .overlay-price-label {
    font-size: 18px;
    margin-bottom: 4px;
  }
  .overlay-price-block {
    padding-left: 50px;
  }
  .overlay-price {
    font-size: 44px;
  }
  .overlay-price-tax {
    font-size: 10px;
  }
  .overlay-price-unit {
    font-size: 18px;
  }
  .overlay-price-unit-container {
    align-items: flex-end;
  }
}
@media (max-width: 900px) {
  /* Floor Plan Overlays 768px - 900px */
  .overlay-cursive {
    font-size: 32px;
    margin-right: 6px;
    bottom: 5px;
  }
  .overlay-number {
    font-size: 52px;
  }
  .overlay-plan-title {
    margin-bottom: 10px;
  }
  .overlay-area {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .overlay-price-label {
    font-size: 15px;
    margin-bottom: 3px;
  }
  .overlay-price-block {
    padding-left: 40px;
  }
  .overlay-price {
    font-size: 35px;
  }
  .overlay-price-tax {
    font-size: 9px;
    transform: translateX(2px);
  }
  .overlay-price-unit {
    font-size: 15px;
  }
  .overlay-price-unit-container {
    align-items: flex-end;
  }
}
@media (max-width: 768px) {
  .floor-plan-section {
    padding: 40px 20px;
  }
  .floor-plan-container {
    flex-direction: column;
  }
  /* Floor Plan Overlays 600px - 768px */
  .overlay-cursive {
    font-size: 24px;
    margin-right: 5px;
    bottom: 4px;
  }
  .overlay-number {
    font-size: 40px;
  }
  .overlay-plan-title {
    margin-bottom: 8px;
  }
  .overlay-area {
    font-size: 11px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .overlay-price-label {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .overlay-price-block {
    padding-left: 30px;
  }
  .overlay-price {
    font-size: 28px;
  }
  .overlay-price-tax {
    font-size: 8px;
    transform: translateX(5px);
  }
  .overlay-price-unit {
    font-size: 12px;
  }
  .overlay-price-unit-container {
    align-items: flex-end;
    transform: translateX(-6px);
  }
}
@media (max-width: 600px) {
  /* Floor Plan Overlays Below 600px */
  .overlay-cursive {
    font-size: 20px !important;
    margin-right: 3px !important;
    bottom: 3px !important;
  }
  .overlay-number {
    font-size: 32px !important;
  }
  .overlay-plan-title {
    margin-bottom: 6px !important;
  }
  .overlay-area {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }
  .overlay-price-label {
    font-size: 10.5px !important;
  }
  .overlay-price-block {
    padding-left: 24px !important;
  }
  .overlay-price {
    font-size: 22px !important;
  }
  .overlay-price-tax {
    font-size: 7px !important;
    transform: translateX(5px) !important;
  }
  .overlay-price-unit {
    font-size: 11px !important;
  }
  .overlay-price-unit-container {
    align-items: flex-end !important;
    transform: translateX(-6px) !important;
  }
}
/* Plan Detail Section */
.plan-detail-section {
  width: 100%;
  padding-bottom: 100px;
}
.plan-detail-header-wrapper {
  background-color: #fff;
  width: 100%;
  border-bottom: 8px solid #8fa4ab;
  /* Teal horizontal bar */
}
.plan-detail-header-wrapper.plan-1 {
  border-bottom: 8px solid #8fa4ab;
}
.plan-detail-header-wrapper.plan-2 {
  border-bottom: 8px solid #877263;
}
.plan-detail-header {
  display: flex;
  justify-content: flex-start;
  gap: 100px;
  align-items: flex-end;
  padding: 20px 40px 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.plan-tabs-container {
  display: flex;
  gap: 6px;
  margin-left: 20px;
  position: relative;
  bottom: -8px;
  /* push down to overlap the teal border */
}
.plan-tab {
  width: 170px;
  height: 64px;
  background-color: #877263;
  /* Brown inactive */
  border-radius: 0 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.plan-tab.active {
  background-color: #8fa4ab;
  /* Teal active */
  z-index: 2;
}
.plan-tab-content {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: #fff;
}
.tab-cursive {
  font-family: 'Brush Script MT', 'Comic Sans MS', cursive, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
}
.tab-number {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 44px;
  font-weight: bold;
  line-height: 1;
}
.plan-header-right {
  padding-bottom: 12px;
}
.plan-resort-title {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.1em;
}
.plan-content-wrapper {
  background: #c3d0d6 url('images/texture-bg-r.webp') center/cover no-repeat;
  padding: 60px 40px;
  width: 100%;
}
/* 初期状態（またはPlan 1）の背景 */
.plan-content-wrapper.plan-1 {
  background: #c3d0d6 url('images/texture-bg-r.webp') center/cover no-repeat;
}
/* Plan 2 の背景 */
.plan-content-wrapper.plan-2 {
  background: #c3d0d6 url('images/texture-bg2.webp') center/cover no-repeat;
}
.plan-content-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: none;
}
.plan-content-inner.active {
  display: block;
}
.plan-title-area {
  margin-bottom: 30px;
}
.plan-badge-group {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.black-badge {
  background-color: #111;
  color: #fff;
  padding: 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.1em;
}
.badge-label {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
.plan-name {
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  font-size: 75px;
  font-weight: bold;
  color: #111;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 15px;
}
.plan-subtitle {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 24px;
  font-weight: 500;
  color: #111;
  letter-spacing: 0.15em;
}
.plan-description-area {
  margin-bottom: 50px;
}
.plan-description-area p {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 17px;
  font-weight: 500;
  color: #111;
  line-height: 32px;
  letter-spacing: 0.08em;
  margin: 0;
}
.plan-image-area {
  position: relative;
  width: 100%;
}
.plan-main-image {
  width: 100%;
  height: auto;
  display: block;
}
.plan-image-caption {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .plan-detail-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 20px 0 20px;
  }
  .plan-tabs-container {
    margin-left: 0;
    align-self: center;
  }
  .plan-header-right {
    padding-bottom: 20px;
    align-self: center;
  }
  .plan-resort-title {
    font-size: 20px;
  }
}
/* Floor Maps Area */
.plan-floor-maps-area {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}
.plan-floor-maps-area-stacked {
  position: relative;
  width: 100%;
  margin-top: 60px;
}
.map-img-card.card-2 {
  display: none;
}
.map-img-card.card-1 {
  display: block;
  width: 100%;
}
.plan-map-image {
  display: block;
  width: 100%;
  height: auto;
}
.centered-overview {
  position: absolute;
  /* ============================================================== */
  /* BROTHER JI: EDIT THESE TWO VALUES TO MOVE THE TEXT BOX!        */
  /* You can use negative numbers to make it spill outside the box. */
  /* ============================================================== */
  top: 510px;
  /* Edit this to move it UP and DOWN */
  right: -50px;
  /* Edit this to move it LEFT and RIGHT */
  width: 420px;
  z-index: 10;
}
.centered-overview-plan2 {
  /* ============================================================== */
  /* BROTHER JI: EDIT THIS VALUE TO MOVE PLAN 2 TEXT BOX!           */
  /* ============================================================== */
  top: 540px;
  /* Increase this value to pull it up LESS (e.g. 540px, 550px) */
  /* right is inherited from .centered-overview, but you can override here too */
}
@media (max-width: 992px) {
  .centered-overview {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
}
.plan-map-left {
  flex: 2.8;
}
.plan-map-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.map-image-wrapper {
  position: relative;
  width: 100%;
}
.plan-map-image {
  width: 100%;
  height: auto;
  display: block;
}
.floor-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  color: #111;
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  padding: 6px 12px;
  line-height: 1;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.road-label-container {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.road-label {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.compass-icon {
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 60px;
  height: 60px;
}
.compass-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.plan-property-overview {
  padding-top: 10px;
}
.plan-property-overview .overview-heading {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin-bottom: 8px;
  letter-spacing: 0.3em;
}
.plan-property-overview .overview-list {
  list-style: none;
  margin-bottom: 10px;
  max-width: 390px;
}
.plan-property-overview .overview-list li {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  color: #111;
  margin-bottom: 4px;
  letter-spacing: 0.10em;
  display: flex;
  align-items: center;
  line-height: 1.0;
}
.sq-box {
  margin-right: 18px;
  font-size: 18px;
  line-height: 1;
}
.overview-label {
  display: inline-block;
  width: 8.0em;
  text-align: justify;
  text-align-last: justify;
  margin-right: 20px;
  flex-shrink: 0;
}
.overview-value {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
}
.overview-highlight {
  background-color: #111;
  color: #fff;
  font-family: 'Yu Gothic Pr6N', 'Yu Gothic', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 4px 0;
  margin-top: 12px;
  margin-bottom: 15px;
  letter-spacing: 0.2em;
  width: 390px;
}
.overview-price {
  display: flex;
  align-items: flex-end;
  gap: 50px;
  margin-top: 15px;
}
.price-label {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 26px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
  color: #111;
  line-height: 1;
  transform: translateY(-7px);
}
.price-number {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 72px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
  color: #111;
  line-height: 0.8;
  margin-right: -40px;
}
.price-unit-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-left: 0;
  transform: translateY(-5px);
}
.price-tax {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 15px;
  color: #111;
  line-height: 1;
  margin-bottom: 2px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
}
.price-unit {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 30px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
  color: #111;
  line-height: 1;
}
@media (max-width: 767px) {
  .plan-floor-maps-area {
    flex-direction: column;
    gap: 60px;
  }
}
/* Included Items Area */
.plan-included-items {
  margin-top: 60px;
  margin-bottom: 80px;
}
.included-text-main {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
  letter-spacing: -0.08em;
  word-spacing: -0.15em;
  text-shadow: 0 0 0.2px #333, 0 0 0.2px #333;
}
.included-text-sub {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  padding-left: 13px;
  letter-spacing: -0.08em;
  word-spacing: -0.15em;
  line-height: 1.6;
  text-shadow: 0 0 0.2px #333, 0 0 0.2px #333;
}
/* Half Floor Living Area */
.half-floor-living-area {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.half-floor-text {
  flex: 1.1;
  padding-top: 20px;
}
.half-floor-title {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 28px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
  color: #111;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}
.half-floor-title .number {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 34px;
  margin-right: 8px;
}
.half-floor-desc p {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 38px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.half-floor-desc p:last-child {
  margin-bottom: 0;
}
.half-floor-image-wrapper {
  flex: 1.3;
  position: relative;
}
.half-floor-image {
  width: 100%;
  height: auto;
  display: block;
}
.half-floor-caption {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .half-floor-living-area {
    flex-direction: column;
    gap: 30px;
  }
  .half-floor-text {
    padding-top: 0;
  }
  .included-text-sub {
    padding-left: 0;
    margin-top: 5px;
  }
}
/* Dynamic Space Area */
.dynamic-space-area {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.dynamic-space-image-wrapper {
  flex: 1.3;
  position: relative;
}
.dynamic-space-image {
  width: 100%;
  height: auto;
  display: block;
}
.dynamic-space-caption {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
.dynamic-space-text {
  flex: 1.1;
  padding-top: 20px;
}
.dynamic-space-title {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 28px;
  font-weight: 500;
  text-shadow: 0 0 0.2px #111, 0 0 0.2px #111;
  color: #111;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}
.dynamic-space-desc p {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 38px;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
}
.dynamic-space-desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .dynamic-space-area {
    flex-direction: column;
    gap: 30px;
  }
  .dynamic-space-text {
    padding-top: 0;
  }
}
/* Plan Gallery Area */
.plan-gallery-area {
  display: flex;
  gap: 25px;
  align-items: stretch;
  margin-bottom: 60px;
}
.plan-gallery-left {
  flex: 1.6;
  display: flex;
}
.plan-gallery-left .plan-gallery-image-wrapper {
  aspect-ratio: 1 / 1;
}
.plan-gallery-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.plan-gallery-image-wrapper {
  flex: 1;
  position: relative;
  width: 100%;
}
.plan-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.plan-gallery-caption {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 12px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .plan-gallery-area {
    flex-direction: column;
    gap: 20px;
  }
  .plan-gallery-left .plan-gallery-image-wrapper {
    aspect-ratio: 4 / 3;
  }
  .plan-gallery-right {
    gap: 20px;
  }
  .plan-gallery-right .plan-gallery-image-wrapper {
    aspect-ratio: 4 / 3;
    flex: none;
  }
}
/* Quality Section */
.quality-section {
  width: 100%;
  padding: 20px 40px 60px;
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.quality-container {
  width: 100%;
  max-width: 1100px;
  /* Set to 1100px per user request */
  position: relative;
  display: flex;
  align-items: center;
  background-color: #333;
  /* Fallback for missing image */
  overflow: hidden;
  min-height: 400px;
}
.quality-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.quality-content {
  position: relative;
  z-index: 3;
  padding: 25px 50px 25px;
  /* Set to 50px horizontal padding per user request */
  color: #fff;
  width: 100%;
}
.quality-top-text {
  font-family: 'DIN 2014', 'DIN Alternate', 'Futura PT', Futura, sans-serif;
  font-size: 16.5px;
  /* 8.85pt scaled by 1.857 ratio is 16.43px */
  font-weight: 700;
  /* Bold */
  letter-spacing: 0.5em;
  /* Tracking 500 = 0.5em */
  line-height: 29px;
  /* 15.49pt leading scaled by 1.857 ratio is 28.76px */
  color: #fff;
  margin-bottom: 0px;
  /* Further reduced margin-bottom to 6px to decrease space below */
  text-transform: uppercase;
}
.quality-main-title {
  font-family: 'DIN 2014', 'DIN Alternate', 'Futura PT', Futura, sans-serif;
  font-size: 74.5px;
  /* 40.11pt scaled by 1.857 ratio is 74.48px */
  font-weight: 700;
  /* Bold */
  letter-spacing: 0.1em;
  /* Tracking 100 = 0.1em */
  line-height: 100px;
  /* 70.19pt leading scaled by 1.857 ratio is 130.34px */
  margin-bottom: 0px;
  /* Reduced margin-bottom from 15px to 6px to decrease space below */
}
.quality-subtitle {
  font-family: 'PGothicMB101Pr6N', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-size: 31.6px;
  /* 17pt (increased by 1pt from 16pt) scaled by 1.857 ratio is 31.57px */
  font-weight: 900;
  /* Heavy */
  letter-spacing: 0.2em;
  /* Tracking 200 = 0.2em */
  line-height: 52px;
  /* 28pt leading scaled by 1.857 ratio is 51.99px */
  margin-top: -6px;
  /* Pulls subtitle closer to the main title "QUALITY" */
  margin-bottom: 0px;
  /* Reduced margin-bottom from 25px to 12px to decrease space below */
  text-shadow: 0 0 0.2px #fff, 0.2px 0 0 #fff, -0.2px 0 0 #fff;
}
.quality-description {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16px;
  /* Increased from 13px */
  font-weight: 500;
  /* Medium/Demi Bold */
  letter-spacing: 0.2em;
  /* Reverted tracking to 200 = 0.2em */
  line-height: 32px;
  /* Increased from 22px to create an elegant vertical gap */
  margin-bottom: 5px;
  /* Reduced margin-bottom from 35px to 15px to decrease space below description (above the button) */
}
.quality-description p {
  margin: 0;
}
.quality-btn {
  display: inline-block;
  background-color: #271b19;
  /* Dark brown from image */
  color: #fff;
  text-decoration: none;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 15px;
  /* 8pt scaled by 1.857 ratio is 14.86px */
  font-weight: 700;
  /* Bold */
  line-height: 22px;
  /* 12pt leading scaled by 1.857 ratio is 22.28px */
  padding: 8px 110px;
  margin-top: 16px;
  margin-bottom: 0px;
  letter-spacing: 0.2em;
  transition: opacity 0.3s ease;
}
.quality-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .quality-section {
    padding: 0 0 40px !important;
  }
  .quality-container {
    min-height: auto;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .quality-content {
    padding: 0 18px;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .quality-top-text {
    font-size: 14px;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom: 5px;
  }
  .quality-main-title {
    font-size: 55px;
    line-height: 1.1;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
  }
  .quality-subtitle {
    font-size: 23px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 25px;
    text-shadow: none;
  }
  .quality-description {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 15px;
  }
  .quality-btn {
    padding: 8px 30px;
    font-size: 16px;
    margin-top: 0;
    white-space: nowrap;
    display: inline-block !important;
    text-align: center !important;
    align-self: center !important;
  }
}
/* Location Section */
.location-section {
  display: flex;
  width: 100%;
  min-height: 500px;
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  position: relative;
}
.location-text-side {
  flex: 1;
  padding: 80px 10% 80px 10%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.location-image-side {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 0 60px 40px;
}
.location-image-side img {
  width: 90%;
  height: auto;
  object-fit: cover;
}
.location-paragraphs {
  padding-bottom: 250px;
  /* Space for the absolute image */
}
.location-sub-photo {
  position: absolute;
  bottom: 0px;
  /* Y-Axis: Vertical alignment from bottom of the section */
  right: -200px;
  /* X-Axis: Horizontal overlap (negative value pushes it into the right image) */
  width: 370px;
  /* Image size */
  max-width: none;
  height: auto;
  display: block;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.location-blue-bar {
  display: none;
}
@media (max-width: 768px) {
  .location-section {
    flex-direction: column;
  }
  .location-paragraphs {
    padding-bottom: 0;
  }
  .location-sub-photo {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 40px;
    right: 0;
    bottom: 0;
  }
  .location-blue-bar {
    display: none;
  }
}
/* Location Map Collage Section */
.location-map-section {
  width: 100%;
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  margin-top: -2px;
  /* Prevent subtle seams */
}
.location-map-container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 1200px;
}
.map-center-image {
  width: 85%;
  max-width: 1200px;
  height: auto;
  position: relative;
  z-index: 1;
  opacity: 0.95;
  /* Slight fade to blend */
}
.scatter-photo {
  position: absolute;
  z-index: 2;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Subtle premium shadow */
}
/* Desktop only: hide mobile-specific images */
.sp-mobile-only {
  display: none;
}
.scatter-top-left {
  top: 5%;
  left: 0;
  width: 26%;
}
.scatter-top-right {
  top: 8%;
  right: 0;
  width: 26%;
}
.scatter-bottom-left {
  bottom: 5%;
  left: 0;
  width: 22%;
}
.scatter-bottom-right {
  bottom: 5%;
  right: 0;
  width: 26%;
}
@media (max-width: 1366px) {
  .map-center-image {
    width: 75%;
  }
  .scatter-top-left, .scatter-top-right, .scatter-bottom-right {
    width: 22%;
  }
  .scatter-bottom-left {
    width: 18%;
  }
}
@media (max-width: 1024px) {
  .map-center-image {
    width: 85%;
  }
  .scatter-top-left, .scatter-top-right, .scatter-bottom-right {
    width: 16%;
  }
  .scatter-bottom-left {
    width: 14%;
  }
}
@media (max-width: 768px) {
  .location-map-container {
    flex-direction: column;
    min-height: auto;
    padding: 40px 20px;
  }
  .map-center-image {
    width: 100%;
    margin-bottom: 40px;
  }
  .scatter-photo {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100%;
    margin-bottom: 30px;
  }
}
/* Access Section */
.access-section {
  width: 100%;
  padding: 80px 40px 300px 40px;
  /* Increased bottom padding to accommodate the map overlap */
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
}
.access-container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}
.access-banner, .access-footer-banner {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 6px 20px;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.access-footer-banner {
  margin-top: 35px;
  /* Adjust this value to change the gap between the map and the banner */
}
.access-banner {
  margin-bottom: 30px;
}
.bus-info-area {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.bus-info-left {
  flex: 1.6;
  display: flex;
  flex-direction: column;
}
.bus-info-right {
  flex: 0.8;
}
.bus-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.bus-icon-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.bus-icon-circle {
  width: 54px;
  height: 54px;
  background-color: #000000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
}
.bus-icon-img {
  height: 36px;
  width: auto;
  display: block;
}
.bus-icon-line {
  flex: 1;
  height: 3px;
  background-color: #000000;
}
.bus-station-title {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #222;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}
.bus-station-title span {
  font-size: 22px;
  font-weight: 600;
  margin-left: -0.25em;
  white-space: nowrap;
  letter-spacing: -0.05em;
}
.bus-timetable {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 15px 80px;
}
.bus-route {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}
.route-dest {
  font-size: 16px;
  font-weight: 500;
  color: #222;
}
.route-time {
  font-size: 18px;
  color: #222;
  font-weight: 500;
}
.time-num {
  font-size: 19px;
}
.access-map-placeholder {
  width: 100%;
}
.access-map-image {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .bus-info-area {
    flex-direction: column;
  }
  .bus-info-left {
    width: 100%;
  }
  .bus-timetable {
    grid-template-columns: 1fr;
  }
  .access-banner, .access-footer-banner {
    font-size: 14px;
    padding: 12px 10px;
  }
  .access-section {
    padding: 40px 20px;
  }
}
/* Nearby Places Carousel */
.nearby-places-section {
  padding: 80px 40px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-transition-container {
  width: 100%;
  max-width: 1000px;
  margin-top: -380px;
  /* -300px visual overlap + 80px to negate the parent's padding-top */
  margin-bottom: 60px;
  /* Space before the carousel */
  position: relative;
  z-index: 5;
}
.nearby-places-carousel {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 72px;
  width: 100%;
  max-width: 1320px;
  position: relative;
}
.carousel-arrow {
  position: absolute;
  top: 167px;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #111;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #111;
  transition: all 0.2s ease;
}
.carousel-arrow:hover {
  background: #f8f8f8;
  transform: translateY(-50%) scale(1.05);
  border-color: #000;
}
.carousel-arrow svg {
  width: 70%;
  height: 70%;
  stroke: #111;
}
.carousel-arrow svg path {
  stroke-width: 1px;
}
.prev-arrow {
  left: calc(50% - 301px);
}
.next-arrow {
  right: calc(50% - 301px);
}
.nearby-place-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 343px;
}
.nearby-place-card.center-card {
  max-width: 485px;
}
.nearby-place-image {
  width: 100%;
  height: auto;
  aspect-ratio: 72.735 / 50;
  object-fit: cover;
  margin-bottom: 0;
}
.nearby-place-info {
  display: flex;
  align-items: flex-end;
  margin-top: -6px;
  position: relative;
  z-index: 2;
}
.nearby-car-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #6d7575;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  flex-shrink: 0;
  transform: translateY(12px);
  position: relative;
  z-index: 2;
}
.nearby-place-card.center-card .nearby-car-icon {
  width: 59px;
  height: 59px;
  transform: translateY(16px);
}
.nearby-place-card.center-card .nearby-time {
  font-size: 17px;
  padding-bottom: 3px;
}
.nearby-place-card.center-card .nearby-time .time-num {
  font-size: 28px;
}
.nearby-place-card.center-card .nearby-name {
  font-size: 17px;
  padding-bottom: 7px;
}
.nearby-place-card.center-card .nearby-place-info {
  margin-top: -11px;
}
.nearby-car-icon svg {
  width: 62%;
  height: 62%;
}
.nearby-text-content {
  display: flex;
  align-items: baseline;
  flex-grow: 1;
}
.nearby-time {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-weight: bold;
  font-size: 14px;
  margin-left: -20px;
  margin-right: 10px;
  padding-left: 28px;
  padding-right: 12px;
  padding-bottom: 3px;
  border-bottom: 3px solid #bbb;
  color: #333;
  position: relative;
  z-index: 1;
}
.nearby-time .time-num {
  font-size: 24px;
}
.nearby-name {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-bottom: 6px;
  border-bottom: 3px solid #bbb;
  flex-grow: 1;
}
/* Custom line extensions and margins for each card */
.nearby-places-carousel > div:nth-of-type(1) .nearby-time {
  padding-right: 15px;
  margin-right: 8px;
}
.nearby-place-card.center-card .nearby-time {
  padding-right: 20px;
  margin-right: 8px;
}
.nearby-places-carousel > div:nth-of-type(3) .nearby-time {
  padding-right: 15px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .nearby-places-carousel {
    flex-direction: column;
    align-items: center;
  }
  .nearby-place-card, .nearby-place-card.center-card {
    margin-bottom: 30px;
    width: 100%;
    max-width: 400px;
  }
  .carousel-arrow {
    display: none;
  }
}
/* Overview Section */
.overview-section {
  padding: 80px 40px;
  background: #a3b0b8 url('images/texture-bg-r.webp') center/cover no-repeat;
  display: flex;
  justify-content: center;
}
.overview-container {
  width: 100%;
  max-width: 1000px;
}
.overview-section .overview-heading {
  font-family: 'DIN 2014', 'DIN Alternate', 'Futura PT', Futura, sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #111;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  display: inline-block;
  transform: scaleY(1.15);
  /* Stretch vertically by 10% */
  transform-origin: left;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
}
.overview-section .overview-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.overview-row {
  display: flex;
  align-items: flex-start;
}
.overview-row dt {
  width: 85px;
  flex-shrink: 0;
  margin-right: 20px;
}
.overview-row dt span {
  display: block;
  width: 100%;
  text-align-last: justify;
  -moz-text-align-last: justify;
  border-bottom: 1px solid #111;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 15px;
  font-weight: 500;
  -webkit-text-stroke: 0.1px #111;
  color: #111;
  padding-bottom: 4px;
  line-height: 1.3;
}
.overview-row dd {
  flex-grow: 1;
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 15px;
  font-weight: 500;
  -webkit-text-stroke: 0.1px #111;
  color: #111;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Tight Collage Section */
.tight-collage-section {
  width: 100%;
  background-color: #fff;
  /* No padding to keep it flush if desired, or can add padding if needed. 
       The prompt image shows it spanning full width edge-to-edge. */
}
.tight-collage-container {
  display: grid;
  grid-template-columns: 50% 25% 25%;
  grid-auto-rows: 15vw;
  /* Reduced from 20vw to make collage more compact */
  gap: 0;
  /* Explicitly zero — no horizontal or vertical gap between any image */
  padding: 0;
  margin: 0;
  width: 100%;
  /* Full width edge-to-edge */
}
.tight-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.tight-item.item-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.tight-item.item-top-left {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.tight-item.item-top-right {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}
.tight-item.item-bottom-left {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.tight-item.item-bottom-right {
  grid-column: 3 / 4;
  grid-row: 2 / 3;
}
.tight-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .tight-collage-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: auto !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  .tight-item {
    width: 100% !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
  }
  .tight-item.item-main {
    grid-column: 1 / 3 !important;
    grid-row: 1 / 2 !important;
    aspect-ratio: 3 / 2 !important;
  }
  .tight-item.item-top-left {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 3 !important;
    aspect-ratio: 3 / 2 !important;
  }
  .tight-item.item-top-right {
    grid-column: 2 / 3 !important;
    grid-row: 2 / 3 !important;
    aspect-ratio: 3 / 2 !important;
  }
  .tight-item.item-bottom-left {
    grid-column: 1 / 2 !important;
    grid-row: 3 / 4 !important;
    aspect-ratio: 3 / 2 !important;
  }
  .tight-item.item-bottom-right {
    grid-column: 2 / 3 !important;
    grid-row: 3 / 4 !important;
    aspect-ratio: 3 / 2 !important;
  }
}
/* Staff Profile Section */
.staff-profile-section {
  width: 100%;
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.staff-profile-header {
  text-align: center;
  margin-bottom: 40px;
}
.staff-header-sub {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 18px;
  /* Set to 18px */
  font-weight: 500;
  font-style: italic;
  color: #000000;
  /* Black color matching design */
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.staff-header-main {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 65px;
  /* Adjusted to 65px per user request */
  line-height: 72px;
  /* Proportional line-height */
  color: #111;
  font-weight: 500;
}
.staff-card-bg {
  width: 100%;
  max-width: 1240px;
  /* Increased from 1200px to balance left and right margins/gaps */
  margin: 0 auto;
  background: #cad2d5 url('images/texture-bg-r.webp') center/cover no-repeat;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  /* Stack children vertically */
  align-items: center;
  gap: 80px;
  /* Space between staff card and showroom */
  margin-bottom: 0px;
}
.staff-card-shadow-wrapper {
  position: relative;
  width: 100%;
  max-width: 1020px;
  /* Restored to exactly 1020px */
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
.staff-profile-card {
  width: 100%;
  position: relative;
  padding: 80px 70px 10px 70px;
  /* Decreased bottom padding to 10px to tighten the gap under the dog names */
  z-index: 1;
}
.staff-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* Chamfered corners for top-left and bottom-right */
  clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
  /* Double border effect using outline */
  outline: 1px solid #7a5e4d;
  outline-offset: -12px;
  z-index: -1;
}
/* Corner decor lines */
.decor-line {
  position: absolute;
  width: 85px;
  height: 1px;
  background-color: #7a5e4d;
  z-index: 5;
}
.decor-line.top-left {
  top: 20px;
  left: 20px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.decor-line.bottom-right {
  bottom: 20px;
  right: 20px;
  transform: translate(50%, 50%) rotate(-45deg);
}
.staff-title {
  position: absolute;
  top: -24px;
  /* Adjust this value to change vertical offset (e.g. -24px, -18px) */
  left: 70px;
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 38px;
  /* Increased font size */
  font-style: italic;
  color: #3c2415;
  /* RGB(60, 36, 21) */
  font-weight: 600;
  /* Set to 600 */
  margin: 0;
  padding: 0;
  /* Adding this so you can adjust it easily */
  z-index: 10;
}
.staff-subtitle {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #ad292f;
  /* RGB(173, 41, 47) from swatch */
  text-align: center;
  margin-top: -40px;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
  /* tracking 60 */
}
.dogs-subtitle {
  font-family: "YuGoPr6N", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 19px;
  /* Nudged up from 18px */
  font-weight: 500;
  /* Reverted to 500 */
  text-shadow: 0.2px 0 0px #000000;
  /* Simulates a weight between 500 and 600 using a sharp shadow instead of stroke */
  line-height: 1.5;
  color: #000000;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  transform: translateX(-29px);
  /* Shifted left to prevent overlap with Kuuta on the right */
}
.slash {
  font-weight: 300;
  margin: 0 5px;
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', Arial, sans-serif !important;
}
.staff-info-container {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}
.staff-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.dog-food-icon {
  position: absolute;
  bottom: -5px;
  /* Adjust up/down relative to the right polaroid group */
  right: -245px;
  /* Adjust left/right relative to the right polaroid group */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}
.food-bag-img {
  width: 72px;
  /* Adjusted up. Modify this value to resize the bag icon */
  height: auto;
  display: block;
}
.food-cans-img {
  width: 58px;
  /* Adjusted up. Modify this value to resize the cans icon */
  height: auto;
  display: block;
}
.staff-header-info {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  margin-bottom: 10px;
}
.staff-badges {
  display: flex;
  gap: 5px;
  /* Increased vertical gap based on scaling ratio */
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 8px;
  /* Adjusted offset for the larger 26px text baseline */
}
.badge-housing-adviser {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  /* Set back to 14px */
  padding: 2px 14px;
  /* Reduced top/bottom padding to 2px */
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  text-align: center;
}
.badge-advisor-ja {
  background-color: #222;
  color: #fff;
  font-size: 14px;
  /* Set back to 14px */
  padding: 2px 14px;
  /* Reduced top/bottom padding to 2px */
  letter-spacing: 0.05em;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500;
  /* Demi weight */
  text-align: center;
}
.staff-name-area {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.staff-label {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  /* Increased from 13px */
  color: #333;
  letter-spacing: 0.3em;
  /* VA 300 */
  margin-bottom: -4px;
  font-weight: 600;
  /* Bolder */
}
.staff-name {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #222;
  display: flex;
  align-items: baseline;
  gap: 22px;
  /* Increased gap between Japanese and English name */
}
.staff-name-en {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 24px;
  /* Adjusted visually based on user request */
  color: #b4b29a;
  /* Updated from screenshot */
  letter-spacing: 0.05em;
}
.dotted-line {
  width: 100%;
  height: 4px;
  margin: 12px 0;
  /* Custom pill-shaped (gulab jamun) dots with wider gap */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='4'%3E%3Cline x1='0' y1='2' x2='100%25' y2='2' stroke='%238c867a' stroke-width='3' stroke-dasharray='4, 14' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  border: none;
}
.staff-desc {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 600;
  /* Increased weight */
  font-size: 16px;
  /* Increased font size from 14px */
  line-height: 1.5;
  /* Adjusted line height for better readability with larger size */
  color: #111;
  letter-spacing: 0.05em;
}
.staff-photo-col {
  width: 250px;
  height: 360px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
.staff-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  /* Decrease % (e.g. 70%, 50%) to show more of the left side (crop less from left) */
  transform: scale(1.15);
  display: block;
}
.dogs-profile-container {
  display: block;
  position: relative;
  padding: 0 0 15px 0;
  overflow: visible;
  min-height: 200px;
}
.polaroid-wrapper-right {
  position: absolute;
  right: -50px;
  top: 45%;
  transform: translateY(-55%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dog-polaroid {
  background-color: #fff;
  padding: 3.5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 139px;
  /* Restored Sabu's width */
  z-index: 2;
}
.polaroid-left-container {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-58%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.polaroid-left {
  transform: rotate(-9.1deg);
}
.dog-polaroid.polaroid-left img {
  --zoom: 1.15;
  /* Adjusted to 1.25 to match Kuuta's zoom level */
  transform-origin: center center;
  /* Keep transform centered to prevent the image box from shifting out of the frame */
  object-position: center 0%;
  /* Shift the image content up/down safely (decrease to show more top, increase to show more bottom) */
  /* Can adjust to reposition Sabu */
}
.polaroid-right {
  width: 130px;
  /* A bit wider than the 125px */
  transform: rotate(10.91deg);
  /* Match Illustrator 349.09 deg tilt (opposite direction in CSS) */
}
.polaroid-small {
  position: absolute;
  bottom: 25px;
  right: -115px;
  width: 125px;
  padding: 3.5px;
  /* Matched exactly to the other two polaroids */
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transform: rotate(-3deg);
  z-index: 1;
}
.polaroid-small img {
  --zoom: 1.2;
  /* Change this number to zoom more or less (e.g. 1.1, 1.5) */
  width: 100%;
  height: 95px;
  object-fit: cover;
  transform: scale(var(--zoom));
  clip-path: inset(calc((1 - 1 / var(--zoom)) * 50%));
  display: block;
}
.dog-polaroid img {
  --zoom: 1.0;
  /* Increase to e.g., 1.05 or 1.1 to crop out baked-in white borders in the image file */
  width: 100%;
  height: 170px;
  object-fit: cover;
  transform: scale(var(--zoom));
  clip-path: inset(calc((1 - 1 / var(--zoom)) * 50%));
  display: block;
}
.dog-polaroid.polaroid-right img {
  --zoom: 1.25;
  /* Zooms in to crop out the transparent padding baked into the PNG */
  object-position: center 20%;
  /* Adjust this to move the dog up or down inside the frame */
  height: 175px;
}
.dog-name {
  font-family: 'YuGoPr6N', 'Yu Gothic', 'YuGothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 21px;
  /* Reverted back to 21px */
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-top: 12px;
}
.dog-attributes {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  row-gap: 7px;
  padding: 10px 60px;
  z-index: 1;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  font-family: "YuGoPr6N", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  /* Nudged up from 14px */
  font-weight: 500;
  /* Reverted to 500 */
  text-shadow: 0.2px 0 0px #111111;
  /* Simulates a weight between 500 and 600 using a sharp shadow instead of stroke */
  color: #111;
  line-height: 1.35;
  transform: translateX(-29px);
  /* Shifted left to match the subtitle and clear Kuuta */
}
.attr-row {
  display: contents;
}
.attr-val-left {
  white-space: nowrap;
  justify-self: end;
  text-align: right;
  padding-right: 5px;
  line-height: 1.35;
}
.attr-val-right {
  white-space: nowrap;
  justify-self: start;
  text-align: left;
  padding-left: 5px;
  line-height: 1.35;
}
.attr-center {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}
.attr-label {
  white-space: nowrap;
  text-align: center;
  font-size: 15px;
  /* Nudged up from 14px */
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 4px;
}
.attr-label.squeeze {
  letter-spacing: -0.18em;
  font-size: 13px;
  /* Nudged up from 12px */
}
.attr-arrow {
  font-size: 12px;
  /* Nudged up from 11px */
  font-weight: 600;
  flex-shrink: 0;
}
.attr-red {
  color: #c43a31;
}
.cramped-text {
  letter-spacing: -0.2em;
  font-size: 14px;
  /* Nudged up from 13px */
}
.food-icon-img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .staff-info-container {
    gap: 15px;
  }
  .staff-photo-col {
    width: 200px;
    height: 285px;
  }
  .dog-attributes {
    padding: 5px 100px;
  }
  .polaroid-left-container {
    left: -30px;
  }
  .polaroid-wrapper-right {
    right: -25px;
  }
  .dog-food-icon {
    right: -170px;
  }
}
/* Showroom Section Content */
.showroom-content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showroom-title {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 500;
  -webkit-text-stroke: 0.5px #3c2415;
  /* Adjusted to 0.5px per user request */
  color: #3c2415;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  text-align: center;
}
.showroom-container {
  display: flex;
  max-width: 1000px;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
}
.showroom-left {
  flex: 1;
}
.showroom-building-img {
  width: 100%;
  height: auto;
  display: block;
}
.showroom-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}
.showroom-description {
  font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 16.5px;
  /* 7pt scaled by 2.38x ratio */
  font-weight: 500;
  /* Adjusted to 500 per user request */
  line-height: 24px;
  /* Set to 24px per user request */
  color: #3c2415;
  margin-bottom: 15px;
}
.showroom-description p {
  margin: 0 0 3px 0;
  /* Reduced from 8px to minimize gap between paragraphs */
}
.showroom-description p:last-child {
  margin-bottom: 0;
}
.showroom-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.info-label {
  background-color: #3c2415;
  min-width: 80px;
  flex-shrink: 0;
}
.info-label-inner {
  background-color: transparent;
  color: #fff;
  text-align: center;
  font-family: "Yu Gothic", YuGothic, "YuGoPr6N", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  /* 6pt scaled by 2.38x ratio is 14.28px */
  font-weight: 500;
  /* Adjusted to 500 per user request */
  padding: 4px 0;
  /* Adjusted to 4px per user request */
  line-height: 1.2;
  letter-spacing: 0.15em;
}
.info-value {
  font-family: "Yu Gothic", YuGothic, "YuGoPr6N", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16.5px;
  /* 7pt scaled by 2.38x ratio */
  color: #3c2415;
  /* brown color #3C2415 */
  font-weight: 500;
  -webkit-text-stroke: 0.4px #3c2415;
  /* Achieve visual weight between 500 and 600 */
  line-height: 24px;
  /* 10pt leading scaled by 2.38x ratio */
}
.showroom-map-container {
  width: 90%;
  /* Increased from 80% to make it wider */
  max-width: 480px;
  /* Increased from 420px */
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.showroom-map-img {
  width: 100%;
  height: auto;
  display: block;
}
.google-map-btn-wrapper {
  width: 90%;
  max-width: 480px;
  display: flex;
  justify-content: center;
  /* Centers the button horizontally under the map */
}
.btn-google-map {
  width: 80%;
  /* Smaller width than the map (not edge-to-edge) */
  background-color: #3c2415;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  /* Adjust this value to change top/bottom padding (Line 3076) */
  font-family: 'Caflisch Script Pro', 'CaflischScriptPro', 'Segoe Print', 'Apple Chancery', cursive, sans-serif;
  font-size: 17px;
  /* Reduced from 19px per user request */
  font-weight: normal;
  /* Regular weight */
  font-style: italic;
  /* Adds cursive italic look */
  letter-spacing: 0.05em;
  transition: background-color 0.3s;
}
.btn-google-map:hover {
  background-color: #2a190f;
  color: #ffffff;
}
@media (max-width: 767px) {
  .showroom-container {
    flex-direction: column;
  }
  .showroom-map-container, .google-map-btn-wrapper {
    width: 100%;
    max-width: 100%;
  }
  .btn-google-map {
    width: 80%;
  }
}
/* =====================================================
   INQUIRY FORM SECTION (お問い合わせフォーム)
   ===================================================== */
#inquiryForm {
  scroll-margin-top: 120px;
}
.inquiry-form-wrapper {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
  /* padding handled by parent staff-card-bg */
  box-sizing: border-box;
}
/* White card container */
.inquiry-form-card {
  background-color: #fff;
  border: 2.25px solid rgb(142, 166, 169);
  /* Exact RGB from Illustrator, 2.25px stroke */
  border-radius: 12px;
  /* Reverted back to 12px as requested */
  padding: 60px 80px 45px;
  /* Top: 60px, Left/Right: 80px, Bottom: 30px */
  box-sizing: border-box;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
/* Each form row: label left + input right */
.iq-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 30px;
}
.iq-row:last-child {
  margin-bottom: 0;
}
/* Label column */
.iq-label {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  min-width: 190px;
  max-width: 190px;
  line-height: 1.5;
  padding-top: 10px;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
/* 必須 brown pill badge */
.iq-badge {
  display: inline-block;
  background-color: #3c2415;
  color: #fff;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 20px;
  line-height: 1.4;
  white-space: nowrap;
  margin-left: auto;
  transform: translateY(1px);
}
/* Red label text (for ご質問 subtext) */
.iq-label-red {
  color: #d32f2f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  max-width: 145px;
  /* Restrict width to force automatic wrapping into 3 lines */
  margin-top: 4px;
}
/* Field/input column */
.iq-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Inline fields (for age / postal / radio) */
.iq-field-inline {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  /* Prevent centering to remove the unnecessary gap */
}
/* Postal code wrapper to place 〒 inside the input */
.iq-postal-wrapper {
  position: relative;
  display: inline-block;
}
.iq-postal-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: 14px;
  color: #222;
  pointer-events: none;
}
.iq-input-postal {
  padding-left: 30px !important;
}
/* Standard text/email/tel inputs */
.iq-input {
  width: 100%;
  height: 40px;
  padding: 5px 12px;
  border: 1px solid #cfc9c2;
  background-color: #fff;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #222;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
}
.iq-input:focus {
  border-color: #3c2415;
}
/* Short input (for age) */
.iq-input-short {
  width: 110px;
  flex-shrink: 0;
}
/* Medium input (for postal code) */
.iq-input-medium {
  width: 180px;
  flex-shrink: 0;
}
/* Suffix text (歳 ※半角英数) */
.iq-suffix {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #222;
  white-space: nowrap;
}
/* Prefix (〒) */
.iq-prefix {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 15px;
  color: #222;
  flex-shrink: 0;
}
/* Select dropdown */
.iq-select {
  width: 100%;
  max-width: 280px;
  height: 40px;
  padding: 5px 12px;
  border: 1px solid #cfc9c2;
  background-color: #f6f5f3;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #222;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 6px;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.iq-select:focus {
  border-color: #3c2415;
}
/* Radio buttons */
.iq-radio-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  padding-top: 10px;
}
.iq-radio {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.iq-radio-dot {
  display: none;
}
/* Textarea */
.iq-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cfc9c2;
  background-color: #fff;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  color: #222;
  resize: vertical;
  box-sizing: border-box;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}
.iq-textarea:focus {
  border-color: #3c2415;
}
/* Align label of the tall row to the top of the select box */
.iq-row-tall .iq-label {
  padding-top: 0;
  line-height: 1.25;
  /* Reduced from 1.5 to make lines closer vertically */
}
/* Adjust label padding for the textarea row */
.iq-row-textarea .iq-label {
  padding-top: 14px;
  /* Adjust this value if you need more or less top padding */
}
/* Submit row */
.iq-submit-row {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  /* Reduced from 40px to decrease gap above the button */
}
/* 確認画面へ button — matches design: light grey, centered */
.iq-submit-btn {
  display: inline-block;
  width: auto;
  min-width: 240px;
  padding: 12px 30px;
  /* Spacing: 14px top/bottom, 30px left/right */
  background: linear-gradient(to bottom, #f9f9f9, #dcdcdc);
  border: 1px solid #ccc;
  color: #000;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  /* Set to 20px */
  font-weight: 500;
  -webkit-text-stroke: 0.4px currentColor;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s;
  border-radius: 4px;
  /* Curved boundaries (adjust this value for more/less curve) */
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.iq-submit-btn:hover {
  background: linear-gradient(to bottom, #ffffff, #e5e5e5);
}
/* Privacy Policy Box Styles (Exactly from reference website page-system.css) */
.priv-text {
  overflow-y: scroll;
  height: 250px;
  margin-bottom: 30px;
  padding: 20px;
  border: #ccc solid 1px;
  background: #fff;
  box-sizing: border-box;
  text-align: left;
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
}
.priv-text .priv-ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
}
.priv-text .tt {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 0;
  color: #333;
  text-align: center;
}
.priv-text p {
  font-size: 13px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #ccc solid 1px;
}
.priv-text p:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.priv {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
.priv label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: #222;
  font-family: "Yu Gothic", YuGothic, sans-serif;
}
.priv input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  accent-color: #3c2415;
}
/* Custom Scrollbar for premium look */
.priv-text::-webkit-scrollbar {
  width: 8px;
}
.priv-text::-webkit-scrollbar-track {
  background: #f8f6f4;
  border-radius: 4px;
}
.priv-text::-webkit-scrollbar-thumb {
  background: #cfc9c2;
  border-radius: 4px;
}
.priv-text::-webkit-scrollbar-thumb:hover {
  background: #b5ada4;
}
/* Scroll Reveal Animation Styles (Seiko-inspired premium fade-in-up) */
.scroll-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 50px, 0) !important;
  transition: opacity 1s ease 0s, transform 1s ease 0s !important;
}
.scroll-reveal.reveal-active {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
}
/* Stagger delay classes for premium sequential reveals */
.delay-100 {
  transition-delay: 100ms !important;
}
.delay-200 {
  transition-delay: 200ms !important;
}
.delay-300 {
  transition-delay: 300ms !important;
}
.delay-400 {
  transition-delay: 400ms !important;
}
.delay-500 {
  transition-delay: 500ms !important;
}
.delay-600 {
  transition-delay: 600ms !important;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .inquiry-form-wrapper {
    padding: 0 20px 60px 20px;
  }
  .inquiry-form-card {
    padding: 30px 20px;
  }
  .iq-row {
    flex-direction: column;
    gap: 8px;
    padding: 14px 0;
  }
  .iq-label {
    min-width: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .iq-select {
    max-width: 100%;
  }
  .iq-submit-btn {
    width: 100%;
    max-width: 280px;
    font-size: 16px !important;
    padding: 10px 20px !important;
  }
  /* Privacy Policy Mobile Styles from Reference Website */
  .priv-text {
    height: 60vw !important;
    margin-bottom: 4vw !important;
    padding: 4vw !important;
  }
  .priv-text .tt {
    font-size: 16px !important;
    margin-bottom: 4vw !important;
  }
  .priv-text .priv-ttl {
    font-size: 14px !important;
  }
  .priv-text p {
    font-size: 12.5px !important;
    margin-bottom: 4% !important;
    padding-bottom: 4% !important;
  }
  .priv {
    margin-bottom: 5% !important;
  }
}
/* Site Footer */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 50px 80px 85px;
  width: 100%;
  box-sizing: border-box;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.footer-left {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  margin-top: -15px;
  margin-bottom: 25px;
}
.footer-logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.footer-contact {
  margin-bottom: 25px;
}
.fc-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1.2;
}
.fc-tel {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #fff;
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  line-height: 1.2;
}
.footer-company {
  margin-bottom: 50px;
}
.company-name {
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #eee;
}
.company-info-table {
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.6;
  color: #fff;
}
.company-info-table th {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  padding-right: 15px;
  padding-bottom: 6px;
  white-space: nowrap;
}
.company-info-table th span {
  display: inline-block;
  width: 85px;
  text-align-last: justify;
  border-bottom: 1px solid #aaa;
  padding-bottom: 0px;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
}
.company-info-table td {
  padding-bottom: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #fff;
}
.company-info-table td span {
  display: inline-block;
  border-bottom: 1px solid #aaa;
  padding-bottom: 0px;
  line-height: 1.1;
}
.footer-copyright {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Futura PT', Futura, 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-right-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 20px;
  margin-bottom: 25px;
}
.fr-title {
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
}
.fr-subtitle-box {
  background-color: #fff;
  color: #251c19;
  padding: 6px 24px;
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-align: center;
}
.footer-nav-container {
  width: 140px;
  margin-right: 20px;
  margin-bottom: 25px;
}
.footer-nav {
  list-style: none;
}
.footer-nav li {
  margin-bottom: 12px;
}
.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Garamond Premier Pro', Garamond, 'Times New Roman', serif;
  font-size: 15px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.footer-nav li a:hover {
  opacity: 0.7;
}
.f-nav-icon {
  margin-right: 10px;
  font-size: 16px;
  display: inline-block;
  transform: translateY(-1.5px);
}
.footer-sns {
  margin-right: 75px;
  margin-top: 15px;
}
.sns-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: #fff;
  border-radius: 50%;
  color: #251c19;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.sns-link:hover {
  transform: scale(1.05);
}
.sns-link svg {
  width: 22px;
  height: 22px;
  stroke: #251c19;
  fill: none;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 30px;
  }
  .footer-container {
    flex-direction: column;
    gap: 50px;
  }
  .footer-right, .footer-right-header {
    align-items: flex-start;
  }
  .footer-nav-container, .footer-sns {
    margin-right: 0;
  }
}
/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS OVERHAUL
   ========================================================================== */
/* Hamburger Menu Toggle Defaults (Desktop Hidden) */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  flex-direction: column;
  justify-content: space-between;
  width: 42px;
  height: 38px;
}
.hamburger-bar {
  display: block;
  width: 26px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
body.menu-open {
  overflow: hidden;
}
/* --------------------------------------------------------------------------
   1. Breakpoint: Below 1024px (Tablets & Mobile Header)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
  }
  .layout, .main-content {
    display: block !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
    margin: 0 !important;
  }
  .main-content {
    padding-top: 45px !important;
  }
  section, .hero-section, .concept-intro-section, .contact-section, .land-plan-section, .gallery-collage-section, .point-section, .bottom-gallery-section, .final-banner-section, .floor-plan-section, .point-summary-section, .plan-detail-section, .quality-section, .location-section, .location-map-section, .access-section, .nearby-places-section, .overview-section, .tight-collage-section, .staff-profile-section, .site-footer {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 68px !important;
    height: 68px !important;
    z-index: 1000 !important;
    background-color: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
  }
  .sidebar-logo-img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
  }
  .top-nav {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    height: 45px !important;
    margin-left: 0 !important;
    padding: 0 15px 0 85px !important;
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    z-index: 999 !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .nav-title {
    display: block !important;
    font-family: 'A1MinchoStd-Bold', 'A1 Mincho Std', 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #111 !important;
    white-space: nowrap !important;
    letter-spacing: 0.05em !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    width: 32px !important;
    height: 28px !important;
    padding: 0 !important;
  }
  .mobile-menu-toggle .hamburger-bar {
    width: 24px !important;
    height: 2px !important;
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
    opacity: 0 !important;
  }
  .mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
  .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    background-color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 40px 0 !important;
    gap: 22px !important;
    margin-left: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
    z-index: 1999 !important;
    box-shadow: none !important;
    overflow-y: auto !important;
  }
  .nav-links.active {
    opacity: 1 !important;
    visibility: visible !important;
    right: 0 !important;
  }
  .nav-links li:not(.mobile-menu-info) {
    width: 165px !important;
    display: flex !important;
    justify-content: flex-start !important;
  }
  .nav-links li a {
    font-size: 18px !important;
    font-family: 'Noto Serif JP', Georgia, serif !important;
    padding: 0 !important;
    border-bottom: none !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    color: #000000 !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
    letter-spacing: 0.03em !important;
  }
  .nav-links li a .nav-checkbox {
    transform: none !important;
    margin: 0 !important;
    width: 17px !important;
    height: 17px !important;
  }
  /* Mobile Menu Info and Footer Blocks */
  .mobile-menu-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: 35px !important;
    width: 100% !important;
  }
  .mobile-menu-tel {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .tel-icon-circle {
    width: 44px !important;
    height: 44px !important;
    border: 1.5px solid #000000 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000000 !important;
  }
  .tel-icon-circle svg {
    width: 22px !important;
    height: 22px !important;
  }
  .tel-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .tel-company {
    font-size: 13px !important;
    font-weight: bold !important;
    color: #000000 !important;
    margin: 0 0 2px 0 !important;
    font-family: sans-serif !important;
  }
  .nav-links li a.tel-number {
    font-size: 21px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-decoration: none !important;
    margin: 0 !important;
    font-family: 'Noto Serif JP', Georgia, serif !important;
  }
  .mobile-menu-sns {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .mobile-sns-link {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    background-color: #000000 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }
  .mobile-sns-link svg {
    width: 24px !important;
    height: 24px !important;
    display: block !important;
  }
  .mobile-sns-link svg rect, .mobile-sns-link svg path, .mobile-sns-link svg line {
    stroke: #ffffff !important;
    fill: none !important;
  }
  /* Bring hamburger to top of overlay when active */
  .mobile-menu-toggle {
    z-index: 2001 !important;
  }
  /* Active Header styling when mobile menu is open */
  body.menu-open .top-nav {
    background-color: transparent !important;
    box-shadow: none !important;
  }
  body.menu-open .sidebar {
    display: none !important;
  }
  body.menu-open .mobile-menu-toggle .hamburger-bar {
    background-color: #111 !important;
  }
  .mobile-only {
    display: inline !important;
  }
  /* Hero Section */
  .hero-section {
    height: auto !important;
    min-height: 600px !important;
    padding-top: 20px !important;
    padding-bottom: 30px !important;
  }
  .hero-content {
    display: none; /*追加*/
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  .hero-subtitle {
    font-size: 17px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 12px !important;
    word-break: break-word !important;
  }
  .hero-title {
    font-size: 30px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.08em !important;
    padding: 0 10px !important;
    margin-bottom: 20px !important;
    word-break: break-word !important;
  }
  .hero-details {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .detail-left {
    transform: none !important;
    font-size: 19px !important;
    border-top: 3px double #111 !important;
    border-bottom: 3px double #111 !important;
    padding: 3px 0 !important;
    display: table !important;
    width: auto !important;
    margin: 0 auto !important;
    white-space: nowrap !important;
  }
  .detail-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .detail-middle, .detail-right {
    font-size: 25px !important;
    line-height: 1 !important;
    letter-spacing: 0.05em !important;
  }
  .highlight-number {
    font-size: 56px !important;
    margin: 0 4px !important;
    transform: translateY(2px) !important;
  }
  /* Concept Intro Section */
  .concept-intro-section {
    padding: 40px 15px !important;
  }
  .intro-container, .intro-text {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }
}
/* --------------------------------------------------------------------------
   2. Breakpoint: Below 768px (Mobile Devices)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .concept-intro-section {
    display: none !important;
  }
  /* Keep absolute map overlays visible on mobile view */
  .floor-plan-overlay {
    display: block !important;
  }
  .floor-plan-section {
    padding: 40px 0 15px !important;
    overflow: hidden !important;
  }
  .point-summary-section {
    padding-top: 15px !important;
    padding-bottom: 20px !important;
  }
  .point-summary-header {
    margin-bottom: 20px !important;
  }
  .floor-plan-container {
    width: 100% !important;
    overflow: hidden !important;
  }
  .floor-plan-wrapper {
    width: 106% !important;
    max-width: none !important;
    margin-left: -3% !important;
    overflow: hidden !important;
  }
  .floor-plan-image {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
  }
  /* Point Summary Section */
  .point-summary-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
  }
  .point-summary-heading {
    font-size: 18px !important;
    white-space: nowrap !important;
    letter-spacing: 0.05em !important;
  }
  .point-summary-carousel-wrapper {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    width: 100% !important;
    position: relative !important;
    gap: 5px !important;
  }
  .point-carousel-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    flex-shrink: 0 !important;
    margin-top: 35% !important;
    /* Roughly center of the 1:1 aspect ratio image */
  }
  .point-carousel-btn svg {
    width: 32px !important;
    height: 32px !important;
  }
  .point-summary-grid {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    width: 100% !important;
    overflow: hidden !important;
    gap: 0 !important;
  }
  .point-summary-item {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: none !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
  }
  .point-summary-item.active {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    opacity: 1 !important;
  }
  .intro-paragraph br, .concept-paragraphs br, .land-plan-paragraphs br, .point-description br, .quality-description br, .dynamic-space-desc br, .showroom-description br {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
  .d-block-sp {
    display: block !important;
    white-space: nowrap !important;
  }
  .intro-heading-top, .intro-heading-bottom {
    font-size: 19px !important;
    white-space: normal !important;
    text-align: center !important;
    word-break: break-word !important;
  }
  .intro-heading {
    gap: 12px !important;
    margin-bottom: 20px !important;
  }
  .intro-paragraph {
    font-size: 14px !important;
    line-height: 26px !important;
    padding: 0 10px !important;
  }
  .hero-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.05em !important;
  }
  .highlight-number {
    font-size: 44px !important;
  }
  .detail-left {
    font-size: 14px !important;
  }
  .detail-middle, .detail-right {
    font-size: 20px !important;
  }
  /* Point Sections */
  .point-section {
    padding: 30px 15px !important;
  }
  .point-container, .point-container.reverse {
    flex-direction: column !important;
    padding: 0 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .point-text-side {
    width: 100% !important;
    margin-bottom: 20px !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    column-gap: 12px !important;
    align-items: baseline !important;
  }
  .point-header {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
  }
  .point-label {
    font-size: 28px !important;
  }
  .point-number {
    font-size: 50px !important;
    line-height: 1 !important;
    transform: translateY(6px) !important;
  }
  .point-heading {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-bottom: 0 !important;
    font-size: 22px !important;
    align-self: baseline !important;
  }
  .point-description {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    font-size: 15.5px !important;
    line-height: 27px !important;
    margin-top: 15px !important;
  }
  .point-images-side {
    width: 100% !important;
    flex-direction: row !important;
    gap: 10px !important;
  }
  .point-image-wrapper {
    flex: 1 !important;
    width: 50% !important;
    aspect-ratio: 1 / 1 !important;
  }
  /* Floor Plan Detail */
  .plan-detail-section {
    padding: 20px 0 !important;
  }
  .plan-detail-header {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0 15px 0 15px !important;
  }
  .plan-content-wrapper {
    padding: 40px 20px !important;
  }
  .plan-header-right {
    display: none !important;
  }
  .plan-resort-title {
    font-size: 18px !important;
    text-align: center !important;
  }
  .plan-name {
    font-size: 28px !important;
  }
  .plan-subtitle {
    font-size: 16px !important;
  }
  .plan-description-area p {
    font-size: 14px !important;
    line-height: 22px !important;
    letter-spacing: 0.02em !important;
  }
  .plan-description-area {
    padding: 0 !important;
    margin-bottom: 30px !important;
  }
  .plan-floor-maps-area-stacked {
    flex-direction: column !important;
    gap: 20px !important;
    margin-top: 20px !important;
  }
  .map-image-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }
  .map-img-card {
    overflow: hidden !important;
    position: relative !important;
  }
  .map-img-card.card-1 {
    width: 99% !important;
    margin-left: 0 !important;
    height: auto !important;
  }
  .map-img-card.card-2 {
    display: block !important;
    width: 50% !important;
    margin-left: 15% !important;
    height: 80vw !important;
    margin-top: -16vw !important;
  }
  .plan-map-image {
    display: block !important;
    width: 145vw !important;
    max-width: none !important;
    height: auto !important;
  }
  .map-img-1 {
    margin-left: 0 !important;
  }
  .map-img-2 {
    margin-left: -90vw !important;
  }
  .plan-property-overview {
    width: 100% !important;
    max-width: 320px !important;
    margin: 1.5vw auto 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    position: static !important;
  }
  .plan-property-overview .overview-heading {
    text-align: left !important;
    font-size: 18px !important;
    margin-bottom: 12px !important;
    letter-spacing: 0.2em !important;
  }
  .plan-property-overview .overview-list {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
  }
  .overview-list li {
    font-size: 14px !important;
    line-height: 1.2 !important;
    margin-bottom: 6px !important;
  }
  .sq-box {
    margin-right: 8px !important;
    font-size: 14px !important;
  }
  .overview-label {
    width: 8.0em !important;
    margin-right: 10px !important;
  }
  .overview-highlight {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 12px 0 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .overview-price {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    gap: 0 !important;
    margin: 10px 0 0 0 !important;
    width: 100% !important;
  }
  .price-label {
    font-size: 18px !important;
    transform: translateY(-3px) !important;
    line-height: 1 !important;
    margin-right: auto !important;
  }
  .price-number {
    font-size: 48px !important;
    line-height: 0.8 !important;
    margin-right: 0 !important;
  }
  .price-unit-container {
    transform: translateY(-2px) !important;
    margin-left: 8px !important;
  }
  .price-tax {
    font-size: 11px !important;
    margin-bottom: 1px !important;
  }
  .price-unit {
    font-size: 22px !important;
    line-height: 1 !important;
  }
  .plan-included-items {
    width: 100% !important;
    max-width: 320px !important;
    margin: 40px auto 40px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .included-text-main {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    text-shadow: none !important;
  }
  .included-text-sub {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-top: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
    text-shadow: none !important;
  }
  .half-floor-living-area, .dynamic-space-area {
    flex-direction: column !important;
    gap: 15px !important;
  }
  .half-floor-text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .half-floor-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.05em !important;
    text-align: left !important;
  }
  .half-floor-title .number {
    font-size: 26px !important;
    margin-right: 4px !important;
  }
  .half-floor-desc p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  .dynamic-space-text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 10px !important;
    box-sizing: border-box !important;
  }
  .dynamic-space-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.05em !important;
    text-align: left !important;
  }
  .dynamic-space-desc p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 20px !important;
    text-align: left !important;
  }
  .plan-gallery-area {
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
  }
  .plan-gallery-left, .plan-gallery-right {
    flex: none !important;
    width: 100% !important;
  }
  .plan-gallery-left .plan-gallery-image-wrapper {
    flex: none !important;
    width: 100% !important;
  }
  .plan-gallery-right {
    flex-direction: row !important;
    gap: 12px !important;
  }
  .plan-gallery-right .plan-gallery-image-wrapper {
    flex: 1 !important;
  }
  .plan-image-caption, .plan-gallery-caption {
    font-size: 10px !important;
  }
  /* Location Section */
  .location-section {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .location-text-side {
    padding: 30px 15px 10px 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .location-map-section {
    padding: 0 !important;
  }
  .location-text-side .concept-main-heading {
    font-size: 28px !important;
    margin-bottom: 20px !important;
  }
  .location-paragraphs {
    padding-bottom: 0 !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 25px !important;
  }
  .location-paragraphs p {
    margin-bottom: 7px !important;
  }
  .location-paragraphs p:last-child {
    margin-bottom: 0 !important;
  }
  .location-image-side {
    height: 240px !important;
    width: 100% !important;
    padding: 0 !important; /* Clear desktop padding-left and padding-bottom */
  }
  .location-image-side img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  /* Location Map Collage — Mobile Layout */
  /* Hide the desktop location-image-side (woman+dog) on mobile —
       she will appear first inside the collage section instead */
  .location-image-side {
    display: none !important;
  }
  /* Hide the desktop floating outlet-park sub-photo on mobile —
       it appears inside the collage row instead */
  .location-sub-photo {
    display: none !important;
  }
  /* Show mobile-only images in the collage */
  .sp-mobile-only {
    display: block !important;
  }
  /* Hide desktop-only absolute-positioned images (increased specificity to beat .scatter-photo) */
  .scatter-photo.sp-desktop-only {
    display: none !important;
  }
  /* Show the side-by-side row wrapper on mobile */
  .sp-side-row {
    display: flex !important;
  }
  /* The map collage container becomes a normal flex column */
  .location-map-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 0 30px !important;
    min-height: unset !important;
    position: relative !important;
  }
  /* Reset ALL scatter-photos from their desktop absolute positions */
  .scatter-photo {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    height: auto !important;
    object-fit: cover !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    margin-bottom: 10px !important;
  }
  /* ── ORDER 1: Woman + Dog — right-aligned, ~72% wide, margin-left auto ── */
  /* ── ORDER 1: Woman + Dog — right-aligned, small gap from right edge ── */
  /* ── ORDER 1: Woman + Dog — right-aligned, small gap from right edge ── */
  .sp-order-1 {
    order: 1 !important;
    width: 72% !important;
    margin-left: auto !important;
    margin-right: 12px !important;
    position: relative !important;
    z-index: 1 !important;
  }
  /* ── ORDER 2: Overlap Zone (Woman+Child+Dog, Red Bridge, Outlet Park) ── */
  .sp-overlap-zone {
    order: 2 !important;
    position: relative !important;
    width: 100% !important;
    height: 300px !important; /* Increased height to fit shifted bridge */
    margin-bottom: -35px !important; /* Negative margin to pull map closer and overlap */
    z-index: 10 !important;
  }
  .sp-zone-woman-child {
    position: absolute !important;
    top: 15px !important; /* Pulled a bit down */
    left: 30px !important; /* Increased padding from the left edge */
    width: 56% !important; /* Increased size */
    z-index: 1 !important;
    margin: 0 !important;
  }
  .sp-zone-bridge {
    position: absolute !important;
    top: 180px !important; /* Pulled a bit down to increase vertical gap */
    left: 0 !important;
    width: 58% !important; /* Reduced size */
    z-index: 2 !important;
    margin: 0 !important;
  }
  .sp-zone-outlet {
    position: absolute !important;
    top: 140px !important; /* Pulled down from 100px */
    right: 0 !important;
    width: 33% !important; /* Reduced size */
    z-index: 3 !important;
    margin: 0 !important;
  }
  /* ── ORDER 5: Campfire — left-aligned, pinned to left edge ── */
  .sp-order-5 {
    order: 5 !important;
    width: 38% !important; /* Decreased even more */
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-top: -50px !important; /* Pull up to overlap the map */
    position: relative !important;
    z-index: 2 !important;
  }
  /* ── ORDER 6: Garage — right-aligned, pinned to right edge ── */
  .sp-order-6 {
    order: 6 !important;
    width: 58% !important; /* Increased even more */
    margin-left: auto !important;
    margin-right: 0 !important;
    margin-top: -80px !important; /* Pull up to overlap the map area */
    position: relative !important;
    z-index: 2 !important;
  }
  /* ── Map: full width — sits between bridge/outlet row and campfire/garage ── */
  .map-center-image {
    order: 4 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    margin: 10px 0 !important;
  }
  /* Access Section */
  /* Access Section */
  .access-section {
    background: #fff !important;
    padding-top: 40px !important; /* Added gap above banner */
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .access-container {
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .access-banner {
    font-size: 13.5px !important;
    padding: 12px 10px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .bus-info-area {
    display: grid !important;
    grid-template-columns: 1.6fr 1fr !important; /* Give more room to text */
    gap: 5px 6px !important; /* Even tighter gap */
    padding: 0 15px 15px 20px !important; /* Reduced bottom padding from 30px to 15px */
    background: #fff !important;
    align-items: flex-start !important;
  }
  .bus-info-left {
    display: contents !important;
  }
  .bus-icon-circle {
    width: 32px !important;
    height: 32px !important;
    margin-right: 10px !important;
  }
  .bus-icon-img {
    height: 20px !important;
  }
  .bus-icon-line {
    height: 2px !important;
  }
  .bus-icon-row {
    grid-column: 1 / 3 !important;
    margin-bottom: 5px !important;
  }
  .bus-station-title {
    grid-column: 1 / 3 !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }
  .bus-station-title span {
    font-size: 11.5px !important;
  }
  .bus-timetable {
    grid-column: 1 / 2 !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
  }
  .bus-info-right {
    grid-column: 2 / 3 !important;
    align-self: flex-end !important; /* Align to the bottom of the text row */
    margin-right: -15px !important; /* Pin to extreme right */
  }
  .bus-timetable .bus-route {
    font-weight: 600 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 5px !important;
  }
  .bus-route .route-dest {
    font-size: 11.5px !important; /* Increased from 10px */
    font-weight: 600 !important;
    letter-spacing: -0.05em !important;
    white-space: nowrap !important;
  }
  .bus-route .route-time {
    font-size: 11.5px !important; /* Increased from 10px */
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
  }
  .bus-route .time-num {
    font-size: 13.5px !important; /* Increased from 12px */
    font-weight: 600 !important;
  }
  .nearby-places-section {
    padding: 0 0 15px !important;
  }
  .map-transition-container {
    margin-top: -10px !important; /* Pull up map container slightly */
    margin-bottom: 40px !important;
  }
  .access-footer-banner {
    margin-top: 15px !important; /* Reduced gap below the map */
  }
  .nearby-places-carousel {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    width: 100% !important;
    position: relative !important;
    gap: 0 !important;
    padding: 0 !important;
  }
  .carousel-arrow {
    display: flex !important;
    position: static !important;
    transform: none !important;
    flex-shrink: 0 !important;
    width: 28px !important;
    height: 28px !important;
    align-self: flex-start !important;
    margin-top: 93px !important; /* Centered relative to the 213px height image */
  }
  .nearby-place-card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 310px !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease-in-out !important;
    margin-bottom: 0 !important;
  }
  .nearby-place-card.active {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
  }
  /* Standardize the center card on mobile to match the other cards */
  .nearby-place-card.center-card {
    max-width: 310px !important;
  }
  .nearby-place-card.center-card .nearby-car-icon {
    width: 42px !important;
    height: 42px !important;
    transform: translateY(12px) !important;
  }
  .nearby-place-card.center-card .nearby-time {
    font-size: 14px !important;
    padding-bottom: 3px !important;
  }
  .nearby-place-card.center-card .nearby-time .time-num {
    font-size: 24px !important;
  }
  .nearby-place-card.center-card .nearby-name {
    font-size: 14px !important;
    padding-bottom: 6px !important;
  }
  .nearby-place-card.center-card .nearby-place-info {
    margin-top: -6px !important;
  }
  /* Staff Profile Section — scaled-down replica of desktop layout */
  .staff-profile-section {
    padding: 25px 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .staff-profile-header {
    margin-bottom: 20px !important;
    padding: 0 20px !important;
  }
  .staff-header-sub {
    font-size: 16px !important;
    font-style: italic !important;
    margin-bottom: 5px !important;
  }
  .staff-header-main {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
  .staff-card-bg {
    width: 100% !important;
    max-width: 100% !important;
    padding: 35px 0 !important;
    box-sizing: border-box !important;
    gap: 35px !important;
  }
  .staff-card-shadow-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .staff-profile-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 35px 10px 10px 10px !important;
    box-sizing: border-box !important;
  }
  .staff-profile-card::before {
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px) !important;
    outline-offset: -8px !important;
  }
  .decor-line {
    width: 45px !important;
  }
  .decor-line.top-left {
    top: 12px !important;
    left: 12px !important;
  }
  .decor-line.bottom-right {
    bottom: 12px !important;
    right: 12px !important;
  }
  .staff-title {
    font-size: 20px !important;
    top: -14px !important;
    left: 30px !important;
  }
  .staff-subtitle {
    font-size: 14px !important;
    margin-top: -20px !important;
    margin-bottom: 15px !important;
    line-height: 1.4 !important;
  }
  /* Stacked Layout for Mobile: Photo on top, full width for everything */
  .staff-info-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    margin-bottom: 5px !important;
  }
  .staff-text-col {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* center text elements for a nice stacked look */
    width: 100% !important;
  }
  .staff-photo-col {
    order: -1 !important; /* forces photo to the top */
    width: 100% !important;
    max-width: 260px !important;
    height: auto !important;
    aspect-ratio: 250 / 360 !important;
    margin: 0 auto !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
  }
  .staff-main-photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transform: scale(1.15) !important;
  }
  .staff-header-info {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: flex-end !important;
    margin-bottom: 15px !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .staff-badges {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: stretch !important;
    margin-bottom: 4px !important;
    flex-shrink: 0 !important;
  }
  .badge-housing-adviser, .badge-advisor-ja {
    font-size: 9px !important;
    padding: 2px 6px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
  .staff-name-area {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
  }
  .staff-label {
    font-size: 10px !important;
    margin-bottom: 1px !important;
    white-space: nowrap !important;
  }
  .staff-name {
    display: flex !important;
    flex-direction: row !important;
    align-items: baseline !important;
    gap: 6px !important;
    font-size: 18px !important;
    white-space: nowrap !important;
  }
  .staff-name-en {
    font-size: 18px !important;
  }
  .staff-desc {
    width: 100% !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    padding: 0 15px !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
  .staff-desc br {
    display: none !important;
  }
  .dotted-line {
    width: calc(100% - 30px) !important;
    margin: 6px auto !important;
  }
  .dogs-subtitle {
    transform: none !important;
    font-size: 15px !important;
    margin: 10px 0 20px 0 !important;
    text-align: center !important;
  }
  /* Dogs container — Flex row spanning full width */
  .dogs-profile-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 20px !important;
    align-items: flex-start !important;
    width: 100% !important;
    position: relative !important;
    padding: 0 !important;
    min-height: auto !important;
  }
  .polaroid-left-container {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    z-index: 3 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 120px !important;
    flex-shrink: 0 !important;
    order: 1 !important;
  }
  .polaroid-wrapper-right {
    display: contents !important;
  }
  .polaroid-wrapper-right-inner {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 120px !important;
    flex-shrink: 0 !important;
    order: 2 !important;
  }
  .dog-polaroid {
    width: 120px !important;
    padding: 3px !important;
  }
  .dog-polaroid img {
    height: 130px !important;
  }
  .dog-polaroid.polaroid-right img {
    height: 135px !important;
  }
  .polaroid-left {
    transform: rotate(-6deg) !important;
  }
  .polaroid-right {
    width: 115px !important;
    transform: rotate(6deg) !important;
  }
  /* Show small polaroid and food below the text on mobile */
  .polaroid-small {
    display: block !important;
    position: static !important;
    width: 80px !important;
    margin-top: 15px !important;
    order: 4 !important;
  }
  .dog-food-icon {
    display: flex !important;
    position: static !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
    order: 5 !important;
  }
  .dog-name {
    font-size: 14px !important;
    margin-top: 6px !important;
    font-weight: bold !important;
  }
  /* Attributes — Between the dogs */
  .dog-attributes {
    flex: none !important;
    width: 100% !important;
    order: 3 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    row-gap: 8px !important;
    column-gap: 6px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
    margin: 15px 0 0 0 !important;
  }
  .attr-row {
    display: contents !important;
  }
  .attr-val-left {
    white-space: normal !important;
    text-align: right !important;
    justify-self: end !important;
    padding-right: 2px !important;
    line-height: 1.3 !important;
    font-size: 12px !important;
  }
  .attr-val-right {
    white-space: normal !important;
    text-align: left !important;
    justify-self: start !important;
    padding-left: 2px !important;
    line-height: 1.3 !important;
    font-size: 12px !important;
  }
  .attr-label {
    font-size: 12px !important;
    padding: 0 4px !important;
  }
  .attr-center {
    align-items: flex-start !important;
    padding-top: 1px !important; /* minor tweak to optically align with the text line-height */
  }
  .attr-label.squeeze {
    font-size: 11px !important;
    letter-spacing: -0.1em !important;
  }
  .attr-arrow {
    font-size: 11px !important;
  }
  .cramped-text {
    font-size: 12px !important;
    letter-spacing: -0.05em !important;
  }
  @media (max-width: 400px) {
    .staff-profile-card {
      padding: 35px 10px 10px 10px !important;
    }
    .staff-header-info {
      gap: 8px !important;
      margin-bottom: 12px !important;
    }
    .badge-housing-adviser, .badge-advisor-ja {
      font-size: 8px !important;
      padding: 2px 5px !important;
    }
    .staff-label {
      font-size: 9px !important;
    }
    .staff-name {
      font-size: 15px !important;
      gap: 5px !important;
    }
    .staff-name-en {
      font-size: 12px !important;
    }
    .staff-desc {
      font-size: 12px !important;
      line-height: 1.5 !important;
    }
    .dog-polaroid {
      width: 105px !important;
      padding: 2.5px !important;
    }
    .dog-polaroid img {
      height: 115px !important;
    }
    .dog-polaroid.polaroid-right img {
      height: 120px !important;
    }
    .polaroid-right {
      width: 100px !important;
    }
    .dog-name {
      font-size: 12.5px !important;
    }
    .dog-attributes {
      font-size: 10.5px !important;
      row-gap: 8px !important;
    }
    .attr-val-left, .attr-val-right {
      font-size: 10.5px !important;
    }
    .attr-label {
      font-size: 10.5px !important;
    }
    .attr-label.squeeze {
      font-size: 9.5px !important;
    }
    .attr-arrow {
      font-size: 9.5px !important;
    }
    .cramped-text {
      font-size: 10.5px !important;
    }
  }
  /* Showroom Section */
  .showroom-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  .showroom-right {
    order: 1 !important;
    width: 100% !important;
  }
  .showroom-left {
    order: 2 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }
  .showroom-building-img {
    width: 100% !important;
    max-width: 380px !important;
    height: auto !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .showroom-description {
    font-size: 14px !important;
    line-height: 24px !important;
  }
  .info-row {
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .info-label {
    min-width: 65px !important;
    margin-top: 2px !important;
  }
  .info-label-inner {
    font-size: 12px !important;
    padding: 3px 0 !important;
  }
  .info-value {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .showroom-description {
    font-size: 12.5px !important;
    line-height: 20px !important;
  }
  /* Inquiry Form */
  .inquiry-form-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 17px !important;
    box-sizing: border-box !important;
  }
  .inquiry-form-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 18px !important;
    box-sizing: border-box !important;
  }
  .iq-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    width: 100% !important;
  }
  .iq-label {
    display: block !important;
    width: 100% !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  .iq-label br {
    display: none !important;
  }
  .iq-badge {
    display: inline-block !important;
    margin-left: 8px !important;
    vertical-align: middle !important;
    position: relative !important;
    top: -1.5px !important;
  }
  .iq-label-red {
    display: inline !important;
    margin-left: 5px !important;
    font-size: 12px !important;
  }
  .iq-row-textarea .iq-label {
    padding-top: 0 !important;
  }
  .iq-field {
    width: 100% !important;
  }
  .iq-input, .iq-select {
    width: 100% !important;
    height: 34px !important;
    box-sizing: border-box !important;
  }
  .iq-textarea {
    width: 100% !important;
    height: 110px !important;
    box-sizing: border-box !important;
  }
  .iq-input-short {
    width: 110px !important;
  }
  .iq-input-medium {
    width: 180px !important;
  }
  /* Site Footer */
  .site-footer {
    padding: 40px 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .footer-left, .footer-right {
    display: contents !important;
  }
  .footer-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100% !important;
  }
  /* 1. Header (Top Text and White Box) */
  .footer-right-header {
    order: 1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 35px !important;
  }
  .fr-title {
    font-size: 15px !important;
    text-align: center !important;
    margin-bottom: 12px !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
  }
  .fr-subtitle-box {
    width: 100% !important;
    max-width: 320px !important; /* This matches the approximate width of the title on iPhone SE/375px */
    padding: 10px 0 !important;
    font-size: 13px !important;
    letter-spacing: 4px !important;
    text-align: center !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  /* 2. Nav Links (Grid of 2 rows, 3 columns) */
  .footer-nav-container {
    order: 2 !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto 50px auto !important;
  }
  .footer-nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    column-gap: 5px !important;
    row-gap: 15px !important;
    justify-content: center !important;
    width: 100% !important;
    padding-left: 10px !important;
  }
  .footer-nav li {
    margin-bottom: 0 !important;
    display: flex !important;
    justify-content: flex-start !important;
  }
  .footer-nav li a {
    font-size: 14px !important;
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .f-nav-icon {
    margin-right: 6px !important;
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-block !important;
    transform: translateY(1.2px) !important;
  }
  /* 3. Logo */
  .footer-logo {
    order: 3 !important;
    margin: 0 auto 15px auto !important;
    text-align: center !important;
  }
  .footer-logo-img {
    max-width: 170px !important;
  }
  /* 4. Phone Number & BinO Name */
  .footer-contact {
    order: 4 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    margin-bottom: 35px !important;
  }
  .fc-name {
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 5px !important;
    letter-spacing: 1px !important;
  }
  .fc-tel {
    font-size: 28px !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
  }
  /* 5. Instagram Icon */
  .footer-sns {
    order: 5 !important;
    margin: 0 auto 40px auto !important;
    text-align: center !important;
  }
  .sns-link {
    display: inline-flex !important;
    background-color: #fff !important;
    color: #251c19 !important;
    border-radius: 50% !important;
    width: 70px !important;
    height: 70px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .sns-link svg {
    width: 40px !important;
    height: 40px !important;
    stroke-width: 1.5 !important;
  }
  /* 6. Company Info */
  .footer-company {
    order: 6 !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 30px auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .company-name {
    font-size: 13px !important;
    margin-bottom: 12px !important;
    font-weight: normal !important;
  }
  .company-info-table {
    font-size: 12px !important; /* Keep it at 12px as requested */
    width: 100% !important;
  }
  .company-info-table th {
    font-weight: normal !important;
    text-align: justify !important;
    text-align-last: justify !important;
    width: 58px !important; /* Slightly narrower label width */
    padding: 4px 0 !important;
    white-space: nowrap !important;
    vertical-align: top !important;
    letter-spacing: -0.08em !important; /* Cramp the letters on the left labels only */
  }
  .company-info-table td {
    padding: 4px 0 4px 6px !important; /* 6px padding to preserve space */
    vertical-align: top !important;
    white-space: nowrap !important; /* Prevent wrapping of values */
    letter-spacing: normal !important; /* Keep right side letter-spacing normal */
  }
  /* 7. Copyright */
  .footer-copyright {
    order: 7 !important;
    text-align: center !important;
    width: 100% !important;
    font-size: 11.5px !important;
    margin-top: 20px !important;
  }
  /* Overview Section Mobile Fixes */
  .overview-section {
    padding: 40px 15px !important;
  }
  .overview-grid {
    gap: 8px !important;
  }
  .overview-section .overview-heading {
    font-size: 32px !important;
    margin-bottom: 25px !important;
  }
  .overview-section .overview-list {
    gap: 8px !important;
  }
  .overview-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
  }
  .overview-row dt {
    width: 65px !important;
    margin-right: 8px !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
  }
  .overview-row dt span {
    font-size: 13px !important;
    line-height: 1.4 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    text-decoration-color: #111 !important;
    text-decoration-thickness: 1px !important;
  }
  .overview-row dd {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    text-decoration-color: #111 !important;
    text-decoration-thickness: 1px !important;
  }
}
/* --------------------------------------------------------------------------
   3. Breakpoint: Extra Small (Below 425px)
   -------------------------------------------------------------------------- */
@media (max-width: 425px) {
  .hero-title {
    font-size: 20px !important;
  }
  .concept-main-heading, .land-plan-main-heading {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .contact-sub-phrase {
    font-size: 15px !important;
  }
  .contact-main-phrase {
    font-size: 13.5px !important;
  }
  .btn {
    font-size: 14px !important;
    height: 40px !important;
  }
  /* Nearby Places Carousel Extra Small */
  .nearby-place-card, .nearby-place-card.center-card {
    max-width: 290px !important;
  }
  .carousel-arrow {
    width: 22px !important;
    height: 22px !important;
    margin-top: 88px !important; /* Centered relative to the 199px height image */
  }
  .nearby-name, .nearby-place-card.center-card .nearby-name {
    font-size: 12.5px !important;
  }
  .nearby-time {
    font-size: 12.5px !important;
  }
  .nearby-time .time-num, .nearby-place-card.center-card .nearby-time .time-num {
    font-size: 20px !important;
  }
  .nearby-car-icon, .nearby-place-card.center-card .nearby-car-icon {
    width: 34px !important;
    height: 34px !important;
    transform: translateY(10px) !important;
  }
}
/* --------------------------------------------------------------------------
   Responsive Contact CTA Layout: Stacked below 767px
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  .contact-heading {
    position: absolute !important;
    top: 8px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    text-align: center !important;
    font-size: 28px !important;
    margin: 0 !important;
    z-index: 10 !important;
  }
  .contact-inner-card {
    padding: 22px 12px 15px !important;
    border-width: 3px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    z-index: 1 !important;
  }
  .contact-content {
    flex-direction: column-reverse !important;
    margin-bottom: -15px !important;
    gap: 15px !important;
    width: 100% !important;
  }
  .contact-brochures {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    margin: 15px 0 0px 0 !important;
  }
  .brochure-image {
    width: auto !important;
    max-width: none !important;
    filter: drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.25)) !important;
  }
  .brochure-image:nth-child(1) {
    height: 140px !important;
    margin-left: 0 !important;
    z-index: 1 !important;
  }
  .brochure-image:nth-child(2) {
    height: 140px !important;
    margin-left: -44px !important;
    z-index: 2 !important;
  }
  .brochure-image:nth-child(3) {
    height: 135px !important;
    margin-left: -45px !important;
    z-index: 3 !important;
  }
  .brochure-image:nth-child(4) {
    height: 130px !important;
    margin-left: -55px !important;
    z-index: 4 !important;
  }
  .brochure-image:nth-child(5) {
    height: 135px !important;
    margin-left: -55px !important;
    z-index: 1 !important;
  }
  .contact-info {
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100% !important;
    align-self: center !important;
  }
  .contact-sub-phrase {
    font-size: 19px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .contact-main-phrase {
    font-size: 16px !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .contact-buttons {
    flex-direction: column !important;
    width: 100% !important;
    align-items: center !important;
    gap: 10px !important;
  }
  .btn {
    width: 100% !important;
    max-width: 100% !important;
  }
  .contact-container {
    padding: 30px 15px 25px !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
}
@media (max-width: 767px) {
  /* Concept Detail Section (Mobile below 900px) */
  .concept-detail-section {
    flex-direction: column !important;
    min-height: auto !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .concept-text-wrapper {
    margin: 0 auto !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    position: relative !important;
  }
  .concept-text-side {
    padding: 40px 0 !important;
    width: 100% !important;
    position: relative !important;
  }
  .concept-label {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
  .concept-main-heading {
    font-size: 34px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
    word-break: break-word !important;
  }
  .concept-sub-heading {
    font-size: 20px !important;
    margin-bottom: 18px !important;
  }
  .concept-paragraphs {
    font-size: 14.5px !important;
    line-height: 30px !important;
    padding-right: 0px !important;
  }
  .concept-paragraph-group:not(:last-child) {
    margin-bottom: 18px !important;
  }
  .concept-dog-icon-mobile {
    display: block !important;
    position: absolute !important;
    right: -45px !important;
    bottom: 16px !important;
    width: 110px !important;
    height: auto !important;
    opacity: 0.95 !important;
    pointer-events: none !important;
  }
  .concept-image-side {
    flex: none !important;
    width: 100% !important;
    height: 340px !important;
  }
  .concept-photo {
    object-position: center 30% !important;
  }
}
/* Toned-down Desktop Layout for intermediate range (1081px - 1200px) */
@media (min-width: 901px) and (max-width: 1201px) {
  .contact-section {
    padding: 0px 20px 40px !important;
  }
  .contact-container {
    padding: 38px 25px 25px !important;
    max-width: 1020px !important;
  }
  .contact-heading {
    font-size: 32px !important;
    left: 50px !important;
    top: 18px !important;
  }
  .contact-inner-card {
    padding: 10px 15px 0px 25px !important;
  }
  .contact-content {
    margin-bottom: -20px !important;
    gap: 0px !important;
  }
  .contact-info {
    margin-left: -50px !important;
    margin-top: 12px !important;
  }
  .contact-sub-phrase {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .contact-main-phrase {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 16px !important;
  }
  .contact-buttons {
    gap: 12px !important;
  }
  .btn {
    width: 190px !important;
    height: 34px !important;
    font-size: 14px !important;
    letter-spacing: 0.15em !important;
    text-indent: 0.15em !important;
  }
  .brochure-image:nth-child(1) {
    height: 160px !important;
    margin-left: -40px !important;
  }
  .brochure-image:nth-child(2) {
    height: 160px !important;
    margin-left: -50px !important;
  }
  .brochure-image:nth-child(3) {
    height: 155px !important;
    margin-left: -52px !important;
  }
  .brochure-image:nth-child(4) {
    height: 147px !important;
    margin-left: -65px !important;
  }
  .brochure-image:nth-child(5) {
    height: 155px !important;
    margin-left: -65px !important;
  }
}
/* Tablet screen sizing: not edge-to-edge, centered container with max-width */
@media (min-width: 701px) and (max-width: 767px) {
  .contact-section {
    padding: 40px 20px !important;
  }
  .contact-container {
    max-width: 720px !important;
    margin: 0 auto !important;
    border-radius: 8px !important;
  }
  /* Increase brochure sizes for tablet/stacked layout */
  .brochure-image:nth-child(1) {
    height: 190px !important;
    margin-left: 0 !important;
  }
  .brochure-image:nth-child(2) {
    height: 190px !important;
    margin-left: -58px !important;
  }
  .brochure-image:nth-child(3) {
    height: 185px !important;
    margin-left: -60px !important;
  }
  .brochure-image:nth-child(4) {
    height: 177px !important;
    margin-left: -75px !important;
  }
  .brochure-image:nth-child(5) {
    height: 185px !important;
    margin-left: -75px !important;
  }
}
/* Mobile screen sizing: edge-to-edge container */
@media (max-width: 700px) {
  .contact-section {
    padding: 30px 0 40px !important;
  }
  .contact-container {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
  }
}
/* Land Plan Section Breakpoints (Top-level) */
/* Under 800px: Mobile stacked layout */
@media (max-width: 800px) {
  .land-plan-section {
    flex-direction: column !important;
  }
  .land-plan-images-side {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
  }
  .land-plan-photo {
    flex: 1 1 50% !important;
    width: 50% !important;
    height: 200px !important;
    object-fit: cover !important;
  }
  .land-plan-text-side {
    padding: 40px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .land-plan-label {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .land-plan-main-heading {
    font-size: 28px !important;
    line-height: 1.3 !important;
    margin-bottom: 18px !important;
    word-break: break-word !important;
  }
  .land-plan-sub-heading {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }
  .land-plan-paragraphs {
    font-size: 14px !important;
    line-height: 28px !important;
  }
}
/* 800px to 950px: Desktop side-by-side but heavily toned-down */
@media (min-width: 800px) and (max-width: 950px) {
  .land-plan-section {
    min-height: auto !important;
  }
  .land-plan-images-side {
    flex: 0 0 38% !important;
  }
  .land-plan-photo {
    height: 240px !important;
  }
  .land-plan-text-side {
    padding: 30px 4% !important;
  }
  .land-plan-main-heading {
    font-size: 30px !important;
    line-height: 38px !important;
    margin-bottom: 20px !important;
  }
  .land-plan-sub-heading {
    font-size: 18px !important;
    line-height: 26px !important;
    margin-bottom: 15px !important;
  }
  .land-plan-paragraphs {
    font-size: 13px !important;
    line-height: 28px !important;
    letter-spacing: 0.08em !important;
  }
}
/* 951px to 1100px: Desktop side-by-side but moderately toned-down */
@media (min-width: 951px) and (max-width: 1100px) {
  .land-plan-section {
    min-height: auto !important;
  }
  .land-plan-images-side {
    flex: 0 0 38% !important;
  }
  .land-plan-photo {
    height: 280px !important;
  }
  .land-plan-text-side {
    padding: 40px 6% !important;
  }
  .land-plan-main-heading {
    font-size: 38px !important;
    line-height: 48px !important;
    margin-bottom: 25px !important;
  }
  .land-plan-sub-heading {
    font-size: 20px !important;
    line-height: 30px !important;
    margin-bottom: 20px !important;
  }
  .land-plan-paragraphs {
    font-size: 13.5px !important;
    line-height: 32px !important;
    letter-spacing: 0.09em !important;
  }
}
/* 768px to 1024px: Tablet landscape/portrait scale-down for Hero and Final Banner */
@media (min-width: 768px) and (max-width: 1024px) {
  .final-banner-section {
    height: 380px !important;
  }
  .hero-subtitle {
    font-size: 14.5px !important;
    line-height: 20px !important;
    margin-bottom: 10px !important;
  }
  .hero-title {
    font-size: 28px !important;
    line-height: 40px !important;
    margin-bottom: 12px !important;
  }
  .hero-details, .final-banner-details {
    gap: 12px !important;
  }
  .detail-left, .final-banner-detail-left {
    font-size: 13px !important;
    line-height: 22px !important;
    transform: translateY(-10px) !important;
  }
  .detail-middle, .final-banner-detail-middle {
    font-size: 24px !important;
    line-height: 22px !important;
  }
  .highlight-number, .final-banner-highlight-number {
    font-size: 54px !important;
    margin: 0 4px !important;
    transform: translateY(5px) !important;
  }
  .detail-right, .final-banner-detail-right {
    font-size: 24px !important;
    line-height: 22px !important;
    letter-spacing: 0.1em !important;
  }
}
/* 900px to 1024px: Desktop layout restored with very heavily cramped sizes */
@media (min-width: 900px) and (max-width: 1024px) {
  /*  .sidebar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 120px !important;
    height: 120px !important;
    z-index: 100 !important;
  }
  .top-nav {
    position: static !important;
    background-color: #fff !important;
    box-shadow: none !important;
    margin-left: 120px !important;
    padding: 12px 0px !important;
    height: auto !important;
    width: auto !important;
    max-width: none !important;
    display: block !important;
    right: auto !important;
    left: auto !important;
    z-index: auto !important;
  }*/
  .sidebar {
    position: fixed !important; /* absolute から変更 */
  }
  .top-nav {
    position: fixed !important; /* static から変更 */
    left: 120px !important; /* margin-left から変更 */
    right: 0 !important; /* 追加 */
  }
  .main-content {
    padding-top: 43px !important; /* 0 から変更 */
  }
  /* --- Restore Nav Title (hidden on desktop) --- */
  .nav-title {
    display: none !important;
  }
  /* --- Hide Hamburger Button --- */
  .mobile-menu-toggle {
    display: none !important;
  }
  /* --- Restore Nav Links to horizontal desktop row --- */
  .nav-links {
    position: static !important;
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;
    background-color: transparent !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 0 !important;
    margin-left: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: auto !important;
    box-shadow: none !important;
    overflow-y: visible !important;
    display: flex !important;
  }
  .nav-links li:not(.mobile-menu-info) {
    width: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
  }
  .nav-links li a {
    font-size: 13px !important;
    gap: 4px !important;
    color: #111 !important;
    font-weight: 500 !important;
    padding: 0 !important;
    border-bottom: none !important;
    letter-spacing: 0.03em !important;
  }
  /* Use full selector to override the more-specific mobile rule */
  .nav-links li a .nav-checkbox {
    width: 15px !important;
    height: 15px !important;
    transform: translateY(-2.2px) !important;
  }
  .mobile-menu-info {
    display: none !important;
  }
  /* --- Restore Main Content (undo 45px top padding for fixed nav) --- */
  .main-content {
    padding-top: 0 !important;
  }
  /* --- Hide mobile-only line breaks in hero --- */
  .mobile-only {
    display: none !important;
  }
  /* --- Hero Section: fixed height, desktop overlay style --- */
  .hero-section {
    height: 580px !important;
    min-height: 0 !important;
    padding-top: 25px !important;
    padding-bottom: 0 !important;
  }
  .hero-content {
    padding: 0 20px !important;
  }
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
    letter-spacing: 0.12em !important;
    word-break: normal !important;
  }
  .hero-title {
    font-size: 30px !important;
    line-height: 44px !important;
    margin-bottom: 14px !important;
    letter-spacing: 0.15em !important;
    padding: 0 !important;
    word-break: normal !important;
  }
  /* --- Restore horizontal detail row (undo mobile column stacking) --- */
  .hero-details {
    flex-direction: row !important;
    align-items: baseline !important;
    justify-content: center !important;
    gap: 10px !important;
    width: auto !important;
  }
  .detail-group {
    display: contents !important;
  }
  .detail-left {
    transform: translateY(-9px) !important;
    font-size: 12px !important;
    line-height: 20px !important;
    padding: 6px 0 !important;
    border-top: 2px double #111 !important;
    border-bottom: 2px double #111 !important;
    display: block !important;
    width: auto !important;
    margin: 0 !important;
    white-space: nowrap !important;
  }
  .detail-middle {
    font-size: 22px !important;
    line-height: 20px !important;
    letter-spacing: 0.1em !important;
    display: flex !important;
    align-items: baseline !important;
  }
  .highlight-number {
    font-size: 50px !important;
    margin: 0 3px !important;
    transform: translateY(4px) !important;
  }
  .detail-right {
    font-size: 22px !important;
    line-height: 20px !important;
    letter-spacing: 0.08em !important;
  }
}
/* 1025px to 1300px: Cramp more (smaller logo, smaller spacing, smaller hero fonts) */
@media (min-width: 1025px) and (max-width: 1300px) {
  .sidebar {
    width: 140px !important;
    height: 140px !important;
  }
  .top-nav {
    left: 140px !important;
    padding: 15px 0px !important;
  }
  /* 以下の3行を追加 */
  .main-content {
    padding-top: 54px !important;
  }
  .nav-links {
    margin-left: 40px !important;
    max-width: 700px !important;
  }
  .nav-links li a {
    font-size: 13.5px !important;
    gap: 5px !important;
  }
  .nav-checkbox {
    width: 16px !important;
    height: 16px !important;
    transform: translateY(-2px) !important;
  }
  /* Hero Section Cramped Typography */
  .hero-section {
    height: 700px !important;
    padding-top: 30px !important;
  }
  .hero-subtitle {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 12px !important;
  }
  .hero-title {
    font-size: 34px !important;
    line-height: 48px !important;
    margin-bottom: 15px !important;
    letter-spacing: 0.15em !important;
  }
  .hero-details {
    gap: 15px !important;
  }
  .detail-left {
    font-size: 14px !important;
    line-height: 24px !important;
    transform: translateY(-11px) !important;
  }
  .detail-middle {
    font-size: 28px !important;
    line-height: 26px !important;
  }
  .highlight-number {
    font-size: 64px !important;
    margin: 0 4px !important;
    transform: translateY(6px) !important;
  }
  .detail-right {
    font-size: 28px !important;
    line-height: 26px !important;
    letter-spacing: 0.1em !important;
  }
  /* Final Banner Decoupled Overrides */
  .final-banner-details {
    gap: 15px !important;
  }
  .final-banner-detail-left {
    font-size: 14px !important;
    line-height: 24px !important;
    transform: translateY(-11px) !important;
  }
  .final-banner-detail-middle {
    font-size: 28px !important;
    line-height: 26px !important;
  }
  .final-banner-highlight-number {
    font-size: 64px !important;
    margin: 0 4px !important;
    transform: translateY(6px) !important;
  }
  .final-banner-detail-right {
    font-size: 28px !important;
    line-height: 26px !important;
    letter-spacing: 0.1em !important;
  }
}
/* 1301px to 1500px: Cramp less (moderate logo, moderate spacing, moderate hero fonts) */
@media (min-width: 1301px) and (max-width: 1500px) {
  .sidebar {
    width: 165px !important;
    height: 165px !important;
  }
  .top-nav {
    left: 165px !important;
    padding: 20px 0px !important;
  }
  /* 以下の3行を追加 */
  .main-content {
    padding-top: 64px !important;
  }
  .nav-links {
    margin-left: 80px !important;
    max-width: 850px !important;
  }
  .nav-links li a {
    font-size: 15px !important;
    gap: 6px !important;
  }
  .nav-checkbox {
    width: 18px !important;
    height: 18px !important;
    transform: translateY(-3px) !important;
  }
  /* Hero Section Moderate Typography */
  .hero-section {
    height: 750px !important;
    padding-top: 35px !important;
  }
  .hero-subtitle {
    font-size: 19px !important;
    line-height: 25px !important;
    margin-bottom: 16px !important;
  }
  .hero-title {
    font-size: 40px !important;
    line-height: 56px !important;
    margin-bottom: 18px !important;
  }
  .hero-details {
    gap: 20px !important;
  }
  .detail-left {
    font-size: 16px !important;
    line-height: 28px !important;
    transform: translateY(-12px) !important;
  }
  .detail-middle {
    font-size: 35px !important;
    line-height: 32px !important;
  }
  .highlight-number {
    font-size: 80px !important;
    margin: 0 6px !important;
    transform: translateY(5px) !important;
  }
  .detail-right {
    font-size: 35px !important;
    line-height: 32px !important;
  }
  /* Final Banner Decoupled Overrides */
  .final-banner-details {
    gap: 20px !important;
  }
  .final-banner-detail-left {
    font-size: 16px !important;
    line-height: 28px !important;
    transform: translateY(-12px) !important;
  }
  .final-banner-detail-middle {
    font-size: 35px !important;
    line-height: 32px !important;
  }
  .final-banner-highlight-number {
    font-size: 80px !important;
    margin: 0 6px !important;
    transform: translateY(5px) !important;
  }
  .final-banner-detail-right {
    font-size: 35px !important;
    line-height: 32px !important;
  }
  .plan-detail-header {
    justify-content: flex-start !important;
    gap: 80px !important;
  }
  .plan-resort-title {
    font-size: 23px !important;
  }
}
/* Toned-down Concept, Land Plan, and Point Sections for intermediate range (768px - 900px) */
@media (min-width: 768px) and (max-width: 900px) {
  .concept-main-heading, .land-plan-main-heading {
    font-size: 32px !important;
    line-height: 42px !important;
    margin-bottom: 20px !important;
  }
  .concept-sub-heading, .land-plan-sub-heading {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 15px !important;
  }
  .concept-paragraphs, .land-plan-paragraphs {
    font-size: 13px !important;
    line-height: 26px !important;
    letter-spacing: 0.08em !important;
  }
  .concept-text-side {
    padding: 30px 20px !important;
  }
  .concept-image-side {
    flex: 0 0 46% !important;
  }
  .concept-photo {
    object-position: 78% center !important;
  }
  .land-plan-text-side {
    padding: 30px 4% !important;
  }
  /* Point Sections */
  .point-section {
    padding: 40px 0 !important;
  }
  .point-container {
    gap: 20px !important;
    padding: 0 20px !important;
  }
  .point-label {
    font-size: 32px !important;
  }
  .point-number {
    font-size: 58px !important;
  }
  .point-heading {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }
  .point-description {
    font-size: 13.5px !important;
    line-height: 24px !important;
  }
  .plan-detail-header {
    padding-left: 15px !important;
    padding-right: 15px !important;
    justify-content: flex-start !important;
    gap: 30px !important;
  }
  .plan-tabs-container {
    margin-left: 0 !important;
  }
  .plan-resort-title {
    font-size: 19px !important;
  }
}
/* Toned-down Contact Sections for intermediate range (768px - 815px) - Edge-to-Edge Desktop Style */
@media (min-width: 768px) and (max-width: 815px) {
  /* Contact Section */
  .contact-section {
    padding: 0px 0px 30px !important;
    width: 100% !important;
  }
  .contact-container {
    padding: 38px 15px 25px !important;
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
  }
  .contact-heading {
    font-size: 26px !important;
    left: 35px !important;
    top: 19px !important;
  }
  .contact-inner-card {
    border-width: 4px !important;
    padding: 15px 15px 0px 25px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
  }
  .contact-content {
    margin-bottom: -15px !important;
    gap: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-info {
    margin-left: -25px !important;
    margin-top: 10px !important;
    flex: 1.1 !important;
    min-width: 0 !important;
  }
  .contact-sub-phrase {
    font-size: 14.8px !important;
    line-height: 19px !important;
    white-space: nowrap !important;
  }
  .contact-main-phrase {
    font-size: 14.8px !important;
    line-height: 21px !important;
    margin-bottom: 12px !important;
    white-space: nowrap !important;
  }
  .contact-buttons {
    gap: 10px !important;
  }
  .btn {
    width: 145px !important;
    height: 32px !important;
    font-size: 11.5px !important;
    letter-spacing: 0.1em !important;
    text-indent: 0.1em !important;
  }
  .brochure-image:nth-child(1) {
    height: 126px !important;
    margin-left: 0 !important;
  }
  .brochure-image:nth-child(2) {
    height: 126px !important;
    margin-left: -32px !important;
  }
  .brochure-image:nth-child(3) {
    height: 121px !important;
    margin-left: -32px !important;
  }
  .brochure-image:nth-child(4) {
    height: 114px !important;
    margin-left: -36px !important;
  }
  .brochure-image:nth-child(5) {
    height: 121px !important;
    margin-left: -36px !important;
  }
}
/* Toned-down Contact Sections for intermediate range (816px - 900px) - Original Styled Layout */
@media (min-width: 816px) and (max-width: 900px) {
  /* Contact Section */
  .contact-section {
    padding: 0px 15px 30px !important;
    width: 100% !important;
  }
  .contact-container {
    padding: 38px 20px 25px !important;
    max-width: 860px !important;
    width: 100% !important;
  }
  .contact-heading {
    font-size: 26px !important;
    left: 40px !important;
    top: 19px !important;
  }
  .contact-inner-card {
    border-width: 4px !important;
    padding: 15px 15px 0px 25px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-content {
    margin-bottom: -15px !important;
    gap: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .contact-info {
    margin-left: -20px !important;
    margin-top: 10px !important;
    flex: 1.1 !important;
    min-width: 0 !important;
  }
  .contact-sub-phrase {
    font-size: 15.5px !important;
    line-height: 20px !important;
    white-space: nowrap !important;
  }
  .contact-main-phrase {
    font-size: 15.5px !important;
    line-height: 22px !important;
    margin-bottom: 12px !important;
    white-space: nowrap !important;
  }
  .contact-buttons {
    gap: 10px !important;
  }
  .btn {
    width: 150px !important;
    height: 32px !important;
    font-size: 11.5px !important;
    letter-spacing: 0.1em !important;
    text-indent: 0.1em !important;
  }
  .brochure-image:nth-child(1) {
    height: 130px !important;
    margin-left: 0 !important;
  }
  .brochure-image:nth-child(2) {
    height: 130px !important;
    margin-left: -32px !important;
  }
  .brochure-image:nth-child(3) {
    height: 125px !important;
    margin-left: -32px !important;
  }
  .brochure-image:nth-child(4) {
    height: 118px !important;
    margin-left: -40px !important;
  }
  .brochure-image:nth-child(5) {
    height: 125px !important;
    margin-left: -40px !important;
  }
}
/* Toned-down Concept, Land Plan, and Point Sections for intermediate range (901px - 1100px) */
@media (min-width: 901px) and (max-width: 1100px) {
  .concept-main-heading, .land-plan-main-heading {
    font-size: 38px !important;
    line-height: 48px !important;
    margin-bottom: 25px !important;
  }
  .concept-sub-heading, .land-plan-sub-heading {
    font-size: 19px !important;
    line-height: 28px !important;
    margin-bottom: 20px !important;
  }
  .concept-paragraphs, .land-plan-paragraphs {
    font-size: 14.5px !important;
    line-height: 32px !important;
    letter-spacing: 0.12em !important;
  }
  .concept-text-side {
    padding: 50px 30px !important;
  }
  .concept-image-side {
    flex: 0 0 45% !important;
  }
  .concept-photo {
    object-position: 78% center !important;
  }
  .land-plan-text-side {
    padding: 50px 6% !important;
  }
  /* Point Sections */
  .point-section {
    padding: 60px 0 !important;
  }
  .point-container {
    gap: 30px !important;
    padding: 0 30px !important;
  }
  .point-label {
    font-size: 38px !important;
  }
  .point-number {
    font-size: 68px !important;
  }
  .point-heading {
    font-size: 24px !important;
    margin-bottom: 18px !important;
  }
  .point-description {
    font-size: 15px !important;
    line-height: 28px !important;
  }
  .plan-detail-header {
    justify-content: flex-start !important;
    gap: 40px !important;
  }
  .plan-resort-title {
    font-size: 17px !important;
  }
}
/* Toned-down Concept, Land Plan, and Point Sections for intermediate range (1101px - 1300px) */
@media (min-width: 1101px) and (max-width: 1300px) {
  .concept-main-heading, .land-plan-main-heading {
    font-size: 42px !important;
    line-height: 52px !important;
    margin-bottom: 32px !important;
  }
  .concept-sub-heading, .land-plan-sub-heading {
    font-size: 20px !important;
    line-height: 30px !important;
    margin-bottom: 25px !important;
  }
  .concept-paragraphs, .land-plan-paragraphs {
    font-size: 14.5px !important;
    line-height: 32px !important;
    letter-spacing: 0.12em !important;
  }
  .concept-text-side {
    padding: 60px 40px !important;
  }
  .land-plan-text-side {
    padding: 60px 8% !important;
  }
  /* Point Sections */
  .point-section {
    padding: 70px 0 !important;
  }
  .point-container {
    gap: 40px !important;
    padding: 0 35px !important;
  }
  .point-label {
    font-size: 40px !important;
  }
  .point-number {
    font-size: 72px !important;
  }
  .point-heading {
    font-size: 26px !important;
    margin-bottom: 20px !important;
  }
  .point-description {
    font-size: 16px !important;
    line-height: 30px !important;
  }
  .plan-detail-header {
    justify-content: flex-start !important;
    gap: 60px !important;
  }
  .plan-resort-title {
    font-size: 20px !important;
  }
}
/* Toned-down Concept, Land Plan, and Point Sections for intermediate range (1301px - 1425px) */
@media (min-width: 1301px) and (max-width: 1425px) {
  .concept-main-heading, .land-plan-main-heading {
    font-size: 44px !important;
    line-height: 54px !important;
    margin-bottom: 30px !important;
  }
  .concept-sub-heading, .land-plan-sub-heading {
    font-size: 21px !important;
    line-height: 30px !important;
    margin-bottom: 22px !important;
  }
  .concept-paragraphs, .land-plan-paragraphs {
    font-size: 15px !important;
    line-height: 34px !important;
    letter-spacing: 0.12em !important;
  }
  .concept-text-side {
    padding: 60px 40px !important;
  }
  .land-plan-text-side {
    padding: 60px 6% !important;
  }
  /* Point Sections */
  .point-section {
    padding: 80px 0 !important;
  }
  .point-container {
    gap: 45px !important;
    padding: 0 40px !important;
  }
  .point-label {
    font-size: 42px !important;
  }
  .point-number {
    font-size: 74px !important;
  }
  .point-heading {
    font-size: 27px !important;
    margin-bottom: 20px !important;
  }
  .point-description {
    font-size: 16.5px !important;
    line-height: 31px !important;
  }
}

/* 中央以外のスライド */
.slick-img img {
  height: auto;
  opacity: .3;
  transform: scale(.8);
  transition: opacity .5s, transform .5s;
  width: 100%;
}
/* 中央のスライド */
.slider .slick-center img {
  opacity: 1;
  transform: scale(1);
}
.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 30px;
}
.prev-arrow {
  left: 30.7%;
  z-index: +1;
}
.next-arrow {
  right: 30.7%;
  z-index: +1;
}
@media screen and (max-width: 750px) {
  .prev-arrow {
    left: 30px;
  }
  .next-arrow {
    right: 30px;
  }
}
/* =====================================================
   アクセススライダー（Slick Carousel）のレスポンシブ修正
   ===================================================== */
.access_slide {
  width: 100%;
  max-width: 1500px;
  margin: 80px auto;
  overflow: hidden; /* ←追加：はみ出しを強制的に隠す */
  box-sizing: border-box; /* ←追加：paddingやborderを含めた幅計算にする */
}

/* スマホ・タブレット用調整 */
@media screen and (max-width: 768px) {
  .access_slide {
    margin: 40px auto; /* スマホ向けに余白を少し詰める */
  }

  .slick-img img {
    /* スライダー内の画像を画面幅に収める */
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
/* =====================================================
   Point 3 特別対応（横長画像 877x271）修正版
   ===================================================== */
.point3-dogs .point-image-wrapper {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important; /* ← 追加: 枠の高さを画像に合わせて自動調整 */
  aspect-ratio: auto !important; /* ← 変更: アスペクト比の固定を解除し、画像本来の比率に委ねる */
  background-color: transparent !important;
}
.point3-dogs .point-image {
  width: 100% !important;
  height: auto !important; /* ← 追加: 画像自体の高さを自動調整 */
  object-fit: contain !important; /* ← 変更: cover(切り取り)からcontain(全表示)へ変更 */
}
/*mailform*/
.contact_inner .box {
  border: 1px solid #95abac;
  background: #fff;
  border-radius: 10px;
  max-width: 800px;
  box-sizing: border-box;
  padding: 10px 20px 40px;
}
.mailArea {
  /* CSS Document */
}
.mailArea .pc {
  display: inline;
}
.mailArea .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .mailArea .pc {
    display: none;
  }
  .mailArea .sp {
    display: inline;
  }
}
.mailArea body {
  margin: 0;
  padding: 0;
}
.mailArea div.lh0 {
  margin: 0;
  padding: 0;
  line-height: 0;
}
.mailArea img {
  width: 100%;
  height: auto;
  line-height: 0;
  margin: 0;
  padding: 0;
}
.mailArea a.contact {
  display: block;
  width: 40%;
  max-width: 342px;
  position: absolute;
}
.mailArea a {
  transition: 0.5s;
}
.mailArea a:hover {
  opacity: 0.7;
}
.mailArea h1 {
  margin: 0;
  padding: 0;
  line-height: 0;
  background-color: #fff;
  text-align: center;
}
.mailArea h1 img {
  width: 100%;
  max-width: 2400px;
  height: auto;
}
.mailArea .wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.mailArea #concept {
  padding: 100px 0;
}
.mailArea #concept a.contact {
  left: 5%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .mailArea #concept {
    padding: 50px 0;
  }
  .mailArea #concept a.contact {
    left: 3%;
  }
}
.mailArea #landplan {
  background-color: #95abac;
}
.mailArea #kukaku {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .mailArea #kukaku {
    padding: 50px 0 0;
  }
}
.mailArea .contact_part a.contact {
  position: static;
  margin: 0 auto;
}
.mailArea #tokuten {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .mailArea #tokuten {
    padding: 50px 0;
  }
}
.mailArea #tokuten .wrapper {
  max-width: 1000px;
}
.mailArea #tokuten2 {
  padding: 0 0 100px;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .mailArea #tokuten2 {
    padding: 0 0 50px;
  }
}
.mailArea #tokuten2 .wrapper {
  max-width: 1000px;
}
.mailArea #location {
  background-color: #95abac;
  padding: 100px 0 0;
  text-align: center;
}
.mailArea #location img {
  max-width: 2400px;
}
.mailArea #location .contact_part {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .mailArea #location {
    padding: 50px 0 0;
  }
  .mailArea #location .contact_part {
    margin-top: 30px;
  }
}
.mailArea #map {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .mailArea #map {
    padding: 50px 0;
  }
}
.mailArea #overview {
  background-color: #95abac;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .mailArea #overview {
    padding: 50px 0;
  }
}
.mailArea #contact {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .mailArea #contact {
    padding: 50px 0;
  }
}
.mailArea footer {
  background-color: #000;
  padding: 70px 0;
}
.mailArea footer .row {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.mailArea footer .row .column1 {
  width: 35%;
}
.mailArea footer .row .column2 {
  width: 12%;
}
.mailArea footer .row .column3 {
  width: 21%;
}
.mailArea footer .row .column4 {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .mailArea footer {
    padding: 30px 0 0;
  }
  .mailArea footer .row {
    display: block;
  }
  .mailArea footer .row .column1, .mailArea footer .row .column2, .mailArea footer .row .column3, .mailArea footer .row .column4 {
    text-align: center;
    width: 100%;
  }
  .mailArea footer .row .column1 img {
    max-width: 280px;
  }
  .mailArea footer .row .column3 {
    width: 80%;
  }
  .mailArea footer .row .column1, .mailArea footer .row .column3, .mailArea footer .row .column4 {
    padding-bottom: 30px;
  }
}
.mailArea .box {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .mailArea .box {
    margin: 0 auto;
  }
}
.mailArea .box div {
  line-height: 1.4em;
}
.mailArea .box table {
  margin: 0 auto;
}
.mailArea .box table tbody th {
  width: 165px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2em;
  text-align: left;
  vertical-align: top;
  padding: 17px 10px 0 0;
}
@media only screen and (max-width: 767px) {
  .mailArea .box table tbody th {
    width: 100%;
    padding: 20px 0 5px 0;
    display: block;
  }
}
.mailArea .box table tbody th.rows {
  padding: 10px 10px 0 0;
}
@media only screen and (max-width: 767px) {
  .mailArea .box table tbody th.rows {
    padding: 20px 0 5px 0;
  }
}
.mailArea .box table tbody th > span {
  float: right;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  width: 40px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  padding: 0;
  background-color: #42210a;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .mailArea .box table tbody th > span {
    float: none;
    margin-left: 20px;
    vertical-align: bottom;
  }
}
.mailArea .box table tbody td {
  width: 604px;
  padding: 5px 0 10px 0;
}
@media only screen and (max-width: 767px) {
  .mailArea .box table tbody td {
    width: 100%;
    display: block;
  }
}
.mailArea .box table tbody td input[type="text"], .mailArea .box table tbody td input[type="email"], .mailArea .box table tbody td textarea {
  width: calc(100% - 20px);
  font-size: 18px;
  padding: 15px 10px;
  border: 1px solid #c7c0ad;
  border-radius: 5px;
  -webkit-appearance: none;
}
.mailArea .box table tbody td.age input[type="text"] {
  width: 125px;
  margin-right: 10px;
  font-size: 18px;
  padding: 15px 10px;
  /*border: 1px solid #C7C0AD;*/
  border-radius: 5px;
  -webkit-appearance: none;
}
.mailArea .box table tbody td.zipcode > div {
  width: 194px;
  height: 53px;
  /*border: 1px solid #C7C0AD;*/
  position: relative;
  border-radius: 5px;
}
.mailArea .box table tbody td.zipcode > div:before {
  position: absolute;
  content: "〒";
  z-index: 1;
  top: 14px;
  left: 10px;
}
.mailArea .box table tbody td.zipcode > div input[type="text"] {
  position: relative;
  font-size: 18px;
  padding: 15px 10px 15px 40px;
}
.mailArea .box table tbody td.radio {
  padding-top: 10px;
}
.mailArea .box table tbody td.radio input[type="radio"] {
  display: none;
}
.mailArea .box table tbody td.radio > label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-left: 14px;
  padding: 13px 10px 10px 24px;
  text-align: center;
  line-height: 1;
}
.mailArea .box table tbody td.radio > label:before {
  position: absolute;
  content: "";
  top: 44%;
  left: -10px;
  width: 24px;
  height: 24px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #c7c0ad;
  border-radius: 50%;
}
.mailArea form#mailformpro label {
  font-size: 14px;
}
form#mailformpro label.mfp_not_checked {
  padding: 0 !important;
  border: none !important;
}
.mailArea .box table tbody td.radio input[type="radio"]:checked + label:after {
  position: absolute;
  content: "";
  top: 16px;
  left: -5px;
  width: 18px;
  height: 18px;
  margin-top: -4px;
  border-radius: 50%;
  background: #79ca43;
}
.mailArea .box table tbody td select {
  min-width: 260px;
  height: 53px;
  border: 1px solid #c7c0ad;
  border-radius: 5px;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 767px) {
  .mailArea .box table tbody td select {
    min-width: 100%;
  }
}
.mailArea .box table tbody td textarea {
  width: calc(100% - 20px) !important;
  height: 200px !important;
  font-size: 18px;
  padding: 15px 10px;
  border: 1px solid #c7c0ad;
  border-radius: 5px;
}
.mailArea .box .btn {
  text-align: center;
  margin: 30px auto 0;
  width: 100%;
}
.mailArea .box .btn > button {
  position: relative;
  display: inline-block;
  width: 240px;
  height: 60px;
  background-color: #95abac;
  border: none;
  box-sizing: border-box;
  border-radius: 2px;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
@media only screen and (max-width: 767px) {
  .mailArea .box .btn > button {
    width: 80%;
  }
}
.mailArea .box .btn > button:hover {
  cursor: pointer;
  opacity: 0.7;
}
.mailArea .box > .banner {
  margin: 30px auto 0;
  text-align: center;
  max-width: 800px;
}
.mailArea .box > .banner a {
  transition: all 0.3s cubic-bezier(0.4, 0.3, 0.5, 0.9);
}
.mailArea .box > .banner a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  .mailArea .box > .banner a img {
    width: 100%;
  }
}
.mailArea #thanks div {
  line-height: 1.8;
}
.mailArea #thanks .header {
  background-color: #000;
  text-align: center;
  padding: 25px 0 0 25px;
}
.mailArea #thanks .header img {
  width: 200px;
  height: auto;
}
.mailArea #thanks .box {
  margin: 100px 0;
  text-align: center;
  font-size: 20px;
}
.mailArea #plan {
  padding: 0 0 100px;
}
.mailArea #plan div {
  margin: 0 auto 0 15%;
  width: 75%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .mailArea #plan {
    padding-bottom: 50px;
  }
  .mailArea #plan div {
    margin-left: 10%;
    width: 81%;
  }
}
.mailArea #plan div a {
  display: block;
  width: 23%;
}
.mailArea #plan div a img {
  width: 100%;
  height: auto;
}
.mailArea #plan div a:nth-of-type(2) {
  padding-top: 5%;
}
.mailArea #plan div a:nth-of-type(3) {
  padding-top: 10%;
}
.mailArea #plan div a:nth-of-type(4) {
  padding-top: 15%;
}
span.required {
  display: inline-block;
  height: 20px;
  line-height: 20px;
  width: 40px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  padding: 0;
  background-color: #42210a;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  span.required {
    margin-left: 20px;
    vertical-align: bottom;
  }
}