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

html {
  font-size: 100%; /* 16px基準 */
}

:root {
  --header-height: 75px;
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #333;
  background: #f4f1ed;
  line-height: 1.7;
  padding-top: var(--header-height);
}


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

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

ul {
  list-style: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  height: var(--header-height);
}


.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0;
  height: 100%;
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.reserve-btn {
  margin-left: 40px;
  margin-bottom: 16px;
}

nav ul li a {
    color: #8B6B4F;
    font-weight: bold;
}

.btn {
  background: #8c6b4f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 13px;
}

.reserve-btn {
  width: 88px;
  height: 74px;
  background: #6B4A2F;
  border-radius: 0 0 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.reserve-btn:hover {
  opacity: 0.85;
}

.reserve-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reserve-text {
  line-height: 1;
}

.hamburger {
display: none;
  position: fixed;
  top: 24px;
  right: 20px;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3000;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #6B4A2F;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

.sp-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(6px);
  transition: right 0.3s ease;
  z-index: 2000;
}

.sp-menu.active {
  right: 0;
}

.sp-menu-inner {
  padding-top: 120px;
  text-align: center;
}

.sp-menu-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-weight: 700;
  font-size: 18px;
  color: #3A2E25;
}

.sp-contact-btn {
  display: inline-block;
  margin: 32px auto;
  padding: 12px 32px;
  background: #6B4A2F;
  color: #fff;
  border-radius: 999px;
  font-weight: 500;
}

.no-scroll {
  overflow: hidden;
}


@media screen and (max-width:768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 100px 20px;
    transition: right 0.3s ease;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .reserve-btn {
    margin-left: 0;
    margin-top: 30px;
  }

  .hamburger {
    display: flex;
  }

    .nav {
    display: none;
  }

}

/* =========================
   Header Responsive
========================= */

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .nav-list {
    display: none; /* モバイルでは非表示（ハンバーガー用） */
  }

  .reserve-btn {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }

  .logo {
    font-size: 1.375rem;
  }
}

/* =============================
   Hero
============================= */

.hero {
  width: 100%;
  height: 80vh;
  background-image: url("../img/Hero.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  padding-top: 12rem;
}

.hero-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 48px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.hero-sub {
  font-size: clamp(0.875rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
}


  @media (max-width: 768px) {
  .hero {
    background-image: url("../img/Hero-sp.jpg");
    background-position: center;
    padding-top: 5rem;
  }

  .hero-inner {
    padding-left: 8px;
  }

  .hero-title {
  margin-bottom: 8px;
}
}



/* =========================
   1056px共通幅
========================= */

.container {
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
  /* padding: 0 20px 80px; */
  padding: 0 60px;
}

/* =========================
   About Section
========================= */

.about {
  padding: 5.5rem 2rem; /* 120px */
  background: #fff;
}

.about-inner {
  margin: 0 auto;
  text-align: center;
}

.about-inner p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 1.125rem; /* 18px */
  line-height: 3;
  color: #27130A;
  margin-bottom: 1.125rem; /* 18px */
}

.about-inner p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 2rem 1.5rem;
  }

  .about-inner p {
    font-size: 1rem; /* 16px */
  }

}

/* =========================
   Section Heading Component
========================= */

.section-heading {
  position: relative;
  display: inline-block;
  margin: 0 auto 32px;

}

/* 背景英字 */
 .section-heading__bg {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 1.75rem + 4vw, 4.5rem);
  color: #E6D8C6;
  position: absolute;
  left: 0;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
} 

/* 客室紹介 */
.section-heading__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 1.75rem; /* デフォルト = 小画面 */
  color: #3A2E25;
  position: relative;
  /* top: -30px; */
  z-index: 2;
  top: -10px;
  left: -130px;
  position: relative;
  /* ▼ ここでmの右下へ調整 */
  margin-left: 180px;
  margin-top: 70px; 
}

@media (max-width: 768px) {
  .section-heading__title {
    font-size: 1.375rem; /* 大画面で22pxに固定 */
    top: -30px;
    left: -100px;
  }


.section-heading {
  margin: 0 auto 0;

}
}

/* =========================
   room-detail
========================= */
.room-container {
  max-width: 1056px;
  padding: 80px 0;
  margin: 0 auto;
  width: 100%;
}

/* PC：画像左、テキスト右 */
@media (min-width: 769px) {
  .room-detail__images {
    order: 1;
  }

  .room-detail__content {
    order: 2;
  }
}

@media (max-width: 1100px) {
  .container {
    padding: 0 24px;
    max-width: none;
  }

  .room-detail__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.room-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 590fr) minmax(0, 431fr);
  gap: 40px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.room-detail__grid > * {
  min-width: 0;
}

.room-detail__content {
    order: 1;
  }

  .room-detail__images {
    width: 100%;
  }

.room-detail {
  display: flex;
  justify-content: center;
}

/* メイン画像サイズ固定 */
.room-detail__main {
  width: 100%;
  aspect-ratio: 590 / 431;
  object-fit: cover;
  margin-bottom: 16px;
}

.room-detail__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}

.room-detail__thumbs img {
  width: 100%;
  aspect-ratio: 10 / 7;
  height: auto;
  object-fit: cover;
}

.room-detail__thumbs::-webkit-scrollbar {
  height: 8px;
}

.room-detail__thumbs::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 999px;
}

.room-detail__thumbs::-webkit-scrollbar-thumb {
  background: #DABA87;
  border-radius: 999px;
}

.room-detail__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #8B6B4F;
  margin-bottom: 24px;
}


.room-detail__content p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 00;
  font-size: 18px;
  line-height: 2;
  color: #27130A;
  /* margin-bottom: 18px; */
}

.thumb {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s;
}

.thumb.active {
  opacity: 1;
  border: 2px solid #3A2E25;
}



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



@media (max-width: 768px) {
  .room-detail__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .room-detail__content {
    order: 1;
  }

  .room-detail__images {
    order: 2;
  }

  .room-detail__images {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .room-detail__main {
    width: 100%;          /* ← 少し余白を持たせる */
    aspect-ratio: 4 / 3;
  }

  .room-detail__thumbs {
    width: 100%;
    overflow-x: auto;
  }

  .room-detail__thumbs img {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
  }

  .room-detail__title {
    font-size: 1.25rem; /* 20px相当 */
    margin-bottom: 8px;
  }

  .room-detail__content p {
    font-size: 1rem;
  }
    .room-container {
    padding: 0.75rem 1.5rem 2rem;
  }
}

@media (max-width: 577px) {
  .room-detail__thumbs {
    display: flex;
    gap: 10px;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: auto; /* Firefox */
  }

  .room-detail__thumbs img {
    flex: 0 0 auto;
    width: 80px;
    height: 60px;
    object-fit: cover;
  }

  .room-detail__thumbs::-webkit-scrollbar {
    height: 8px;
  }

  .room-detail__thumbs::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 999px;
  }

  .room-detail__thumbs::-webkit-scrollbar-thumb {
    background: #DABA87;
    border-radius: 999px;
  }
}


/* =========================
   
========================= */
.section {
  padding: 100px 0;
}

.section-title {
color: #8B6B4F;
font-family: "Zen Kaku Gothic New";
font-size: 24px;
font-style: normal;
font-weight: 700;
line-height: normal;
}

.center {
  text-align: center;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.room-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.small-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.spec-table {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  border-collapse: collapse;
}

.spec-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.amenity {
  border: 1px solid #aaa;
  padding: 30px;
  margin-top: 40px;
  text-align: center;
  background: #fff;
}

.cta {
  background: url('https://via.placeholder.com/1280x300?text=Reservation') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta a {
  background: #fff;
  color: #000;
  padding: 15px 30px;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
}

.sight-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: center;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media screen and (max-width:1024px) {
  .hero-inner {
    flex-direction: column;
  }

  .room-grid {
    grid-template-columns: 1fr;
  }

  .small-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sight-grid {
    grid-template-columns: 1fr;
  }

  .access-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width:480px) {
  .hero-text {
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .small-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   Room Cards (Flex)
========================= */

.room-cards {
  max-width: 1056px;     /* ← 幅統一 */
  margin: 80px 20px;   /* ← 中央配置 */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* ← 両端揃え */
  row-gap: 60px;         /* 縦方向の間隔 */
}

.room-card {
  width: 48%;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.room-card__title {
  color: #8B6B4F;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.room-card img {
  flex: 0 0 clamp(180px, 32vw, 240px);
  width: clamp(180px, 32vw, 240px);
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
}

.room-card__body {
  min-width: 0;
}

.room-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #3A2E25;
  margin-bottom: 12px;
  position: relative;
}

.room-card__body h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #3A2E25;
  margin-top: 6px;
}

.room-card__body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #27130A;
}

@media (max-width: 837px) {

  .room-cards {
    flex-direction: column;
    gap: 1.5rem;
    margin: 32px auto;
    max-width: 565px;
  }

  .room-card {
    width: 100%;            /* 2列→1列 */
    flex-direction: column-reverse; /* 横並び→縦並び */
    gap: 16px;
  }

  .room-card img {
    width: 100%;            /* 画像を画面幅に */
    height: auto;
  }

   .room-card__body  {
    width: 100%;
   }

  .room-card__body h3 {
    font-size: 1.125rem;    /* 18px */
  }
}

/* =========================
   Room Spec Table
========================= */

.room-spec {
  width: 580px;
  /* margin: 80px auto 0; */
  margin: 0 auto;
}

.room-spec__row {
  padding: 20px 0;
  border-bottom: 1px solid #D9CFC4;
  display: flex;
  align-items: center;
}

.room-spec__label {
  display: inline-block;
  margin-left: 32px;     /* ← ここで80px空ける */
  width: 120px;          /* ラベル幅固定 */
  font-size: 18px;
  font-weight: 500;
  color: #3A2E25;
}

.room-spec__value {
  display: inline-block;
  margin-left: 100px;     /* ← ここで80px空ける */
  font-size: 16px;
  font-weight: 500;
  color: #3A2E25;
  font-weight: 300;
  font-size: 16px;
}

@media (max-width: 768px) {

  .room-spec {
    width: 100%;
    margin: 20px auto 0;
    padding: 0 20px;
    max-width: 439px;
  }

  .room-spec__row {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 0;
  }

  .room-spec__label {
    margin-left: 0;
    width: auto;
    font-size: 0.9rem;
  }

  .room-spec__value {
    margin-left: 0;
    font-size: 1rem;
  }
}

/* =========================
   Amenity Box
========================= */

.amenity-box {
  max-width: 747px;          /* Figma値 */
  margin: 80px auto 0;
  padding: 32px;
  border: 1px solid #3A2E25;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.amenity-box__title {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #3A2E25;
  text-align: center;
}

.amenity-box__text {
    color: var(--font-color, #3A2E25);
    text-align: center;
    font-family: "Zen Kaku Gothic New";
    font-size: clamp(0.875rem, 1.5vw, 1rem);   
    font-style: normal;
    font-weight: 500;
    line-height: 32px; /* 200% */
}

@media (max-width: 768px) {
.amenity-box {
  padding: 16px;
  margin: 40px auto;

}
}

/* =========================
   Reservation CTA
========================= */

.reservation-cta {
  max-width: 747px;
  margin: 0px auto;
  
}

.reservation-container {
  background: #ffffff;
  padding: 80px 40px;      /* ← 上下余白 */
}

.reservation-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 127px;
  background-image: url("../img/cta-bg.png"); /* 背景画像 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

/* 暗めのオーバーレイ */
.reservation-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.10);
  transition: background 0.3s ease;  /* ← 追加 */
}

/* hover時 */
.reservation-cta__inner:hover::before {
  background: rgba(51, 51, 51, 0.55); /* ← 濃くする */
}


.reservation-cta__inner span {
  position: relative;
  z-index: 2;
  display: flex;
}

.reservation-cta__inner:hover .reservation-cta__arrow {
  transform: translateX(5px);
}

.reservation-cta__arrow {
font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {

.reservation-container {
  padding: 60px 20px;      /* ← 上下余白 */
}

.reservation-cta__inner {
  background-image: url("../img/cta-bg-sp.jpg"); /* 背景画像 */
}
}


@media (max-width: 420px) {
  .reservation-cta {
    max-width: 335px;
  }

  .reservation-cta__inner {

    font-size: 16px;
  }
}

/* =========================
   Sight
========================= */
.sight {
  padding: 80px 0;
  width: 100%;
  max-width: 1056px;
  margin: 0 auto;
}

.sight__container {
  padding: 0 60px;
}

.sight-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.sight-slider__viewport {
  overflow: hidden;
  padding-left: 0;
  padding-right: 120px; /* ← 右だけ見切れ */
}

.sight-slider__track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

.sight-card {
  flex: 0 0 100%; /* 中央カード幅 */
  display: flex;
  background: #fff;
}

.sight-card {
  transition: transform 0.4s ease;
}

.sight-card.active {
  transform: scale(1.05);
}

.sight-card img {
  width: 40%;
  height: 240px;
  object-fit: cover;
}

.sight-card__content {
  width: 60%;
  padding: 24px 40px;
}

.sight-card__content h3 {
  text-align: center;
  margin-bottom: 8px;

}

.sight-slider__nav {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.sight-slider__nav button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #6B4A2F;
  position: relative;
  cursor: pointer;
}

.prev::before,
.next::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sight-slider__nav {
  color: #000;
font-family: "Zen Kaku Gothic New";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 180%; /* 28.8px */
}

@media (max-width: 768px) {
  .sight-slider__viewport {
    padding-right: 0;
    overflow: hidden;
  }

  .sight-slider__track {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    width: max-content;
    min-width: max-content;
  }

  .sight-card {
    /* flex: 0 0 min(335px, calc(100vw - 40px));
    width: min(335px, calc(100vw - 40px)); */

    flex: 0 0 min(320px, calc(100vw - 40px));
    width: min(320px, calc(100vw - 40px));
    max-width: none;
    margin: 0;
    flex-direction: column;
  }

  .sight-card img {
    width: 100%;
    aspect-ratio: 335 / 220;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .sight-card__content {
    width: 100%;
    min-width: 0;
    /* padding: 24px 16px; */
    padding: 16px;
    text-align: center;
  }

  .sight-card.active {
    transform: none;
  }

  .sight {
  padding: 20px 0 60px 0;
}
  .sight__container {
    padding: 0 20px;
  }
}

@media (max-width: 540px) {
  .sight-slider__viewport {
    padding-right: 0; /* 見切れ解除 */
  }

    .sight-slider__track {
    gap: 24px;
    justify-content: center;   /* ← 中央寄せ */
  }
}

/* =========================
   access
========================= */

.access {
  padding: 40px 0;
  background: #fff;
}

.access__inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.access__content {
  width: 40%;
}

.access__postcode {
  margin-bottom: 8px;
  font-family: "Hiragino Mincho ProN";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  letter-spacing: 0.8px;
}

.access__text {
  font-size: clamp(1rem, 1rem + 0.5vw, 1.25rem);
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 120% */
  letter-spacing: 1px;
}

.access__map-link {
  color: #000;
  text-align: right;
  font-family: "Hiragino Mincho ProN";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  letter-spacing: 1.2px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  padding: 24px 0;
  text-align: justify;
}

.access__map-link a:hover {
  opacity: 0.5;
}

.access__info {
  margin-top: 24px;
}

.access__info p {
  margin-bottom: 8px;
  font-size: 18px;
}

.access__map {
  width: 45%;
}

.access__map img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {

.access {
  padding: 20px 0;
}

.access__inner {
  flex-direction: column;
  justify-content: center;
}

.access__content {
  width: 100%;
  text-align: center;
}

.access__map-link {
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
}

.access__map {
  width: 90%;
  margin: 24px auto;
}

.access__info {
  margin-top: 8px;
}

.access__map img {
  max-width: 400px;
  margin: 0 auto;
}
}

@media (max-width: 420px) {
.access__map img {
  width: 80%;
  max-width: 277px;
}
}

/* =========================
   footer
========================= */
.footer {
  background: #EDE6DE;
  padding: 40px 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
  color: var(--font-color, #2B2B2B);
    font-family: "Cormorant Garamond";
    font-size: clamp(1.5rem, 1.5rem + 2vw, 2.5rem);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer__nav {
  margin-top: 8px;
  display: flex;
  gap: 32px;
}

.footer__nav a {
  color: #8B6B4F;
  font-family: "Zen Kaku Gothic New";
  font-size: clamp(0.875rem, 0.875rem + 0.3vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer__middle {
  margin-top: 40px;
  font-size: 14px;
}

.footer__middle p {
color: var(--font-color, #2B2B2B);
font-family: "Zen Kaku Gothic New";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 0.8px;
}

.footer__map-link {
  display: inline-block;
  margin-top: 8px;
  text-decoration: underline;
  color: #3A2E25;
  color: var(--font-color, #2B2B2B);
text-align: right;
font-family: "Hiragino Mincho ProN";
font-size: 16px;
font-style: normal;
line-height: 24px; /* 150% */
letter-spacing: 0.8px;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}

.footer__map-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.4s ease;
}

.footer__map-link:hover::after {
  width: 100%;
}

.footer__line {
  margin: 40px 0;
  border: none;
  border-top: 2px solid #d9d9d9;
}

.footer__bottom {
color: var(--font-color, #2B2B2B);
text-align: right;
font-family: "Zen Kaku Gothic New";
font-size: clamp(0.75rem, 0.75rem + 0.2vw, 0.875rem);
font-style: normal;
font-weight: 400;
line-height: 180%; /* 25.2px */
}

@media (max-width: 768px) {
.footer__left {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__middle {
  margin-top: 24px;
}

.footer__line {
  margin: 20px 0;
}

.footer {
  padding: 40px 0;
}

.footer__nav {
  gap: 16px;
}
.footer__middle p {
  font-size: 14px;
}
}