:root {
  --mint: #a8dcd3;
  --mint-pale: #eff9f7;
  --blue: #34768c;
  --ink: #34302e;
  --cream: #fbf8f4;
  --white: #fff;
  --beige: #e9ddd0;
  --line: #9ecdc4;
  --serif: "Noto Serif JP", serif;
  --en: "Libre Baskerville", serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mint-pale);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.75;
}

body.is-fixed {
  overflow: hidden;
}

/* スクロール表示アニメーション */
.reveal-item {
  opacity: 0;
  transform: translateY(5.6rem);
  transition:
    opacity 1.4s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-item.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

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

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: 8.5rem 0;
}

.section--white {
  background: var(--cream);
}

.section-inner {
  width: min(calc(100% - 6rem), var(--container));
  margin-inline: auto;
}

.section-title {
  margin-bottom: 5rem;
  color: var(--blue);
  font-family: var(--en);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.section-title > span {
  display: block;
}

.section-title small {
  display: block;
  margin-top: 0.8rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.section-title--line {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.section-title--line::before,
.section-title--line::after {
  content: "";
  flex: 1;
  height: 3rem;
  background: url("./images/deco_h2.svg") center/contain no-repeat;
}

.section-title--line::after {
  transform: scaleX(-1);
}

.more-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(36rem, 100%);
  margin: 5rem 7rem 0 auto;
  padding: 1.6rem 4.5rem;
  border-radius: 1.4rem;
  background: var(--blue);
  color: #fff;
  font-size: 1.8rem;
}

.more-button:hover {
  filter: brightness(1.08);
}
/* fv */
/* =========================
  FV
========================= */

.fv {
  /* FV右写真で見せる位置：center center、35% centerなどに変更できます */
  --fv-image-position: left center;
  /* FV左画像の大きさと位置：幅、左右位置、上下位置をここで調整できます */
  --fv-left-image-width: 80%;
  --fv-left-image-max-width: 42rem;
  --fv-left-image-x: 50%;
  --fv-left-image-y: 50%;
  display: flex;
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* 左右共通 */
.fv__side {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
/* 左：ストライプ背景 */
.fv__side--left {
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0,
    #ffffff 22px,
    #a3d6cc5c 22px,
    #a3d6cc5c 44px
  );
}
.fv__image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: left;

  border-radius: 200px 0 0 0;
}
/* 右側 ストライプ*/
.fv__side--right {
  background: repeating-linear-gradient(
    90deg,
    #ffffff 0,
    #ffffff 22px,
    #a3d6cc5c 22px,
    #a3d6cc5c 44px
  );
}
/* 左右の境界をぼかす */
.fv__side--left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  width: 90px;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0)
  );
  filter: blur(16px);
  z-index: 20;
  pointer-events: none;
}

.fv__corner {
  position: absolute;
  width: 200px;
  z-index: 2;
  opacity: 0.8;
}

.fv__corner--lt {
  top: 24px;
  left: 24px;
}

.fv__corner--rt {
  top: 24px;
  right: 24px;
  transform: scaleX(-1);
}

.fv__corner--lb {
  bottom: 24px;
  left: 24px;
  transform: scaleY(-1);
}

.fv__corner--rb {
  bottom: 24px;
  right: 24px;
  transform: scale(-1, -1);
}

/* 下層ページトップ：タイトル背面の白いぼかし */
.pagetop-frame__content {
  isolation: isolate;
}

.pagetop-frame__content::before {
  content: "";
  position: absolute;
  inset: -4rem -7rem;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.86) 48%,
    rgba(255, 255, 255, 0.45) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  filter: blur(10px);
  pointer-events: none;
}

.pagetop-frame__content > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .pagetop-frame__content::before {
    inset: -3rem -4rem;
    filter: blur(8px);
  }
}

/* ロゴの周りをぼかして境界をなじませる */
.fv__logo-wrap {
  position: absolute;
  z-index: 3;
  width: var(--fv-left-image-width);
  max-width: var(--fv-left-image-max-width);
  left: var(--fv-left-image-x);
  top: var(--fv-left-image-y);
  transform: translate(-50%, -50%);
}
.fv__logo-wrap::before {
  content: "";
  position: absolute;
  /* ボカシの大きさ */
  inset: -50px;
  background: rgba(255, 255, 255, 0.6);
  /* ボカシの強さ */
  filter: blur(28px);
  border-radius: 50%;
  z-index: -1;
}

.fv__logo {
  width: 100%;
  display: block;
  opacity: 0.8;
}

.fv__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右写真を少し柔らかく */
.fv__side--right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  z-index: 1;
}

/* 右の装飾 */
.fv__deco--right {
  position: absolute;
  width: 58%;
  max-width: 420px;
  right: 6%;
  top: 40%;
  transform: translateY(-50%);
  opacity: 0.75;
  z-index: 2;
}

/* キャッチコピー */
.fv__catch {
  position: absolute;
  z-index: 3;
  right: 9%;
  top: 80%; /* ←位置 */
  transform: translateY(50%);
  padding: 10px 20px;
  text-align: right;

  /*  背景なしで.fv__catch::beforeでぼかす*/
  background: transparent;
  backdrop-filter: none;

  /* border-radius: 999px; */ /* 座布団の角 */
}

.fv__catch::before {
  content: "";
  position: absolute;
  inset: -5px -30px; /*上下5px広げる、左右30px広げる*/
  top: -4px; /*上を広げる */
  bottom: -4px; /*下を広げる */
  left: -18px; /*左を広げる */
  right: -18px; /*右を広げる */
  background: rgba(255, 255, 255, 0.805);
  filter: blur(12px);
  z-index: -1;
  border-radius: 999px;
}

.fv__catch p {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 3vw, 46px); /* ←キャッチ文字サイズ(スマホ,タブ,PC) */
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #3e362d;
  margin: 0;
}

/* =========FV animation ========*/
.fv__side--left,
.fv__side--right,
.fv__photo {
  opacity: 0;
  transform: translateY(40px);
  animation: fvFadeUp 3s ease forwards;
}

.fv__side--right .fv__photo {
  animation-delay: 0.5s;
}

.fv__logo-wrap {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 24px));
  /* 出現にかかる時間 */
  animation: fvLogoFadeUp 2.2s ease forwards;
  /* 出始め */
  animation-delay: 1.5s;
}

.fv__deco--right {
  opacity: 0;
  transform: translateY(calc(-50% + 24px));
  animation: fvRightDecoFadeUp 1.1s ease forwards;
  animation-delay: 1.8s;
}

.fv__catch {
  opacity: 0;
  transform: translateY(calc(-50% + 24px));
  animation: fvCatchFadeUp 1.1s ease forwards;
  animation-delay: 2s;
}

@keyframes fvFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fvLogoFadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px));
    filter: blur(12px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
    filter: blur(0);
  }
}

@keyframes fvRightDecoFadeUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 24px));
    filter: blur(10px);
  }

  to {
    opacity: 0.75;
    transform: translateY(-50%);
    filter: blur(0);
  }
}
@keyframes fvCatchFadeUp {
  from {
    opacity: 0;
    transform: translateY(calc(-50% + 24px));
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
    filter: blur(0);
  }
}

/* コンセプト */
.section-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 40rem;
  background: var(--cream);
}

.section-grid > img {
  width: calc(100% - 4rem);
  height: calc(100% - 4rem);
  margin: 2rem;
  object-fit: cover;
  border-radius: 5px;
}

.intro-copy {
  display: grid;
  place-items: center;
  padding: 6rem;
  font-size: 2.2rem;
  line-height: 1.75;
}
.concept-photo {
  object-fit: cover;
  width: 80%;
  height: auto;
}
/* menu */
.menu {
  position: relative;
}
.menu-frame {
  margin: 3rem;
  /* MENU下部装飾と詳細ボタンの間隔：上の装飾位置を変えず、ここで下だけ空けます */
  padding-bottom: 12rem;
}

.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  width: min(90rem, 86%);
  margin: auto;
}

.menu-stack {
  display: grid;
  gap: 2rem;
}

.menu-group h3 {
  padding: 1rem 2rem;
  border-radius: 1.6rem;
  background: var(--mint);
  color: var(--blue);
  font-weight: 400;
  text-align: center;
}

.menu-group dl {
  /* 料金一覧全体と見出しの間隔：上下の数値を小さくすると間隔が詰まります */
  padding: 1rem 2rem;
}

.menu-group dl div {
  display: grid;
  grid-template-columns: minmax(8rem, auto) 1fr auto;

  align-items: center;
  /* 各メニュー行の高さ：ここを小さくすると行間が詰まります */
  min-height: 3rem;
  /* メニュー名と金額の間ではなく、各行の下に引く線です */
  border-bottom: 1px solid #d8e8e5;
}

/* .menu-group dl div::before {
  content: "";
  grid-column: 2;
  border-top: 3px solid #d8e8e5;
} */

.menu-group dt {
  grid-column: 1;
}

.menu-group dd {
  grid-column: 3;
  text-align: right;
}

.menu-note {
  margin-top: 3rem;
  text-align: center;
  font-size: 1.2rem;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.example-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 5px;
}

.example-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 5px;
}

.example-image:hover img {
  transform: scale(1.08);
  border-radius: 5px;
}
/* .sample-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #d9d9d9;
  color: #777;
  font-family: var(--en);
  font-size: 2rem;
  letter-spacing: 0.12em;

} */

.deco-wide {
  width: min(90rem, 90%);
  margin: 0 auto;
}

.salon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
  align-items: center;
  width: min(90rem, 90%);
  margin: 5rem auto;
}
.salon-copy__lead {
  margin-bottom: 2.5rem;
}

.salon-copy__line {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 2rem;
}

/*
  CTA左側テキストの調整場所：
  各行の文字サイズは font-size、次の行との間隔は margin-bottom を変更します。
  例）.salon-copy__line--02 { font-size: 1.9rem; margin-bottom: 0.8rem; }
*/
.salon-copy__line--01,
.salon-copy__line--02,
.salon-copy__line--03 {
  font-size: 1.8rem;
  font-weight: 600;
}

.salon-copy p + p {
  margin-top: 2.5rem;
}

.salon-links {
  text-align: left;
}
.salon-links p {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}

.large-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: min(39rem, 100%);
  margin: 1.5rem auto;
  padding: 2rem;
  border-radius: 1.8rem;
}

.large-card img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: contain;
}

.large-card span {
  font-size: 2rem;
  line-height: 1.4;
}

.large-card small {
  display: block;
  font-size: 1.2rem;
}

.large-card--reserve {
  background: var(--mint);
  color: #fff;
}

.large-card--insta {
  border: 1px solid #806f63;
  background: #fff;
}

.large-card--insta span {
  font-size: 1.4rem;
}

.large-card--insta small {
  margin-top: 1rem;
}

.access-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 10rem;
  width: min(90rem, 85%);
  margin: auto;
}

.access-grid article {
  position: relative;
  padding-left: 7rem;
}

.access-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 4.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.access-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.access-grid h3 {
  margin-bottom: 3rem;
  font-size: 2rem;
  font-weight: 600;
}
.access-grid h4 {
  font-size: 1.8rem;
  font-weight: 500;
}

.camera-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25rem;
  grid-template-rows: auto auto auto;
  align-items: center;
  width: min(90rem, 90%);
  margin: 10rem auto 0;
  padding: 5rem;
  border: 1px solid #998c82;
  border-radius: 1rem;
  background: #dceeea;
}

.camera-card h3 {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 2rem;
  font-size: 3rem;
  color: var(--ink);
}
.camera-card p {
  color: var(--ink);
}

.camera-description {
  grid-column: 1;
  grid-row: 2;
  width: min(44rem, 100%);
  margin-bottom: 4rem;
}

.camera-card a {
  grid-column: 1;
  grid-row: 3;
  display: block;
  width: 48rem;
  max-width: 100%;
  min-width: 0;
  padding: 2rem 3rem;
  border: 1px solid #998c82;
  border-radius: 1.5rem;
  background: #fff;
  overflow-wrap: anywhere;
}

.camera-card a small {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
}

.camera-circle {
  grid-column: 2;
  grid-row: 1 / 4;
  display: grid;
  place-items: center;
  width: 20rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #d8d8d8;
  color: #747474;
  font-family: var(--en);
  letter-spacing: 0.08em;
}
.camera-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 60%;
  margin: 0 auto;
  border-radius: 0.8rem;
}
.honeypot {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.thanks {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 4rem;
  text-align: center;
}

.thanks > img {
  width: 16rem;
}

.thanks h1 {
  margin: 2rem 0;
  font-size: 2.6rem;
}

.thanks .more-button {
  margin: 4rem auto 0;
}
/* ＝＝＝＝＝スマホ ＝＝＝＝＝＝＝*/
@media (max-width: 767px) {
  .fv {
    flex-direction: column;
    height: auto;
  }

  .fv__side {
    width: 100%;
    min-height: 200px;
  }

  /* スマホのFVは、PCでの左側→右側の順に縦並び */
  .fv__side--right {
    order: 2;
    height: auto;
    min-height: 0;
    aspect-ratio: 1562 / 1007;
  }

  .fv__side--left {
    order: 1;
    /* 左側はロゴ画像（1024×1024）の比率に合わせて高さを決めます */
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 0.85;
  }

  /* 右写真も元画像の比率で決まった枠いっぱいに表示します */
  .fv__image {
    height: 100%;

    object-position: top left;
  }

  /* 上下の境界ぼかし */
  .fv__side--left::after {
    top: -40px;
    bottom: auto;
    right: 0;
    width: 80%;
    height: 90px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.75),
      rgba(255, 255, 255, 0)
    );
  }

  .fv__logo-wrap {
    width: var(--fv-left-image-width);
  }
  .fv__logo-wrap::before {
    inset: -30px;
    background: rgba(255, 255, 255, 0.85);
    filter: blur(35px);
    border-radius: 50%;
  }

  .fv__catch {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  .fv__corner {
    position: absolute;
    width: 100px;
    z-index: 2;
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section-inner {
    width: min(calc(100% - 3.2rem), var(--container));
  }

  .section-title {
    margin-bottom: 3.5rem;
    font-size: 2.6rem;
  }
  .section-title small {
    display: block;
    margin-top: 0.8rem;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
  }
  .section-title--line {
    gap: 1rem;
  }

  .section-title--line::before,
  .section-title--line::after {
    height: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .hero-brand {
    height: 35rem;
  }

  .hero h1 {
    width: 55%;
  }

  .hero-photo {
    height: 35rem;
  }

  .section-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  /* スマホのコンセプトは、PCでの右側テキスト→左側画像の順で縦並び */
  .concept-photo {
    order: 2;
  }

  .intro-copy {
    order: 1;
  }

  .section-grid > img {
    height: 28rem;
  }

  .intro-copy {
    padding: 5rem 2.5rem;
    font-size: 1.8rem;
  }

  .ornamental-frame::before,
  .ornamental-frame::after {
    width: 9rem;
    height: 12rem;
  }

  .menu-columns {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
  }

  .menu-frame {
    /* スマホ用：MENU下部装飾と詳細ボタンの間隔 */
    padding-bottom: 8rem;
  }

  .menu-group dl {
    padding-inline: 0.5rem;
  }

  .menu-group dl div {
    grid-template-columns: auto 1fr auto;
  }

  .more-button {
    margin: 4rem auto 0;
    padding: 1.4rem 2.5rem;
    font-size: 1.5rem;
    width: 30rem;
  }

  .example-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .sample-image {
    font-size: 1.5rem;
  }

  .salon-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
    margin-block: 2rem;
  }

  .salon-copy {
    font-size: 1.3rem;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    width: 100%;
  }

  .access-grid article {
    padding-left: 5rem;
  }

  .access-icon {
    width: 3rem;
  }

  .access-icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }

  .access-grid h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
  }
  .access-grid h4 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
  }

  .camera-card {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    width: 100%;
    max-width: 90%;
    gap: 2rem;
    margin-top: 6rem;
    padding: 3rem 2rem;
    overflow: hidden;
  }

  .camera-card h3 {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .camera-description {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    margin-bottom: 0;
  }

  .camera-card a {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 100%;
    padding: 1.5rem;
    overflow-wrap: anywhere;
  }

  .camera-circle {
    grid-column: 1;
    grid-row: 4;
    display: grid;
    justify-self: center;
    width: min(20rem, 70vw);
  }

  .thanks h1 {
    font-size: 2rem;
  }
}

/* Requested visual and interaction updates */
.sample-visual {
  display: grid;
  place-items: center;
  background: #d9d9d9;
  color: #747474;
  font-family: var(--en);
  font-size: 2rem;
  letter-spacing: 0.08em;
}

/* サンプル枠の中身を画像に置き換えた時も、元の枠サイズのまま収める */
.sample-fill {
  display: block;
  width: 80%;
  height: 20rem;
  max-width: none;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto;
  border-radius: 0.8rem;
}

.camera-circle,
.menu-sample,
.example-sample,
.guide-sample,
.reserve-hero__image {
  overflow: hidden;
}

/* 下層ページ共通：ご予約・お問い合わせ */
.common-contact {
  padding: 1rem 2rem 3rem;
}

.common-contact__inner {
  width: min(110rem, 100%);
  margin: 0 auto;
  padding: 2.5rem 2rem;
  border: 1px solid #add8d1;
  border-radius: 1rem;
  text-align: left;
}

.common-contact__heading-row {
  display: grid;
  grid-template-columns: minmax(4rem, 1fr) auto minmax(4rem, 1fr);
  gap: 1.5rem;
  align-items: center;
  width: min(58rem, 100%);

  margin-top: 1rem;
}

.common-contact__heading-row > img {
  width: 100%;
  height: 3rem;
  object-fit: contain;
}

.common-contact__heading-row h2 {
  color: #4f9c92;
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.common-contact__heading-row small {
  display: block;
  font-family: var(--jp);
  font-size: 1.4rem;
  color: var(--ink);
}
.common-contact__links small {
  display: block;
  font-family: var(--jp);
  font-size: 1.4rem;
}

.common-contact__inner > p {
  margin: 2rem 0 2rem;
  font-size: 1.4rem;
}

.common-contact__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
}

.common-contact__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-width: 0;
  padding: 1.5rem;
  border: 1px solid #c9a98e;
  border-radius: 0.8rem;
  transition: 0.25s;
}

.common-contact__links a:hover {
  border-color: #dceeea;
  background: #dceeea;
  color: var(--ink);
}

.common-contact__links .common-contact__reserve {
  border-color: #72bcae;
  background: #72bcae;
  color: #fff;
}

.common-contact__links img,
.common-contact__links svg {
  flex: 0 0 auto;
  width: 3.8rem;
  height: 3.8rem;
  object-fit: contain;
}

@media (max-width: 767px) {
  .common-contact {
    padding-inline: 1.5rem;
  }

  .common-contact__inner {
    padding: 2.5rem 1.6rem;
  }

  .common-contact__heading-row {
    grid-template-columns: minmax(2.5rem, 1fr) auto minmax(2.5rem, 1fr);
    gap: 0.8rem;
  }

  .common-contact__heading-row h2 {
    font-size: 2.1rem;
  }

  .common-contact__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.concept-photo {
  width: 100%;
  height: 100%;
}

.more-button,
.large-card,
.reserve-button,
.icon-link {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.more-button:hover,
.large-card:hover,
.reserve-button:hover,
.icon-link:hover {
  background: #dceeea;
  color: var(--ink);
  border-color: #dceeea;
  filter: none;
}

@media (max-width: 767px) {
  .concept-photo {
    height: 28rem;
    margin: 0 auto;
  }
  .sample-fill {
    display: block;
    width: 80%;
    height: 26rem;
    max-width: none;
    object-fit: cover;
    object-position: center 6%;
    margin: 0 auto;
    border-radius: 0.8rem;
  }
}
.common-contact__heading-row h2 {
  color: #4f9c92;
  font-family: var(--en);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.common-contact__heading-row small {
  display: block;
  font-family: var(--jp);
  font-size: 1.4rem;
  color: var(--ink);
}
.common-contact__links small {
  display: block;
  font-family: var(--jp);
  font-size: 1.4rem;
}

.common-contact__inner > p {
  margin: 2rem 0 2rem;
  text-align: left;
}
