@charset "UTF-8";

:root {
  --font-color: #252525;
  --main-color: #252525;
  --accent-color: #C89F2D;
  --dark-color: #03334A;
  --bg-color: #FFFFFF;
  --sub-bg-color: #EFECEC;
  --footer-bg-color: #252525;
  --border-color: #C6C6C6;
  --gray-text: #757575;
  --light-gray: #CDCDCD;
  --map-text-color: #757575;
}

:root {
  --main-font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --mincho-font: "Shippori Mincho", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  --en-font: "Roboto", "Helvetica Neue", Arial, sans-serif;
  --crimson-font: "Crimson Text", "Georgia", "Times New Roman", serif;
}

/**
 * 変数定義
 */
/**
 * コンテナ幅のmixin
 */
/**
 * セクション見出し（[アイコン] EN  /  JP）共通スタイル用
 */
:root {
  --container-padding-x: 1.5rem;
  --container-max-width: 75rem;
  --header-height: 6rem;
  --leading-trim: calc((1em - 1lh) / 2);
}

@media (max-width: 767px) {
  :root {
    --header-height: 4rem;
  }
}

:target {
  scroll-margin-top: var(--header-height);
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (min-width: 375px) and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1440px) {
  html {
    font-size: 1.1111111111vw;
  }
}

@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: var(--main-font);
  font-size: 1rem;
  font-weight: 400;
  width: 100%;
  line-height: 1.8;
  color: var(--font-color);
  margin: 0;
  overflow-x: clip;
  background: var(--bg-color);
  padding-bottom: 0;
}

@media (max-width: 767px) {
  body {
    font-size: max(10px, 0.875rem);
    line-height: 1.7;
    padding-bottom: 5.75rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: inherit;
  margin: 0;
  font-weight: inherit;
}

p {
  margin: 0;
}

figure {
  margin: 0;
}

iframe,
video,
img,
svg {
  height: auto;
  max-width: 100%;
}

img {
  width: 100%;
}

b,
strong {
  font-weight: bold;
}

iframe,
img {
  vertical-align: bottom;
}

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

dd {
  margin: 0;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

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

fieldset {
  padding: 0;
  border: none;
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  height: var(--header-height);
  background: var(--bg-color);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 3.5rem;
}

@media (max-width: 767px) {
  .l-header__inner {
    padding-inline: 1rem;
  }
}

.l-header__logo {
  display: block;
  width: 13.1875rem;
  flex-shrink: 0;
  margin-left: 0.59375rem;
}

@media (max-width: 767px) {
  .l-header__logo {
    width: 9.375rem;
  }
}

.l-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.l-header__nav-item a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: max(10px, 0.875rem);
  line-height: 1.4;
  color: var(--main-color);
  transition: opacity 0.3s ease, color 0.3s ease;
}

.l-header__nav-item a:hover {
  opacity: 0.7;
  color: var(--accent-color);
}

.l-header__nav-divider {
  width: 1px;
  height: 3rem;
  background: var(--light-gray);
}

.l-header__cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.l-header__cta-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  transition: opacity 0.3s ease;
}

.l-header__cta-item a:hover {
  opacity: 0.7;
}

.l-header__cta-item a:hover .l-header__cta-sub,
.l-header__cta-item a:hover .l-header__cta-main {
  color: var(--accent-color);
}

.l-header__cta-item a .l-header__cta-sub {
  font-family: var(--en-font);
  font-weight: 400;
  font-size: max(10px, 0.75rem);
  color: var(--main-color);
  transition: color 0.3s ease;
}

.l-header__cta-item a .l-header__cta-main {
  margin-top: 0.25rem;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: max(10px, 0.9375rem);
  color: var(--main-color);
  transition: color 0.3s ease;
}

.l-header__menu-btn {
  display: none;
  position: relative;
  z-index: 110;
}

@media (max-width: 767px) {
  .l-header__menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    width: 2.5rem;
    height: 2.5rem;
    cursor: pointer;
    padding: 0;
  }

  .l-header__menu-btn span {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background: var(--main-color);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }
}

.l-header__menu-btn.is-open span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.l-header__menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__menu-btn.is-open span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}

.l-footer {
  background: var(--footer-bg-color);
  color: #fff;
  padding: 6.5rem 7.5rem 5rem;
}

@media (max-width: 999px) {
  .l-footer {
    padding: 5rem 2.5rem 4rem;
  }
}

@media (max-width: 767px) {
  .l-footer {
    padding: 4rem 1.5rem 2.5rem;
  }
}

.l-footer__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

@media (max-width: 767px) {
  .l-footer__inner {
    gap: 3.5rem;
  }
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
}

@media (max-width: 767px) {
  .l-footer__main {
    gap: 3rem;
  }
}

.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.l-footer__company-name {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 2.875rem);
  line-height: 1.4;
  color: #fff;
}

@media (max-width: 999px) {
  .l-footer__company-name {
    font-size: max(10px, 2.25rem);
  }
}

@media (max-width: 767px) {
  .l-footer__company-name {
    font-size: max(10px, 1.5rem);
    line-height: 1.5;
  }
}

.l-footer__address {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
}

@media (max-width: 767px) {
  .l-footer__address {
    font-size: max(10px, 0.875rem);
  }
}

.l-footer__tel {
  font-family: var(--crimson-font);
  font-weight: 400;
  font-size: max(10px, 1.25rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}

@media (max-width: 767px) {
  .l-footer__tel {
    font-size: max(10px, 1rem);
  }
}

.l-footer__hours {
  padding-left: 1.5rem;
  border-left: 1px solid #FDFDFD;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 767px) {
  .l-footer__hours {
    padding-left: 1rem;
  }
}

.l-footer__hours-title {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
}

@media (max-width: 767px) {
  .l-footer__hours-title {
    font-size: max(10px, 1rem);
  }
}

.l-footer__hours-text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
}

@media (max-width: 767px) {
  .l-footer__hours-text {
    font-size: max(10px, 0.8125rem);
  }
}

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

@media (max-width: 999px) {
  .l-footer__cta {
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .l-footer__cta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.l-footer__cta-item {
  display: block;
  width: 100%;
  aspect-ratio: 378/156;
  border-radius: 0.375rem;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.l-footer__cta-item:hover {
  opacity: 0.88;
  transform: translateY(-0.125rem);
}

.l-footer__cta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.l-footer__copyright {
  font-family: var(--en-font);
  font-weight: 600;
  font-size: max(10px, 0.875rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--gray-text);
  margin: 0;
}

@media (max-width: 767px) {
  .l-footer__copyright {
    font-size: max(10px, 0.75rem);
    text-align: center;
  }
}

.l-main {
  display: block;
  width: 100%;
}

/* =====================================================
   .l-section
   Figma 724-489 の各セクション padding に合わせて
   モディファイアを用意する。
   - デフォルト: 144 / 120 / 144 / 120（REASON, SHOPなど）
   - --narrow: 上0 / 下120（NEWS）
   - --compact: 上下120（CONTACT NAV）
   - --bare: 上下0（GALLERY等、内側でgap制御）
   - --full: 左右0（マーキー等）
   ===================================================== */
.l-section {
  position: relative;
  padding-block: 9.375rem 9rem;
  padding-inline: 7.5rem;
  overflow: clip;
}

@media (max-width: 999px) {
  .l-section {
    padding-block: 6rem;
    padding-inline: 2.5rem;
  }
}

@media (max-width: 767px) {
  .l-section {
    padding-block: 4.5rem;
    padding-inline: 1.5rem;
  }
}

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

.l-section--narrow {
  padding-top: 0;
  padding-bottom: 7.5rem;
}

@media (max-width: 999px) {
  .l-section--narrow {
    padding-top: 0;
    padding-bottom: 5rem;
  }
}

@media (max-width: 767px) {
  .l-section--narrow {
    padding-top: 0;
    padding-bottom: 3.5rem;
  }
}

.l-section--compact {
  padding-block: 7.5rem;
}

@media (max-width: 999px) {
  .l-section--compact {
    padding-block: 5rem;
  }
}

@media (max-width: 767px) {
  .l-section--compact {
    padding-block: 3.5rem;
  }
}

.l-section--bare {
  padding-block: 0;
}

@media (max-width: 999px) {
  .l-section--bare {
    padding-block: 0;
  }
}

@media (max-width: 767px) {
  .l-section--bare {
    padding-block: 0;
  }
}

.l-section--full {
  padding-inline: 0;
}

.l-section__inner {
  margin-inline: auto;
  width: 100%;
  max-width: 75rem;
}

.l-sp-menu {
  display: none;
}

@media (max-width: 767px) {
  .l-sp-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 105;
    width: 100%;
    height: 100dvh;
    background: var(--bg-color);
    padding: calc(var(--header-height) + 1.5rem) 1.75rem 2.5rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .l-sp-menu.is-open {
    transform: translateY(0);
  }
}

.l-sp-menu__nav {
  display: flex;
  flex-direction: column;
}

.l-sp-menu__list {
  display: flex;
  flex-direction: column;
}

.l-sp-menu__item {
  border-bottom: 1px solid var(--border-color);
}

.l-sp-menu__item a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 0.25rem;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: max(10px, 0.9375rem);
  color: var(--main-color);
}

.l-sp-menu__item a::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1.5px solid var(--accent-color);
  border-right: 1.5px solid var(--accent-color);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 0.25rem;
}

.l-sp-menu__cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.l-sp-menu__cta-item a {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background: var(--accent-color);
  color: var(--bg-color);
  text-align: center;
}

.l-sp-menu__cta-item .l-sp-menu__cta-sub {
  font-family: var(--en-font);
  font-size: max(10px, 0.6875rem);
  letter-spacing: 0.08em;
}

.l-sp-menu__cta-item .l-sp-menu__cta-main {
  font-family: var(--mincho-font);
  font-size: max(10px, 0.9375rem);
  font-weight: 500;
}

.l-sp-menu-overlay {
  display: none !important;
}

.l-sp-fixed-shop {
  display: none;
}

@media (max-width: 767px) {
  .l-sp-fixed-shop {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.75rem 0.75rem max(0.75rem, env(safe-area-inset-bottom));
    background: var(--bg-color);
    box-shadow: 0 -0.25rem 1.5rem rgba(0, 0, 0, 0.08);
  }

  .l-sp-fixed-shop__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    min-height: 3.5rem;
    padding: 0.625rem 0.875rem;
    border-radius: 0.25rem;
    background: #B88F24;
    color: var(--bg-color);
    text-align: left;
  }

  .l-sp-fixed-shop__label {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    font-family: var(--main-font);
    font-weight: 700;
    font-size: max(10px, 0.75rem);
    line-height: 1.32;
    letter-spacing: 0.02em;
    text-align: left;
  }

  .l-sp-fixed-shop__icon {
    display: block;
    flex-shrink: 0;
    order: -1;
    width: 1.75rem;
    height: 1.75rem;
  }

  .l-sp-fixed-shop__icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 15rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: max(10px, 1rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-button:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
  .c-button {
    font-size: max(10px, 0.875rem);
    min-width: 12.5rem;
    padding: 0.875rem 1.5rem;
  }
}

.c-button--primary {
  background: var(--accent-color);
  color: var(--bg-color);
}

.c-button--text {
  background: none;
  min-width: 0;
  padding: 0;
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-button--text:hover {
  opacity: 0.7;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 767px) {
  .c-section-title {
    gap: 1.25rem;
  }
}

.c-section-title__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--en-font);
  font-weight: 600;
  font-size: max(10px, 1.125rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--dark-color);
}

@media (max-width: 767px) {
  .c-section-title__label {
    font-size: max(10px, 0.875rem);
  }
}

.c-section-title__label::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 0.75rem;
  background: var(--dark-color);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  margin-right: 0.2rem;
}

.c-section-title__heading {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 2.875rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--main-color);
}

@media (min-width: 768px) {
  .c-section-title__heading--sm {
    font-size: max(10px, 2.5rem);
  }
}

@media (max-width: 999px) {
  .c-section-title__heading {
    font-size: max(10px, 2.25rem);
  }
}

@media (max-width: 767px) {
  .c-section-title__heading {
    font-size: max(10px, 1.625rem);
  }
}

.c-news-list {
  display: flex;
  flex-direction: column;
}

.c-news-list__item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.c-news-list__item:first-child {
  border-top: 1px solid var(--border-color);
}

@media (max-width: 767px) {
  .c-news-list__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem 0.5rem;
  }
}

.c-news-list__meta {
  flex-shrink: 0;
  display: flex;
  gap: 1rem;
}

@media (max-width: 767px) {
  .c-news-list__meta {
    width: auto;
  }
}

.c-news-list__date {
  font-family: var(--en-font);
  font-weight: 400;
  font-size: max(10px, 0.9375rem);
  color: var(--main-color);
  letter-spacing: 0.04em;
}

.c-news-list__title {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .c-news-list__title {
    font-size: max(10px, 0.875rem);
    line-height: 1.7;
  }
}

.c-news-list__title:hover {
  color: var(--accent-color);
}

.c-news-list__more {
  margin-top: 1.5rem;
  text-align: right;
}

@media (max-width: 767px) {
  .c-news-list__more {
    text-align: center;
  }
}

/* =====================================================
   選ばれる理由カード（Figma 724-530 準拠）
   画像 576×356 (left) + テキスト (right) の固定レイアウト
   - 番号: Crimson Text Regular 28px / letterSpacing 8%
   - タイトル: Shippori Mincho 30px / lineHeight 140%
   - 本文: Noto Sans JP 16px / lineHeight 180%
   ===================================================== */
.c-reason-card {
  display: grid;
  grid-template-columns: 36rem 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

@media (max-width: 999px) {
  .c-reason-card {
    grid-template-columns: 27.5rem 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .c-reason-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.c-reason-card__img {
  width: 100%;
  height: 22.25rem;
  background: var(--bg-color);
  border-radius: 0.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 999px) {
  .c-reason-card__img {
    height: 17.5rem;
  }
}

@media (max-width: 767px) {
  .c-reason-card__img {
    height: auto;
    aspect-ratio: 16/10;
  }
}

.c-reason-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-reason-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

@media (max-width: 767px) {
  .c-reason-card__body {
    gap: 0.75rem;
  }
}

.c-reason-card__num {
  font-family: var(--crimson-font);
  font-weight: 400;
  font-size: max(10px, 1.75rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--dark-color);
  padding-left: 0.25rem;
  margin: 0;
}

@media (max-width: 767px) {
  .c-reason-card__num {
    font-size: max(10px, 1.375rem);
  }
}

.c-reason-card__title {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.875rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--main-color);
  margin: 0;
}

@media (max-width: 767px) {
  .c-reason-card__title {
    font-size: max(10px, 1.25rem);
  }
}

.c-reason-card__text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
  margin: 0;
}

@media (max-width: 767px) {
  .c-reason-card__text {
    font-size: max(10px, 0.875rem);
  }
}

/* =====================================================
   オンラインショップ CTAブロック
   行レイアウト：左テキスト+右バナー、gap 64px center
   ===================================================== */
.c-shop-cta {
  display: grid;
  grid-template-columns: 1fr 36rem;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 999px) {
  .c-shop-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .c-shop-cta {
    display: flex;
    flex-direction: column-reverse;
    gap: 1.25rem;
  }


}

.c-shop-cta__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-shop-cta__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-shop-cta__heading-icon {
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 767px) {
  .c-shop-cta__heading-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.c-shop-cta__heading-icon--jp {
  background-image: url(../images/icon-shop-jp.svg);
}

.c-shop-cta__heading-icon--global {
  background-image: url(../images/icon-shop-global.svg);
}

.c-shop-cta__heading-title {
  font-weight: 600;
  line-height: 1.8;
  color: var(--main-color);
  margin: 0;
}

.c-shop-cta__heading-title--jp {
  font-family: var(--main-font);
  font-size: max(10px, 1.375rem);
}

@media (max-width: 767px) {
  .c-shop-cta__heading-title--jp {
    font-size: max(10px, 1.125rem);
  }
}

.c-shop-cta__heading-title--global {
  font-family: var(--en-font);
  font-size: max(10px, 1.375rem);
  line-height: 1;
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  .c-shop-cta__heading-title--global {
    font-size: max(10px, 1.125rem);
  }
}

.c-shop-cta__text {
  font-family: var(--main-font);
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .c-shop-cta__text {
    font-size: max(10px, 0.875rem);
  }
}

.c-shop-cta__text--en {
  font-family: var(--en-font);
  font-size: max(10px, 0.9375rem);
  line-height: 1.6;
  letter-spacing: 0.12em;
}

@media (max-width: 767px) {
  .c-shop-cta__text--en {
    font-size: max(10px, 0.8125rem);
  }
}

.c-shop-cta__more {
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .c-shop-cta__more {
    display: flex;
    justify-content: center;
  }
}

.c-shop-cta__banner {
  display: block;
  width: 100%;
  aspect-ratio: 576/332;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f2f0e7;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.c-shop-cta__banner:hover {
  opacity: 0.92;
  transform: translateY(-0.125rem);
}

.c-shop-cta__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   店舗情報テーブル
   Figma: bg rgba(242,240,231,0.6) / padding 40px / 行下border 1px #757575
   ===================================================== */
.c-info-table {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: url(../images/info-card-bg.webp) no-repeat center center/cover;
  border-radius: 0.25rem;
  padding: 2.5rem;
}

@media (max-width: 767px) {
  .c-info-table {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.c-info-table__row {
  display: flex;
  gap: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #757575;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .c-info-table__row {
    gap: 0.5rem;
    padding-bottom: 1rem;
    display: grid;
  }
}

.c-info-table__label {
  flex-shrink: 0;
  width: 5.5rem;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .c-info-table__label {
    width: 4.5rem;
    font-size: max(10px, 0.8125rem);
  }
}

.c-info-table__value {
  flex: 1;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
  min-width: 0;
}

@media (max-width: 767px) {
  .c-info-table__value {
    font-size: max(10px, 0.875rem);
  }
}

.c-info-table__value p+p {
  margin-top: 0.25rem;
}

.c-info-table__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.c-info-table__contact-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .c-info-table__contact-row {
    gap: 0.125rem;
  }
}

.c-info-table__contact-label {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1;
  color: var(--main-color);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .c-info-table__contact-label {
    font-size: max(10px, 0.8125rem);
  }
}

.c-info-table__contact-number {
  font-family: var(--main-font);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--main-color);
}

.c-info-table__contact-number--tel {
  font-weight: 700;
  font-size: max(10px, 2rem);
}

@media (max-width: 767px) {
  .c-info-table__contact-number--tel {
    font-size: max(10px, 1.375rem);
  }
}

.c-info-table__contact-number--tel a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  .c-info-table__contact-number--tel a {
    pointer-events: none;
    cursor: text;
  }
}

.c-info-table__contact-number--fax {
  font-weight: 400;
  font-size: max(10px, 1.5rem);
}

@media (max-width: 767px) {
  .c-info-table__contact-number--fax {
    font-size: max(10px, 1.125rem);
  }
}

.c-nav-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
}

.p-top-nav__list>li:first-child .c-nav-card {

  border-top: 1px solid var(--border-color);

}

@media (max-width: 767px) {
  .c-nav-card {
    padding: 1.5rem 0.5rem;
    gap: 1rem;
  }
}

.c-nav-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 767px) {
  .c-nav-card__body {
    gap: 0.5rem;
  }
}

.c-nav-card__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-nav-card__en {
  font-family: var(--en-font);
  font-weight: 600;
  font-size: max(10px, 0.875rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--dark-color);
}

@media (max-width: 767px) {
  .c-nav-card__en {
    font-size: max(10px, 0.6875rem);
  }
}

.c-nav-card__title {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.625rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--main-color);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .c-nav-card:hover .c-nav-card__title {
    color: var(--accent-color);
  }
}

@media (max-width: 767px) {
  .c-nav-card__title {
    font-size: max(10px, 1.125rem);
  }
}

.c-nav-card__desc {
  font-family: var(--main-font);
  font-size: max(10px, 0.875rem);
  line-height: 1.8;
  color: var(--main-color);
  transition: color 0.3s ease;
}

@media (max-width: 767px) {
  .c-nav-card__desc {
    font-size: max(10px, 0.8125rem);
  }
}

@media (hover: hover) {
  .c-nav-card:hover .c-nav-card__desc {
    color: var(--accent-color);
  }
}

.c-nav-card__arrow {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
  font-size: 1.125rem;
  transition: background 0.3s ease, color 0.3s ease;
}

@media (max-width: 767px) {
  .c-nav-card__arrow {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.c-nav-card:hover .c-nav-card__arrow {
  background: var(--main-color);
  color: var(--bg-color);
}

/* =====================================================
   FV（ファーストビュー）
   Figma 739-1556 準拠：背景画像 + 縦書きテキスト3本
   ===================================================== */
.p-top-fv {
  position: relative;
  width: 100%;
  height: 36.125rem;
  overflow: hidden;
}

@media (max-width: 999px) {
  .p-top-fv {
    height: 32.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-fv {
    height: 26.25rem;
  }
}

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

.p-top-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .p-top-fv__bg img {
    object-position: 23% center;
  }
}

.p-top-fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(91deg, rgba(7, 7, 7, 0) 0%, rgb(46, 46, 29) 100%);
}

.p-top-fv__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.p-top-fv__vertical {
  position: absolute;
  top: 5.9375rem;
  right: 18.5rem;
  display: flex;
  justify-content: space-between;
  gap: 3.75rem;
  font-size: max(10px, 2.25rem);
  font-weight: 500;
}

@media (max-width: 999px) {
  .p-top-fv__vertical {
    right: 10rem;
  }
}

@media (max-width: 767px) {
  .p-top-fv__vertical {
    top: 3rem;
    right: 1.5rem;
    width: auto;
    gap: 3rem;
  }
}

.p-top-fv__vertical-group {
  display: flex;
  gap: 0.9375rem;
}

@media (max-width: 767px) {
  .p-top-fv__vertical-group {
    gap: 1rem;
  }
}

.p-top-fv__vertical-line {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 2.25rem);
  line-height: 1.3;
  letter-spacing: 0.32em;
  color: var(--bg-color);
  margin: 0;
  font-feature-settings: "vert";
  white-space: nowrap;
}

@media (max-width: 999px) {
  .p-top-fv__vertical-line {
    font-size: max(10px, 1.75rem);
  }
}

@media (max-width: 767px) {
  .p-top-fv__vertical-line {
    font-size: max(10px, 1.375rem);
  }
}

.p-top-fv__vertical-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, -0.875rem, 0);
  animation: fv-char-fadein 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--char-delay, 0s);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .p-top-fv__vertical-char {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@keyframes fv-char-fadein {
  0% {
    opacity: 0;
    transform: translate3d(0, -0.875rem, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* =====================================================
   FV直下：アサヒ弓具 ブランド紹介セクション
   ===================================================== */
.p-top-intro {
  position: relative;
  padding: 12.5rem 7.5rem 9.75rem;
  background: var(--bg-color);
}

@media (max-width: 999px) {
  .p-top-intro {
    padding: 7.5rem 2.5rem 6rem;
  }
}

@media (max-width: 767px) {
  .p-top-intro {
    padding: 4rem 1.5rem 4.5rem;
  }
}

.p-top-intro__inner {
  position: relative;
  margin-inline: auto;
  max-width: 75rem;
}

.p-top-intro__lang {
  position: absolute;
  top: -3.375rem;
  right: 0;
  display: flex;
  gap: 1rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .p-top-intro__lang {
    position: static;
    top: auto;
    right: auto;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
  }
}

.p-top-intro__lang-tab {
  padding-bottom: 0.4375rem;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--en-font);
  font-weight: 500;
  font-size: max(10px, 0.875rem);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--gray-text);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.p-top-intro__lang-tab:hover {
  color: var(--main-color);
}

.p-top-intro__lang-tab.is-active {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

.p-top-intro__content {
  display: grid;
  grid-template-columns: minmax(0, 27.5rem) minmax(0, 1fr);
  gap: 3.75rem;
  align-items: start;
}

@media (max-width: 999px) {
  .p-top-intro__content {
    grid-template-columns: minmax(0, 21.25rem) minmax(0, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .p-top-intro__content {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.p-top-intro__heading-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  min-width: 0;
}

@media (max-width: 767px) {
  .p-top-intro__heading-block {
    gap: 1rem;
  }
}

.p-top-intro__lead {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 2.875rem);
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--main-color);
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 999px) {
  .p-top-intro__lead {
    font-size: max(10px, 2.25rem);
    line-height: 1.7;
  }
}

@media (max-width: 767px) {
  .p-top-intro__lead {
    font-size: max(10px, 1.625rem);
    line-height: 1.7;
  }
}

.p-top-intro__brand {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.625rem);
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--main-color);
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .p-top-intro__brand {
    font-size: max(10px, 1.25rem);
    line-height: 1.6;
  }
}

.p-top-intro__body {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1rem);
  line-height: 2.4;
  letter-spacing: 0.04em;
  color: var(--main-color);
  /* white-space: pre-line; */
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.p-top-intro__body p {

  margin: 0;

}

.p-top-intro__body p+p {

  margin-top: 2em;

}

@media (max-width: 767px) {
  .p-top-intro__body {
    font-size: max(10px, 0.875rem);
    line-height: 2.1;
  }
}

.p-top-intro__panels {
  display: grid;
  grid-template-columns: 1fr;
}

.p-top-intro__panel {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.45s;
  pointer-events: none;
}

.p-top-intro__panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, visibility 0s linear 0s;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .p-top-intro__panel {
    transition: none;
    transform: none;
  }
}

/* =====================================================
   NEWS セクション内のレイアウト
   Figma: row layout, gap 80px（左カラム見出し / 右カラムリスト）
   ===================================================== */
.p-top-news {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4.5rem;
}

@media (max-width: 999px) {
  .p-top-news {
    grid-template-columns: 13.75rem 1fr;
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .p-top-news {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* =====================================================
   選ばれる理由セクション全体（Figma 724-530 準拠）
   - 見出しブロックとカードコンテナのgap: 56px
   - カード間のgap: 48px
   - カードコンテナとメンテナンスカードのgap: 80px
   ===================================================== */
.p-top-reason {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

@media (max-width: 767px) {
  .p-top-reason {
    gap: 2.5rem;
  }
}

.p-top-reason__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-top-reason__container {
    gap: 3rem;
  }
}

.p-top-reason__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (max-width: 767px) {
  .p-top-reason__list {
    gap: 2.5rem;
  }
}

/* =====================================================
   メンテナンス・修理カード（Figma 724-564 準拠）
   - 白カード / max-width 1200px / padding 40px 56px
   - column align-center gap 16px
   - タイトル: Shippori Mincho 30px / lineHeight 140%
   - 本文: Noto Sans JP 16px / lineHeight 180% / center
   ===================================================== */
.p-top-maintenance {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding: 2.5rem 3.5rem;
  background: var(--bg-color);
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.p-top-maintenance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 3rem;
  aspect-ratio: 1/1;
  background: url(../images/maintenance-decor.svg) no-repeat center center/contain;
}

@media (max-width: 767px) {
  .p-top-maintenance {
    padding: 1.75rem 1.25rem;
    gap: 0.75rem;
  }
}

.p-top-maintenance__title {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.875rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--main-color);
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  .p-top-maintenance__title {
    font-size: max(10px, 1.125rem);
  }
}

.p-top-maintenance__text {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  .p-top-maintenance__text {
    font-size: max(10px, 0.8125rem);
    text-align: left;
  }
}

/* =====================================================
   ONLINE SHOP セクション
   Figma 724-573 準拠
   - 背景: #FFFFFF
   - padding 144px 120px, gap 80px
   - 装飾: 656x664の大円（右上+左下）、opacity 0.6
   ===================================================== */
.p-top-shop {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

@media (max-width: 767px) {
  .p-top-shop {
    gap: 3rem;
  }
}

.p-top-shop__decor {
  position: absolute;
  border-radius: 50%;
  background: #F2F0E7;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
  width: 41rem;
  height: 41.5rem;
}

@media (max-width: 767px) {
  .p-top-shop__decor {
    width: 22.5rem;
    height: 22.5rem;
    opacity: 0.4;
  }
}

.p-top-shop__decor--1 {
  top: -9.625rem;
  right: -14.1875rem;
  background: url(../images/shop-decor-1.webp) no-repeat center center/contain;
}

@media (max-width: 767px) {
  .p-top-shop__decor--1 {
    top: -2.5rem;
    right: -10rem;
  }
}

.p-top-shop__decor--2 {
  bottom: -9.8125rem;
  left: -23.125rem;
  background: url(../images/shop-decor-2.webp) no-repeat center center/contain;
}

@media (max-width: 767px) {
  .p-top-shop__decor--2 {
    bottom: 2.5rem;
    left: -12.5rem;
  }
}

.p-top-shop__head {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 50rem;
}

.p-top-shop__lead {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-top-shop__lead {
    font-size: max(10px, 0.875rem);
  }
}

.p-top-shop__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (max-width: 767px) {
  .p-top-shop__list {
    gap: 4rem;
  }
}

/* =====================================================
   超お買い得市バナー（全体画像 + リンク）
   ===================================================== */
.p-top-sale {
  display: block;
  width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  aspect-ratio: 1200/291;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@media (max-width: 767px) {
  .p-top-sale {
    border-radius: 0.25rem;
    aspect-ratio: auto;
  }
}

.p-top-sale:hover {
  opacity: 0.92;
  transform: translateY(-0.125rem);
}

.p-top-sale picture,
.p-top-sale img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-top-sale img {
  object-fit: cover;
}

/* =====================================================
   SHOP INFORMATION セクション
   構造：[フル幅Hero画像 476px] → [白カード(max 1360px, -88pxで重なる)]
   ===================================================== */
.p-top-info {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 10.3125rem;
}

@media (max-width: 767px) {
  .p-top-info {
    padding-bottom: 3rem;
  }
}

.p-top-info__hero {
  position: relative;
  width: 100%;
  height: 29.75rem;
  overflow: hidden;
}

@media (max-width: 999px) {
  .p-top-info__hero {
    height: 22.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-info__hero {
    height: 15rem;
  }
}

.p-top-info__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-top-info__card {
  position: relative;
  z-index: 1;
  width: calc(100% - 5rem);
  max-width: 85rem;
  margin-inline: auto;
  margin-top: -5.5rem;
  padding: 6.25rem 5rem 0;
  background: var(--bg-color);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

@media (max-width: 999px) {
  .p-top-info__card {
    width: calc(100% - 3rem);
    padding: 4rem 2.5rem 0;
    margin-top: -4rem;
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-info__card {
    width: calc(100% - 1.5rem);
    padding: 2.5rem 1.25rem 0;
    margin-top: -2.5rem;
    gap: 2rem;
  }
}

.p-top-info__head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.p-top-info__lead {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .p-top-info__lead {
    font-size: max(10px, 0.875rem);
    line-height: 1.8;
  }
}

.p-top-info__cta {
  align-self: flex-start;
}

@media (max-width: 767px) {
  .p-top-info__cta {
    align-self: stretch;
    text-align: center;
  }
}

.p-top-info__body {
  display: grid;
  grid-template-columns: 1fr 34.5rem;
  gap: 3rem;
}

@media (max-width: 999px) {
  .p-top-info__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .p-top-info__body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-top-info__map {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

@media (max-width: 999px) {
  .p-top-info__map {
    max-width: 34.5rem;
    margin-inline: auto;
  }
}

.p-top-info__map-img {
  width: 100%;
  height: 20rem;
  background: var(--sub-bg-color);
  border-radius: 0.25rem;
  overflow: hidden;
}

.p-top-info__map-img iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .p-top-info__map-img {
    height: 13.75rem;
  }
}

.p-top-info__map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-top-info__map-list {
  display: flex;
  flex-direction: column;
}

.p-top-info__map-item {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: max(10px, 0.875rem);
  line-height: 1.8;
  color: #080808;
}

.p-top-info__map-link {
  margin-top: 0.5rem;
}

.p-top-info__map-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: max(10px, 1rem);
  line-height: 1.8;
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.p-top-gallery__title {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.875rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 2.5rem;
  padding-inline: 1.5rem;
}

@media (max-width: 767px) {
  .p-top-gallery__title {
    font-size: max(10px, 1.125rem);
    text-align: left;
    margin-bottom: 1.5rem;
  }
}

.p-top-gallery__rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  overflow: hidden;
}

.p-top-gallery__slider {
  width: 100%;
  overflow: hidden;
}

.p-top-gallery__slider .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

.p-top-gallery__slide {
  width: 25.5rem;
  height: 15.625rem;
  background: var(--sub-bg-color);
  border-radius: 0.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 999px) {
  .p-top-gallery__slide {
    width: 20rem;
    height: 12.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-gallery__slide {
    width: 15rem;
    height: 10rem;
  }
}

.p-top-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   ナビカード（フッター直上のリンクセクション）
   PC：左カラム画像 + 右カラム3カード／SP：画像非表示で1カラム
   ===================================================== */
.p-top-nav {
  display: grid;
  grid-template-columns: minmax(0, 25.25rem) minmax(0, 1fr);
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 999px) {
  .p-top-nav {
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .p-top-nav {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

.p-top-nav__image {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 0.25rem;
  overflow: hidden;
  aspect-ratio: 404/538;
  background: var(--sub-bg-color);
  align-self: center;
}

@media (max-width: 767px) {
  .p-top-nav__image {
    aspect-ratio: 16/10;
  }
}

.p-top-nav__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-top-nav__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* ===== フッター直上ナビ用 CTA バナー（旧スタイル：使用しなくなったが互換のため残置） ===== */
.p-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 7rem;
  padding: 1rem;
  border-radius: 0.375rem;
  background: var(--accent-color);
  color: var(--bg-color);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.p-footer-cta:hover {
  opacity: 0.85;
}

.p-footer-cta--gold {
  background: var(--accent-color);
}

.p-footer-cta--global {
  background: #c89f2d;
}

.p-footer-cta--sale {
  background: #2a1810;
}

.p-footer-cta__sub {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 0.75rem);
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.p-footer-cta__main {
  font-family: var(--mincho-font);
  font-weight: 500;
  font-size: max(10px, 1.125rem);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.p-footer-cta__arrow {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-color);
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}

@media (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

.u-sp-only-inline {
  display: none !important;
}

@media (max-width: 767px) {
  .u-sp-only-inline {
    display: inline !important;
  }
}