@charset "UTF-8";

/* ========================================
   Variables
======================================== */
:root {
  --breakpoint: 798px;
  --max-width-container: 2000px; /* .wrapper … 固定 */
  --max-width-inner: 1424px;     /* .wrap … Figma インナー幅 */

  --color-black: #000000;
  --bg-black-image: url("../img/bg_black.webp");
  --bg-black-size: 100px 100px;
  --color-dark: #1a1a1a;
  --color-panel-dark: #171717;
  --color-card-dark: #131312;
  --color-footer: #212121;
  --color-gold: #fccd73;
  --color-gold-deep: #968556;
  --color-beige: #a49681;
  --color-beige-light: #a0917a;
  --color-text: #333333;
  --color-white: #ffffff;
  --color-bg-light: #f1f2f4;
  --color-bg-light2: #f2f2f3;
  --color-line-green: #00630a;

  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-cinzel: "Cinzel", "Noto Sans JP", sans-serif;
  --font-playfair: "Playfair Display", serif;

  --page-fv-header-offset: 110px; /* fixed ヘッダー分（scroll-margin-top と揃える） */
}

/* ========================================
   黒テクスチャ背景
======================================== */
.cta_band,
#plans,
.sub_breadcrumb--texture {
  background-color: var(--color-black);
  background-image: var(--bg-black-image);
  background-repeat: repeat;
  background-size: var(--bg-black-size);
}

/* ========================================
   Reset / Base
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

html.js-ready {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {

  html.js-ready {
    scroll-behavior: auto;
  }
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-black);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, ul, figure {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
   Layout
======================================== */
.wrapper {
  max-width: var(--max-width-container);
  margin-inline: auto;
  position: relative;
  overflow-x: clip;
}

.wrap {
  width: 100%;
  max-width: var(--max-width-inner);
  margin-inline: auto;
}

/* ========================================
   Common components
======================================== */

/* 改行ユーティリティ（480px以下のみ改行） */
.br-480 {
  display: none;
}

/* 改行ユーティリティ（480px以下で改行を無効） */
.br-480-off {
  display: block;
}

/* 改行ユーティリティ（1000px以下で改行を無効） */
.br-1000-off {
  display: block;
}

@media screen and (max-width: 1000px) {

  .br-1000-off {
    display: none;
  }
}

@media screen and (max-width: 480px) {

  .br-480 {
    display: block;
  }

  .br-480-off {
    display: none;
  }
}

/* スクロールアニメーション */
@media (prefers-reduced-motion: no-preference) {

  html.js-ready .scroll-in:not(.is-visible) {
    opacity: 0;
    transform: translateY(32px);
  }

  html.js-ready .scroll-in--fade:not(.is-visible) {
    transform: none;
  }

  .scroll-in {
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .scroll-in.is-visible {
    opacity: 1;
    transform: none;
  }

  .scroll-in.scroll-in--instant {
    transition: none;
  }

  .scroll-in--delay-1 {
    transition-delay: 0.1s;
  }

  .scroll-in--delay-2 {
    transition-delay: 0.2s;
  }

  .scroll-in--delay-3 {
    transition-delay: 0.3s;
  }

  .scroll-in--delay-4 {
    transition-delay: 0.4s;
  }

  .archives_card.scroll-in:nth-child(1) {
    transition-delay: 0.1s;
  }

  .archives_card.scroll-in:nth-child(2) {
    transition-delay: 0.2s;
  }

  .archives_card.scroll-in:nth-child(3) {
    transition-delay: 0.3s;
  }

  .archives_card.scroll-in:nth-child(n+4) {
    transition-delay: 0.4s;
  }
}

@media screen and (max-width: 798px) and (prefers-reduced-motion: no-preference) {

  html.js-ready .scroll-in:not(.is-visible) {
    transform: translateY(24px);
  }
}

/* セクション見出し */
.sec_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.sec_title_en {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.sec_title_ja {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 50px;
  letter-spacing: 0.05em;
}

.sec_title_ja--serif {
  font-weight: 700;
  letter-spacing: 0;
}

.sec_title_ja--sans {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
}

.sec_title_sub {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 25px;
}

.sec_title--dark {
  color: var(--color-text);
}

.sec_title--light {
  color: var(--color-white);
}

.sec_title--left {
  align-items: flex-start;
  text-align: left;
  gap: 4px;
}

/* CTAボタン（LINE / フォーム / 電話） */
.btn_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(6px, 0.8vw, 8px);
  box-sizing: border-box;
  width: 100%;
  max-width: 350px;
  min-height: 87px;
  height: auto;
  padding: 16px clamp(10px, 1.5vw, 12px);
  font-family: var(--font-cinzel);
  font-weight: 700;
  font-size: clamp(14px, 1.4vw, 19px);
  justify-self: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {

  .btn_cta {
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }
}

.btn_cta img {
  flex-shrink: 0;
  width: clamp(22px, 3.5vw, 44px);
  height: auto;
}

.btn_cta span {
  white-space: nowrap;
}

.btn_cta--line {
  background: var(--color-line-green);
  color: var(--color-white);
}

.btn_cta--form {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-footer);
}

.btn_cta--tel {
  background: rgba(33, 33, 33, 0.9);
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
}

@media (hover: hover) {

  .btn_cta--line:is(:hover, :focus-visible) {
    background-color: #007a0c;
    box-shadow: 0 4px 16px rgba(0, 99, 10, 0.35);
  }

  .btn_cta--form:is(:hover, :focus-visible) {
    background-color: var(--color-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }

  .btn_cta--tel:is(:hover, :focus-visible) {
    background-color: rgba(45, 45, 45, 0.95);
    border-color: #fdd88a;
    color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.2);
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {

  .btn_cta:is(:hover, :focus-visible) {
    transform: translateY(-2px);
  }
}

/* ピル型ボタン（枠線） */
.btn_pill {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding: 22px 56px;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn_pill--gold {
  background: #f1d07b;
  color: #040405;
}

.btn_pill--border {
  border: 1px solid #f1d07b;
  background: rgba(0, 0, 0, 0.5);
}

.btn_pill_arrow {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 9px;
  background-color: currentColor;
  -webkit-mask-image: url("../img/icon_arrow.svg");
  mask-image: url("../img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: transform 0.3s ease;
}

@media (hover: hover) {

  .btn_pill--gold:is(:hover, :focus-visible) {
    background-color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.35);
  }

  .btn_pill--border:is(:hover, :focus-visible) {
    background-color: rgba(0, 0, 0, 0.65);
    border-color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.15);
  }

  .btn_pill:is(:hover, :focus-visible) .btn_pill_arrow {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .btn_pill_arrow {
    transition: none;
  }
}

/* CTAバンド（無料査定） */
.cta_band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  padding: 50px 20px;
}

.cta_band_title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 35px;
  color: var(--color-white);
  text-align: center;
}

.cta_band_btns {
  --cta-btns-gap: clamp(12px, 2.5vw, 33px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--cta-btns-gap);
  width: 100%;
  max-width: calc(350px * 3 + var(--cta-btns-gap) * 2);
}

.cta_band--last {
  padding: 50px 20px 100px;
}

.cta_band_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta_band_title--large {
  font-size: 45px;
}

.cta_band_desc {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--color-white);
  text-align: center;
}

@media screen and (max-width: 1000px) {

  .cta_band_btns {
    --cta-btns-gap: 16px;
    grid-template-columns: 1fr;
    max-width: 350px;
  }
}

/* ========================================
   Header
======================================== */
.site_header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: none;
  padding: 30px max(20px, calc((100% - 1580px) / 2)) 16px;
}

.site_header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  opacity: var(--header-bg-opacity, 0);
  pointer-events: none;
}

.site_header_logo {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.site_header_logo a {
  display: flex;
  line-height: 0;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {

  .site_header_logo a:is(:hover, :focus-visible) {
    opacity: 0.75;
  }
}

.site_header_right {
  display: flex;
  flex-shrink: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  min-width: 0;
}

.site_header_menu_content {
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 0;
}

.site_header_nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
}

.site_header_nav a {
  position: relative;
  display: inline-block;
  font-family: var(--font-cinzel);
  font-weight: 700;
  font-size: 15px;
  line-height: 33px;
  letter-spacing: -0.02em;
  color: #e9e9e9;
}

.site_header_nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {

  .site_header_nav a:is(:hover, :focus-visible)::after {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .site_header_nav a::after {
    transition: none;
  }
}

.site_header_cta {
  --header-cta-height: 66px;
  display: flex;
  flex-shrink: 1;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.site_header_cta .header_tel,
.site_header_cta .header_btn {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 220px;
  min-width: 0;
  height: var(--header-cta-height);
  min-height: var(--header-cta-height);
  padding: 0 10px;
}

.site_header_cta .header_tel {
  justify-content: center;
}

.site_header_cta .header_tel_hours,
.site_header_cta .header_btn_sub {
  font-size: clamp(9px, 0.65vw, 11px);
  line-height: 1.2;
  white-space: nowrap;
}

.header_tel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 30px;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.header_tel_label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 10px;
}

.header_tel_number {
  font-weight: 500;
  font-size: 19px;
  line-height: 22px;
  letter-spacing: -0.02em;
}

.header_tel_hours {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
}

.header_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  padding: 0 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header_btn--form {
  background: var(--color-gold);
  color: var(--color-text);
}

.header_btn--line {
  background: var(--color-line-green);
  color: var(--color-white);
}

.header_btn_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header_btn_text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
}

.header_btn_sub {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 11px;
}

@media (hover: hover) {

  .header_tel:is(:hover, :focus-visible) {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.15);
  }

  .header_btn--line:is(:hover, :focus-visible) {
    background-color: #007a0c;
    box-shadow: 0 4px 16px rgba(0, 99, 10, 0.35);
  }

  .header_btn--form:is(:hover, :focus-visible) {
    background-color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.35);
  }
}

.site_header_menu_btn {
  display: none;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site_header_menu_btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

.site_header_menu_btn_line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site_header.is-open .site_header_menu_btn_line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

.site_header.is-open .site_header_menu_btn_line:nth-child(2) {
  opacity: 0;
}

.site_header.is-open .site_header_menu_btn_line:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}

.site_header_drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site_header.is-open {
  z-index: 110;
}

body.is-menu-open .site_header_drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {

  .site_header_drawer,
  .site_header_nav {
    transition: none;
  }

  body.is-menu-open .site_header_menu_content {
    animation: none;
  }
}

#archives,
#boutique,
#salon_store,
#archives_page,
#plans {
  scroll-margin-top: 110px;
}

/* ========================================
   Header — 中幅（〜1400px）
======================================== */
@media screen and (max-width: 1400px) {

  .site_header {
    padding: 30px 20px 16px;
  }

  .site_header_right {
    gap: 24px;
  }

  .site_header_menu_content {
    gap: 24px;
  }

  .site_header_nav ul {
    gap: 20px;
  }

  .site_header_nav a {
    font-size: 14px;
    line-height: 28px;
  }

  .site_header_cta {
    gap: 8px;
    --header-cta-height: 60px;
  }

  .header_tel {
    gap: 12px;
    padding: 0 16px;
  }

  .header_tel_number {
    font-size: 17px;
  }

  .header_btn {
    gap: 12px;
    padding: 0 28px;
  }

  .header_btn_text {
    font-size: 15px;
  }
}

/* ========================================
   Header — タブレット（〜1200px）
======================================== */
@media screen and (max-width: 1200px) {

  .site_header {
    padding: 30px 30px 16px;
  }

  .site_header_right {
    gap: 16px;
  }

  .site_header_menu_content {
    gap: 16px;
  }

  .site_header_nav {
    position: fixed;
    top: 112px;
    right: 0;
    left: 0;
    z-index: 101;
    display: flex;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition:
      opacity 0.55s ease,
      visibility 0s linear 0s,
      transform 0.55s ease;
  }

  .site_header_nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
  }

  .site_header_nav li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
  }

  .site_header_nav li:last-child {
    border-bottom: none;
  }

  .site_header_nav a {
    display: inline-block;
    width: auto;
    max-width: 100%;
    padding: 12px 0;
    font-size: 28px;
    line-height: 1.5;
    text-align: center;
  }

  .site_header_nav a::after {
    bottom: 8px;
  }

  body.is-menu-open .site_header_nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition:
      opacity 0.55s ease 0.1s,
      visibility 0s linear 0s,
      transform 0.55s ease 0.1s;
  }

  .site_header_cta {
    gap: 6px;
    --header-cta-height: 60px;
  }

  .site_header_cta .header_tel {
    gap: 10px;
  }

  .site_header_cta .header_tel_number {
    font-size: 16px;
    line-height: 1.2;
  }

  .site_header_cta .header_tel_label {
    font-size: 9px;
    line-height: 1.2;
  }

  .site_header_cta .header_btn {
    gap: 8px;
  }

  .site_header_cta .header_btn_text {
    font-size: 14px;
    line-height: 1.2;
  }

  .site_header_cta .header_btn img,
  .site_header_cta .header_tel img {
    width: 20px;
    height: auto;
  }

  .site_header_logo,
  .site_header_right {
    position: relative;
    z-index: 110;
  }

  .site_header_menu_btn {
    display: flex;
    position: relative;
    z-index: 102;
  }

  .site_header_drawer {
    display: block;
  }
}

/* ========================================
   Header / FV — 狭幅（〜1000px）
======================================== */
@media screen and (max-width: 1000px) {

  .site_header_cta {
    display: none;
  }

  .site_header_menu_content {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  body.is-menu-open .site_header_menu_content {
    position: fixed;
    top: 112px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    box-sizing: border-box;
    padding: 0 30px 32px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    animation: site_header_menu_in 0.55s ease 0.1s both;
  }

  @keyframes site_header_menu_in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  body.is-menu-open .site_header_nav,
  body.is-menu-open .site_header_cta {
    pointer-events: auto;
  }

  body.is-menu-open .site_header_nav {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  body.is-menu-open .site_header_cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 340px;
  }

  body.is-menu-open .site_header_cta .header_tel {
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }

  body.is-menu-open .site_header_cta .header_tel_number {
    font-size: 17px;
    line-height: 20px;
  }

  body.is-menu-open .site_header_cta .header_btn {
    gap: 12px;
    width: 100%;
    padding: 0 24px;
  }

  body.is-menu-open .site_header_cta .header_btn_text {
    font-size: 15px;
  }

  .site_header_logo img {
    width: 175px;
    height: auto;
  }
}

/* ========================================
   Page FV（下層）
======================================== */
.page_fv {
  position: relative;
  display: grid;
  grid-template-rows: 1fr;
  box-sizing: border-box;
  overflow: hidden;
  --page-fv-text-gap: clamp(50px, 5vw, 74px);
}

.page_fv_visual,
.page_fv_overlay,
.page_fv_inner {
  grid-area: 1 / 1;
}

.page_fv_visual {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page_fv_overlay {
  width: 100%;
  height: 100%;
  min-height: 100%;
  z-index: 1;
  pointer-events: none;
}

.page_fv_inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-self: start;
  justify-self: center;
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--max-width-inner) + 40px);
  margin-inline: auto;
  margin-top: var(--page-fv-header-offset);
  padding-inline: 20px;
  padding-top: var(--page-fv-text-gap);
  padding-bottom: var(--page-fv-text-gap);
}

.page_fv_en {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-beige);
}

.page_fv_title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 65px;
  line-height: 1.2;
  color: var(--color-white);
}

.page_fv_desc {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: var(--color-white);
}

@media screen and (max-width: 798px) {

  :root {
    --page-fv-header-offset: 88px;
  }

  .page_fv_en {
    font-size: 15px;
  }

  .page_fv_title {
    font-size: 30px;
  }

  .page_fv_desc {
    font-size: 15px;
  }
}

/* ========================================
   Common components — 下層パンくず
======================================== */
.sub_breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 20px;
}

.sub_breadcrumb--flat {
  background-color: #090908;
  background-image: none;
}

.sub_breadcrumb_list {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: var(--max-width-inner);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.sub_breadcrumb_list a {
  color: #cecece;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {

  .sub_breadcrumb_list a:is(:hover, :focus-visible) {
    opacity: 0.6;
  }
}

.sub_breadcrumb_list li:not(:first-child)::before {
  content: "＞";
  margin-right: 10px;
  color: #cecece;
}

.sub_breadcrumb_list li[aria-current="page"] {
  color: var(--color-gold);
}

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

/* ========================================
   Common components — Store Info
======================================== */
.store_info {
  display: flex;
  justify-content: center;
  padding: 70px 20px;
  background: #eae9e7;
}

.store_info_inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
  max-width: 1280px;
}

.store_info_inner--page-width {
  max-width: var(--max-width-inner);
}

.store_info_inner--page-width .store_info_map {
  max-width: calc(1280px - 521px - 30px);
}

.store_info_body {
  display: flex;
  flex-direction: column;
  flex: 0 0 521px;
  gap: 20px;
  box-sizing: border-box;
  width: 521px;
  padding: 0 0 0 30px;
  border-left: 1px solid var(--color-beige);
}

.store_info_inner--reverse .store_info_body {
  padding: 0 30px 0 0;
  border-left: none;
  border-right: 1px solid var(--color-beige);
}

.store_info_list {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  margin: 0;
}

.store_info_list dt {
  grid-column: 1;
  padding-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
}

.store_info_list dd {
  grid-column: 2;
  margin: 0;
  padding-bottom: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
}

.store_info_address {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.67;
  color: var(--color-text);
}

.store_info_brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.store_info_title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 55px;
  line-height: 1.1;
  color: var(--color-text);
}

.store_info_brand_en {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--color-beige);
}

.store_info_map {
  flex: 1 1 0;
  align-self: stretch;
  display: block;
  width: 100%;
  min-width: 0;
  border: 0;
}

@media screen and (max-width: 1000px) {

  .store_info_inner {
    flex-direction: column;
    align-items: stretch;
  }

  .store_info_body {
    flex: none;
    width: auto;
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid var(--color-beige);
  }

  .store_info_inner--reverse .store_info_body {
    padding: 0 0 24px;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid var(--color-beige);
  }

  .store_info_map {
    flex: none;
    align-self: auto;
    width: 100%;
    max-width: none;
    aspect-ratio: 671 / 414;
  }
}

@media screen and (max-width: 798px) {

  .sub_breadcrumb {
    padding: 16px 20px;
  }

  .store_info {
    padding: 50px 20px;
  }

  .store_info_inner {
    gap: 20px;
  }

  .store_info_body {
    padding-top: 20px;
  }

  .store_info_inner--reverse .store_info_body {
    padding-top: 0;
    padding-bottom: 20px;
  }

  .store_info_title {
    font-size: 24px;
  }

  .store_info_address {
    font-size: 16px;
  }
}

/* ========================================
   FV
======================================== */
#fv {
  position: relative;
}

#fv img,
#fv picture {
  width: 100%;
}

#fv .fv_visual--pc {
  display: block;
}

#fv .fv_visual--sp-top,
#fv .fv_visual--sp-bottom {
  display: none;
}

/* ========================================
   FV CTAボタン
======================================== */
.fv_cta {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fv_cta .btn_pill {
  box-sizing: border-box;
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: auto;
}

.fv_cta_btn--salon {
  color: var(--color-gold);
}

/* PC — 1枚画像＋オーバーレイボタン */
@media screen and (min-width: 1001px) {

  #fv .fv_visual--sp-top,
  #fv .fv_visual--sp-bottom {
    display: none;
  }

  .fv_cta .btn_pill {
    position: absolute;
    width: 21.2%;
    gap: clamp(8px, 1.06vw, 17px);
    padding: clamp(14px, 1.39vw, 22px) clamp(12px, 3.54vw, 56px);
    font-size: clamp(13px, 1.37vw, 21.57px);
  }

  .fv_cta_btn--assess {
    top: 66.85%;
    left: 5.76%;
  }

  .fv_cta_btn--salon {
    top: 66.85%;
    left: 28.3%;
    gap: clamp(7px, 0.71vw, 11px);
  }
}

/* SP — 上部画像 / ボタン / 下部画像 */
@media screen and (max-width: 1000px) {

  #fv {
    background-color: var(--color-black);
    background-image: var(--bg-black-image);
    background-repeat: repeat;
    background-size: var(--bg-black-size);
  }

  #fv .fv_visual--pc {
    display: none;
  }

  #fv .fv_visual--sp-top,
  #fv .fv_visual--sp-bottom {
    display: block;
  }

  .fv_cta {
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(12px, 3.82vw, 30px);
    width: 90.84%;
    margin: clamp(16px, 4.2vw, 33px) auto 0;
    pointer-events: auto;
  }

  .fv_cta .btn_pill {
    position: static;
    gap: 17px;
    width: 100%;
    padding: 22px 56px;
    font-size: 21.57px;
  }

  .fv_cta_btn--salon {
    gap: 11px;
  }
}

@media screen and (max-width: 798px) {

  .fv_cta .btn_pill {
    padding: 22px clamp(20px, 5vw, 56px);
  }
}

@media screen and (max-width: 480px) {

  .fv_cta {
    gap: 12px;
  }

  .fv_cta .btn_pill {
    gap: 12px;
    padding: 16px 20px;
    font-size: 17px;
  }

  .fv_cta_btn--salon {
    gap: 8px;
  }

  .fv_cta .btn_pill_arrow {
    width: 14px;
    height: 8px;
  }
}

/* ========================================
   選ばれる3つの理由
======================================== */
#reason {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 50px 20px;
  background: var(--color-bg-light);
}

.reason_cards {
  --reason-cards-gap: 43px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--reason-cards-gap);
  width: 100%;
  max-width: 1358px;
}

.reason_card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc((100% - var(--reason-cards-gap) * 2) / 3);
  padding: 35px 52px;
  background: var(--color-white);
  box-shadow: 0 0 18.38px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1400px) {

  .reason_cards {
    --reason-cards-gap: 20px;
  }

  .reason_card {
    padding: 35px 20px;
  }
}

@media screen and (max-width: 1080px) {

  .reason_cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .reason_card {
    width: 100%;
    padding: 20px;
  }
}

.reason_card_icon {
  width: 54px;
  height: 54px;
  object-fit: contain;
  object-position: left bottom;
}

.reason_card_body {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.reason_card_body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 49px;
  letter-spacing: 0.05em;
}

.reason_card_body p {
  font-size: 18px;
  line-height: 34.6px;
  letter-spacing: 0.15em;
}

.reason_card_tags {
  display: flex;
  flex-direction: column;
  margin-top: 17px;
}

.reason_card_tags li {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.15em;
  color: var(--color-beige-light);
}

.reason_card_tags li::before {
  content: "・";
}

/* ========================================
   Market Trends（相場急騰）
======================================== */
#market {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  padding: 50px 20px 70px;
  background-image: url(../img/bg_market.webp);
  background-size: cover;
  background-position: center;
}

#market .sec_title_ja {
  font-weight: 700;
  line-height: 69px;
  letter-spacing: 0.13em;
}

.market_panel {
  --market-panel-gap: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--market-panel-gap);
  width: 100%;
  max-width: 1273px;
  padding: 50px 70px;
  background: var(--color-panel-dark);
}

.market_graph,
.market_photo {
  display: block;
  width: calc((100% - var(--market-panel-gap)) / 2);
  height: auto;
}

@media screen and (max-width: 1400px) {

  .market_panel {
    --market-panel-gap: 20px;
    padding: 50px 20px;
  }
}

.market_text {
  width: 100%;
  max-width: 1309px;
  font-size: 26px;
  line-height: 52px;
  letter-spacing: 0.07em;
  color: var(--color-white);
}

.market_text em {
  font-style: normal;
  font-weight: 500;
  color: var(--color-gold);
}

.market_note {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: #aaaaaa;
  text-align: center;
}

/* ========================================
   Archives（最新買取実績）
======================================== */
#archives {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 64px 20px;
  background: var(--color-bg-light2);
}

.archives_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1449px;
}

#archives .sec_title_en {
  color: var(--color-beige);
}

.view_all {
  display: flex;
  align-items: center;
  gap: 21px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.26em;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.3s ease;
}

.view_all .btn_pill_arrow {
  transition: transform 0.3s ease;
}

@media (hover: hover) {

  .view_all:is(:hover, :focus-visible) {
    color: var(--color-gold-deep);
  }

  .view_all:is(:hover, :focus-visible) .btn_pill_arrow {
    transform: translateX(4px);
  }
}

.archives_cards {
  --archives-cards-gap: 60px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--archives-cards-gap);
  width: 100%;
  max-width: 1449px;
}

.archives_card {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 25px;
  width: calc((100% - var(--archives-cards-gap) * 2) / 3);
  min-width: 0;
  padding: 47px 47px 19px;
  background: #fcfcfc;
  box-shadow: 0 2.77px 11.77px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1400px) {

  .archives_cards {
    --archives-cards-gap: 20px;
  }

  .archives_card {
    padding: 35px 20px 19px;
  }
}

.archives_card img {
  display: block;
  width: 100%;
}

.archives_card_info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  min-width: 0;
  padding: 16px 0;
}

.archives_card_date {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #414141;
}

.archives_card_info h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.16em;
  color: #414141;
}

.archives_card_price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.archives_card_price .label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #797979;
}

.archives_card_price .price {
  font-family: var(--font-playfair);
  font-weight: 700;
  font-size: 39px;
  color: var(--color-gold-deep);
}

@media screen and (max-width: 1000px) {

  .archives_cards {
    --archives-cards-gap: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: var(--archives-cards-gap);
  }

  .archives_card {
    width: 100%;
    max-width: none;
  }
}

/* ========================================
   Boutique（サロン案内）
======================================== */
#boutique,
#salon_store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 70px 20px;
  background: var(--color-dark);
}

#boutique .sec_title {
  align-self: center;
  width: 100%;
  max-width: var(--max-width-inner);
}

#salon_store .sec_title {
  align-self: flex-start;
  width: 100%;
  max-width: var(--max-width-inner);
}

.boutique_gallery_block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: var(--max-width-inner);
}

.boutique_main {
  --boutique-main-gap: 40px;
  display: flex;
  align-items: stretch;
  gap: var(--boutique-main-gap);
  width: 100%;
  max-width: var(--max-width-inner);
}

.boutique_main_photo {
  flex: 0 1 calc((100% - var(--boutique-main-gap)) * 572 / 1384);
  width: calc((100% - var(--boutique-main-gap)) * 572 / 1384);
  max-width: 572px;
  min-width: 0;
  height: auto;
}

.boutique_main_body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 0;
  min-width: 0;
  gap: 24px;
}

.boutique_main_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.boutique_main_en {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-beige);
}

.boutique_main_text h3,
.boutique_main_text .boutique_main_lead {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: min(3vw, 45px);
  line-height: 1.4;
  letter-spacing: 0.16em;
  color: var(--color-white);
}

.boutique_main_desc {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: var(--color-white);
}

.boutique_main .btn_pill {
  align-self: flex-end;
  width: 100%;
  max-width: 468px;
}

@media screen and (max-width: 1400px) {

  .boutique_main {
    --boutique-main-gap: 20px;
  }
}

@media screen and (max-width: 1000px) {

  .boutique_main {
    flex-direction: column;
    gap: 24px;
  }

  .boutique_main_photo {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .boutique_main_text h3,
  .boutique_main_text .boutique_main_lead {
    font-size: 28px;
  }

  .boutique_main_desc {
    letter-spacing: 0.08em;
  }
}

.boutique_gallery {
  --boutique-gallery-gap: 70px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--boutique-gallery-gap);
  width: 100%;
  max-width: var(--max-width-inner);
}

.boutique_gallery img {
  display: block;
  width: calc((100% - var(--boutique-gallery-gap) * 2) / 3);
  height: auto;
}

@media screen and (max-width: 1450px) {

  .boutique_gallery {
    --boutique-gallery-gap: 20px;
  }
}

@media screen and (max-width: 1000px) {

  .boutique_gallery img.boutique_gallery_item--pc {
    display: none;
  }

  .boutique_gallery img:not(.boutique_gallery_item--pc) {
    width: calc((100% - var(--boutique-gallery-gap)) / 2);
  }
}

@media screen and (max-width: 798px) {

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

  .boutique_gallery img:not(.boutique_gallery_item--pc) {
    width: 100%;
  }
}

/* ========================================
   選べる3つの査定方法
======================================== */
#plans {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 60px 20px;
}

#plans .sec_title_ja .num {
  font-family: var(--font-serif);
  font-size: clamp(39px, 6.5vw, 65px);
  color: var(--color-gold);
}

.plan_cards {
  --plan-cards-gap: 44px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--plan-cards-gap);
  width: 100%;
  max-width: 1396px;
  padding: 29px 0;
}

.plan_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 28px;
  width: calc((100% - var(--plan-cards-gap) * 2) / 3);
  min-width: 0;
  padding: 29px;
  background: var(--color-card-dark);
  border: 1.45px solid var(--color-beige);
}

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

.plan_card_num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 33px;
  color: var(--color-gold);
}

.plan_card_head h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 38px;
  color: var(--color-white);
}

.plan_card_en {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--color-gold);
}

.plan_card_photo {
  width: 100%;
  height: auto;
}

.plan_card_desc {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  color: var(--color-white);
}

.plan_card_benefits {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}

.plan_card_benefits li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  padding: 0 7px;
}

.plan_card_benefits li + li {
  border-left: 0.7px solid var(--color-white);
}

.plan_card_benefits span {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.04em;
  color: var(--color-white);
  white-space: nowrap;
  text-align: center;
}

.plan_card_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px;
  border: 1.45px solid var(--color-gold);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan_card_btn img {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.plan_card_btn span {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-gold);
  transition: color 0.3s ease;
}

@media (hover: hover) {

  .plan_card_btn:is(:hover, :focus-visible) {
    background-color: rgba(252, 205, 115, 0.08);
    border-color: #fdd88a;
    box-shadow: 0 4px 16px rgba(252, 205, 115, 0.15);
  }

  .plan_card_btn:is(:hover, :focus-visible) span {
    color: #fdd88a;
  }

  .plan_card_btn:is(:hover, :focus-visible) img {
    transform: translateX(4px);
  }
}

@media screen and (max-width: 1400px) {

  .plan_cards {
    --plan-cards-gap: 20px;
  }

  .plan_card {
    padding: 24px 20px;
  }

  .plan_card_benefits li {
    padding: 0 4px;
  }
}

@media screen and (max-width: 1000px) {

  .plan_cards {
    --plan-cards-gap: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: var(--plan-cards-gap);
    padding: 0;
  }

  .plan_card {
    width: 100%;
    max-width: none;
  }

  .plan_card_btn {
    width: 100%;
    max-width: 350px;
    align-self: center;
  }

  .plan_card_benefits {
    justify-content: center;
    width: auto;
    max-width: 100%;
  }

  .plan_card_benefits li {
    flex: none;
    padding: 0 16px;
  }
}

/* ========================================
   FLOW（買取の流れ）
======================================== */
#flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 20px;
  background: var(--color-white) url(../img/bg_marble.webp) center / cover no-repeat;
}

#flow .sec_title_ja {
  font-weight: 700;
}

.flow_steps {
  --flow-steps-gap: 9px;
  --flow-arrow-size: 21px;
  --flow-steps-space: calc(var(--flow-steps-gap) + var(--flow-arrow-size));
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--flow-steps-space);
  width: 100%;
  max-width: 1350px;
  padding: 0;
  list-style: none;
}

.flow_step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  gap: 7px;
  width: calc((100% - var(--flow-steps-space) * 3) / 4);
  min-width: 0;
  padding: 17px;
  background: var(--color-white);
  box-shadow: 0 0 8.93px rgba(0, 0, 0, 0.5);
}

.flow_step + .flow_step::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(var(--flow-steps-space) / -2);
  width: var(--flow-arrow-size);
  height: var(--flow-arrow-size);
  background: url("../img/arrow_flow.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.flow_step_body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.flow_step_icon {
  width: 47px;
  height: 47px;
  object-fit: contain;
  object-position: left top;
}

.flow_step_num {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.26em;
}

.flow_step_body h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 42px;
  letter-spacing: 0.05em;
}

.flow_step_body p {
  font-size: 16px;
  line-height: 29.8px;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 1080px) {

  .flow_steps {
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--flow-steps-space);
  }

  .flow_step {
    width: calc((100% - var(--flow-steps-space)) / 2);
  }

  .flow_step:nth-child(3)::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {

  .flow_steps {
    flex-direction: column;
    align-items: stretch;
    gap: var(--flow-steps-space);
  }

  .flow_step {
    width: 100%;
    max-width: none;
  }

  .flow_step:nth-child(3)::before {
    display: block;
  }

  .flow_step + .flow_step::before {
    top: calc(var(--flow-steps-space) / -2);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* ========================================
   Footer
======================================== */
.site_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 77px;
  padding: 52px 77px;
  background: var(--color-footer);
}

.site_footer_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: var(--max-width-inner);
}

@media screen and (max-width: 1000px) {

  .site_footer_main {
    flex-direction: column;
  }

  .site_footer_info {
    width: 100%;
  }
}

.site_footer_company {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 651px;
}

.site_footer_name {
  font-family: var(--font-serif);
  font-size: 29px;
  text-transform: uppercase;
  color: var(--color-white);
}

.site_footer_address {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #8e8e8e;
}

.site_footer_desc {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.6;
  color: #8e8e8e;
}

.site_footer_info {
  flex-shrink: 0;
  width: auto;
}

.site_footer_info_title {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-white);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: var(--color-white);
}

.site_footer_info ul {
  margin-top: 22px;
}

.site_footer_info li a {
  position: relative;
  display: inline-block;
  font-weight: 350;
  font-size: 20px;
  line-height: 54px;
  letter-spacing: 0.2em;
  color: #8e8e8e;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.site_footer_info li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 100%;
  height: 1px;
  background-color: var(--color-white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {

  .site_footer_info li a:is(:hover, :focus-visible) {
    color: var(--color-white);
  }

  .site_footer_info li a:is(:hover, :focus-visible)::after {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .site_footer_info li a::after {
    transition: none;
  }
}

.site_footer_copyright {
  width: 100%;
  max-width: 1412px;
  padding-top: 52px;
  border-top: 1px solid #474747;
  font-weight: 300;
  font-size: 20px;
  text-align: center;
  color: #8e8e8e;
}

/* ========================================
   SP（〜798px）
======================================== */
@media screen and (max-width: 798px) {

  /* Header */
  .site_header {
    padding: 20px 20px 12px;
  }

  .site_header_logo img {
    width: 140px;
    height: auto;
  }

  .site_header_right {
    gap: 12px;
  }

  body.is-menu-open .site_header_menu_content {
    top: 88px;
    gap: 24px;
    padding: 0 20px 24px;
  }

  #archives,
  #boutique,
  #salon_store,
  #archives_page,
  #plans {
    scroll-margin-top: 88px;
  }

  .site_header_nav a {
    padding: 10px 0;
    font-size: 24px;
  }

  body.is-menu-open .site_header_cta .header_btn {
    padding: 0 20px;
  }

  body.is-menu-open .site_header_cta .header_btn_text {
    font-size: 14px;
  }

  body.is-menu-open .site_header_cta .header_btn_sub {
    font-size: 10px;
  }

  /* Common */
  .sec_title_ja {
    font-size: 24px;
  }

  .sec_title_sub {
    font-size: 16px;
  }

  .cta_band {
    padding: 50px 20px;
  }

  .cta_band_title {
    font-size: 24px;
  }

  .cta_band_title--large {
    font-size: 28px;
  }

  .cta_band_desc {
    font-size: 15px;
  }

  .btn_cta {
    min-height: 70px;
    max-width: none;
  }

  /* 選ばれる3つの理由 */
  #reason {
    gap: 40px;
  }

  .reason_card {
    padding: 28px 24px;
  }

  .reason_card_body h3 {
    font-size: 24px;
    line-height: 1.6;
  }

  .reason_card_body p {
    font-size: 15px;
    line-height: 1.9;
  }

  /* Market Trends */
  #market {
    gap: 40px;
    padding-bottom: 60px;
  }

  #market .sec_title_ja {
    font-size: 26px;
    line-height: 1.7;
  }

  .market_panel {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
    width: 100%;
  }

  .market_graph,
  .market_photo {
    width: 100%;
  }

  .market_text {
    font-size: 16px;
    line-height: 2;
  }

  .market_note {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  /* Archives */
  #archives {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .archives_head {
    align-items: flex-end;
  }

  .archives_card {
    padding: 24px 24px 12px;
  }

  .archives_card_info h3 {
    font-size: 16px;
  }

  .archives_card_price .price {
    font-size: 30px;
  }

  /* Boutique */
  #boutique,
  #salon_store {
    padding-top: 34px;
    padding-bottom: 50px;
  }

  .boutique_main_desc {
    font-size: 15px;
  }

  .boutique_main .btn_pill {
    align-self: center;
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
  }

  /* 査定方法 */
  .plan_card_head h3 {
    font-size: 30px;
  }

  /* FLOW */
  #flow {
    padding: 60px 20px;
  }

  /* Footer */
  .site_footer {
    gap: 40px;
    padding: 50px 20px;
  }

  .site_footer_logo {
    width: 180px;
    height: auto;
  }

  .site_footer_name {
    font-size: 22px;
  }

  .site_footer_address,
  .site_footer_desc,
  .site_footer_info li a {
    font-size: 15px;
  }

  .site_footer_info_title {
    font-size: 16px;
  }

  .site_footer_copyright {
    padding-top: 24px;
    font-size: 12px;
  }
}

/* ========================================
   404
======================================== */
.error_page_body {
  background-color: var(--color-black);
}

.error_page {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  min-height: calc(100vh - var(--page-fv-header-offset, 100px) - 200px);
  padding: 80px 20px 100px;
}

.error_page_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 100%;
  max-width: 890px;
  text-align: center;
}

.error_page_en {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-beige);
}

.error_page_title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1.3;
  color: var(--color-white);
}

.error_page_lead {
  margin: 0;
  padding: 10px 0 0;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-white);
}

.error_page_btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin-top: 36px;
}

.error_page_btns .btn_cta {
  flex: 1 1 280px;
  max-width: 350px;
}

@media screen and (max-width: 798px) {

  .error_page {
    min-height: calc(100vh - var(--page-fv-header-offset, 88px) - 160px);
    padding: 50px 20px 70px;
  }

  .error_page_title {
    font-size: 26px;
  }

  .error_page_lead {
    font-size: 16px;
  }

  .error_page_btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 350px;
    margin-top: 28px;
  }

  .error_page_btns .btn_cta {
    flex: none;
    width: 100%;
    max-width: none;
  }
}
