@charset "utf-8";
/* ==============================================
  ベース
============================================== */

body {
  font-family: "Noto Sans JP", sans-serif;
}

html,
body {
  scroll-behavior: smooth;
}

:root {
  --header-height: 68px;
  --anchor-offset: var(--header-height);
}

@media (min-width: 1260px) {
  :root {
    --header-height: 76px;
    --anchor-offset: var(--header-height);
  }
}

html {
  scroll-padding-top: var(--anchor-offset);
}

.sec[id] {
  scroll-margin-top: var(--anchor-offset);
}
/* ==============================================
  レイアウト共通
============================================== */
img,
.resize {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* ==============================================
  l_container
  左右の内側余白用
============================================== */

.l_container {
  width: 100%;
  padding-inline: clamp(20px, 4vw, 64px);
  box-sizing: border-box;
}

@media (min-width: 1440px) {
  .l_container {
    padding-inline: clamp(32px, 4vw, 80px);
  }
}

/* ==============================================
  l_contents
  基本のコンテンツ幅
============================================== */

.l_contents {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  box-sizing: border-box;
}

@media (min-width: 1440px) {
  .l_contents {
    max-width: 1120px;
  }
}

/* ==============================================
  l_contents--narrow
  文章・FAQ・お問い合わせなど狭め
============================================== */

.l_contents--narrow {
  max-width: 880px;
}

@media (min-width: 1440px) {
  .l_contents--narrow {
    max-width: 880px;
  }
}

/* ==============================================
  l_contents--wide
  商品一覧・カード・画像多めなど広め
============================================== */

.l_contents--wide {
  max-width: 1200px;
}

@media (min-width: 1440px) {
  .l_contents--wide {
    max-width: 1200px;
  }
}

/* ==============================================
  l_contents--xwide
  店舗情報・大きめ画像・横並び要素など
============================================== */

.l_contents--xwide {
  max-width: 1280px;
}

@media (min-width: 1440px) {
  .l_contents--xwide {
    max-width: 1280px;
  }
}

/* ==============================================
  モジュール：CTAボタン
============================================== */

.m_btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(8px, 2.7vw, 18px);
  background-color: #fff;
  border: 1.5px solid #c0392b;
  color: #c0392b;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.4rem);
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .m_btn-cta:hover {
    background-color: #c0392b;
    color: #fff;
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.18);
    transform: translateY(-2px);
  }

  .m_btn-cta:hover .m_btn-cta__arrow {
    transform: translateX(4px);
  }
}

.m_btn-cta:active {
  transform: scale(0.98);
}

.m_btn-cta__arrow {
  flex-shrink: 0;
  margin-left: clamp(8px, 2.1vw, 12px);
  transition: transform 0.25s ease;
}

@media (min-width: 800px) {
  .m_btn-cta__arrow {
    margin-left: 14px;
  }
}

/* ==============================================
  ナビセクション
============================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(26, 42, 74, 0.08);
}

@media (min-width: 1260px) {
  .site-header {
    padding: 14px 40px;
  }
}

.site-header__logo {
  display: block;
  width: 42px;
}

@media (min-width: 1260px) {
  .site-header__logo {
    width: 48px;
  }
}

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

.site-header__menu-btn {
  display: grid;
  gap: 4px;
  width: 48px;
  min-height: 44px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 1260px) {
  .site-header__menu-btn {
    display: none;
  }
}

.site-header__menu-btn span:not(.site-header__menu-text) {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #23286a;
  margin-inline: auto;
}

.site-header__menu-text {
  font-size: 10px;
  color: #23286a;
  letter-spacing: 0.08em;
}

.site-header__nav {
  position: fixed;
  top: 68px;
  right: 16px;
  width: min(280px, calc(100% - 32px));
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 16px;
  background-color: #fff;
  border: 1px solid rgba(35, 40, 106, 0.16);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(26, 42, 74, 0.14);
}

@media (min-width: 1260px) {
  .site-header__nav {
    position: static;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
}

.site-header__nav.is-open {
  display: flex;
}

.site-header__item {
  padding: 14px 8px;
  color: #1a2a4a;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

@media (min-width: 1260px) {
  .site-header__item {
    padding: 0;
    border-bottom: none;
    font-size: 0.92rem;
    letter-spacing: 0.05em;
  }
}

.site-header__item--last {
  border-bottom: none;
}

.site-header__contact {
  margin-top: 8px;
  padding: 14px 8px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  background-color: #23286a;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
}

@media (min-width: 1260px) {
  .site-header__contact {
    margin-top: 0;
    padding: 10px 20px;
    background-color: #23286a;
    color: #fff;
    border-radius: 999px;
  }
}

/* ==============================================
  FVセクション
============================================== */

.top_fv {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

@media (min-width: 1200px) {
  .top_fv {
    --fv-white-w: clamp(520px, 42vw, 660px);
    --fv-grad-w: 72px;
    position: relative;
    display: grid;
    grid-template-columns: var(--fv-white-w) minmax(0, 1fr);
    align-content: center;
    row-gap: clamp(24px, 2vw, 36px);
    width: 100%;
    height: clamp(620px, 50vw, 700px);
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #fff;
  }

  /* 左側を白くして文字を読ませる */
  .top_fv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--fv-white-w);
    background: #fff;
    z-index: 1;
    pointer-events: none;
  }

  /* 白背景と画像の境目だけを自然にぼかす */
  .top_fv::after {
    content: "";
    position: absolute;
    top: 0;
    left: var(--fv-white-w);
    bottom: 0;
    width: var(--fv-grad-w);
    background: linear-gradient(
      90deg,
      #fff 0%,
      rgba(255, 255, 255, 0.86) 35%,
      rgba(255, 255, 255, 0.38) 70%,
      rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
}

@media (min-width: 1600px) {
  .top_fv {
    --fv-white-w: clamp(600px, 38vw, 720px);
    --fv-grad-w: 150px;

    grid-template-columns: var(--fv-white-w) minmax(0, 1fr);
    height: clamp(740px, 48vw, 820px);
    padding-left: 0;
    row-gap: clamp(32px, 2.5vw, 48px);
  }
}

@media (min-width: 1920px) {
  .top_fv {
    --fv-white-w: clamp(680px, 32vw, 820px);
    --fv-grad-w: clamp(180px, 8vw, 240px);
    grid-template-columns: var(--fv-white-w) minmax(0, 1fr);
    height: clamp(820px, 42vw, 1040px);
    padding-left: 0;
    row-gap: clamp(36px, 2vw, 52px);
  }
}

@media (min-width: 2560px) {
  .top_fv {
    height: clamp(1040px, 43vw, 1460px);
  }
}
/* テキストエリア：画像の上部に absolute で重ねる */
.top_fv__body {
  /* position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-48%);
  width: 100%;
  z-index: 1; */
  text-align: center;
  margin-top: min(8%, 40px);
  margin-left: 4vw;
}

@media (min-width: 1200px) {
  /* 左側テキスト */
  .top_fv__body {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    position: relative;
    z-index: 2;
    width: min(82%, 620px);
    max-width: none;
    margin: 0;
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 1600px) {
  .top_fv__body {
    width: min(80%, 680px);
  }
}

@media (min-width: 1920px) {
  .top_fv__body {
    width: min(80%, 720px);
  }
}

/* キャッチコピー */
.top_fv__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2rem, 8.5vw, 4rem);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  .top_fv__catch {
    font-size: clamp(2.5rem, 8.5vw, 3.6rem);
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
}

.top_fv__catch-accent {
  color: #321f7e;
  font-size: clamp(2.5rem, 8.5vw, 5rem);
}

@media (min-width: 1200px) {
  .top_fv__catch-accent {
    font-size: clamp(4rem, 5vw, 6.5rem);
  }
}

/* アンダーライン装飾 */
.top_fv__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 10px);
  margin-top: 2%;
}

@media (min-width: 1200px) {
  .top_fv__divider {
    gap: 16px;
    margin-top: clamp(24px, 2vw, 36px);
  }
}

.top_fv__divider-line {
  width: clamp(40px, 21.6vw, 25vw);
  height: 1px;
  background-color: #c0392b;
}

@media (min-width: 1200px) {
  .top_fv__divider-line {
    width: clamp(180px, 14vw, 280px);
  }
}

.top_fv__divider-diamond {
  width: 6px;
  height: 6px;
  background-color: #c0392b;
  transform: rotate(45deg);
}

@media (min-width: 1200px) {
  .top_fv__divider-diamond {
    width: 8px;
    height: 8px;
  }
}

/* サブコピー */
.top_fv__sub {
  font-size: clamp(0.9rem, 3.2vw, 1.5rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: clamp(4px, 1vw, 20px);
  font-weight: 700;
}

@media (min-width: 1200px) {
  .top_fv__sub {
    font-size: clamp(1.25rem, 1.5vw, 1.75rem);
    line-height: 1.9;
    margin-top: clamp(28px, 2.5vw, 48px);
  }
}

/* CTAボタンラッパー */
.top_fv__cta-wrap {
  position: absolute;
  bottom: 2.8%;
  left: 52%;
  transform: translateX(-50%);
  width: min(80%, 500px);
  z-index: 2;
}

@media (min-width: 1200px) {
  /* CTAを左下に配置 */
  .top_fv__cta-wrap {
    position: relative;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    z-index: 2;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    justify-self: center;
    align-self: start;
    width: min(78%, 520px);
    margin-top: 0;
    margin-inline: auto;
  }
}

@media (min-width: 1600px) {
  .top_fv__cta-wrap {
    width: min(78%, 600px);
  }
}

@media (min-width: 1920px) {
  .top_fv__cta-wrap {
    width: min(78%, 660px);
  }
}

/* ブランドロゴ */
/* column → row */
/* .top_fv__brand {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.top_fv__brand-mark-wrap {
  width: clamp(40px, 10.6vw, 56px);
  height: clamp(40px, 10.6vw, 56px);
}

.top_fv__brand-mark {
  width: 80%;
  object-fit: cover;
}

.top_fv__brand-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #1a2a4a;
  letter-spacing: 0.1em;
  white-space: nowrap;
} */

/* 背景画像エリア */
/* 画像 */
.top_fv__img-wrap {
  display: block;
}

.top_fv__img {
  width: 100%;
  height: auto;
  display: block;
}
/* PC版 FV */
@media (min-width: 1200px) {
  /* 右側画像 */
  .top_fv__img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(63vw, 1180px);
    height: 100%;
    display: block;
    z-index: 0;
  }

  .top_fv__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: left center;
  }
}

@media (min-width: 1600px) {
  .top_fv__img-wrap {
    left: calc(var(--fv-white-w) - 80px);
    right: 0;
    width: auto;
  }
}
@media (min-width: 1920px) {
  .top_fv__img-wrap {
    left: calc(var(--fv-white-w) - 120px);
    right: 0;
    width: auto;
  }

  .top_fv__img {
    object-position: left 60%;
  }
}

@media (min-width: 2560px) {
  .top_fv__img {
    object-position: left 62%;
  }
}

/* ==============================================
  conceptセクション
============================================== */

.concept {
  --concept-w: 100%;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-bottom: clamp(12px, 3vw, 24px);
  background-color: #fff;
  overflow: hidden;
}

/* @media (min-width: 800px) {
  .concept {
    --concept-w: min(calc(100% - 80px), 1086px);
  }
} */

@media (min-width: 1200px) {
  .concept {
    --concept-w: min(calc(100% - 120px), 1086px);
  }
}

@media (min-width: 1920px) {
  .concept {
    --concept-w: min(calc(100% - 240px), 1180px);
  }
}

.concept__visual {
  width: 100%;
  margin-inline: auto;
  background-color: #fdfdfd;
}

@media (min-width: 800px) {
  .concept__visual {
    width: 100%;
  }
}

/* 上部見出し画像 */
.concept_img-wrap__head {
  position: relative;
  width: var(--concept-w);
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 800px) {
  .concept_img-wrap__head {
    height: max(18vw, 350px);
  }
}

@media (min-width: 1200px) {
  .concept_img-wrap__head {
    height: max(18vw, 320px);
  }
}
@media (min-width: 1920px) {
  .concept_img-wrap__head {
    height: max(12vw, 350px);
  }
}

.concept_img-head {
  width: 100%;
  height: auto;
  display: block;
}

/* 見出し配置 */
.concept_head__body {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(20px, 7vw, 58px);
}

@media (min-width: 800px) {
  .concept_head__body {
    padding-top: clamp(34px, 7vw, 64px);
  }
}

@media (min-width: 1200px) {
  .concept_head__body {
    padding-top: clamp(32px, 6vw, 86px);
  }
}

.concept_head {
  text-align: center;
}

/* 見出しラベル */
.concept__label-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(6px, 1vw, 20px);
}

.concept__label {
  display: inline-block;
  padding: clamp(4px, 1vw, 8px) clamp(16px, 4.3vw, 28px);
  border: 1.5px solid #1a2a4a;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.75rem, 3vw, 1.4rem);
  font-weight: 700;
  color: #1a2a4a;
  letter-spacing: 0.1em;
}

/* 大見出し */
.concept__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  color: #1a2a4a;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: clamp(1.5rem, 10.6vw, 2rem);
}

@media (min-width: 800px) {
  .concept__catch {
    font-size: clamp(2rem, 3vw, 3rem);
  }
}

.concept__catch-accent {
  color: #c0392b;
  font-size: clamp(2.9rem, 10.6vw, 4.1rem);
}

@media (min-width: 800px) {
  .concept__catch-accent {
    font-size: clamp(4rem, 5vw, 5.8rem);
  }
}

/* 下部コンテンツ */

.concept .l_container {
  padding-inline: 0;
}

@media (min-width: 800px) {
  .concept .l_container {
    padding-inline: 0;
  }
}

/* 査定画像 */
.concept_img-wrap__under {
  width: var(--concept-w);
  margin: -1px auto clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .concept_img-wrap__under {
    width: var(--concept-w);
    margin-top: -1px;
    margin-bottom: clamp(20px, 5.3vw, 32px);
  }
}

/* 本文テキスト */
.concept_container {
  width: 100%;
  max-width: none;
  padding-inline: 0;
}

@media (min-width: 800px) {
  .concept_container {
    width: 100%;
    max-width: none;
    padding-inline: 0;
  }
}

.concept__body {
  width: 100%;
}

@media (min-width: 800px) {
  .concept__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.concept__txt-wrap {
  max-width: min(760px, calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .concept__txt-wrap {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (min-width: 1200px) {
  .concept__txt-wrap {
    max-width: 820px;
  }
}

@media (min-width: 1920px) {
  .concept__txt-wrap {
    max-width: 860px;
  }
}

.concept__txt {
  font-size: clamp(0.8125rem, 3vw, 0.95rem);
  color: #333;
  line-height: 2;
  letter-spacing: 0.035em;
  text-align: center;
}

@media (min-width: 800px) {
  .concept__txt {
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1200px) {
  .concept__txt {
    font-size: clamp(1.0625rem, 0.95vw, 1.125rem);
    line-height: 2.05;
  }
}

@media (min-width: 1920px) {
  .concept__txt {
    font-size: 1.125rem;
  }
}

@media (min-width: 380px) {
  .concept__txt-sp_br {
    display: none;
  }
}

.concept__txt-strong {
  color: #1a2a4a;
  font-weight: 700;
}

@media (min-width: 800px) {
  .concept__txt-strong {
    display: block;
    margin-block: 6px;
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  }

  .concept__txt-strong_br {
    display: none;
  }
}

@media (min-width: 1200px) {
  .concept__txt-strong {
    display: block;
    margin-block: 6px;
    font-size: clamp(1.2rem, 1.1vw, 1.3rem);
  }
}

@media (min-width: 1920px) {
  .concept__txt-strong {
    display: block;
    margin-block: 8px;
    font-size: 1.35rem;
  }
}

/* 区切り線＋査定士テキスト */
.concept__assessor {
  max-width: min(760px, calc(100% - 30vw));
  margin-inline: auto;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding-block: clamp(10px, 2.7vw, 14px);
  margin-bottom: clamp(20px, 5.3vw, 32px);
  text-align: center;
}

@media (min-width: 800px) {
  .concept__assessor {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (min-width: 1200px) {
  .concept__assessor {
    max-width: 820px;
    padding-block: 14px;
  }
}

@media (min-width: 1920px) {
  .concept__assessor {
    max-width: 860px;
    padding-block: 16px;
  }
}

.concept__assessor-txt {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .concept__assessor-txt {
    font-size: clamp(0.9rem, 1vw, 1rem);
  }
}

@media (min-width: 1200px) {
  .concept__assessor-txt {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1920px) {
  .concept__assessor-txt {
    font-size: 1.0625rem;
    letter-spacing: 0.05em;
  }
}

/* CTAボタンラッパー */
.concept__cta-wrap {
  width: min(calc(100% - 32px), 450px);
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .concept__cta-wrap {
    width: min(70%, 450px);
  }
}

@media (min-width: 1200px) {
  .concept__cta-wrap {
    width: min(42%, 450px);
  }
}

@media (min-width: 1920px) {
  .concept__cta-wrap {
    width: min(36%, 480px);
  }
}

.m_btn-cta-fill {
  padding-block: clamp(14px, 3.7vw, 18px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c0392b;
  border: none;
  border-radius: 9999px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .m_btn-cta-fill:hover {
    background-color: #a92f25;
    box-shadow: 0 8px 20px rgba(192, 57, 43, 0.22);
    transform: translateY(-2px);
    opacity: 1;
  }

  .m_btn-cta-fill:hover .m_btn-cta__arrow {
    transform: translateX(4px);
  }
}

.m_btn-cta-fill:active {
  transform: scale(0.98);
}

/* 格子柄 */
.concept__separat {
  width: 100%;
  margin-top: clamp(20px, 5vw, 48px);
}

/* ==============================================
  reasonセクション（はじめての方へ）
============================================== */

.reason {
  background-color: #fff;
}

/* 見出しエリア */
.reason__head {
  padding-top: clamp(32px, 8.5vw, 56px);
  padding-bottom: clamp(10px, 3.3vw, 32px);
  text-align: center;
}
@media (min-width: 800px) {
  .reason__head {
    padding-top: clamp(56px, 6vw, 80px);
    padding-bottom: clamp(24px, 3vw, 40px);
  }
}

@media (min-width: 1200px) {
  .reason__head {
    padding-top: 88px;
    padding-bottom: 44px;
  }
}

.reason__label {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #1a2a4a;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: clamp(12px, 3.2vw, 20px);
}

@media (min-width: 800px) {
  .reason__label {
    font-size: 1.5rem;
    margin-bottom: 22px;
  }
}

@media (min-width: 1200px) {
  .reason__label {
    font-size: 1.8rem;
  }
}

.reason__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 6.4vw, 2.5rem);
  color: #1a2a4a;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .reason__catch {
    font-size: clamp(2.5rem, 3.4vw, 3.5rem);
    line-height: 1.45;
  }
}

@media (min-width: 1200px) {
  .reason__catch {
    font-size: 3.75rem;
  }
}

.reason__catch-dots rt {
  color: #ea201e;
  font-size: 1em;
}

/* 3つの特徴 */
.reason__features {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: min(760px, calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
  padding-inline: 0;
}

@media (min-width: 800px) {
  .reason__features {
    width: min(900px, calc(100% - 64px));
    margin-bottom: 44px;
  }
}

@media (min-width: 1200px) {
  .reason__features {
    width: min(960px, calc(100% - 80px));
    margin-bottom: 52px;
  }
}

.reason__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(8px, 1.6vw, 10px);
}

@media (min-width: 800px) {
  .reason__feature {
    gap: 12px;
  }
}

.reason__feature-divider {
  width: 1px;
  background-color: #ccc;
  align-self: stretch;
  margin-block: 4px;
}

@media (min-width: 800px) {
  .reason__feature-divider {
    margin-block: 2px;
  }
}

.reason__feature-icon {
  color: #514da4;
  font-size: clamp(1.5rem, 5.3vw, 2rem);
}

@media (min-width: 800px) {
  .reason__feature-icon {
    font-size: 2.25rem;
  }
}

.reason__feature-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #1a2a4a;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

@media (min-width: 800px) {
  .reason__feature-title {
    font-size: 1.0625rem;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .reason__feature-title {
    font-size: 1.125rem;
  }
}

/* .reason__feature-txt {
  font-size: clamp(0.625rem, 2.7vw, 0.8125rem);
  color: #555;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 700;
} */

/* 店舗・スタッフ画像 */
.reason__img-wrap {
  margin-bottom: clamp(24px, 6.4vw, 40px);
}

@media (min-width: 800px) {
  .reason__img-wrap {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .reason__img-wrap {
    width: min(1180px, calc(100% - 80px));
    margin-bottom: 64px;
  }
}

/* ご相談前に知っておきたいこと */
.reason__notice {
  background-color: #524f92;
  padding-block: clamp(24px, 6.4vw, 40px);
  margin-bottom: clamp(24px, 6.4vw, 40px);
}

@media (min-width: 800px) {
  .reason__notice {
    padding-block: 48px 56px;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .reason__notice {
    padding-block: 56px 64px;
    margin-bottom: 56px;
  }
}

.reason__notice-title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: clamp(16px, 4.3vw, 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 16px);
}

@media (min-width: 800px) {
  .reason__notice-title {
    font-size: 1.125rem;
    margin-bottom: 32px;
    gap: 20px;
  }
}

@media (min-width: 1200px) {
  .reason__notice-title {
    font-size: 1.1875rem;
    margin-bottom: 36px;
  }
}

.reason__notice-title::before,
.reason__notice-title::after {
  content: "";
  display: block;
  width: clamp(24px, 6.4vw, 48px);
  height: 1px;
  background-color: #fff;
}

.reason__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3.2vw, 20px);
}

@media (min-width: 960px) {
  .reason__cards {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: min(1120px, calc(100% - 80px));
    margin-inline: auto;
    gap: 20px;
    padding-inline: 0;
  }
}

@media (min-width: 1200px) {
  .reason__cards {
    width: min(1180px, calc(100% - 80px));
    gap: 24px;
  }
}

.reason__card {
  background-color: #fff;
  border-radius: 4px;
  padding: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 960px) {
  .reason__card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
  }
}

@media (min-width: 1200px) {
  .reason__card {
    padding: 32px 28px;
  }
}

.reason__card-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  color: #1e1b60;
  letter-spacing: 0.05em;
  margin-bottom: clamp(8px, 2.1vw, 12px);
  text-align: center;
}

@media (min-width: 960px) {
  .reason__card-title {
    font-size: 1.0625rem;
    margin-bottom: 16px;
  }
}

@media (min-width: 1200px) {
  .reason__card-title {
    font-size: 1.3rem;
  }
}

.reason__card-txt {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #555;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media (min-width: 960px) {
  .reason__card-txt {
    font-size: 1rem;
    line-height: 1.9;
  }

  .reason__br-sp {
    display: none;
  }
}

@media (min-width: 660px) {
  .reason__br-sp__info {
    display: none;
  }
}

/* 締めテキスト */
.reason__closing {
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

.reason__closing-txt {
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.reason__closing-txt_strong {
  color: #d81f25;
}

/* CTAボタンラッパー */
.reason__cta-wrap {
  margin-inline: auto;
  width: min(100%, 450px);
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .reason__cta-wrap {
    width: 450px;
    margin-bottom: 56px;
  }
}

@media (min-width: 1200px) {
  .reason__cta-wrap {
    width: 600px;

    margin-bottom: 72px;
  }
}

.m_btn-cta-navy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-block: clamp(14px, 3.7vw, 18px);
  padding-inline: clamp(16px, 4.3vw, 24px);
  background-color: #524f92;
  border: none;
  border-radius: 9999px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (min-width: 800px) {
  .m_btn-cta-navy {
    font-size: 1.0625rem;
    padding-block: 18px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .m_btn-cta-navy:hover {
    background-color: #3f3b85;
    box-shadow: 0 8px 20px rgba(82, 79, 146, 0.22);
    transform: translateY(-2px);
    opacity: 1;
  }

  .m_btn-cta-navy:hover .m_btn-cta__arrow {
    transform: translateX(4px);
  }
}

.m_btn-cta-navy:active {
  transform: scale(0.98);
}

/* ==============================================
  itemセクション（買取対象商品）
============================================== */
.item {
  background-color: #f7f6f3;
}

/* 見出しエリア */
.item__head {
  background-image: url("../img/item_back01.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: clamp(26px, 7vw, 52px);
  padding-bottom: clamp(32px, 8.5vw, 56px);
  text-align: center;
}

.item__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: clamp(2rem, 8.5vw, 3.25rem);
  color: #1a2a4a;
  letter-spacing: 0.1em;
  margin-bottom: clamp(12px, 3.2vw, 20px);
}

@media (min-width: 800px) {
  .item__catch {
    font-size: clamp(3.5rem, 6vw, 4.75rem);
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .item__catch {
    font-size: 5rem;
  }
}

.item__sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 10px);
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #a80009;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .item__sub {
    gap: 14px;
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .item__sub {
    font-size: 1.25rem;
  }
}

.item__sub-line {
  display: block;
  width: clamp(20px, 5.3vw, 40px);
  height: 1px;
  background-color: #a80009;
}

@media (min-width: 800px) {
  .item__sub-line {
    width: clamp(40px, calc(12vw - 56px), 88px);
  }
}

.item__sub-diamond {
  color: #c0392b;
  font-size: 0.6em;
}

@media (min-width: 800px) {
  .item__sub-diamond {
    font-size: 0.7em;
  }
}

/* 商品グリッド */
.item__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 2.1vw, 16px);
  max-width: 1180px;
  margin-inline: auto;
  margin-bottom: clamp(24px, 6.4vw, 40px);
}

@media (min-width: 801px) {
  .item__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1180px, calc(100% - 64px));
    gap: 12px;
    padding-inline: 0;
    margin-bottom: 44px;
  }
}

@media (min-width: 1200px) {
  .item__grid {
    width: min(1180px, calc(100% - 80px));
    gap: 14px;
    margin-bottom: 48px;
  }
}

.item__card {
  border: 1px solid #d0cfc8;
  border-radius: 8px;
  padding: clamp(8px, 2.1vw, 16px) clamp(4px, 1vw, 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.6vw, 10px);
  overflow: hidden;
}

@media (min-width: 801px) {
  .item__card {
    aspect-ratio: 1 / 1.16;
    padding: 18px 12px 16px;
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .item__card {
    padding: 20px 14px 18px;
  }
}

.item__card-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 801px) {
  .item__card-img-wrap {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
  }
}

.item__card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.item__card-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.625rem, 2.7vw, 1rem);
  color: #050b45;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 801px) {
  .item__card-name {
    font-size: 0.95rem;
  }
}

@media (min-width: 1200px) {
  .item__card-name {
    font-size: 1.25rem;
  }
}

.item__card-name::after {
  content: "";
  display: block;
  width: clamp(16px, 4.3vw, 24px);
  height: 1px;
  background-color: #1a2a4a;
  margin: 4px auto 0;
}

@media (min-width: 800px) {
  .item__card-name::after {
    width: 32px;
    margin-top: 8px;
  }
}

/* 注釈テキスト */
.item__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 16px);
  width: min(100%, calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .item__note {
    width: min(1120px, calc(100% - 64px));
    gap: 24px;
    margin-bottom: 36px;
  }
}

@media (min-width: 1200px) {
  .item__note {
    width: min(1120px, calc(100% - 80px));
    gap: 32px;
    margin-bottom: 40px;
  }
}

@media (min-width: 768px) {
  .item__note-sp_br {
    display: none;
  }
}

.item__note-line {
  width: clamp(40px, 12.4vw, 64px);
  height: auto;
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .item__note-line {
    width: 120px;
  }
}

@media (min-width: 1200px) {
  .item__note-line {
    width: 144px;
  }
}

.item__note-txt {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #0c1244;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.8;
}

@media (min-width: 800px) {
  .item__note-txt {
    font-size: 1.08rem;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .item__note-txt {
    font-size: 1.25rem;
  }
}

/* CTAボタンラッパー */
.item__cta-wrap {
  width: min(100%, 450px);
  margin-inline: auto;
  padding-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .item__cta-wrap {
    width: min(450px, calc(100% - 64px));
    padding-inline: 0;
    padding-bottom: 56px;
  }
}

@media (min-width: 1200px) {
  .item__cta-wrap {
    width: 600px;
    padding-bottom: 72px;
  }
}

/* ==============================================
  flowセクション（ご利用の流れ）
============================================== */

.flow {
  background-color: #fff;
}

/* 見出しエリア */
.flow__head {
  padding-top: clamp(32px, 8.5vw, 56px);
  padding-bottom: clamp(16px, 4vw, 40px);
  text-align: center;
  background-image: url(../img/flow_back.png);
  background-repeat: no-repeat;
  background-size: 35vw auto;
  background-position: center left;
}

@media (min-width: 800px) {
  .flow__head {
    padding-top: 60px;
    padding-bottom: 48px;
    background-size: 28vw auto;
  }
}

@media (min-width: 1200px) {
  .flow__head {
    padding-top: 76px;
    padding-bottom: 56px;
  }
}

.flow__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 7.5vw, 3rem);
  color: #1a2a4a;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 16px);
  margin-bottom: clamp(8px, 2.1vw, 12px);
}

@media (min-width: 800px) {
  .flow__catch {
    font-size: clamp(3.25rem, 5vw, 4.25rem);
    gap: 24px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .flow__catch {
    font-size: 4.5rem;
  }
}

.flow__catch-line {
  display: block;
  width: clamp(24px, 6.4vw, 48px);
  height: 1px;
  background-color: #1a2a4a;
}

@media (min-width: 800px) {
  .flow__catch-line {
    width: clamp(72px, 8vw, 128px);
  }
}

.flow__free {
  display: inline-block;
  border: 1.5px solid #c0392b;
  color: #c0392b;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 2rem);
  letter-spacing: 0.1em;
  padding: clamp(2px, 0.5vw, 4px) clamp(12px, 3.2vw, 20px);
  margin-bottom: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 960px) {
  .flow__free {
    font-size: 2.25rem;
    padding: 8px 22px;
  }
}

@media (min-width: 1200px) {
  .flow__free {
    font-size: 2.5rem;
    padding: 9px 26px;
  }
}

.flow__desc {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .flow__desc {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .flow__desc {
    font-size: 1.2rem;
  }
}

@media (min-width: 800px) {
  .flow__desc-br-sp {
    display: none;
  }
}

/* STEP一覧 */
.flow__steps {
  display: flex;
  flex-direction: column;
  padding-inline: 4%;
  gap: clamp(14px, 3.8vw, 24px);
  margin-bottom: clamp(16px, 4.5vw, 56px);
}

@media (min-width: 800px) {
  .flow__steps {
    width: min(1180px, calc(100% - 64px));
    padding-inline: 0;
    margin-inline: auto;
    gap: 18px;
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .flow__steps {
    width: min(1180px, calc(100% - 80px));
    gap: 20px;
    margin-bottom: 56px;
  }
}

.flow__step {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: clamp(12px, 3.2vw, 24px);
  align-items: start;
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: clamp(10px, 2.6vw, 16px);
  box-shadow: 0 2px 10px rgba(26, 42, 74, 0.04);
  overflow: hidden;
}

@media (min-width: 800px) {
  .flow__step {
    grid-template-columns: 44% 1fr;
    align-items: stretch;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(26, 42, 74, 0.06);
  }
}

@media (min-width: 1200px) {
  .flow__step {
    grid-template-columns: 44% 1fr;
  }
}

.flow__step-img-wrap {
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f5f5f5;
}

@media (min-width: 800px) {
  .flow__step-img-wrap {
    aspect-ratio: 10 / 9;
    border-radius: 10px 0 0 10px;
  }
}

.flow__step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 追加：画像をトリミングして高さに合わせる */
  object-position: center;
}

.flow__step-body {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 800px) {
  .flow__step-body {
    display: block;
    padding: 24px 32px 24px;
  }
}

@media (min-width: 1200px) {
  .flow__step-body {
    padding: 28px 40px 32px;
  }
}

.flow__step-body > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 930px) {
  .flow__step-body::after {
    content: "";
    position: absolute;
    right: clamp(12px, 1.6vw, 20px);
    bottom: clamp(10px, 1.4vw, 18px);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
  }
}

@media (min-width: 930px) {
  .flow__step-body::after {
    display: block;
  }
}

/* STEP01：店舗イラスト */
.flow__step--visit.flow__step-body::after {
  background-image: url("../img/flow_bg_01.png");
}

@media (min-width: 930px) {
  .flow__step--visit.flow__step-body::after {
    width: clamp(96px, 13vw, 150px);
    aspect-ratio: 4 / 3;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(12px, 1.6vw, 20px);
  }
}

@media (min-width: 1200px) {
  .flow__step--visit.flow__step-body::after {
    width: clamp(150px, 13vw, 180px);
  }
}

/* STEP02：虫眼鏡 */
.flow__step--appraise.flow__step-body::after {
  background-image: url("../img/flow_bg_02.png");
}

@media (min-width: 930px) {
  .flow__step--appraise.flow__step-body::after {
    width: clamp(88px, 13vw, 140px);
    aspect-ratio: 1 / 1;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(12px, 1.6vw, 20px);
  }
}

@media (min-width: 1200px) {
  .flow__step--appraise.flow__step-body::after {
    width: clamp(140px, 13vw, 180px);
  }
}

/* STEP03：書類・ペン */
.flow__step--procedure.flow__step-body::after {
  background-image: url("../img/flow_bg_03.png");
}

@media (min-width: 930px) {
  .flow__step--procedure.flow__step-body::after {
    width: clamp(92px, 13vw, 140px);
    aspect-ratio: 1 / 1;
    right: clamp(14px, 2vw, 24px);
    bottom: clamp(12px, 1.6vw, 20px);
  }
}

@media (min-width: 1200px) {
  .flow__step--procedure.flow__step-body::after {
    width: clamp(140px, 13vw, 180px);
  }
}

/* STEPラベル */
.flow__step-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background-color: #1a2a4a;
  color: #fff;
  padding: clamp(2px, 0.5vw, 4px) clamp(8px, 2.1vw, 14px);
  border-radius: 2px;
  margin-bottom: clamp(6px, 1.6vw, 10px);
}

@media (min-width: 800px) {
  .flow__step-label {
    gap: 8px;
    padding: 6px 18px;
    margin-bottom: 18px;
  }
}

.flow__step-label-step {
  font-size: clamp(0.625rem, 2.7vw, 0.75rem);
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media (min-width: 800px) {
  .flow__step-label-step {
    font-size: 0.875rem;
  }
}

.flow__step-label-num {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 3.7vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .flow__step-label-num {
    font-size: 1.875rem;
    line-height: 1;
  }
}

/* STEPタイトル */
.flow__step-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  color: #1a2a4a;
  letter-spacing: 0.05em;
  line-height: 1.35;
  margin-bottom: clamp(8px, 2.1vw, 12px);
}

@media (min-width: 800px) {
  .flow__step-title {
    font-size: clamp(1.875rem, 2.8vw, 2.25rem);
    margin-bottom: 14px;
  }
}

@media (min-width: 1200px) {
  .flow__step-title {
    font-size: 2.375rem;
  }
}

/* STEP本文 */
.flow__step-txt {
  font-size: clamp(0.6875rem, 2.9vw, 0.875rem);
  color: #333;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

@media (min-width: 800px) {
  .flow__step-txt {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 1200px) {
  .flow__step-txt {
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

.flow__step-txt-strong {
  color: #c0392b;
  font-weight: 700;
}

/* フッターテキスト */
.flow__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3.2vw, 24px);
  padding-top: clamp(8px, 1.8vw, 24px);
  margin-bottom: clamp(24px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .flow__footer {
    width: min(1180px, calc(100% - 64px));
    margin-inline: auto;
    padding-top: 0;
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .flow__footer {
    width: min(1180px, calc(100% - 80px));
    margin-bottom: 48px;
  }
}

.flow__footer-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1.6vw, 10px);
}

.flow__footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(100%, 380px);
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid #1a2a4a;
  border-radius: 999px;
  background-color: #fff;
  color: #1a2a4a;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

@media (min-width: 800px) {
  .flow__footer-link {
    width: auto;
    min-height: auto;
    background-color: transparent;
  }
}

@media (hover: hover) and (pointer: fine) {
  .flow__footer-link:hover {
    background-color: #1a2a4a;
    border-color: #1a2a4a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(26, 42, 74, 0.16);
    transform: translateY(-2px);
  }

  .flow__footer-link:hover .flow__footer-txt,
  .flow__footer-link:hover .flow__footer-arrow {
    color: #fff;
  }

  .flow__footer-link:hover .flow__footer-arrow {
    transform: translateX(4px);
  }
}

.flow__footer-link:active {
  transform: scale(0.98);
}

/* .flow__footer-logo {
  width: clamp(32px, 8.5vw, 48px);
  height: auto;
} */

.flow__footer-txt {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #555;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .flow__footer-txt {
    font-size: 1.125rem;
    color: #1a2a4a;
    letter-spacing: 0.12em;
  }
}

@media (min-width: 1200px) {
  .flow__footer-txt {
    font-size: 1.2rem;
    color: #1a2a4a;
    letter-spacing: 0.12em;
  }
}

.flow__footer-arrow {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

@media (min-width: 800px) {
  .flow__footer-arrow {
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .flow__footer-arrow {
    font-size: 1.2rem;
  }
}

.flow__footer-line {
  display: block;
  width: 120px;
  height: 1px;
  background-color: #d8d8d8;
}

@media (min-width: 800px) {
  .flow__footer-line {
    flex: 1;
    width: auto;
    background-color: #1a2a4a;
  }
}

/* ==============================================
  faqセクション
============================================== */

.faq {
  background-color: #fff;
}

/* 見出しエリア */
.faq__head {
  padding-top: clamp(32px, 8.5vw, 56px);
  padding-bottom: clamp(24px, 6.4vw, 40px);
  text-align: center;
}

@media (min-width: 800px) {
  .faq__head {
    padding-top: 80px;
    padding-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .faq__head {
    padding-top: 76px;
    padding-bottom: 56px;
  }
}

.faq__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 7.5vw, 3rem);
  color: #1a2a4a;
  letter-spacing: 0.15em;
  margin-bottom: clamp(8px, 2.1vw, 12px);
}

@media (min-width: 800px) {
  .faq__catch {
    font-size: clamp(3rem, 4.2vw, 4rem);
    margin-bottom: 16px;
  }
}

@media (min-width: 1200px) {
  .faq__catch {
    font-size: 4.25rem;
  }
}

.faq__catch-line {
  width: clamp(32px, 8.5vw, 56px);
  height: 2px;
  background-color: #c0392b;
  margin-inline: auto;
  margin-bottom: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 800px) {
  .faq__catch-line {
    width: 72px;
    margin-bottom: 28px;
  }
}

.faq__desc {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .faq__desc {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 1200px) {
  .faq__desc {
    font-size: 1.1rem;
  }
}

/* FAQ一覧 */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, calc(100% - 32px));
  margin-inline: auto;
  margin-bottom: clamp(24px, 6.4vw, 40px);
  padding-inline: 0;
}

@media (min-width: 800px) {
  .faq__list {
    width: min(1040px, calc(100% - 64px));
    margin-bottom: 48px;
  }
}

@media (min-width: 1200px) {
  .faq__list {
    width: min(1120px, calc(100% - 120px));
    margin-bottom: 56px;
  }
}

.faq__item {
  border: 1px solid rgba(26, 42, 74, 0.35);
  border-radius: 6px;
  margin-bottom: clamp(8px, 2.1vw, 12px);
  overflow: hidden;
  background-color: #fff;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (min-width: 800px) {
  .faq__item {
    border-radius: 8px;
    margin-bottom: 16px;
  }
}

.faq__item.open {
  border-color: rgba(192, 57, 43, 0.45);
  background-color: #fffdf8;
  box-shadow: 0 4px 14px rgba(26, 42, 74, 0.04);
}

/* 質問行 */
.faq__summary {
  display: flex;
  align-items: flex-start; /* center → flex-start */
  gap: clamp(8px, 2.1vw, 12px);
  padding: clamp(14px, 3.7vw, 20px) clamp(12px, 3.2vw, 20px);
  cursor: pointer;
  user-select: none;
}

@media (min-width: 800px) {
  .faq__summary {
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 22px 28px;
  }
}

@media (min-width: 1200px) {
  .faq__summary {
    min-height: 76px;
    padding: 24px 32px;
  }
}

.faq__q-icon {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  color: #1a2a4a;
  flex-shrink: 0;
}

@media (min-width: 800px) {
  .faq__q-icon {
    font-size: 1.1875rem;
  }
}

.faq__summary-txt {
  flex: 1;
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #1a2a4a;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 600;
}

@media (min-width: 800px) {
  .faq__summary-txt {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 700;
  }
}

@media (min-width: 1200px) {
  .faq__summary-txt {
    font-size: 1.2rem;
  }
}

@media (min-width: 400px) {
  .faq__txt-sp_br {
    display: none;
  }
}

/* open時：Q・テキストを赤に */
.faq__item.open .faq__q-icon,
.faq__item.open .faq__summary-txt {
  color: #c0392b;
}

/* トグルアイコン */
.faq__toggle {
  flex-shrink: 0;
  color: #666;
  transition: color 0.2s;
}

@media (min-width: 800px) {
  .faq__toggle {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
  }
}

.faq__item.open .faq__toggle {
  color: #c0392b;
}

.faq__toggle-v {
  transition: opacity 0.2s;
}

.faq__item.open .faq__toggle-v {
  opacity: 0;
}

/* 回答エリア */
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.open .faq__answer {
  max-height: 700px;
}

.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 2.1vw, 12px);
  padding: clamp(12px, 3.2vw, 20px) clamp(12px, 3.2vw, 20px)
    clamp(16px, 4.3vw, 24px);
  border-top: 1px dashed #ccc;
}

@media (min-width: 800px) {
  .faq__answer-inner {
    gap: 18px;
    padding: 26px 28px 34px;
    border-top-color: rgba(192, 57, 43, 0.25);
  }
}

@media (min-width: 1200px) {
  .faq__answer-inner {
    padding: 28px 32px 36px;
  }
}

.faq__a-icon {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.875rem, 3.7vw, 1.0625rem);
  color: #c0392b;
  flex-shrink: 0;
  line-height: 1.8; /* 追加：テキストのline-heightに合わせる */
}

@media (min-width: 800px) {
  .faq__a-icon {
    font-size: 1.1875rem;
    line-height: 2;
  }
}

.faq__answer-txt {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

@media (min-width: 800px) {
  .faq__answer-txt {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

@media (min-width: 1200px) {
  .faq__answer-txt {
    font-size: 1.2rem;
  }
}

@media (min-width: 380px) {
  .faq__answer-sp_br {
    display: none;
  }
}

.faq__answer-txt_strong {
  color: #b32e33;
}

/* CTAボタン */
.faq__cta-wrap {
  margin-bottom: clamp(24px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .faq__cta-wrap {
    margin-bottom: 56px;
  }
}

@media (min-width: 1200px) {
  .faq__cta-wrap {
    margin-bottom: 64px;
  }
}

.faq__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 380px);
  min-height: 48px;
  margin: clamp(24px, 6.4vw, 36px) auto 0;
  padding: 10px 18px;
  border: 1px solid #514da4;
  border-radius: 999px;
  background-color: #524f92;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(81, 77, 164, 0.08);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (min-width: 800px) {
  .faq__cta {
    gap: 18px;
    width: min(560px, calc(100% - 64px));
    min-height: 58px;
    padding: 12px 28px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .faq__cta {
    width: 600px;
    min-height: 64px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .faq__cta:hover {
    background-color: #3f3b85;
    border-color: #3f3b85;
    box-shadow: 0 8px 20px rgba(82, 79, 146, 0.22);
    transform: translateY(-2px);
    opacity: 1;
  }

  .faq__cta:hover .faq__cta-arrow {
    transform: translateX(4px);
  }
}

.faq__cta:active {
  transform: scale(0.98);
}

.faq__cta-icon-img {
  width: 40px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1); /* 白く表示 */
}

@media (min-width: 800px) {
  .faq__cta-icon-img {
    width: 44px;
  }
}

@media (min-width: 1200px) {
  .faq__cta-icon-img {
    width: 50px;
  }
}

.faq__cta-txt {
  font-size: clamp(0.8125rem, 3.2vw, 0.9375rem);
}

@media (min-width: 800px) {
  .faq__cta-txt {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .faq__cta-txt {
    font-size: 1.2rem;
  }
}

.faq__cta-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}

@media (min-width: 800px) {
  .faq__cta-arrow {
    font-size: 1.25rem;
  }
}

/* ==============================================
  shopセクション（店舗情報）
============================================== */

.shop {
  background-color: #fff;
}

/* 見出しエリア */
.shop__head {
  padding-top: clamp(32px, 8.5vw, 56px);
  padding-bottom: clamp(20px, 5.3vw, 32px);
  text-align: center;
}

@media (min-width: 800px) {
  .shop__head {
    padding-top: 58px;
    padding-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .shop__head {
    padding-top: 60px;
    padding-bottom: 44px;
  }
}

.shop__head-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 12px);
  margin-bottom: clamp(8px, 2.1vw, 12px);
}

@media (min-width: 800px) {
  .shop__head-title-wrap {
    gap: 16px;
    margin-bottom: 14px;
  }
}

.shop__head-logo {
  width: clamp(28px, 7.5vw, 40px);
  height: auto;
}

@media (min-width: 800px) {
  .shop__head-logo {
    width: 54px;
  }
}

@media (min-width: 1200px) {
  .shop__head-logo {
    width: 60px;
  }
}

.shop__catch {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 7.5vw, 3rem);
  color: #1a2a4a;
  letter-spacing: 0.15em;
}

@media (min-width: 800px) {
  .shop__catch {
    font-size: clamp(3rem, 4.2vw, 4rem);
  }
}

@media (min-width: 1200px) {
  .shop__catch {
    font-size: 4.125rem;
  }
}

.shop__catch-line {
  width: clamp(32px, 8.5vw, 56px);
  height: 2px;
  background-color: #c0392b;
  margin-inline: auto;
  margin-bottom: clamp(12px, 3.2vw, 20px);
}

@media (min-width: 800px) {
  .shop__catch-line {
    width: 88px;
    margin-bottom: 22px;
  }
}

.shop__desc {
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #333;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .shop__desc {
    font-size: 1.125rem;
    letter-spacing: 0.08em;
  }
}

.shop__desc-accent {
  color: #c0392b;
  font-weight: 700;
}

/* タブ */
.shop__tabs {
  display: flex;
  margin-bottom: 0;
  margin-inline: auto;
}

@media (min-width: 800px) {
  .shop__tabs {
    width: min(1200px, calc(100% - 64px));
  }
}

@media (min-width: 1200px) {
  .shop__tabs {
    width: min(1200px, calc(100% - 80px));
  }
}

.shop__tab {
  flex: 1;
  padding: clamp(10px, 2.7vw, 14px) clamp(4px, 1vw, 8px);
  background-color: #f0f0f0;
  border: none;
  border-bottom: 2px solid #ccc;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.8rem, 2.9vw, 1.2rem);
  color: #666;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition:
    background-color 0.2s,
    color 0.2s;
}

@media (min-width: 800px) {
  .shop__tab {
    min-height: 56px;
    padding-block: 14px;
  }
}

.shop__tab.active {
  background-color: #27266c;
  color: #fff;
  border-bottom: 2px solid #27266c;
}

.shop__tab-soon {
  font-size: 0.75em;
  font-weight: 400;
}

/* パネル */
.shop__panel--hidden {
  display: none;
}

/* 店舗外観画像 */
.shop__exterior-wrap {
  width: 94%;
  margin: clamp(10px, 3.3vw, 16px) auto clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .shop__exterior-wrap {
    width: min(1200px, calc(100% - 64px));
    margin-top: 16px;
    margin-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .shop__exterior-wrap {
    width: min(1200px, calc(100% - 80px));
    margin-bottom: 36px;
  }
}

.shop__exterior-wrap img {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 800px) {
  .shop__exterior-wrap img {
    aspect-ratio: 4 / 4.1;
  }
}

@media (min-width: 1200px) {
  .shop__exterior-wrap img {
    aspect-ratio: 4 / 4.1;
  }
}

/* 店舗情報 */
.shop__info {
  width: min(100%, calc(100% - 20px));
  margin-inline: auto;
  margin-bottom: clamp(16px, 4vw, 28px);
  padding-inline: 0;
  display: flex;
  justify-content: center;
}

@media (min-width: 800px) {
  .shop__info {
    width: min(1120px, calc(100% - 32px));
    margin-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .shop__info {
    width: min(1120px, calc(100% - 40px));
    margin-bottom: 36px;
  }
}

/* .shop__info-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 12px);
  margin-bottom: clamp(16px, 4.3vw, 24px);
} */

/* .shop__info-logo {
  width: clamp(24px, 6.4vw, 32px);
  height: auto;
} */

.shop__info-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1rem, 4.3vw, 1.25rem);
  /* color: #1a2a4a; */
  letter-spacing: 0.08em;
}

@media (min-width: 800px) {
  .shop__info-name {
    font-size: 1.4rem;
  }
}

.shop__info-list {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background-color: #fff;
  padding: clamp(12px, 3.2vw, 20px);
}

@media (min-width: 700px) {
  .shop__info-list {
    width: 90%;
  }
}

@media (min-width: 800px) {
  .shop__info-list {
    padding: 20px 32px;
  }
}

@media (min-width: 1200px) {
  .shop__info-list {
    width: min(920px, 90%);
    padding: 24px 40px;
  }
}

/* dl / dt / dd の余白リセット */
.shop__info-label,
.shop__info-val {
  margin: 0;
}

.shop__info-row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3.2vw, 20px);
  padding-block: clamp(10px, 2.7vw, 14px);
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 700px) {
  .shop__info-row {
    gap: 28px;
  }
}

@media (min-width: 800px) {
  .shop__info-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 28px;
    padding-block: 14px;
  }
}

@media (min-width: 1200px) {
  .shop__info-row {
    grid-template-columns: 200px 1fr;
    padding-block: 16px;
  }
}
/* .shop__info-row:first-child {
  border-top: 1px solid #e8e8e8;
} */

.shop__info-row:last-child {
  border-bottom: none;
}

.shop__info-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #1a2a4a;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  /* モバイル基準 */
  width: 108px;
  min-width: 108px;
  flex-shrink: 0;
}

@media (min-width: 700px) {
  .shop__info-label {
    width: 140px;
    min-width: 140px;
  }
}

@media (min-width: 800px) {
  .shop__info-label {
    width: auto;
    min-width: 0;
    font-size: 1rem;
  }
}

.shop__info-label i {
  color: #514da4;
  font-size: 0.9em;
}

.shop__info-val {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.03em;
  font-weight: 700;
  word-break: keep-all; /* 追加 */
  margin: 0;
}

@media (min-width: 800px) {
  .shop__info-val {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media (min-width: 1200px) {
  .shop__info-val {
    font-size: 1.0625rem;
  }
}

.shop__info-row:first-child .shop__info-val {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

@media (min-width: 1000px) {
  .shop__info-row:first-child .shop__info-val {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}

/* 店内写真 */
.shop__interior {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 2.1vw, 16px);
  width: min(100%, calc(100% - 8%));
  margin-inline: auto;
  margin-bottom: clamp(10px, 3.5vw, 20px);
  padding-inline: 0;
}

@media (min-width: 800px) {
  .shop__interior {
    width: min(1200px, calc(100% - 64px));
    gap: 20px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .shop__interior {
    width: min(1200px, calc(100% - 80px));
    gap: 24px;
    margin-bottom: 28px;
  }
}

.shop__interior-item {
  overflow: hidden;
  border-radius: 4px;
}

.shop__interior-item img {
  border-radius: 4px 4px 0 0; /* 上側のみ角丸 */
  width: 100%;
  aspect-ratio: 4 / 3;
  object-position: center top;
}

.shop__interior-caption {
  font-size: clamp(0.625rem, 2.7vw, 0.75rem);
  text-align: center;
  letter-spacing: 0.03em;
  color: #fff; /* 白文字に変更 */
  letter-spacing: 0.03em;
  background-color: #27266c;
  padding-block: clamp(6px, 1vw, 12px);
  border-radius: 0 0 4px 4px; /* 下側のみ角丸 */
}

@media (min-width: 800px) {
  .shop__interior-caption {
    font-size: 1rem;
    padding-block: 12px;
  }
}
@media (min-width: 1200px) {
  .shop__interior-caption {
    font-size: 1.2rem;
    padding-block: 16px;
  }
}

/* 安心バッジ */
.shop__badge {
  width: 96%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3.2vw, 20px);
  background-color: #f5f3ee;
  border-radius: 8px;
  padding: clamp(16px, 4.3vw, 24px);
  padding-inline: clamp(6px, 1.8vw, 24px);
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .shop__badge {
    width: min(1040px, calc(100% - 64px));
    padding: 24px 32px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .shop__badge {
    width: min(1120px, calc(100% - 80px));
    padding: 28px 40px;
    margin-bottom: 48px;
  }
}

.shop__badge-icon {
  flex-shrink: 0;
  width: clamp(40px, 10.6vw, 56px);
  height: clamp(40px, 10.6vw, 56px);
  border-radius: 50%;
  background-color: #27266c;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.6875rem, 2.9vw, 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .shop__badge-icon {
    width: 64px;
    height: 64px;
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .shop__badge-icon {
    width: 78px;
    height: 78px;
    font-size: 1.2rem;
  }
}

.shop__badge-txt {
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .shop__badge-txt {
    font-size: 1.1rem;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }
}

.shop__badge-accent {
  color: #c0392b;
  font-weight: 700;
}

/* CTAボタン2つ */
.shop__cta-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 2.1vw, 16px);
  margin-bottom: clamp(12px, 3.2vw, 20px);
}

.shop__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1vw, 8px);
  padding: clamp(12px, 3.2vw, 16px);
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.6875rem, 2.9vw, 0.875rem);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (min-width: 800px) {
  .shop__cta {
    padding: 8px 16px;
    font-size: 0.875rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .shop__cta--map:hover {
    background-color: #3f3b85;
    color: #fff;
    box-shadow: 0 6px 16px rgba(82, 79, 146, 0.2);
    transform: translateY(-2px);
    opacity: 1;
  }

  .shop__cta--tel:hover {
    background-color: #1a2a4a;
    border-color: #1a2a4a;
    color: #fff;
    box-shadow: 0 6px 16px rgba(26, 42, 74, 0.16);
    transform: translateY(-2px);
    opacity: 1;
  }

  .shop__cta:hover .shop__cta-arrow {
    transform: translateX(4px);
  }
}

.shop__cta:active {
  transform: scale(0.98);
}

.shop__cta--map {
  background-color: #524f92;
  color: #fff;
}

.shop__cta--tel {
  background-color: #fff;
  color: #1a2a4a;
  border: 1.5px solid #1a2a4a;
}

.shop__cta-arrow {
  font-size: 0.9em;
  transition: transform 0.25s ease;
}

/* 注釈テキスト */
.shop__note {
  font-size: clamp(0.625rem, 2.7vw, 0.75rem);
  color: #888;
  text-align: center;
  letter-spacing: 0.05em;
}

/* 準備中 */
/* .shop__coming {
  padding-block: clamp(32px, 8.5vw, 56px);
  text-align: center;
}

.shop__coming-txt {
  font-size: clamp(0.8125rem, 3.2vw, 1rem);
  color: #888;
  line-height: 1.8;
  letter-spacing: 0.05em;
} */

/* ==============================================
  contactセクション（お問い合わせ）
============================================== */

.contact {
  background-color: #fbfaf8;
}

/* 見出しエリア */
.contact__head {
  padding: clamp(20px, 10.6vw, 32px) 3% clamp(24px, 6.4vw, 40px);
  text-align: center;
}

@media (min-width: 800px) {
  .contact__head {
    padding-top: 48px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1200px) {
  .contact__head {
    padding-top: 52px;
    padding-bottom: 36px;
  }
}

.contact__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 12px);
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 3vw, 2rem);
  font-weight: 700;
  color: #23286a;
  letter-spacing: 0.15em;
  margin-bottom: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 800px) {
  .contact__label {
    font-size: 2rem;
    gap: 16px;
    margin-bottom: 28px;
  }
}

.contact__label-diamond {
  font-size: 0.8em;
  color: #23286a;
}

.contact__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 7.5vw, 3rem);
  color: #23286a;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 800px) {
  .contact__catch {
    font-size: clamp(3rem, 4.6vw, 4.25rem);
    line-height: 1.45;
    margin-bottom: 28px;
  }
}

@media (min-width: 1200px) {
  .contact__catch {
    font-size: 4.5rem;
  }
}

.contact__catch-serif {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1em;
}

.contact__catch-accent {
  color: #c0392b;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1em;
}

.contact__desc {
  font-size: clamp(0.8125rem, 3.2vw, 1.1rem);
  color: #333;
  line-height: 2;
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .contact__desc {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }

  .contact__desc-br {
    display: none;
  }
}

/* バッジ2つ */
.contact__badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(8px, 2.1vw, 16px);
  margin-bottom: clamp(16px, 4.3vw, 24px);
}

@media (min-width: 800px) {
  .contact__badges {
    gap: 20px;
    margin-bottom: 32px;
  }
}

.contact__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.6vw, 10px);
  padding-block: clamp(10px, 2.7vw, 14px);
  padding-inline: clamp(18px, 4.8vw, 28px);
  border: 1.5px solid #23286a;
  border-radius: 9999px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #23286a;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .contact__badge {
    min-width: 220px;
    min-height: 56px;
    font-size: 1.2rem;
  }
}

.contact__badge-icon {
  width: clamp(24px, 3.2vw, 32px);
  height: auto;
  flex-shrink: 0;
  display: block;
}

@media (min-width: 800px) {
  .contact__badge-icon {
    width: 36px;
  }
}

/* フォームボタン */
.contact__btn-form,
.contact__btn-tel {
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  width: 100%;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

@media (min-width: 800px) {
  .contact__btn-form,
  .contact__btn-tel {
    grid-template-columns: 40px 1fr 40px;
  }
}

.contact__form-wrap {
  width: min(100%, 920px);
  margin-inline: auto;
  margin-bottom: clamp(10px, 2.7vw, 16px);
}

@media (min-width: 800px) {
  .contact__form-wrap {
    width: min(920px, calc(100% - 64px));
    padding-inline: 0;
    margin-bottom: 18px;
  }
}

@media (min-width: 1200px) {
  .contact__form-wrap {
    width: min(920px, calc(100% - 80px));
    margin-bottom: 20px;
  }
}

.contact__btn-form {
  padding-block: clamp(14px, 3.7vw, 20px);
  padding-inline: clamp(16px, 4.3vw, 24px);
  background-color: #fff;
  border: 1.5px solid #23286a;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 3.7vw, 1.3rem);
  color: #23286a;
  letter-spacing: 0.08em;
}

@media (min-width: 800px) {
  .contact__btn-form {
    min-height: 64px;
    font-size: 1.25rem;
  }
}

.contact__btn-center {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.1vw, 12px);
  min-width: 0;
}

@media (min-width: 800px) {
  .contact__btn-center {
    gap: 16px;
  }
}

.contact__btn-center i {
  width: 1.2em;
  text-align: center;
  flex-shrink: 0;
}

/* 電話ボタン */
.contact__tel-wrap {
  width: min(100%, 920px);
  margin-inline: auto;
  margin-bottom: clamp(20px, 5.3vw, 32px);
}

@media (min-width: 800px) {
  .contact__tel-wrap {
    width: min(920px, calc(100% - 64px));
    padding-inline: 0;
    margin-bottom: 40px;
  }
}

@media (min-width: 1200px) {
  .contact__tel-wrap {
    width: min(920px, calc(100% - 80px));
    margin-bottom: 48px;
  }
}

.contact__btn-tel {
  padding-block: clamp(16px, 4.3vw, 24px);
  padding-inline: clamp(16px, 4.3vw, 24px);
  background-color: #23286a;
  border: 1.5px solid #23286a;
  border-radius: 4px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  color: #fff;
  letter-spacing: 0.08em;
}

@media (min-width: 800px) {
  .contact__btn-tel {
    min-height: 76px;
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .contact__btn-tel {
    font-size: 1.875rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact__btn-form:hover {
    background-color: #23286a;
    border-color: #23286a;
    color: #fff;
    box-shadow: 0 8px 20px rgba(35, 40, 106, 0.18);
    transform: translateY(-2px);
    opacity: 1;
  }

  .contact__btn-tel:hover {
    background-color: #fff;
    border-color: #23286a;
    color: #23286a;
    box-shadow: 0 8px 20px rgba(35, 40, 106, 0.18);
    transform: translateY(-2px);
    opacity: 1;
  }

  .contact__btn-form:hover .contact__btn-arrow,
  .contact__btn-tel:hover .contact__btn-arrow {
    transform: translateX(4px);
  }
}

.contact__btn-form:active,
.contact__btn-tel:active {
  transform: scale(0.98);
}

.contact__btn-arrow {
  grid-column: 3;
  justify-self: end;
  font-size: 1.1em;
  line-height: 1;
  transition: transform 0.25s ease;
}

@media (min-width: 800px) {
  .contact__btn-arrow {
    font-size: 1.25em;
  }
}

/* 受付情報 */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 920px);
  margin-inline: auto;
  padding-bottom: clamp(40px, 10.6vw, 64px);
}

@media (min-width: 800px) {
  .contact__info {
    width: min(920px, calc(100% - 64px));
    padding-inline: 0;
    padding-bottom: 72px;
  }
}

@media (min-width: 1200px) {
  .contact__info {
    width: min(920px, calc(100% - 80px));
    padding-bottom: 80px;
  }
}

.contact__info-row {
  display: grid;
  grid-template-columns: clamp(96px, 26vw, 128px) 1px 1fr;
  align-items: center;
  column-gap: clamp(10px, 2.7vw, 18px);
  padding-block: clamp(12px, 3.2vw, 18px);
  border-bottom: 1px dashed #ccc;
}

@media (min-width: 800px) {
  .contact__info-row {
    grid-template-columns: 160px 1px 280px;
    justify-content: center;
    column-gap: 24px;
    padding-block: 20px;
  }
}

@media (min-width: 1200px) {
  .contact__info-row {
    grid-template-columns: 180px 1px 300px;
    column-gap: 28px;
  }
}

.contact__info-row:first-child {
  border-top: 1px dashed #ccc;
}

.contact__info-label {
  display: grid;
  grid-template-columns: 1.2em 1fr;
  align-items: center;
  column-gap: 6px;
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #1a2a4a;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (min-width: 800px) {
  .contact__info-label {
    font-size: 1.2rem;
    column-gap: 10px;
  }
}

.contact__info-label i {
  color: #514da4;
  width: 1.2em;
  text-align: center;
}

.contact__info-divider {
  width: 1px;
  height: 1.2em;
  background-color: #ccc;
}

@media (min-width: 800px) {
  .contact__info-divider {
    height: 1.4em;
  }
}

.contact__info-val {
  font-size: clamp(0.75rem, 3vw, 0.9375rem);
  color: #333;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media (min-width: 800px) {
  .contact__info-val {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.contact__info-holiday {
  color: #c0392b;
  font-weight: 700;
}

/* ==============================================
  フッターセクション
============================================== */

footer {
  margin-top: 0;
  padding: 0;
}

.footer-wrap {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 40px 16px 32px;
  text-align: center;
}

@media (min-width: 800px) {
  .footer-wrap {
    padding: 72px 24px 48px;
  }
}

@media (min-width: 1200px) {
  .footer-wrap {
    padding: 80px 24px 56px;
  }
}

.footer-logo {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  color: #333;
  font-weight: 900;
  width: min(360px, 85vw);
  margin: 0 auto;
}

@media (min-width: 800px) {
  .footer-logo {
    width: 440px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .footer-logo {
    width: 480px;
    margin-bottom: 20px;
  }
}

/* レスポンシブ */
@media (max-width: 480px) {
  .footer-logo {
    font-size: 22px;
  }
  .footer-nav a {
    font-size: 12px;
  }
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

@media (min-width: 800px) {
  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
  }
}

.footer-nav a {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  transition:
    color 0.25s ease,
    text-decoration-color 0.25s ease;
}

@media (min-width: 800px) {
  .footer-nav a {
    font-size: 14px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav a:hover {
    color: #1a2a4a;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.footer-trust {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #555;
}

@media (min-width: 800px) {
  .footer-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.footer-license {
  margin-bottom: 10px;
}

@media (min-width: 800px) {
  .footer-license {
    margin-bottom: 0;
  }
}

.footer-pmark {
  width: 100px;
  height: auto;
  text-align: center;
  margin: 0 auto 20px;
}

@media (min-width: 800px) {
  .footer-pmark {
    width: 96px;
    margin-bottom: 24px;
  }
}

.footer-pmark p {
  font-size: 11px;
  margin-top: 6px;
  margin-bottom: 0;
  color: #555;
}

.footer-copy {
  font-size: 11px;
  color: #aaa;
  margin: 0;
}

.page-top {
  position: fixed;
  right: 12px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
}

@media (min-width: 768px) {
  .page-top {
    right: 24px;
    bottom: 40px;
    width: 44px;
    height: 44px;
  }
}

/* 1400px以上では右側に少し余白を持たせる */
@media (min-width: 1400px) {
  .page-top {
    right: calc(5% + 24px);
  }
}

.page-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top svg {
  width: 24px;
  height: 24px;
  stroke: #1a2a4a;
}

@media (min-width: 768px) {
  .page-top svg {
    width: 30px;
    height: 30px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .page-top.show:hover {
    opacity: 0.85;
    transform: translateY(-2px);
  }
}

.page-top.show:active {
  transform: scale(0.96);
}
