@charset "UTF-8";
/* Carpit original styles
───────────────────────*/
/* Breakpoint & media query mixins
───────────────────────*/
/* Site color tokens
───────────────────────
色を変更する場合は、このファイルのCSS変数だけを編集する。
各SCSSでは原則として色値を直接書かず、用途に合う変数を参照する。
*/
:root {
  /* Base */
  --color_bg: #f7f6f2;
  --color_bg_soft: #f2f1ec;
  --color_text: #000000;
  --color_text_half: rgba(0, 0, 0, 0.5);
  --color_text_sub: #757575;
  --color_border: #d2d1cc;
  --color_white: #ffffff;
  --color_black: #000000;
  /* Brand */
  --color_main: #004225;
  --color_main_dark: #000000;
  --color_navy: #000000;
  --color_green: var(--color_main);
  --color_yellow: #FFD800;
  --color_silver_gray: #949491;
  /* Header */
  --color_header_bg: rgba(247, 246, 242, 0.92);
  --color_header_bg_scrolled: rgba(247, 246, 242, 0.98);
  /* Footer */
  --color_footer_bg: #000000;
  --color_footer_border: #333333;
  --color_footer_text: #d2d1cc;
  --color_footer_sub: #757575;
  --color_map_bg: #111111;
  /* Hero overlay */
  --color_hero_overlay_side: rgba(0, 0, 0, 0.74);
  --color_hero_overlay_mid: rgba(0, 0, 0, 0.26);
  --color_hero_overlay_clear: rgba(0, 0, 0, 0.02);
  --color_hero_overlay_bottom: rgba(0, 0, 0, 0.42);
  --color_hero_overlay_none: rgba(0, 0, 0, 0);
  --color_hero_overlay_mobile_dark: rgba(0, 0, 0, 0.78);
  --color_hero_overlay_mobile_light: rgba(0, 0, 0, 0.18);
  --color_hero_eyebrow_bg: rgba(255, 255, 255, 0.92);
}

/* Typography tokens
───────────────────────*/
:root {
  --type_body_size: 16px;
  --type_body_line_height: 1.9;
  --type_content_text_size: 16px;
  --type_section_heading_label_size: clamp(24px, 3.2vw, 42px);
  --type_section_heading_title_size: clamp(15px, 1.35vw, 18px);
  --type_section_label_size: clamp(42px, 7.2vw, 94px);
  --type_section_title_size: clamp(19px, 2.1vw, 30px);
  --type_compact_label_size: clamp(26px, 3.5vw, 46px);
  --type_compact_title_size: clamp(20px, 2vw, 28px);
  --type_block_title_size: clamp(20px, 1.8vw, 24px);
}
@media (max-width: 1023.98px) {
  :root {
    --type_section_heading_label_size: clamp(23px, 3.8vw, 36px);
    --type_section_heading_title_size: 17px;
    --type_section_label_size: clamp(36px, 6.8vw, 72px);
  }
}
@media (max-width: 767.98px) {
  :root {
    --type_body_size: 15px;
    --type_body_line_height: 1.85;
    --type_content_text_size: 13px;
    --type_compact_label_size: 30px;
    --type_compact_title_size: 18px;
  }
}
@media (max-width: 559.98px) {
  :root {
    --type_section_heading_label_size: 28px;
    --type_section_heading_title_size: 17px;
    --type_section_label_size: 34px;
    --type_section_title_size: 17px;
  }
}

/* Carpit base variables and global elements
───────────────────────*/
:root {
  --font_en: "Outfit", sans-serif;
  --font_jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --content_width: 1544px;
  --content_gutter: clamp(32px, 4.2vw, 84px);
  --read_width: 900px;
}
@media (max-width: 767.98px) {
  :root {
    --content_gutter: 24px;
  }
}
@media (max-width: 559.98px) {
  :root {
    --content_gutter: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background: var(--color_bg);
  color: var(--color_text);
  font-family: var(--font_jp);
  font-size: var(--type_body_size);
  font-weight: 500;
  line-height: var(--type_body_line_height);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
body.is_drawer_open {
  overflow: hidden;
}

@media (max-width: 559.98px) {
  html,
  body,
  .site,
  main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 559.98px) {
  section,
  header,
  footer {
    max-width: 100%;
    overflow-x: hidden;
  }
}

@media (max-width: 599.98px) {
  #wpadminbar {
    min-width: 0 !important;
  }
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button,
input,
textarea {
  font: inherit;
}

.skip_link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--color_navy);
  color: var(--color_white);
  padding: 8px 12px;
}
.skip_link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: calc(var(--content_width) + var(--content_gutter) + var(--content_gutter));
  padding-inline: var(--content_gutter);
  margin-inline: auto;
}
@media (max-width: 767.98px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 559.98px) {
  .container {
    max-width: none;
    padding-inline: var(--content_gutter);
    margin-inline: auto;
  }
}

.container > *,
.split > *,
.news_block > *,
.model_card > * {
  min-width: 0;
}

@media (max-width: 767.98px) {
  p,
  li,
  dt,
  dd {
    max-width: 100%;
    line-break: strict;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}

@media (max-width: 767.98px) {
  h1,
  h2,
  h3,
  h4 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

.material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

/* Buttons
───────────────────────*/
.button,
.text_link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  margin-top: 24px;
  padding: 0 78px 0 30px;
  border: 1px solid var(--color_white);
  border-radius: 999px;
  background: var(--color_white);
  color: var(--color_green);
  font-family: var(--font_jp);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-align: center;
  transition: border-color 0.24s ease, color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}
@media (max-width: 559.98px) {
  .button,
  .text_link {
    min-height: 48px;
    padding-inline: 26px 68px;
    font-size: 13px;
  }
}
.button > .material-symbols-outlined,
.text_link > .material-symbols-outlined {
  display: none;
}
.button::before, .button::after,
.text_link::before,
.text_link::after {
  display: block;
  position: absolute;
  right: 30px;
  top: 50%;
  content: "";
  transform: translateY(-50%);
}
@media (max-width: 559.98px) {
  .button::before, .button::after,
  .text_link::before,
  .text_link::after {
    right: 25px;
  }
}
.button::before,
.text_link::before {
  z-index: 1;
  color: var(--color_white);
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
  opacity: 0;
  content: "arrow_forward";
  transform: translate(-8px, -50%);
  transition: opacity 0.18s ease, transform 0.24s ease;
}
.button::after,
.text_link::after {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color_green);
  transition: transform 0.24s ease, background 0.2s ease;
}
@media (max-width: 559.98px) {
  .button::after,
  .text_link::after {
    width: 8px;
    height: 8px;
  }
}
.button:hover,
.text_link:hover {
  border-color: var(--color_green);
  color: var(--color_green);
}
.button:hover::before,
.text_link:hover::before {
  opacity: 1;
  transform: translate(2px, -50%);
}
.button:hover::after,
.text_link:hover::after {
  background: var(--color_green);
  transform: translateY(-50%) scale(2.8);
}

.button--ghost {
  background: var(--color_white);
  color: var(--color_green);
}

.text_link--solid {
  border-color: var(--color_main);
  background: var(--color_main);
  color: var(--color_white);
}
.text_link--solid::after {
  background: var(--color_white);
}
.text_link--solid:hover {
  background: var(--color_white);
  color: var(--color_main);
}
.text_link--solid:hover::before {
  color: var(--color_white);
}
.text_link--solid:hover::after {
  background: var(--color_main);
}

@keyframes btn_round_hover {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
/* Site header
───────────────────────*/
.site {
  padding-top: 97px;
}
@media (max-width: 559.98px) {
  .site {
    padding-top: 73px;
  }
}

body.home .site {
  padding-top: 0;
}

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  background: var(--color_header_bg);
  border-bottom: 1px solid var(--color_border);
  backdrop-filter: blur(4px);
  transition: background 0.24s ease, border-color 0.24s ease;
}
.site_header.is_scrolled {
  background: var(--color_header_bg_scrolled);
}
.site_header.is_scrolled .site_header__inner {
  min-height: 50px;
}
@media (max-width: 1199.98px) {
  .site_header.is_scrolled .site_header__inner {
    min-height: 54px;
  }
}
@media (max-width: 559.98px) {
  .site_header.is_scrolled .site_header__inner {
    min-height: 50px;
  }
}
.site_header.is_scrolled .site_header__logo {
  width: 80px;
}
@media (max-width: 1199.98px) {
  .site_header.is_scrolled .site_header__logo {
    flex: 0 0 90px;
  }
}
@media (max-width: 559.98px) {
  .site_header.is_scrolled .site_header__logo {
    flex-basis: 70px;
  }
}
.site_header.is_scrolled .site_header__logo_image--color {
  opacity: 0;
}
.site_header.is_scrolled .site_header__logo_image--base {
  opacity: 1;
}
.site_header.is_scrolled .global_nav ul {
  gap: clamp(5px, 0vw, 10px);
}
.site_header.is_scrolled .global_nav a {
  min-height: 30px;
  font-size: clamp(14px, 1vw, 16px);
}
.site_header.is_scrolled .site_header__tel_icon {
  width: 30px;
  height: 30px;
  font-size: 17px;
}
.site_header.is_scrolled .site_header__tel_number {
  font-size: clamp(17px, 1.2vw, 20px);
}
.site_header.is_scrolled .site_header__cta {
  min-height: 32px;
  padding-inline: 16px;
}
.site_header.is_scrolled .site_header__cta span.site_header__cta_text {
  font-size: clamp(14px, 1vw, 16px);
}
.site_header.is_scrolled .site_header__cta span.material-symbols-outlined {
  font-size: 17px;
}
.site_header.is_scrolled .site_header__right {
  gap: clamp(8px, 0.8vw, 15px);
}
@media (max-width: 1199.98px) {
  .site_header.is_scrolled .site_header__right {
    gap: 8px;
  }
  .site_header.is_scrolled .site_header__tel {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .site_header.is_scrolled .site_header__tel_icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .site_header.is_scrolled a.site_header__cta {
    position: relative;
    width: 44px;
    height: 44px;
    min-height: 0;
    margin-left: -8px;
    padding: 0;
    border-color: transparent;
  }
  .site_header.is_scrolled a.site_header__cta::before {
    position: absolute;
    inset: 4px;
    border: 1px solid var(--color_border);
    border-radius: 50%;
    content: "";
  }
  .site_header.is_scrolled a.site_header__cta span.material-symbols-outlined {
    position: relative;
    z-index: 1;
    font-size: 18px;
  }
  .site_header.is_scrolled button.menu_button {
    width: 44px;
    height: 44px;
    margin-left: -4px;
  }
  .site_header.is_scrolled button.menu_button span {
    width: 22px;
  }
  .site_header.is_scrolled button.menu_button span:nth-child(1) {
    top: calc(50% - 6px);
  }
  .site_header.is_scrolled button.menu_button span:nth-child(2) {
    top: calc(50% - 1px);
  }
  .site_header.is_scrolled button.menu_button span:nth-child(3) {
    top: calc(50% + 4px);
  }
  .site_header.is_scrolled button.menu_button[aria-expanded=true] span:nth-child(1) {
    top: calc(50% - 1px);
  }
  .site_header.is_scrolled button.menu_button[aria-expanded=true] span:nth-child(3) {
    top: calc(50% - 1px);
  }
}

body.home .site_header:not(.is_scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
body.home .site_header:not(.is_scrolled) .site_header__logo_image--color {
  opacity: 0;
}
body.home .site_header:not(.is_scrolled) .site_header__logo_image--base {
  opacity: 1;
  filter: brightness(0) invert(1);
}
body.home .site_header:not(.is_scrolled) .global_nav a {
  color: var(--color_white);
}
body.home .site_header:not(.is_scrolled) .global_nav a:hover, body.home .site_header:not(.is_scrolled) .global_nav a.is_current {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color_white);
}
body.home .site_header:not(.is_scrolled) .site_header__tel {
  color: var(--color_white);
}
body.home .site_header:not(.is_scrolled) .site_header__tel_icon {
  border-color: rgba(255, 255, 255, 0.5);
}
body.home .site_header:not(.is_scrolled) .site_header__cta {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color_white);
}
body.home .site_header:not(.is_scrolled) .site_header__cta:hover {
  border-color: var(--color_white);
  background: var(--color_white);
  color: var(--color_green);
}
body.home .site_header:not(.is_scrolled) button.menu_button {
  color: var(--color_white);
}

body.admin-bar .site_header {
  top: 32px;
}
@media (max-width: 781.98px) {
  body.admin-bar .site_header {
    top: 46px;
  }
}

.site_header__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  min-height: 96px;
  width: 100%;
  padding-inline: calc(var(--content_gutter) / 2);
  margin-inline: auto;
  transition: min-height 0.24s ease;
}
@media (max-width: 1199.98px) {
  .site_header__inner {
    display: flex;
    justify-content: space-between;
    padding-inline: var(--content_gutter);
  }
}
@media (max-width: 559.98px) {
  .site_header__inner {
    min-height: 72px;
  }
}

.site_header__logo {
  position: relative;
  justify-self: start;
  display: block;
  width: 158px;
  transition: width 0.24s ease;
}
.site_header__logo img {
  width: 100%;
  height: auto;
}
.site_header__logo .site_header__logo_image {
  display: block;
  transition: opacity 0.24s ease;
}
.site_header__logo .site_header__logo_image--base {
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media (max-width: 1199.98px) {
  .site_header__logo .site_header__logo_image--base {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.site_header__logo .site_header__logo_image--color {
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .site_header__logo {
    flex: 0 0 140px;
    display: flex;
    min-height: 44px;
    align-items: center;
  }
}
@media (max-width: 559.98px) {
  .site_header__logo {
    width: auto;
    flex-basis: 100px;
  }
}

.global_nav {
  justify-self: start;
}
@media (max-width: 1199.98px) {
  .global_nav {
    display: none;
  }
}
.global_nav ul {
  display: flex;
  justify-content: center;
  gap: clamp(4px, 0.35vw, 10px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.global_nav a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-family: var(--font_en);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, min-height 0.24s ease, font-size 0.24s ease;
}
.global_nav a:hover, .global_nav a.is_current {
  background: var(--color_main);
  color: var(--color_white);
}
.global_nav a .global_nav__icon {
  margin-left: 3px;
  font-size: 14px;
  font-weight: normal;
}

.site_header__right {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 25px);
  justify-self: end;
}
@media (max-width: 1199.98px) {
  .site_header__right {
    gap: 8px;
  }
}

/* スマホ時の共通アイコンボタンサイズ: 44px */
.site_header__tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color_navy);
  font-family: var(--font_jp);
  line-height: 1.3;
  white-space: nowrap;
}
@media (max-width: 1199.98px) {
  .site_header__tel {
    gap: 0;
  }
}
.site_header__tel .site_header__tel_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color_border);
  border-radius: 50%;
  font-size: 19px;
  transition: width 0.24s ease, height 0.24s ease, font-size 0.24s ease;
}
@media (max-width: 1199.98px) {
  .site_header__tel .site_header__tel_icon {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}
.site_header__tel .site_header__tel_body {
  display: grid;
  gap: 2px;
}
@media (max-width: 1199.98px) {
  .site_header__tel .site_header__tel_body {
    display: none;
  }
}
.site_header__tel .site_header__tel_number {
  font-family: var(--font_en);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 800;
  line-height: 1;
  transition: font-size 0.24s ease;
}

.site_header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_en);
  gap: 5px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid var(--color_text);
  border-radius: 999px;
  background: var(--color_text);
  color: var(--color_white);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, min-height 0.24s ease, padding 0.24s ease;
}
.site_header__cta:hover {
  border-color: var(--color_main);
  background: var(--color_main);
  color: var(--color_white);
}
.site_header__cta span.material-symbols-outlined {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site_header__cta span.site_header__cta_text {
  font-weight: 800;
  font-size: clamp(13px, 1.1vw, 17px);
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .site_header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 0;
    padding: 0;
    border: 1px solid var(--color_border);
    border-radius: 50%;
    background: transparent;
    color: var(--color_navy);
  }
  .site_header__cta span.site_header__cta_text {
    display: none;
  }
  .site_header__cta span.material-symbols-outlined {
    font-size: 20px;
  }
}

button.menu_button {
  display: none;
  position: relative;
  z-index: 110;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color_text);
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  button.menu_button {
    display: inline-flex;
  }
}
button.menu_button span {
  position: absolute;
  left: 50%;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 0.24s ease, opacity 0.24s ease, top 0.24s ease;
}
button.menu_button span:nth-child(1) {
  top: calc(50% - 7px);
}
button.menu_button span:nth-child(2) {
  top: calc(50% - 1px);
}
button.menu_button span:nth-child(3) {
  top: calc(50% + 5px);
}
button.menu_button[aria-expanded=true] span:nth-child(1) {
  top: calc(50% - 1px);
  transform: translateX(-50%) rotate(45deg);
}
button.menu_button[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
button.menu_button[aria-expanded=true] span:nth-child(3) {
  top: calc(50% - 1px);
  transform: translateX(-50%) rotate(-45deg);
}

/* ドロワーメニュー: header外に配置し、backdrop-filterの包含ブロック問題を回避 */
nav.drawer_nav {
  display: none;
}
@media (max-width: 1199.98px) {
  nav.drawer_nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 96px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 24px var(--content_gutter) 40px;
    background: var(--color_black);
    z-index: 200;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: transform 0.32s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.32s, opacity 0.24s ease;
  }
}
@media (max-width: 559.98px) {
  nav.drawer_nav {
    top: 72px;
  }
}
@media (max-width: 1199.98px) {
  body.admin-bar nav.drawer_nav {
    top: 128px;
  }
}
@media (max-width: 781.98px) {
  body.admin-bar nav.drawer_nav {
    top: 118px;
  }
}
@media (max-width: 559.98px) {
  body.admin-bar nav.drawer_nav {
    top: 118px;
  }
}

/* ドロワー内のメニューリンク */
.drawer_nav__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
  margin-bottom: 32px;
}
@media (max-width: 1199.98px) {
  .drawer_nav__menu a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--color_white);
    font-family: var(--font_en);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
  }
  .drawer_nav__menu a:hover, .drawer_nav__menu a.is_current {
    background: var(--color_main);
    color: var(--color_white);
    border-color: var(--color_main);
  }
  .drawer_nav__menu a:hover span.drawer_nav__sub, .drawer_nav__menu a.is_current span.drawer_nav__sub {
    color: var(--color_white);
  }
  .drawer_nav__menu a span.drawer_nav__sub {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font_jp);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;
    transition: color 0.24s ease;
  }
}

/* Lステップ風 アクションボタンレイアウト */
.drawer_nav__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 36px;
}
.drawer_nav__actions a.drawer_nav__action_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  aspect-ratio: 1/1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  transition: background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}
.drawer_nav__actions a.drawer_nav__action_btn span.material-symbols-outlined {
  font-size: 20px;
  color: var(--color_yellow);
}
.drawer_nav__actions a.drawer_nav__action_btn span.drawer_nav__action_sub {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_jp);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: color 0.24s ease;
}
.drawer_nav__actions a.drawer_nav__action_btn:hover {
  background: var(--color_main);
  color: var(--color_white);
  border-color: var(--color_main);
}
.drawer_nav__actions a.drawer_nav__action_btn:hover span.material-symbols-outlined {
  color: var(--color_white);
}
.drawer_nav__actions a.drawer_nav__action_btn:hover span.drawer_nav__action_sub {
  color: var(--color_white);
}

/* 大きな電話番号セクション */
.drawer_nav__contact {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}
.drawer_nav__contact p.drawer_nav__contact_label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font_jp);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.drawer_nav__contact a.drawer_nav__contact_tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 10px;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.drawer_nav__contact a.drawer_nav__contact_tel span.material-symbols-outlined {
  font-size: 26px;
  color: var(--color_yellow);
}
.drawer_nav__contact p.drawer_nav__contact_hours {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font_jp);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

/* ドロワー開閉時のスタイル制御 */
@media (max-width: 1199.98px) {
  body.is_drawer_open header.site_header,
  body.home.is_drawer_open header.site_header {
    background: var(--color_black);
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }
  body.is_drawer_open header.site_header .site_header__right,
  body.home.is_drawer_open header.site_header .site_header__right {
    gap: 8px;
  }
  body.is_drawer_open header.site_header,
  body.home.is_drawer_open header.site_header {
    /* ドロワー開閉時はスクロールしてもヘッダーの高さを変えないためのサイズ固定 */
  }
  body.is_drawer_open header.site_header .site_header__inner,
  body.home.is_drawer_open header.site_header .site_header__inner {
    min-height: 96px !important;
  }
}
@media (max-width: 1199.98px) and (max-width: 559.98px) {
  body.is_drawer_open header.site_header .site_header__inner,
  body.home.is_drawer_open header.site_header .site_header__inner {
    min-height: 72px !important;
  }
}
@media (max-width: 1199.98px) {
  body.is_drawer_open header.site_header a.site_header__logo,
  body.home.is_drawer_open header.site_header a.site_header__logo {
    width: 140px !important;
    flex: 0 0 140px !important;
  }
}
@media (max-width: 1199.98px) and (max-width: 559.98px) {
  body.is_drawer_open header.site_header a.site_header__logo,
  body.home.is_drawer_open header.site_header a.site_header__logo {
    width: auto !important;
    flex-basis: 100px !important;
  }
}
@media (max-width: 1199.98px) {
  body.is_drawer_open header.site_header a.site_header__logo img.site_header__logo_image--color,
  body.home.is_drawer_open header.site_header a.site_header__logo img.site_header__logo_image--color {
    opacity: 0;
  }
  body.is_drawer_open header.site_header a.site_header__logo img.site_header__logo_image--base,
  body.home.is_drawer_open header.site_header a.site_header__logo img.site_header__logo_image--base {
    opacity: 1;
    filter: brightness(0) invert(1);
  }
  body.is_drawer_open header.site_header a.site_header__tel,
  body.home.is_drawer_open header.site_header a.site_header__tel {
    color: var(--color_white);
  }
  body.is_drawer_open header.site_header a.site_header__tel span.site_header__tel_icon,
  body.home.is_drawer_open header.site_header a.site_header__tel span.site_header__tel_icon {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    border-color: rgba(255, 255, 255, 0.3);
  }
  body.is_drawer_open header.site_header a.site_header__cta,
  body.home.is_drawer_open header.site_header a.site_header__cta {
    width: 44px !important;
    height: 44px !important;
    margin-left: 0;
    background: var(--color_white);
    color: var(--color_black);
    border-color: var(--color_white);
  }
  body.is_drawer_open header.site_header a.site_header__cta::before,
  body.home.is_drawer_open header.site_header a.site_header__cta::before {
    content: none;
  }
  body.is_drawer_open header.site_header a.site_header__cta span.material-symbols-outlined,
  body.home.is_drawer_open header.site_header a.site_header__cta span.material-symbols-outlined {
    font-size: 20px !important;
  }
  body.is_drawer_open header.site_header button.menu_button,
  body.home.is_drawer_open header.site_header button.menu_button {
    width: 44px !important;
    height: 44px !important;
    margin-left: 0;
    border-color: var(--color_white);
    color: var(--color_white);
  }
  body.is_drawer_open header.site_header button.menu_button span,
  body.home.is_drawer_open header.site_header button.menu_button span {
    width: 22px !important;
  }
  body.is_drawer_open header.site_header button.menu_button span:nth-child(1),
  body.home.is_drawer_open header.site_header button.menu_button span:nth-child(1) {
    top: calc(50% - 7px) !important;
  }
  body.is_drawer_open header.site_header button.menu_button span:nth-child(2),
  body.home.is_drawer_open header.site_header button.menu_button span:nth-child(2) {
    top: calc(50% - 1px) !important;
  }
  body.is_drawer_open header.site_header button.menu_button span:nth-child(3),
  body.home.is_drawer_open header.site_header button.menu_button span:nth-child(3) {
    top: calc(50% + 5px) !important;
  }
  body.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(1),
  body.home.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(1) {
    top: calc(50% - 1px) !important;
    transform: translateX(-50%) rotate(45deg) !important;
  }
  body.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(2),
  body.home.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(2) {
    opacity: 0 !important;
  }
  body.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(3),
  body.home.is_drawer_open header.site_header button.menu_button[aria-expanded=true] span:nth-child(3) {
    top: calc(50% - 1px) !important;
    transform: translateX(-50%) rotate(-45deg) !important;
  }
}
@media (max-width: 1199.98px) {
  body.is_drawer_open nav.drawer_nav,
  body.home.is_drawer_open nav.drawer_nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slot machine hover effect for navigation and contact button */
.slot_text {
  display: inline-block;
  overflow: hidden;
  height: 1.2em;
  line-height: 1.2;
  vertical-align: middle;
}

.slot_text__inner {
  display: flex;
  flex-direction: column;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1);
}

.slot_text__en,
.slot_text__ja {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.2em;
  backface-visibility: hidden;
}

.slot_text__ja {
  font-family: var(--font_jp);
  font-size: 0.82em;
  font-weight: 700;
}

.global_nav a:hover .slot_text__inner,
.site_header__cta:hover .slot_text__inner {
  transform: translateY(-50%);
}

/* Shared sections and content parts
───────────────────────*/
/* セクション基本設定
───────────────────────*/
.section {
  padding-block: clamp(44px, 5.5vw, 84px) clamp(56px, 6.8vw, 104px);
}
@media (max-width: 1023.98px) {
  .section {
    padding-block: 48px 64px;
  }
}
@media (max-width: 767.98px) {
  .section {
    padding-block: 42px 54px;
  }
}
@media (max-width: 479.98px) {
  .section {
    padding-block: 38px 50px;
  }
}

.section--soft {
  background: var(--color_bg_soft);
}
.section--soft + .section--soft {
  padding-block-start: 0;
}

.section--image img {
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .section--image img {
    border-radius: 14px;
  }
}

/* 画像パーツ
───────────────────────*/
.image_card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .image_card {
    border-radius: 14px;
  }
}
.image_card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

/* パララックス画像帯
───────────────────────*/
.home_mini_visual {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 42vw, 600px);
  background: var(--color_text);
}
@media (max-width: 767.98px) {
  .home_mini_visual {
    height: clamp(210px, 58vw, 280px);
  }
}
.home_mini_visual img {
  width: 100%;
  height: 136%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, calc(-18% + var(--home_mini_visual_parallax, 0px)), 0) scale(1.04);
  will-change: transform;
}

/* スクロール連動マーキー
───────────────────────*/
.scroll_marquee {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.scroll_marquee__track {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin: 0;
  white-space: nowrap;
  transform: translate3d(calc(-25% + var(--scroll_marquee_shift, 0px)), -50%, 0);
  will-change: transform;
}
.scroll_marquee__track span {
  flex: 0 0 auto;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(54px, 7vw, 108px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
  opacity: 0.75;
}
@media (max-width: 767.98px) {
  .scroll_marquee__track span {
    font-size: clamp(42px, 12vw, 60px);
  }
}

/* セクション見出し
───────────────────────*/
.section_heading {
  margin-bottom: clamp(24px, 3.4vw, 42px);
}
.section_heading .section_label {
  margin-bottom: 6px;
  color: var(--color_text);
  font-size: var(--type_section_heading_label_size);
  line-height: 0.95;
}
@media (max-width: 559.98px) {
  .section_heading .section_label {
    margin-bottom: 3px;
    line-height: 1;
  }
}
.section_heading .section_title {
  position: relative;
  font-size: var(--type_section_heading_title_size);
  font-weight: 700;
  line-height: 1.7;
}
.section_heading .section_title::after {
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 16px;
  background: var(--color_main);
  content: "";
}
@media (max-width: 559.98px) {
  .section_heading .section_title::after {
    width: 16px;
    margin-top: 13px;
  }
}
@media (max-width: 559.98px) {
  .section_heading .section_title {
    font-size: 13px;
    font-weight: 700 !important;
  }
}

/* 英字ラベル＋日本語タイトル
───────────────────────*/
.section_title_group {
  display: grid;
  gap: var(--section_title_group_gap, 6px);
  margin-bottom: var(--section_title_group_margin_bottom, 0);
}
.section_title_group > .section_label,
.section_title_group > .section_title {
  margin: 0;
}

/* 標準本文
───────────────────────*/
.site main p:not([class]):not(:where(form p)),
.site main .entry_content p:not(.entry_date),
.page_lead_text {
  font-size: var(--type_content_text_size);
}

.section_label,
.card_label {
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.section_label {
  display: block;
  color: var(--color_text);
  font-size: var(--type_section_label_size);
  line-height: 0.86;
  overflow-wrap: normal;
  font-weight: 800;
}
@media (max-width: 559.98px) {
  .section_label {
    line-height: 0.95;
  }
}

.section_title {
  margin: 0;
  color: var(--color_text_sub);
  font-family: var(--font_jp);
  font-size: var(--type_section_title_size);
  font-weight: 900;
  line-height: 1.2 !important;
  letter-spacing: 0;
  overflow-wrap: normal;
}
@media (max-width: 559.98px) {
  .section_title {
    display: block;
    width: 100%;
    max-width: 100%;
    line-height: 1.6;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 7vw, 88px);
}
@media (max-width: 1023.98px) {
  .split {
    gap: clamp(28px, 4vw, 48px);
  }
}
@media (max-width: 767.98px) {
  .split {
    grid-template-columns: 1fr;
  }
}
.split .section_label {
  font-size: clamp(34px, 5.4vw, 68px);
}
@media (max-width: 1023.98px) {
  .split .section_label {
    font-size: clamp(32px, 5.8vw, 56px);
  }
}
@media (max-width: 559.98px) {
  .split .section_label {
    font-size: 34px;
    line-height: 0.95;
  }
}

.split--center {
  align-items: center;
}

/* カードグリッド
───────────────────────*/
.card_grid {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}
@media (max-width: 767.98px) {
  .card_grid {
    gap: 18px;
  }
}

.card_grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .card_grid--2 {
    grid-template-columns: 1fr;
  }
}

.card_grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .card_grid--3 {
    grid-template-columns: 1fr;
  }
}

/* 汎用カード
───────────────────────*/
.service_card,
.plain_card,
.point_grid article {
  overflow: hidden;
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
}

.service_card h3,
.plain_card h2,
.plain_card h3,
.point_grid h2,
.point_grid h3 {
  margin: 0 0 12px;
  font-size: var(--type_block_title_size);
  font-weight: 700;
  line-height: 1.45;
}

.service_card {
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service_card:hover {
  border-color: var(--color_main);
  transform: translateY(-2px);
}

.service_card img {
  width: 100%;
  aspect-ratio: 1.28/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.42s ease;
}
.service_card:hover img {
  transform: scale(1.04);
}
.service_card div {
  padding: clamp(26px, 3.2vw, 42px);
}
@media (max-width: 767.98px) {
  .service_card div {
    padding: 22px;
  }
}
.service_card p {
  margin-bottom: 0;
  color: var(--color_text_sub);
}
@media (max-width: 559.98px) {
  .service_card p {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
}

.plain_card,
.point_grid article {
  padding: clamp(26px, 3.2vw, 42px);
}
@media (max-width: 767.98px) {
  .plain_card,
  .point_grid article {
    padding: 22px;
    border-radius: 16px;
  }
}

.plain_card p,
.point_grid p {
  margin-bottom: 0;
  color: var(--color_text_sub);
}
@media (max-width: 559.98px) {
  .plain_card p,
  .point_grid p {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
}

.plain_card > .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color_main);
  color: var(--color_text);
  font-size: 25px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.card_label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--color_main);
  color: var(--color_text);
  font-size: 12px;
}

/* サービスカード共通
───────────────────────*/
.service_card_grid .plain_card {
  display: grid;
  align-content: start;
  gap: 10px;
  transition: none;
}
.service_card_grid .plain_card:hover {
  border-color: var(--color_border);
  transform: none;
}
.service_card_grid .plain_card h2 {
  position: relative;
  margin-bottom: 2px;
  padding-bottom: 10px;
}
.service_card_grid .plain_card h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid var(--color_border);
  content: "";
}
.service_card_grid .plain_card p {
  line-height: 1.82;
}

/* スマホ用コンパクトサービスカード
───────────────────────*/
@media (max-width: 767.98px) {
  .service_card_grid.service_card_grid--compact_sp {
    gap: 10px;
  }
  .service_card_grid.service_card_grid--compact_sp .plain_card {
    gap: 6px;
    padding: 16px;
    border-radius: 12px;
  }
  .service_card_grid.service_card_grid--compact_sp .plain_card h2 {
    margin-bottom: 0;
    padding-bottom: 8px;
    font-size: 16px;
    line-height: 1.4;
  }
  .service_card_grid.service_card_grid--compact_sp .plain_card p {
    margin-top: 3px;
    line-height: 1.65;
  }
  .service_card_grid.service_card_grid--compact_sp .service_card_head {
    gap: 8px;
    padding-bottom: 8px;
  }
  .service_card_grid.service_card_grid--compact_sp .service_icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .service_card_grid.service_card_grid--compact_sp .service_en {
    font-size: 11px;
  }
}

.service_card_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color_border);
}

.service_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color_main);
  color: var(--color_white);
  font-size: 26px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.service_en {
  color: var(--color_text_sub);
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}

/* ポイントグリッド
───────────────────────*/
.point_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  counter-reset: point;
}
@media (max-width: 767.98px) {
  .point_grid {
    grid-template-columns: 1fr;
  }
}

.point_grid span {
  display: block;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.9;
}
@media (max-width: 767.98px) {
  .point_grid span {
    font-size: 38px;
  }
}

/* 情報リスト
───────────────────────*/
.info_list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
}
.info_list div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
}
@media (max-width: 559.98px) {
  .info_list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.info_list dt {
  color: var(--color_text_sub);
  font-weight: 700;
}
.info_list dd {
  margin: 0;
}

/* マップ埋め込み
───────────────────────*/
.map_frame {
  overflow: hidden;
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
}
.map_frame iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
}

/* FAQアコーディオン共通
───────────────────────*/
.faq_section {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}
.faq_section .section_heading {
  margin-bottom: 0;
}

.faq_group {
  display: grid;
  gap: 0;
  padding: clamp(24px, 3vw, 34px);
  padding-bottom: clamp(12px, 1.5vw, 17px);
  border: 1px solid var(--color_border);
  border-radius: 14px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .faq_group {
    padding: 20px;
    padding-bottom: 10px;
    border-radius: 12px;
  }
}
.faq_group h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 767.98px) {
  .faq_group h3 {
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.faq_group h3 .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color_main);
  color: var(--color_white);
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.faq_group details {
  border-top: 1px solid var(--color_border);
  background: transparent;
}
.faq_group details:first-of-type {
  border-top: 0;
}
.faq_group details:last-child {
  border-bottom: 0;
}
.faq_group details[open] summary::after {
  border-color: var(--color_main);
  background: var(--color_main);
  color: var(--color_white);
  content: "remove";
}
.faq_group summary {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 18px;
  align-items: center;
  padding: 24px 0;
  color: var(--color_text);
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}
@media (max-width: 559.98px) {
  .faq_group summary {
    grid-template-columns: 28px minmax(0, 1fr) 32px;
    gap: 6px;
    padding-block: 14px;
    font-size: 13px;
    line-height: 1.3;
  }
}
.faq_group summary::-webkit-details-marker {
  display: none;
}
.faq_group summary::before {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  content: "Q";
}
@media (max-width: 559.98px) {
  .faq_group summary::before {
    font-size: 22px;
  }
}
.faq_group summary::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color_border);
  border-radius: 50%;
  color: var(--color_text);
  font-family: "Material Symbols Outlined";
  font-size: 19px;
  content: "add";
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.faq_group p {
  overflow: hidden;
  max-width: none;
  margin: -2px 0 0 52px;
  padding-bottom: 24px;
  color: var(--color_text_sub);
  line-height: 1.95;
  transition: height 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, margin-top 0.34s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (max-width: 559.98px) {
  .faq_group p {
    margin-left: 35px;
    padding-bottom: 20px;
    line-height: 1.85;
  }
}

/* 連絡先カード
───────────────────────*/
.contact_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
@media (max-width: 559.98px) {
  .contact_cards {
    grid-template-columns: 1fr;
  }
}
.contact_cards a {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--color_border);
  border-radius: 16px;
  background: var(--color_white);
  color: var(--color_text);
  font-weight: 700;
  line-height: 1.45;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact_cards a:hover {
  border-color: var(--color_main);
  background: color-mix(in srgb, var(--color_main) 14%, var(--color_white));
}
.contact_cards .material-symbols-outlined {
  color: var(--color_main);
  font-size: 32px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
.contact_cards span:not(.material-symbols-outlined) {
  color: var(--color_text_sub);
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

/* News and post lists
───────────────────────*/
.news_block {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 767.98px) {
  .news_block {
    grid-template-columns: 1fr;
  }
}

.news_list {
  display: grid;
  gap: 22px;
}
.news_list article {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
  transition: border-color 0.2s ease;
}
.news_list article:hover {
  border-color: var(--color_main);
}
.news_list time {
  color: var(--color_text_sub);
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
}
.news_list h2,
.news_list h3 {
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
}
.news_list article a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color 0.24s ease, transform 0.24s ease;
}
.news_list article a:hover, .news_list article a:focus-visible {
  color: var(--color_main);
  transform: translateX(6px);
}

/* Forms
───────────────────────*/
.form_area {
  max-width: calc(920px + var(--content_gutter) + var(--content_gutter));
  margin-top: 48px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .form_area {
    max-width: none;
    margin-top: 28px;
    padding: 22px;
    border-radius: 16px;
  }
}
.form_area table {
  width: 100%;
  border-collapse: collapse;
}
.form_area th,
.form_area td {
  display: block;
  width: 100%;
  text-align: left;
}
.form_area th {
  padding: 10px 0 3px;
}
.form_area td {
  padding: 3px 0 14px;
}
.form_area input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.form_area textarea {
  width: 100%;
  border: 1px solid var(--color_border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--color_white);
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .form_area input:not([type=submit]):not([type=radio]):not([type=checkbox]),
  .form_area textarea {
    padding: 13px 14px;
  }
}
.form_area textarea {
  min-height: 180px;
  resize: vertical;
}
.form_area input[type=submit] {
  min-height: 56px;
  padding-inline: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--color_text);
  color: var(--color_white);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.form_area input[type=submit]:hover {
  background: var(--color_main);
  color: var(--color_white);
}
.form_area .wpcf7-list-item {
  margin: 0;
}

.title-contactform7 {
  display: inline-block;
  color: var(--color_text);
  font-weight: 900;
  line-height: 1.6;
}

.required-contactform7 {
  display: inline-block;
  margin-right: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #c62828;
  color: var(--color_white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.contact_radio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 759.98px) {
  .contact_radio {
    grid-template-columns: 1fr;
  }
}
.contact_radio .wpcf7-list-item {
  display: block;
}
.contact_radio label {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px 14px 54px;
  border: 1px solid var(--color_border);
  border-radius: 14px;
  background: var(--color_white);
  color: var(--color_text);
  font-weight: 800;
  line-height: 1.45;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
@media (max-width: 767.98px) {
  .contact_radio label {
    min-height: 54px;
    padding: 13px 14px 13px 50px;
    font-size: 14.5px;
  }
}
.contact_radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.contact_radio .wpcf7-list-item-label::before, .contact_radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact_radio .wpcf7-list-item-label::before {
  left: 18px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color_border);
  border-radius: 6px;
  background: var(--color_white);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact_radio .wpcf7-list-item-label::after {
  left: 26px;
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--color_white);
  border-bottom: 2px solid var(--color_white);
  opacity: 0;
  transform: translateY(-58%) rotate(45deg);
  transition: opacity 0.2s ease;
}
.contact_radio label:has(input[type=radio]:checked) {
  border-color: var(--color_main);
  background: rgba(0, 66, 37, 0.08);
  color: var(--color_main);
}
.contact_radio label:has(input[type=radio]:checked) .wpcf7-list-item-label::before {
  border-color: var(--color_main);
  background: var(--color_main);
}
.contact_radio label:has(input[type=radio]:checked) .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact_radio label:has(input[type=radio]:focus-visible) {
  outline: 3px solid rgba(0, 66, 37, 0.28);
  outline-offset: 3px;
}

.contact_submit {
  margin-top: 22px;
  text-align: center;
}
.contact_submit input[type=submit] {
  min-width: min(100%, 360px);
  min-height: 68px;
  padding-inline: 52px;
  font-size: 18px;
  font-weight: 900;
}
@media (max-width: 559.98px) {
  .contact_submit input[type=submit] {
    width: 100%;
    min-height: 64px;
    font-size: 17px;
  }
}

.recaptcha_notice {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--color_text_sub);
  font-size: 12px;
  line-height: 1.8;
  text-align: center;
}
.recaptcha_notice a {
  color: var(--color_main);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* Subpage header
───────────────────────*/
.subpage_header {
  background: var(--color_bg);
  padding-block: clamp(26px, 3vw, 42px) 0;
}
@media (max-width: 767.98px) {
  .subpage_header {
    padding-block: 28px 0;
  }
}
.subpage_header .container {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr);
  grid-template-areas: "message breadcrumb" "label title";
  align-items: end;
  min-height: clamp(178px, 18vw, 246px);
  width: 100%;
  max-width: none;
  padding-bottom: clamp(18px, 2vw, 26px);
  padding-inline: calc(var(--content_gutter) / 2);
  -moz-column-gap: clamp(8px, 1.2vw, 18px);
       column-gap: clamp(8px, 1.2vw, 18px);
}
@media (max-width: 1199.98px) {
  .subpage_header .container {
    padding-inline: var(--content_gutter);
  }
}
@media (max-width: 1023.98px) {
  .subpage_header .container {
    grid-template-columns: auto minmax(260px, 1fr);
    min-height: 200px;
  }
}
@media (max-width: 767.98px) {
  .subpage_header .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "message" "label" "title" "breadcrumb";
    align-items: start;
    min-height: 0;
    row-gap: 12px;
    padding-bottom: 18px;
  }
}
.subpage_header .container::before {
  grid-area: message;
  align-self: start;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0;
  white-space: pre-line;
  content: "Customized Renovation Place\a CARPIT KYUSHU";
}
@media (max-width: 767.98px) {
  .subpage_header .container::before {
    font-size: clamp(8px, 1vw, 11px);
  }
}
.subpage_header .container::after {
  position: absolute;
  right: calc(var(--content_gutter) / 2);
  bottom: 0;
  left: calc(var(--content_gutter) / 2);
  height: 1px;
  background: var(--color_border);
  content: "";
}
@media (max-width: 1199.98px) {
  .subpage_header .container::after {
    right: var(--content_gutter);
    left: var(--content_gutter);
  }
}
.subpage_header .section_label {
  grid-area: label;
  margin: 0;
  color: var(--color_text);
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 0.9;
  font-weight: 800;
}
@media (max-width: 1023.98px) {
  .subpage_header .section_label {
    font-size: clamp(40px, 7.2vw, 72px);
  }
}
@media (max-width: 767.98px) {
  .subpage_header .section_label {
    font-size: clamp(22px, 13vw, 38px);
    line-height: 0.92;
    margin-top: 10px;
  }
}
.subpage_header h1 {
  grid-area: title;
  align-self: end;
  justify-self: start;
  max-width: 100%;
  margin: 0;
  color: var(--color_text);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .subpage_header h1 {
    justify-self: start;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
    white-space: normal;
    margin-top: -10px;
  }
}
.subpage_header .breadcrumb_nav {
  align-self: start;
  justify-self: end;
  margin-top: 0;
  font-size: 13px;
}
@media (max-width: 767.98px) {
  .subpage_header .breadcrumb_nav {
    justify-self: start;
    margin-top: 20px;
    font-size: 10px;
  }
}
.subpage_header .breadcrumb_list {
  justify-content: flex-end;
}
@media (max-width: 559.98px) {
  .subpage_header .breadcrumb_list {
    justify-content: flex-start;
  }
}
.subpage_header .breadcrumb_item {
  gap: 12px;
}
.subpage_header .breadcrumb_item:not(:last-child)::after {
  width: 28px;
  border-color: var(--color_border);
}
.subpage_header .breadcrumb_item a {
  color: var(--color_main);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.subpage_header .breadcrumb_item a span {
  color: var(--color_main);
}
.subpage_header .breadcrumb_item span {
  color: var(--color_text);
}

/* Subpage lead
───────────────────────*/
.subpage_lead .split {
  align-items: center;
}
.subpage_lead .image_card {
  justify-self: end;
}
@media (max-width: 767.98px) {
  .subpage_lead .image_card {
    justify-self: stretch;
    width: 100%;
  }
}
.subpage_lead .section_label {
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--color_main);
}
.subpage_lead .section_title {
  margin-bottom: clamp(18px, 2vw, 26px);
  color: var(--color_text_sub);
  font-size: clamp(26px, 4.15vw, 36px);
  line-height: 1.3;
}
@media (max-width: 559.98px) {
  .subpage_lead .section_title {
    font-size: 19px;
    line-height: 1.4 !important;
  }
}
.subpage_lead .subpage_lead__body {
  max-width: 680px;
}
@media (max-width: 767.98px) {
  .subpage_lead .subpage_lead__body {
    inline-size: 100%;
    max-inline-size: 100%;
  }
}
.subpage_lead .subpage_lead__body p {
  margin: 0;
  color: var(--color_text);
  font-weight: 500;
  line-height: 2.05;
}
@media (max-width: 559.98px) {
  .subpage_lead .subpage_lead__body p {
    inline-size: 100%;
    max-inline-size: 100%;
    font-weight: 500;
    line-break: strict;
    line-height: 1.95;
    overflow-wrap: anywhere;
    word-break: normal;
  }
}
.subpage_lead .subpage_lead__body p + p {
  margin-top: 14px;
}
.subpage_lead .image_card img {
  width: 100%;
  aspect-ratio: 1.414/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .subpage_lead .image_card img {
    aspect-ratio: 16/9;
  }
}
.subpage_lead .section_heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.contact_topic_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 767.98px) {
  .contact_topic_grid {
    grid-template-columns: 1fr;
  }
}

/* Breadcrumbs
───────────────────────*/
.breadcrumb_nav {
  grid-area: breadcrumb;
  margin-top: 5px;
  font-family: var(--font_en);
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 559.98px) {
  .breadcrumb_nav {
    margin-top: 18px;
    font-size: 12px;
  }
}

.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--color_text_sub);
}

.breadcrumb_item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font_en);
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: uppercase;
}
.breadcrumb_item:not(:last-child)::after {
  display: inline-block;
  width: 28px;
  border-top: 1px solid var(--color_text_half);
  content: "";
}
.breadcrumb_item a {
  color: var(--color_text);
}
.breadcrumb_item a span {
  color: var(--color_navy);
}
.breadcrumb_item a:hover, .breadcrumb_item a:hover span {
  color: var(--color_main);
}
.breadcrumb_item span {
  color: var(--color_text_half);
}

/* Site footer
───────────────────────*/
.footer_cta {
  position: relative;
  min-height: clamp(410px, 43vw, 620px);
  background: var(--color_footer_bg);
  color: var(--color_white);
  overflow: hidden;
  isolation: isolate;
}
.footer_cta::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.48) 0, rgba(0, 0, 0, 0.48) 2px, rgba(0, 0, 0, 0) 2px, rgba(0, 0, 0, 0) 6px), linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.58) 38%, rgba(0, 0, 0, 0.7)), rgba(0, 0, 0, 0.42);
  content: "";
  pointer-events: none;
}
.footer_cta .section_label {
  margin: 0;
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
}
@media (max-width: 767.98px) {
  .footer_cta .section_label {
    font-size: clamp(32px, 12vw, 48px);
  }
}
@media (max-width: 767.98px) {
  .footer_cta {
    min-height: 0 !important;
  }
}

.footer_cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.footer_cta__media img {
  width: 100%;
  height: 136%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, calc(-18% + var(--footer_cta_parallax, 0px)), 0) scale(1.04);
  will-change: transform;
}

.footer_cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vw, 36px);
  padding-block: clamp(46px, 5vw, 68px);
}

.footer_cta__head {
  display: block;
}
@media (max-width: 767.98px) {
  .footer_cta__head .section_label {
    font-size: 28px;
    line-height: 1;
  }
}

.footer_cta__actions {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 0.32fr) minmax(260px, 0.36fr);
  width: 100%;
  min-height: clamp(210px, 20vw, 275px);
  border-right: 1px solid rgba(255, 255, 255, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.72);
}
@media (max-width: 767.98px) {
  .footer_cta__actions {
    grid-template-columns: 1fr;
    min-height: 0;
    border-right: 0;
    border-left: 0;
  }
}

.footer_cta__item {
  display: grid;
  align-content: start;
  gap: clamp(8px, 0.9vw, 12px);
  min-height: inherit;
  padding: clamp(14px, 1.7vw, 23px) clamp(24px, 3.6vw, 48px);
  color: var(--color_white);
}
@media (max-width: 767.98px) {
  .footer_cta__item {
    padding: 30px 10px;
  }
  .footer_cta__item:last-of-type {
    margin-bottom: -40px;
  }
}

.footer_cta__item--tel {
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.footer_cta__item--form {
  border-right: 1px solid rgba(255, 255, 255, 0.72);
}

.footer_cta__item_title {
  display: block;
  font-size: clamp(18px, 1.65vw, 25px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media (max-width: 767.98px) {
  .footer_cta__item_title {
    font-size: 16px;
    line-height: 1.2;
  }
}

.footer_cta__item_label {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media (max-width: 767.98px) {
  .footer_cta__item_label {
    font-size: 10px;
    opacity: 0.7;
  }
}

.footer_cta__item_text {
  display: block;
  max-width: 460px;
  margin-top: clamp(8px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 700;
  line-height: 1.9;
}
@media (max-width: 767.98px) {
  .footer_cta__item_text {
    max-width: none;
    font-size: 12px;
    line-height: 1.6;
  }
}

.footer_cta__item--access .footer_cta__item_text {
  max-width: none;
  line-height: 1.6;
}

.footer_cta__item_text_short {
  display: none;
}

.footer_cta__item_tel {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: clamp(6px, 0.8vw, 10px);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(24px, 2.7vw, 38px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.24s ease;
}
@media (max-width: 767.98px) {
  .footer_cta__item_tel {
    font-size: clamp(23px, 7vw, 28px);
    letter-spacing: 0.03em;
  }
}
.footer_cta__item_tel .material-symbols-outlined {
  font-size: clamp(22px, 2.3vw, 33px);
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
  margin-right: -8px;
}
.footer_cta__item_tel:hover, .footer_cta__item_tel:focus-visible {
  color: var(--color_yellow);
}

.footer_cta__item_hours {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  .footer_cta__item_hours {
    font-size: 11px;
  }
}

.footer_cta__item_action {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  min-height: clamp(50px, 4.6vw, 62px);
  align-items: center;
  justify-content: center;
  margin-top: clamp(6px, 0.8vw, 10px);
  padding: 0 clamp(30px, 3.4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  color: var(--color_white);
  font-size: clamp(14px, 1.45vw, 16px);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.24s ease, color 0.24s ease;
}
@media (max-width: 767.98px) {
  .footer_cta__item_action {
    min-height: 50px;
    padding-inline: 26px;
    font-size: 13px;
  }
}
.footer_cta__item_action:hover, .footer_cta__item_action:focus-visible {
  border-color: var(--color_yellow);
  background: var(--color_yellow);
  color: var(--color_black);
}

.footer_cta__map {
  overflow: hidden;
  width: 100%;
  min-height: 112px;
  margin-top: clamp(6px, 0.8vw, 10px);
  background: rgba(255, 255, 255, 0.1);
}
.footer_cta__map iframe {
  display: block;
  width: 100%;
  height: clamp(112px, 11vw, 150px);
  border: 0;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
  border-radius: 5px;
}

.footer_cta__map_link {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--color_white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.24s ease;
}
@media (max-width: 767.98px) {
  .footer_cta__map_link {
    min-height: 44px;
  }
}
.footer_cta__map_link .material-symbols-outlined {
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  line-height: 1;
}
.footer_cta__map_link:hover, .footer_cta__map_link:focus-visible {
  color: var(--color_yellow);
}

@media (max-width: 767.98px) {
  .footer_cta__inner {
    gap: 22px;
    padding-block: 42px;
  }
  .footer_cta__item {
    min-height: 0;
  }
  .footer_cta__item--tel {
    border-right: 0;
    border-top: 1px solid var(--color_footer_border);
    border-bottom: 1px solid var(--color_footer_border);
  }
  .footer_cta__item--form {
    border-right: 0;
    border-bottom: 1px solid var(--color_footer_border);
  }
  .footer_cta__item_text_long {
    display: none;
  }
  .footer_cta__item_text_short {
    display: inline;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer_cta__media img {
    transform: translate3d(0, -18%, 0) scale(1.04);
  }
}
/*────────────────────────
サイトフッター
─────────────────────────*/
.site_footer {
  background: var(--color_footer_bg);
  color: var(--color_white);
}

.site_footer__main {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
  padding-block: clamp(42px, 5vw, 64px) clamp(34px, 4vw, 52px);
}
@media (max-width: 767.98px) {
  .site_footer__main {
    grid-template-columns: 1fr;
    padding-block: 64px 28px 34px;
    border-top: 1px solid var(--color_footer_border);
  }
}

.site_footer__brand img {
  width: min(184px, 64vw);
  filter: brightness(0) invert(1);
}
@media (max-width: 767.98px) {
  .site_footer__brand img {
    width: min(120px, 30vw);
  }
}

.site_footer__nav,
.site_footer__info {
  min-width: 0;
}

.site_footer__menu_group {
  display: grid;
  gap: clamp(28px, 3.4vw, 44px);
  justify-content: end;
  justify-items: end;
}
@media (max-width: 767.98px) {
  .site_footer__menu_group {
    justify-content: stretch;
    justify-items: stretch;
    gap: 24px;
    border-top: 1px solid var(--color_footer_border);
    padding-top: 10px;
  }
}

.site_footer__nav p,
.site_footer__info > p {
  margin: 0 0 22px;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.site_footer__info {
  margin-top: 20px;
}
.site_footer__info > p {
  margin: 14px 0 8px;
  font-size: 11px;
}
.site_footer__info dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 0;
  max-width: 420px;
}
.site_footer__info div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 559.98px) {
  .site_footer__info div {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
  }
}
.site_footer__info dt {
  color: var(--color_text_sub);
  font-family: var(--font_en);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  .site_footer__info dt {
    font-size: 9px;
  }
}
.site_footer__info dd {
  margin: 0;
  color: var(--color_footer_text);
}
@media (max-width: 767.98px) {
  .site_footer__info dd {
    font-size: 11px;
  }
}
.site_footer__info a:hover,
.site_footer__info a:focus-visible {
  color: var(--color_yellow);
}

.site_footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 24px) clamp(18px, 2.6vw, 34px);
  width: min(100%, 660px);
  text-align: right;
}
@media (max-width: 1023.98px) {
  .site_footer__nav {
    width: min(100%, 500px);
  }
}
@media (max-width: 767.98px) {
  .site_footer__nav {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    gap: 18px 16px;
    margin-top: 20px;
  }
}
.site_footer__nav p {
  grid-column: 1/-1;
  margin-bottom: 4px;
}
.site_footer__nav a {
  display: grid;
  gap: 6px;
  justify-items: end;
  min-width: 104px;
  padding-block: 0;
  color: var(--color_footer_sub);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .site_footer__nav a {
    justify-items: start;
    min-width: min(44vw, 150px);
    font-size: 12px;
  }
}
.site_footer__nav a:first-of-type {
  border-top: 0;
}
.site_footer__nav a:hover, .site_footer__nav a:focus-visible {
  color: var(--color_yellow);
}
.site_footer__nav a:hover span, .site_footer__nav a:focus-visible span {
  color: var(--color_yellow);
}
.site_footer__nav a span {
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(20px, 1.95vw, 26px);
  font-weight: 800;
  line-height: 1;
  display: block;
}
@media (max-width: 767.98px) {
  .site_footer__nav a span {
    font-size: 17px;
    margin-bottom: -5px;
  }
}

.site_footer__external {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767.98px) {
  .site_footer__external {
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
    display: flex;
  }
}
.site_footer__external a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--color_white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}
.site_footer__external a:hover, .site_footer__external a:focus-visible {
  border-color: var(--color_yellow);
  background: var(--color_yellow);
  color: var(--color_black);
}
.site_footer__external a:hover span, .site_footer__external a:focus-visible span {
  color: var(--color_black);
}
.site_footer__external a span {
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  transition: color 0.24s ease;
}
@media (max-width: 767.98px) {
  .site_footer__external a span {
    font-size: 14px;
  }
}
.site_footer__external a .material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  letter-spacing: 0;
}

.site_footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px max(var(--content_gutter), (100% - var(--content_width)) / 2);
  border-top: 1px solid var(--color_footer_border);
  color: var(--color_footer_sub);
  font-family: var(--font_en);
  font-size: 13px;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .site_footer__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding-inline-end: calc(var(--content_gutter) + 60px);
  }
}
.site_footer__bottom p {
  margin: 0;
  font-size: 0.8rem !important;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .site_footer__bottom p {
    order: 2;
  }
}
.site_footer__bottom nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .site_footer__bottom nav {
    order: 1;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
  }
}
.site_footer__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color_white);
}
.site_footer__bottom a:hover, .site_footer__bottom a:focus-visible {
  color: var(--color_yellow);
}
.site_footer__bottom .site_footer__back_top {
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color_footer_text);
  border-radius: 50%;
  color: var(--color_footer_text);
}
@media (max-width: 767.98px) {
  .site_footer__bottom .site_footer__back_top {
    position: absolute;
    right: var(--content_gutter);
    bottom: 18px;
  }
}
@media (max-width: 559.98px) {
  .site_footer__bottom .site_footer__back_top {
    width: 44px;
    height: 44px;
  }
}
.site_footer__bottom .site_footer__back_top .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}
.site_footer__bottom .site_footer__back_top:hover, .site_footer__bottom .site_footer__back_top:focus-visible {
  border-color: var(--color_yellow);
  background: var(--color_yellow);
  color: var(--color_black);
}

/* Reveal animations
───────────────────────*/
.js_reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.72s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.72s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}
.js_reveal.is_visible {
  opacity: 1;
  transform: translateY(0);
}

.js_reveal_fade {
  opacity: 0;
  transition: opacity 0.72s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity;
}
.js_reveal_fade.is_visible {
  opacity: 1;
}

/* 英字タイトル: 1文字ずつ下から表示
───────────────────────*/
.js_reveal_title_en {
  overflow: hidden;
}
.js_reveal_title_en .js_reveal_title_word {
  display: inline-block;
  white-space: nowrap;
}
.js_reveal_title_en .js_reveal_title_char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.08em);
  transition: opacity 0.54s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.64s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: calc(var(--reveal_char_index, 0) * 0.035s);
  will-change: opacity, transform;
}
.js_reveal_title_en.is_visible .js_reveal_title_char {
  opacity: 1;
  transform: translateY(0);
}

/* 日本語タイトル: 黒いボックスワイプ
───────────────────────*/
.js_reveal_title_ja {
  position: relative;
  overflow: visible;
}
.js_reveal_title_ja .js_reveal_title_text {
  position: relative;
  z-index: 1;
  display: inline;
  padding-inline: 0.02em;
  background-image: linear-gradient(#757575, #757575);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: transparent;
  transition: color 0.01s linear 0.34s;
}
.js_reveal_title_ja.is_visible .js_reveal_title_text {
  animation: title_wipe_reveal 0.82s cubic-bezier(0.76, 0, 0.24, 1) both;
  color: inherit;
}
.js_reveal_title_ja::after {
  opacity: 0;
  transition: opacity 0.2s ease 0.48s;
}
.js_reveal_title_ja.is_visible::after {
  opacity: 1;
}

@keyframes title_wipe_reveal {
  0% {
    background-position: left center;
    background-size: 0 100%;
  }
  46% {
    background-position: left center;
    background-size: 100% 100%;
  }
  47% {
    background-position: right center;
    background-size: 100% 100%;
  }
  100% {
    background-position: right center;
    background-size: 0 100%;
  }
}
.flow_list li.js_reveal {
  transform: translateY(34px);
}
.flow_list li.js_reveal:nth-child(1) {
  transition-delay: 0s;
}
.flow_list li.js_reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.flow_list li.js_reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.flow_list li.js_reveal:nth-child(4) {
  transition-delay: 0.24s;
}
.flow_list li.js_reveal:nth-child(5) {
  transition-delay: 0.32s;
}
.flow_list li.js_reveal:nth-child(6) {
  transition-delay: 0.4s;
}
.flow_list li.js_reveal.is_visible {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .js_reveal_fade,
  .js_reveal {
    opacity: 1;
    transform: none;
  }
  .js_reveal_title_en .js_reveal_title_char,
  .js_reveal_title_ja .js_reveal_title_text {
    background-size: 0 100%;
    color: inherit;
    opacity: 1;
    transform: none;
  }
  .js_reveal_title_ja::after {
    opacity: 1;
  }
}
/* Front page
───────────────────────*/
/* ヒーロー表示設定
───────────────────────*/
body.home {
  --home_hero_height: clamp(720px, 100svh, 980px);
}
@media (max-width: 1199.98px) {
  body.home {
    --home_hero_height: clamp(680px, 100svh, 900px);
  }
}
@media (max-width: 767.98px) {
  body.home {
    --home_hero_height: 100svh;
  }
}
@media (max-width: 559.98px) {
  body.home {
    --home_hero_height: 680px;
  }
}

/* ファーストビュー
───────────────────────*/
.hero {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: var(--home_hero_height);
  min-height: 0;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--color_white);
  will-change: transform;
}
.hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(34px, 5.6vw, 68px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
}
@media (max-width: 559.98px) {
  .hero h1 {
    max-width: 340px;
    font-size: 33px;
    line-height: 1.22;
  }
}
.hero p {
  max-width: 680px;
  font-size: clamp(16px, 1.6vw, 20px);
}
@media (max-width: 559.98px) {
  .hero p {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.8;
  }
}

/* 初回ローディングロゴ
───────────────────────*/
.hero_splash {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--color_white);
}
.hero_splash.is_done {
  visibility: hidden;
  pointer-events: none;
}

.hero_splash__logo {
  position: absolute;
  inset: -48px 0 0;
  width: 202px;
  height: 71px;
  margin: auto;
}
.hero_splash__logo img {
  position: absolute;
  width: 202px;
  max-width: none;
  height: 71px;
}
.hero_splash__logo span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color_white);
  transition: width 0.78s cubic-bezier(0.7, 0, 0.84, 0);
}
.hero_splash.is_logo_revealed .hero_splash__logo span {
  width: 0;
}
.hero_splash.is_logo_hidden .hero_splash__logo span {
  left: 0;
  right: auto;
  width: 100%;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 559.98px) {
  .hero_splash__logo {
    inset-block-start: -80px;
    width: 142px;
    height: 50px;
  }
  .hero_splash__logo img {
    width: 142px;
    height: auto;
  }
}

/* スライダー
───────────────────────*/
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  content: "";
  opacity: 0;
  transition: opacity 0.24s ease;
}
.hero.is_started .hero__media::after {
  opacity: 1;
}
.hero__slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 0;
  overflow: hidden;
  opacity: 1;
  will-change: width;
}
.hero__slide::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  content: "";
  pointer-events: none;
}
.hero__slide.is_active {
  z-index: 2;
  width: 100%;
  animation: hero_slide_reveal 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero__slide.is_active img {
  animation: hero_image_parallax 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.hero__slide.is_leaving {
  z-index: 1;
  width: 100%;
}
.hero__slide img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: right;
}
@media (max-width: 759.98px) {
  .hero__slide.is_initial {
    width: 100%;
    animation: none;
  }
  .hero__slide.is_initial img {
    right: 0;
    animation: none;
  }
}

@keyframes hero_slide_reveal {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes hero_image_parallax {
  from {
    right: -300px;
  }
  to {
    right: 0;
  }
}
/* 在庫車リンク
───────────────────────*/
.hero_stock_link {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(34px, 5vw, 72px);
  z-index: 5;
  display: grid;
  place-items: center;
  width: clamp(128px, 12vw, 180px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: transparent;
  color: var(--color_text);
  opacity: 0;
  text-decoration: none;
  overflow: visible;
  transform: translateY(26px) scale(0.94);
  transition: opacity 0.52s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.68s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hero_stock_link::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: var(--color_yellow);
  content: "";
  transform: scale(1.18);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero_stock_link:hover, .hero_stock_link:focus-visible {
  transform: translateY(-2px) scale(1);
  transition-delay: 0s;
}
.hero_stock_link:hover::before, .hero_stock_link:focus-visible::before {
  transform: scale(1);
}
.hero.is_content_visible .hero_stock_link {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.52s;
}
.hero.is_content_visible .hero_stock_link:hover, .hero.is_content_visible .hero_stock_link:focus-visible {
  transform: translateY(-2px) scale(1);
  transition-delay: 0s;
}
@media (max-width: 759.98px) {
  .hero_stock_link {
    top: 96px;
    right: 18px;
    bottom: auto;
    width: 88px;
  }
}

.hero_stock_link__ring {
  position: absolute;
  inset: -9%;
  z-index: 1;
  width: 118%;
  height: 118%;
  fill: rgba(0, 0, 0, 0.62);
  stroke: rgba(0, 0, 0, 0.16);
  stroke-width: 0.48px;
  font-family: var(--font_en);
  font-size: 9.1px;
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 1;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: stock_ring_rotate 11s linear infinite;
  transition: opacity 0.18s ease;
}
.hero_stock_link:hover .hero_stock_link__ring, .hero_stock_link:focus-visible .hero_stock_link__ring {
  opacity: 0;
  animation: none;
}
@media (max-width: 759.98px) {
  .hero_stock_link__ring {
    inset: -10%;
    width: 120%;
    height: 120%;
    font-size: 8px;
  }
}

.hero_stock_link__title {
  position: absolute;
  top: 23%;
  z-index: 2;
  font-family: var(--font_en);
  font-size: clamp(21px, 1.7vw, 27px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
@media (max-width: 759.98px) {
  .hero_stock_link__title {
    top: 22%;
    font-size: 16px;
  }
}

.hero_stock_link__label {
  position: absolute;
  top: 40%;
  z-index: 2;
  color: rgba(0, 0, 0, 0.72);
  font-size: clamp(10px, 0.75vw, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media (max-width: 759.98px) {
  .hero_stock_link__label {
    top: 41%;
    font-size: 9px;
  }
}

.hero_stock_link__image {
  position: absolute;
  left: 50%;
  bottom: 19%;
  z-index: 1;
  width: 32%;
  height: auto;
  transform: translateX(-50%);
  transform-origin: 50% 86%;
  animation: stock_image_rattle 2.2s ease-in-out infinite;
  transition: transform 0.24s ease;
}
@media (max-width: 759.98px) {
  .hero_stock_link__image {
    bottom: 15%;
  }
}
.hero_stock_link:hover .hero_stock_link__image, .hero_stock_link:focus-visible .hero_stock_link__image {
  animation: none;
  transform: translateX(-50%) translateY(-2px);
}

@keyframes stock_image_rattle {
  0%, 72%, 100% {
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  76% {
    transform: translateX(calc(-50% - 1px)) translateY(0) rotate(-2.5deg);
  }
  80% {
    transform: translateX(calc(-50% + 1px)) translateY(-1px) rotate(2deg);
  }
  84% {
    transform: translateX(calc(-50% - 0.5px)) translateY(0) rotate(-1.5deg);
  }
  88% {
    transform: translateX(-50%) translateY(0) rotate(0.8deg);
  }
}
@keyframes stock_ring_rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* スライドインジケーター
───────────────────────*/
.hero__indicator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.32);
}

.hero__indicator_bar {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color_yellow);
  transform: scaleX(0);
  transform-origin: left center;
}
.hero__indicator_bar.is_animating {
  animation: hero_indicator_progress var(--hero_indicator_duration, 8200ms) linear both;
}

@keyframes hero_indicator_progress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/* モーション低減
───────────────────────*/
@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    width: 0;
  }
  .hero__slide.is_active img {
    animation: none;
  }
  .hero__slide.is_active, .hero__slide.is_leaving {
    width: 100%;
    animation: none;
  }
  .hero__indicator_bar {
    transform: scaleX(1);
    animation: none;
  }
  .hero_stock_link__image {
    animation: none;
  }
}
/* ヒーロー固定表示用の本文レイヤー
───────────────────────*/
body.home main#primary {
  position: relative;
  padding-top: var(--home_hero_height);
  background: transparent;
}
body.home main#primary > .section {
  position: relative;
  z-index: 2;
  background: var(--color_bg);
}
body.home main#primary > .section--soft {
  background: var(--color_bg_soft);
}

/* ヒーローコピー
───────────────────────*/
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: clamp(150px, 18vw, 240px) clamp(24px, 3.4vw, 48px);
  padding-inline: clamp(24px, 3vw, 56px);
  color: var(--color_white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.hero.is_content_visible .hero__content {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 559.98px) {
  .hero__content {
    padding-block-start: 122px;
    padding-block-end: 40px;
    padding-inline: 20px;
  }
}
.hero__content .hero__lead {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font_jp);
  font-size: clamp(15px, 2.1vw, 32px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.05em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.62s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.76s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (max-width: 559.98px) {
  .hero__content .hero__lead {
    margin-bottom: 0px;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
}
.hero__content h1 {
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: none;
  font-family: var(--font_en);
  font-size: clamp(46px, 10.3vw, 154px);
  font-weight: 800;
  line-height: 0.82;
  overflow: visible;
  white-space: nowrap;
  overflow-wrap: normal;
}
@media (max-width: 559.98px) {
  .hero__content h1 {
    width: auto;
    max-width: calc(100vw - 40px);
    font-size: clamp(38px, 11vw, 44px);
    line-height: 0.9;
    margin-bottom: 10px;
  }
}
.hero__content .hero__title_text {
  display: inline-flex;
  align-items: baseline;
  overflow: hidden;
}
.hero__content .hero__title_text > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(1.1em);
  transition: opacity 0.62s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.76s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}
.hero__content .hero__title_text > span:nth-child(1) {
  transition-delay: 0.12s;
}
.hero__content .hero__title_text > span:nth-child(2) {
  transition-delay: 0.155s;
}
.hero__content .hero__title_text > span:nth-child(3) {
  transition-delay: 0.19s;
}
.hero__content .hero__title_text > span:nth-child(4) {
  transition-delay: 0.225s;
}
.hero__content .hero__title_text > span:nth-child(5) {
  transition-delay: 0.26s;
}
.hero__content .hero__title_text > span:nth-child(6) {
  transition-delay: 0.295s;
}
.hero__content .hero__title_text > span:nth-child(7) {
  transition-delay: 0.33s;
}
.hero__content .hero__title_text > span:nth-child(8) {
  transition-delay: 0.365s;
}
.hero__content .hero__title_text > span:nth-child(9) {
  transition-delay: 0.4s;
}
.hero__content .hero__title_text > span:nth-child(10) {
  transition-delay: 0.435s;
}
.hero__content .hero__title_text > span:nth-child(11) {
  transition-delay: 0.47s;
}
.hero__content .hero__title_text > span:nth-child(12) {
  transition-delay: 0.505s;
}
.hero__content .hero__title_text > span:nth-child(13) {
  transition-delay: 0.54s;
}
.hero__content .hero__title_text > span:nth-child(14) {
  transition-delay: 0.575s;
}
.hero__content p {
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--font_en);
  font-size: clamp(12px, 2vw, 35px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.62s cubic-bezier(0.215, 0.61, 0.355, 1), transform 0.76s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.24s;
}
.hero.is_content_visible .hero__content p {
  opacity: 1;
  transform: translateY(0);
}
.hero.is_content_visible .hero__content .hero__lead,
.hero.is_content_visible .hero__content .hero__title_text > span {
  opacity: 1;
  transform: translateY(0);
}

/* トップ共通セクション設定
───────────────────────*/
body.home .section {
  padding-block: clamp(58px, 6.8vw, 108px) clamp(68px, 7.8vw, 124px);
}
@media (max-width: 767.98px) {
  body.home .section {
    padding-block: 50px 58px;
  }
}
body.home .section_heading {
  margin-bottom: clamp(26px, 4vw, 48px);
}
body.home .section_heading .section_label {
  color: var(--color_text);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 0.92;
}
@media (max-width: 559.98px) {
  body.home .section_heading .section_label {
    font-size: 32px;
  }
}
body.home .section_heading .section_title {
  color: var(--color_text_sub);
  font-family: var(--font_jp);
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 900;
  line-height: 1.65;
}
body.home .section_heading .section_title::after {
  display: none;
}
@media (max-width: 559.98px) {
  body.home .section_heading .section_title {
    font-size: 16px;
    line-height: 1.6;
  }
}

/* ストーリー
───────────────────────*/
.home_story {
  display: block;
  padding-block: clamp(80px, 15vw, 160px) !important;
}
@media (max-width: 767.98px) {
  .home_story {
    padding-block: 52px !important;
  }
}

.home_story__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(38px, 7vw, 112px);
  align-items: start;
}
@media (max-width: 767.98px) {
  .home_story__grid {
    grid-template-columns: 1fr;
  }
}

.home_story__heading .section_title {
  color: var(--color_text);
  font-family: var(--font_jp);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.3;
}
@media (max-width: 767.98px) {
  .home_story__heading .section_title {
    font-size: clamp(24px, 7.2vw, 30px);
    line-height: 1.38;
  }
}

.home_story__lead {
  margin: clamp(28px, 3.5vw, 60px) 0 0;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: clamp(12px, 1.1vw, 22px);
  font-weight: 800;
  line-height: 1.45;
}

.home_story__body {
  padding-top: clamp(4px, 0.8vw, 12px);
}
@media (max-width: 767.98px) {
  .home_story__body {
    inline-size: 100%;
    max-inline-size: 100%;
  }
}
.home_story__body p {
  margin: 0;
  color: var(--color_text);
  font-weight: 700;
  line-height: 2.05;
  overflow-wrap: anywhere;
}
@media (max-width: 767.98px) {
  .home_story__body p {
    inline-size: 100%;
    max-inline-size: 100%;
    margin-top: -10px;
    font-weight: 600;
    line-break: strict;
    line-height: 1.95;
    word-break: normal;
  }
}
.home_story__body p + p {
  margin-top: 1.05em;
}

/* MINIイメージ画像帯
───────────────────────*/
.home_mini_visual--front {
  isolation: isolate;
}
.home_mini_visual--front::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px) contrast(1.05);
  content: "";
  pointer-events: none;
}
.home_mini_visual--front img {
  filter: grayscale(1);
}

.home_mini_visual__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(160px, 19vw, 280px);
  aspect-ratio: 202.16/70.89;
  background: var(--color_white);
  -webkit-mask: url("../images/logo.svg") center/contain no-repeat;
  mask: url("../images/logo.svg") center/contain no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .home_mini_visual__logo {
    width: clamp(100px, 38vw, 130px);
  }
}

/* MINIオーナー導線
───────────────────────*/
@media (max-width: 767.98px) {
  .home_mini {
    padding-top: 20px !important;
  }
}

.home_mini_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  overflow: visible;
  counter-reset: home-mini-card;
}
@media (max-width: 767.98px) {
  .home_mini_grid {
    grid-template-columns: 1fr;
  }
}

.home_mini_card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  padding: 12px 12px 16px;
  border: 1px solid var(--color_border);
  border-radius: 18px;
  background: var(--color_white);
  color: var(--color_text);
  text-decoration: none;
  transition: border-color 0.22s ease, transform 0.22s ease;
  counter-increment: home-mini-card;
}
.home_mini_card::before {
  position: absolute;
  top: -0.26em;
  right: -0.17em;
  z-index: 2;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: clamp(76px, 4vw, 100px);
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.6;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: counter(home-mini-card, decimal-leading-zero);
}
@media (max-width: 767.98px) {
  .home_mini_card::before {
    top: -0.18em;
    right: -0.08em;
    font-size: 62px;
  }
}
.home_mini_card:hover, .home_mini_card:focus-visible {
  border-color: var(--color_main);
  transform: translateY(-3px);
}
.home_mini_card:hover > div h3, .home_mini_card:focus-visible > div h3 {
  color: var(--color_main);
}
.home_mini_card:hover .home_mini_card__action, .home_mini_card:focus-visible .home_mini_card__action {
  background: var(--color_main);
  color: var(--color_white);
}
.home_mini_card img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .home_mini_card img {
    aspect-ratio: 16/9;
  }
}
.home_mini_card > div {
  padding: 0 20px 30px;
}
@media (max-width: 767.98px) {
  .home_mini_card > div {
    padding: 0 5px 15px;
  }
}
.home_mini_card > div > span {
  display: block;
  margin: 10px 0 -3px;
  color: var(--color_text_sub);
  font-family: var(--font_en);
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .home_mini_card > div > span {
    font-size: 12px;
    margin: 0 0 -5px;
  }
}
.home_mini_card > div h3 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 15px;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .home_mini_card > div h3 {
    margin: 0 0 10px;
  }
}
.home_mini_card > div p {
  margin: 0;
  color: var(--color_text_sub);
  line-height: 1.8;
}
@media (max-width: 767.98px) {
  .home_mini_card > div p {
    line-height: 1.6;
  }
}

.home_mini_card__action {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color_main);
  border-radius: 50%;
  color: var(--color_main);
  pointer-events: none;
  transition: background-color 0.22s ease, color 0.22s ease;
}
@media (max-width: 767.98px) {
  .home_mini_card__action {
    right: 20px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }
}
.home_mini_card__action .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

/* サービス導線
───────────────────────*/
.home_service {
  padding-bottom: clamp(34px, 3.9vw, 62px);
}
@media (max-width: 767.98px) {
  .home_service {
    padding-bottom: 0;
    margin-bottom: -50px !important;
  }
}

.home_service__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}
@media (max-width: 767.98px) {
  .home_service__grid {
    grid-template-columns: 1fr;
  }
}

.home_service__body .section_title_group {
  --section_title_group_margin_bottom: 40px;
}
@media (max-width: 767.98px) {
  .home_service__body .section_title_group {
    --section_title_group_margin_bottom:22px;
  }
}
.home_service__body .section_label {
  color: var(--color_text);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.9;
}
@media (max-width: 767.98px) {
  .home_service__body .section_label {
    font-size: 32px;
    line-height: 0.96;
  }
}
.home_service__body .section_title {
  color: var(--color_text_sub);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.42;
}
@media (max-width: 767.98px) {
  .home_service__body .section_title {
    font-size: 18px;
    line-height: 1.55;
  }
}
.home_service__body p {
  color: var(--color_text);
  line-height: 1.95;
  overflow-wrap: anywhere;
}
@media (max-width: 559.98px) {
  .home_service__body p {
    line-height: 1.7;
  }
}
@media (max-width: 767.98px) {
  .home_service__body .text_link {
    margin-left: auto;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.home_service__image {
  margin: 0;
}
.home_service__image img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 18px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 559.98px) {
  .home_service__image img {
    aspect-ratio: 16/9;
  }
}

.home_service__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}
@media (max-width: 559.98px) {
  .home_service__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 20px 0 0;
  }
}
.home_service__list li {
  padding: 12px 24px;
  border: 1px solid var(--color_border);
  border-radius: 999px;
  background: var(--color_white);
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 559.98px) {
  .home_service__list li {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.45;
    text-align: center;
  }
}

/* 店舗・工場CTA
───────────────────────*/
.home_trust {
  overflow: hidden;
  padding: 0;
  background: transparent;
  margin: -100px auto 0;
}
@media (max-width: 767.98px) {
  .home_trust {
    margin: 0 auto;
  }
}

.home_trust__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .home_trust__inner {
    grid-template-columns: 1fr;
  }
}

.home_trust_card {
  position: relative;
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  color: var(--color_white);
  text-decoration: none;
  isolation: isolate;
}
.home_trust_card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.88));
  backdrop-filter: contrast(1.15) saturate(1.05);
  content: "";
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.home_trust_card > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (hover: hover) {
  .home_trust_card:hover::after {
    opacity: 0.68;
  }
  .home_trust_card:hover .home_trust_card__arrow {
    border-color: var(--color_yellow);
    background: var(--color_yellow);
    color: var(--color_black);
  }
  .home_trust_card:hover .home_trust_card__eyebrow {
    color: var(--color_yellow);
  }
  .home_trust_card:hover .home_trust_card__label,
  .home_trust_card:hover .home_trust_card__title {
    color: var(--color_yellow);
  }
}

.home_trust_card__eyebrow {
  position: absolute;
  top: clamp(16px, 2vw, 26px);
  left: clamp(16px, 2vw, 26px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font_en);
  font-size: clamp(8px, 0.85vw, 12px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: color 0.28s ease;
}
.home_trust_card__eyebrow::before {
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}
.home_trust_card__body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  padding: 28px;
  text-align: center;
}

.home_trust_card__label {
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 0.95;
  transition: color 0.28s ease;
}

.home_trust_card__title {
  color: var(--color_white);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.6;
  transition: color 0.28s ease;
}
@media (max-width: 767.98px) {
  .home_trust_card__title {
    margin-top: -7px;
  }
}

.home_trust_card__arrow {
  position: absolute;
  right: clamp(16px, 2.2vw, 28px);
  bottom: clamp(16px, 2.2vw, 28px);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 4vw, 56px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: var(--color_white);
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}
.home_trust_card__arrow .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

/* お知らせ
───────────────────────*/
.home_news {
  margin: -100px auto 0;
}
@media (max-width: 767.98px) {
  .home_news {
    margin: -50px auto 0;
  }
}

.home_news__inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 0.72fr);
  gap: 18px clamp(28px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 767.98px) {
  .home_news__inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
.home_news__inner .section_heading {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
  padding-top: 0;
}
@media (max-width: 767.98px) {
  .home_news__inner .section_heading {
    grid-column: auto;
    grid-row: auto;
  }
}
.home_news__inner .section_heading .section_label {
  margin-top: 0;
}
.home_news__inner .news_list {
  grid-column: 2;
  grid-row: 1/span 2;
  justify-self: end;
  display: grid;
  gap: 0;
  width: min(100% + clamp(60px, 7vw, 120px), 960px);
}
@media (max-width: 767.98px) {
  .home_news__inner .news_list {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
  }
}
.home_news__inner .news_list article {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}
.home_news__inner .news_list article:last-of-type {
  border-bottom: 1px solid var(--color_border);
}
.home_news__inner .news_list article:hover {
  border-color: var(--color_border);
}
@media (max-width: 767.98px) {
  .home_news__inner .news_list article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 12px;
  }
}
.home_news__inner .news_list time {
  font-size: 12px;
  letter-spacing: 0.02em;
  margin: 0 0 -10px;
}
.home_news__inner .news_list h3 {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}
.home_news__inner .text_link {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .home_news__inner .text_link {
    grid-column: auto;
    grid-row: auto;
    justify-self: end;
  }
}

.home_news_review {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 0.7fr);
  gap: 18px clamp(24px, 3vw, 42px);
  align-items: center;
  min-height: 104px;
  margin-top: 48px;
  padding: 24px clamp(24px, 3vw, 38px);
  border-radius: 12px;
  background: var(--color_footer_border);
  color: var(--color_white);
  text-decoration: none;
  transition: background-color 0.28s ease, color 0.28s ease;
}
@media (max-width: 767.98px) {
  .home_news_review {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    margin-top: 30px;
    padding: 16px 22px;
  }
}
.home_news_review:hover, .home_news_review:focus-visible {
  background: var(--color_yellow);
  color: var(--color_black);
}
.home_news_review:hover .home_news_review__text, .home_news_review:focus-visible .home_news_review__text {
  color: var(--color_black);
}

.home_news_review__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .home_news_review__heading {
    gap: 5px;
    margin-bottom: -5px;
    font-size: 14.5px;
  }
}
.home_news_review__heading .material-symbols-outlined {
  font-size: 25px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}
@media (max-width: 767.98px) {
  .home_news_review__heading .material-symbols-outlined {
    font-size: 20px;
  }
}

.home_news_review__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.8;
  transition: color 0.28s ease;
}
@media (max-width: 767.98px) {
  .home_news_review__text {
    font-size: 12.5px;
    line-height: 1.4;
  }
}

.instagram_inner {
  margin-top: 60px;
}
.instagram_inner h3 {
  font-family: var(--font_en);
  margin: 0;
  font-weight: 800;
  color: #757575;
}
@media (max-width: 767.98px) {
  .instagram_inner {
    margin-top: 30px;
  }
}

/* About page
───────────────────────*/
/* リード画像
───────────────────────*/
.about_policy__image img {
  aspect-ratio: 16/10;
}

/* 私たちの強み / 店舗紹介 共通ブロック
───────────────────────*/
.about_feature_block {
  display: grid;
  grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(42px, 7vw, 92px);
}
@media (max-width: 1023.98px) {
  .about_feature_block {
    gap: clamp(26px, 4vw, 44px);
    margin-top: 54px;
  }
}
@media (max-width: 767.98px) {
  .about_feature_block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 42px;
  }
}

.about_feature_block__image {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: var(--color_white);
}
.about_feature_block__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
@media (max-width: 767.98px) {
  .about_feature_block__image img {
    aspect-ratio: 16/9;
  }
}

.about_feature_block--advantage .about_feature_block__image img {
  filter: none;
}

/* About共通見出し
───────────────────────*/
.about_section_heading {
  --section_title_group_margin_bottom: clamp(18px, 2.4vw, 28px);
  gap: 6px;
}
.about_section_heading > .section_label {
  margin: 0;
  color: var(--color_text);
  font-family: var(--font_en);
  font-size: var(--type_compact_label_size);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  font-feature-settings: normal;
}
.about_section_heading > .section_title {
  margin: 0;
  color: var(--color_text_sub);
  font-family: var(--font_jp);
  font-size: var(--type_compact_title_size);
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0;
}
@media (max-width: 767.98px) {
  .about_section_heading > .section_title {
    line-height: 1.6;
  }
}

@media (max-width: 767.98px) {
  .about_feature_block__body {
    inline-size: 100%;
    max-inline-size: 100%;
    margin-top: 20px;
  }
}
.about_feature_block__body > p {
  margin: 0;
  color: var(--color_text);
  line-height: 1.9;
  overflow-wrap: anywhere;
}
@media (max-width: 767.98px) {
  .about_feature_block__body > p {
    inline-size: 100%;
    max-inline-size: 100%;
    font-weight: 500;
    line-break: strict;
    line-height: 1.9;
    word-break: normal;
  }
}
.about_feature_block__body > p + p {
  margin-top: 1em;
}

/* MINIイメージ画像帯
───────────────────────*/
.about_mini_visual {
  margin-top: clamp(56px, 7vw, 64px);
  isolation: isolate;
}
.about_mini_visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(7px) contrast(1.08);
  content: "";
  pointer-events: none;
}
.about_mini_visual img {
  filter: grayscale(1);
}
@media (max-width: 767.98px) {
  .about_mini_visual {
    margin-top: 28px;
  }
}

.about_mini_visual__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: clamp(160px, 19vw, 280px);
  aspect-ratio: 202.16/70.89;
  background: var(--color_white);
  -webkit-mask: url("../images/logo.svg") center/contain no-repeat;
  mask: url("../images/logo.svg") center/contain no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .about_mini_visual__logo {
    width: clamp(100px, 38vw, 130px);
  }
}

/* SHOP AND FACTORY
───────────────────────*/
.about_shop {
  padding-block-start: clamp(56px, 10vw, 104px);
}
@media (max-width: 767.98px) {
  .about_shop {
    padding-block-start: 21px;
  }
  .about_shop .about_feature_block__body {
    order: 1;
  }
  .about_shop .about_feature_block__image {
    order: 2;
  }
  .about_shop .about_feature_block__image img {
    aspect-ratio: 16/9;
  }
}
.about_shop .about_feature_block__image img {
  filter: none;
}
.about_shop .about_feature_block__body > p {
  color: var(--color_text);
}
@media (max-width: 767.98px) {
  .about_shop .about_feature_block__body > p {
    font-size: 13px;
  }
}
.about_shop p.about_shop__index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 44px;
  padding: 7px 12px;
  background: var(--color_main);
  color: var(--color_white);
  font-family: var(--font_en);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.about_shop p.about_shop__index span {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 767.98px) {
  .about_shop p.about_shop__index {
    font-size: 10px;
    margin-bottom: 30px;
  }
}
.about_shop p.about_shop__index + .section_label {
  margin-top: 0;
}

.about_shop__display {
  margin-top: clamp(42px, 7vw, 92px);
}
@media (max-width: 1023.98px) {
  .about_shop__display {
    margin-top: 54px;
  }
}
@media (max-width: 767.98px) {
  .about_shop__display {
    margin-top: 42px;
  }
}

/* 店舗ギャラリー
───────────────────────*/
.about_shop__gallery img {
  aspect-ratio: 4/3;
}

.about_shop_gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 20px);
  margin-top: clamp(24px, 4vw, 54px);
}
@media (max-width: 899.98px) {
  .about_shop_gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 559.98px) {
  .about_shop_gallery {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }
}

/* アクセスマップ
───────────────────────*/
@media (max-width: 767.98px) {
  .section--map {
    padding-top: 0;
  }
}

.page-template-page-about .map_frame iframe,
.page-id-about .map_frame iframe {
  height: clamp(320px, 42vw, 520px);
}
@media (max-width: 559.98px) {
  .page-template-page-about .map_frame iframe,
  .page-id-about .map_frame iframe {
    height: 180px;
  }
}

/* アクセス情報カード
───────────────────────*/
.company_access {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
  gap: clamp(22px, 3vw, 40px);
  align-items: stretch;
  padding-bottom: 50px;
}
@media (max-width: 767.98px) {
  .company_access {
    padding-bottom: 20px;
  }
}
@media (max-width: 899.98px) {
  .company_access {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .company_access {
    gap: 18px;
  }
}

.company_access__map {
  height: 100%;
}
.company_access__map iframe {
  height: 100%;
  min-height: clamp(360px, 42vw, 520px);
}
@media (max-width: 559.98px) {
  .company_access__map iframe {
    min-height: 280px;
  }
}

.company_access__info {
  display: grid;
  gap: 16px;
}

.company_access__card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--color_border);
  border-radius: 18px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .company_access__card {
    padding: 20px;
    border-radius: 14px;
  }
}
.company_access__card h3 {
  margin: 0;
  color: var(--color_text);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1.5;
}
.company_access__card p {
  margin: 0;
  color: var(--color_text);
  font-weight: 500;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
@media (max-width: 767.98px) {
  .company_access__card p {
    font-size: 13px;
  }
}
.company_access__card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 16px;
  border: 1px solid var(--color_main);
  border-radius: 999px;
  color: var(--color_main);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.company_access__card a:hover {
  background: var(--color_main);
  color: var(--color_white);
}
@media (max-width: 767.98px) {
  .company_access__card a {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.company_access__card .material-symbols-outlined {
  font-size: 20px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.company_access__card--route {
  gap: 14px;
}

.company_access__label {
  color: var(--color_main) !important;
  font-family: var(--font_en);
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .company_access__label {
    font-size: 10px !important;
  }
}

/* Services page
───────────────────────*/
/* MENU: 相談内容一覧
───────────────────────*/
@media (max-width: 767.98px) {
  .section__service_menu {
    padding-top: 10px;
  }
}

.service_case_list {
  max-width: 860px;
  margin-top: clamp(24px, 4vw, 42px);
  margin-inline: auto;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--color_border);
  border-radius: 18px;
  background: linear-gradient(color-mix(in srgb, var(--color_border) 42%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--color_border) 42%, transparent) 1px, transparent 1px), var(--color_white);
  background-size: 22px 22px;
}
@media (max-width: 767.98px) {
  .service_case_list {
    margin-top: 24px;
    padding: 20px;
    border-radius: 14px;
  }
}
.service_case_list .card_label {
  background: transparent;
  color: var(--color_main);
  padding: 0;
}
@media (max-width: 767.98px) {
  .service_case_list .card_label {
    font-size: 10px;
  }
}

.service_case_list__lead {
  margin: -10px 0 18px;
  color: var(--color_text);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .service_case_list__lead {
    margin-top: -4px;
    font-size: 15px;
    line-height: 1.65;
  }
}

.service_case_list__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 2fr));
  gap: clamp(12px, 1.8vw, 18px);
}
@media (max-width: 1023.98px) {
  .service_case_list__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .service_case_list__items {
    grid-template-columns: 1fr;
  }
}
.service_case_list__items article {
  position: relative;
  display: grid;
  align-items: start;
  padding: 14px 16px 16px 18px;
  border: 1px solid var(--color_border);
  border-left: 8px solid #3f6f5f;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.82);
}
@media (max-width: 767.98px) {
  .service_case_list__items article {
    padding: 13px 14px 14px 16px;
    border-left-width: 6px;
  }
}
.service_case_list__items article:nth-child(2) {
  border-left-color: #8f6f3f;
}
.service_case_list__items article:nth-child(3) {
  border-left-color: #6b6f8f;
}
.service_case_list__items article:nth-child(4) {
  border-left-color: #8a5965;
}
.service_case_list__items p {
  margin: 0;
  color: var(--color_text);
  font-weight: 700;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

/* Classic MINI CTA
───────────────────────*/
.service_mini_cta_section {
  position: relative;
  padding-block: clamp(56px, 6.3vw, 96px) clamp(68px, 7.6vw, 116px);
  overflow: hidden;
  background: var(--color_footer_bg);
  color: var(--color_white);
  isolation: isolate;
}
@media (max-width: 1023.98px) {
  .service_mini_cta_section {
    padding-block: 60px 76px;
  }
}
@media (max-width: 767.98px) {
  .service_mini_cta_section {
    padding-block: 54px 66px;
  }
}
@media (max-width: 479.98px) {
  .service_mini_cta_section {
    padding-block: 50px 62px;
  }
}
.service_mini_cta_section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.5) 54%, rgba(0, 0, 0, 0.72)), rgba(0, 0, 0, 0.28);
  content: "";
  pointer-events: none;
}
.service_mini_cta_section .container {
  position: relative;
  z-index: 2;
}

.service_mini_cta__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.service_mini_cta__media img {
  width: 100%;
  height: 136%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate3d(0, calc(-18% + var(--service_cta_parallax, 0px)), 0) scale(1.04);
  will-change: transform;
}

.service_mini_cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
  color: var(--color_white);
}
@media (max-width: 767.98px) {
  .service_mini_cta {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 16px;
  }
}
.service_mini_cta .card_label {
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
}
.service_mini_cta h2 {
  margin: 0 0 10px;
  font-size: var(--type_compact_title_size);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .service_mini_cta h2 {
    line-height: 1.6;
    text-align: center;
  }
}
.service_mini_cta p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 559.98px) {
  .service_mini_cta p:last-child {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }
  .service_mini_cta p:last-child br {
    display: none;
  }
  .service_mini_cta p:last-child {
    margin-bottom: -20px;
  }
}

.service_mini_cta__side {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 180px;
}
@media (max-width: 767.98px) {
  .service_mini_cta__side {
    justify-items: center;
    min-width: 0;
  }
}
.service_mini_cta__side img {
  width: clamp(66px, 8vw, 112px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.service_mini_cta__side .card_label {
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
}

/* FLOW: ご相談から完了まで
───────────────────────*/
.flow_list {
  --flow_gap: clamp(42px, 5vw, 58px);
  position: relative;
  display: grid;
  gap: var(--flow_gap);
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .flow_list {
    --flow_gap: 22px;
  }
}
.flow_list li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--color_border);
  border-radius: 14px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .flow_list li {
    gap: 6px;
    padding: 16px;
    border-radius: 10px;
  }
}
.flow_list li::after {
  position: absolute;
  left: 50%;
  top: calc(100% + var(--flow_gap) / 2);
  color: var(--color_text);
  font-family: "Material Symbols Outlined";
  font-size: 48px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
  content: "keyboard_arrow_down";
  transform: translate(-50%, -50%);
}
@media (max-width: 767.98px) {
  .flow_list li::after {
    font-size: 32px;
  }
}
.flow_list li:last-child::after {
  display: none;
}
.flow_list span {
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 0.9;
}
@media (max-width: 767.98px) {
  .flow_list span {
    font-size: 28px;
  }
}
.flow_list h3 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  line-height: 1.45;
}
@media (max-width: 767.98px) {
  .flow_list h3 {
    font-size: 15px;
    line-height: 1.45;
  }
}
.flow_list p {
  margin: 0;
  color: var(--color_text_sub);
  line-height: 1.9;
  overflow-wrap: anywhere;
}
@media (max-width: 767.98px) {
  .flow_list p {
    line-height: 1.65;
  }
}

/* FAQ
───────────────────────*/
@media (max-width: 767.98px) {
  .section--faq_service {
    padding-top: 10px;
  }
}

/* MINI page
───────────────────────*/
/* パララックス画像帯
───────────────────────*/
.home_mini_visual--want {
  margin-top: 48px;
  isolation: isolate;
}
@media (max-width: 767.98px) {
  .home_mini_visual--want {
    margin-top: 0;
  }
}
.home_mini_visual--want > img {
  filter: grayscale(1) brightness(0.64) contrast(1.05);
}

.mini_visual_marquee {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.mini_support {
  padding-block-start: clamp(56px, 10vw, 74px);
}
@media (max-width: 767.98px) {
  .mini_support {
    padding-block-start: 10px;
  }
}

/* LIFE WITH MINI
───────────────────────*/
.mini_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
@media (max-width: 767.98px) {
  .mini_actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }
  .mini_actions .button {
    width: 100%;
    min-width: 0;
    margin-top: 0;
    padding: 0 32px 0 10px;
    font-size: clamp(11px, 3.2vw, 13px);
    white-space: nowrap;
  }
  .mini_actions .button::before, .mini_actions .button::after {
    right: 12px;
  }
}

.mini_life {
  margin-top: -100px;
}
@media (max-width: 767.98px) {
  .mini_life {
    margin-top: -56px;
  }
}
.mini_life .section_title_group {
  --section_title_group_gap: 8px;
  --section_title_group_margin_bottom: 0;
}
.mini_life .split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
@media (max-width: 767.98px) {
  .mini_life .split {
    grid-template-columns: 1fr;
  }
}
.mini_life .mini_life__image {
  justify-self: start;
  width: 100%;
  max-width: 100%;
  margin-inline: 0 auto;
}
@media (max-width: 767.98px) {
  .mini_life .mini_life__image {
    margin-bottom: 20px;
  }
}
.mini_life .mini_life__image img {
  aspect-ratio: 5/4;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 767.98px) {
  .mini_life .mini_life__image img {
    aspect-ratio: 16/9;
  }
}

/* SUPPORT: 購入前後の相談カード
───────────────────────*/
.model_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
}
@media (max-width: 767.98px) {
  .model_grid {
    gap: 22px;
  }
}

.model_card {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .model_card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
}
.model_card .model_card__media {
  position: relative;
  align-self: stretch;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .model_card .model_card__media {
    aspect-ratio: 16/9;
  }
}
.model_card .model_card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.model_card h3 {
  margin: 0 0 14px;
  color: var(--color_navy);
  font-family: var(--font_en);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 800;
  line-height: 1.02;
}
@media (max-width: 559.98px) {
  .model_card h3 {
    font-size: 28px;
    line-height: 1.08;
  }
}
.model_card p {
  margin: 0;
  color: var(--color_text_sub);
  overflow-wrap: anywhere;
}

.model_card__body {
  padding: clamp(28px, 5vw, 56px);
}
@media (max-width: 559.98px) {
  .model_card__body {
    padding: 24px 12px 28px;
  }
}
.model_card__body .model_card__label {
  margin: 0 0 25px;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .model_card__body .model_card__label {
    font-size: 10px;
    margin: 0 0 15px;
  }
}
.model_card__body h3 {
  font-size: clamp(1.9rem, 1.3rem + 1vw, 2.5rem);
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .model_card__body h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
}

.tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
@media (max-width: 767.98px) {
  .tag_list {
    gap: 5px;
  }
}
.tag_list li {
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--color_main);
  color: var(--color_white);
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .tag_list li {
    padding: 2px 12px;
  }
}

.spec_list {
  display: grid;
  margin: 0 0 22px;
  border-top: 1px solid var(--color_border);
}
.spec_list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-block: 12px;
  border-bottom: 1px solid var(--color_border);
}
@media (max-width: 559.98px) {
  .spec_list div {
    grid-template-columns: 1fr;
    gap: 0px;
    padding-block: 8px;
  }
}
.spec_list dt {
  color: var(--color_text_sub);
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .spec_list dt {
    font-size: 13px;
  }
}
.spec_list dd {
  margin: 0;
  color: var(--color_text);
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .spec_list dd {
    font-size: 13px;
  }
}

/* CHECK POINTS: 購入前チェック
───────────────────────*/
.mini_points {
  padding-top: 10px;
}
.mini_points .card_grid {
  counter-reset: mini-point;
  overflow: visible;
}
.mini_points .plain_card {
  position: relative;
  overflow: visible;
  counter-increment: mini-point;
}
.mini_points .plain_card::before {
  position: absolute;
  top: -0.26em;
  right: -0.17em;
  z-index: 2;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: clamp(76px, 4vw, 100px);
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: counter(mini-point, decimal-leading-zero);
}
@media (max-width: 767.98px) {
  .mini_points .plain_card::before {
    top: -0.18em;
    right: -0.2em;
    font-size: 50px !important;
  }
}
.mini_points .plain_card > * {
  position: relative;
  z-index: 1;
}
.mini_points .plain_card .plain_card__label {
  margin: 0 0 8px;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
@media (max-width: 767.98px) {
  .mini_points .plain_card .plain_card__label {
    font-size: 10px;
  }
}
.mini_points .plain_card h2 {
  position: relative;
  padding-bottom: 12px;
}
.mini_points .plain_card h2::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color_main);
  content: "";
}
@media (max-width: 767.98px) {
  .mini_points .plain_card h2 {
    font-size: 18px;
  }
}

.area_panel {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) minmax(0, 3fr) minmax(140px, 0.9fr);
  gap: clamp(22px, 3.4vw, 40px);
  align-items: center;
  overflow: visible;
  max-width: 980px;
  margin-top: clamp(24px, 4vw, 42px);
  margin-inline: auto;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--color_border);
  border-radius: 18px;
  background: linear-gradient(color-mix(in srgb, var(--color_border) 42%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--color_border) 42%, transparent) 1px, transparent 1px), var(--color_white);
  background-size: 22px 22px;
}
@media (max-width: 767.98px) {
  .area_panel {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 14px;
  }
}
.area_panel h2 {
  margin: 0 0 12px;
  color: var(--color_text);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .area_panel h2 {
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    color: var(--color_main);
    margin-top: -10px;
  }
}
.area_panel p {
  max-width: var(--read_width);
  margin: 0;
  color: var(--color_text_sub);
  line-height: 1.95;
  overflow-wrap: anywhere;
}
.area_panel a {
  justify-self: end;
  border: 1px solid var(--color_main);
}
@media (max-width: 767.98px) {
  .area_panel a {
    justify-self: start;
    margin-top: -10px;
  }
}
.area_panel .area_panel__content {
  grid-column: 2;
}
@media (max-width: 767.98px) {
  .area_panel .area_panel__content {
    grid-column: auto;
  }
}
.area_panel > a {
  grid-column: 3;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .area_panel > a {
    grid-column: auto;
    justify-self: center;
  }
}

.area_panel__badge {
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--color_main);
  font-family: var(--font_en);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}
.area_panel__badge p {
  max-width: none;
  color: var(--color_main);
  font: inherit;
  line-height: inherit;
}
.area_panel__badge p span {
  display: inline-block;
}
@media (max-width: 767.98px) {
  .area_panel__badge {
    justify-items: center;
  }
  .area_panel__badge p {
    font-size: 10px;
  }
  .area_panel__badge p br {
    display: none;
  }
  .area_panel__badge p span {
    margin: 0 5px;
  }
}

.area_panel__icon {
  display: grid;
  place-items: center;
  width: clamp(82px, 8vw, 110px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color_main);
}
.area_panel__icon img {
  width: 66%;
  height: auto;
  filter: brightness(0) invert(1);
}

/* FAQ: MINI購入・整備相談
───────────────────────*/
.mini_faq {
  padding-top: 10px;
}
.mini_faq .faq_group {
  position: relative;
  overflow: visible;
}
.mini_faq .faq_group::before {
  position: absolute;
  top: clamp(-34px, -2.6vw, -18px);
  right: clamp(-28px, -2.2vw, -14px);
  z-index: 0;
  width: clamp(132px, 18vw, 220px);
  aspect-ratio: 260/112;
  background: var(--color_main);
  -webkit-mask: url("../images/illust/mini-side.svg") center/contain no-repeat;
  mask: url("../images/illust/mini-side.svg") center/contain no-repeat;
  opacity: 0.4;
  mix-blend-mode: multiply;
  pointer-events: none;
  content: "";
  transform-origin: center;
}
@media (max-width: 767.98px) {
  .mini_faq .faq_group::before {
    top: -10px;
    right: -10px;
    width: 100px;
    opacity: 0.28;
  }
}
.mini_faq .faq_group > * {
  position: relative;
  z-index: 1;
}

/* Company page
───────────────────────*/
/* 会社概要テーブル
───────────────────────*/
.table_wrap {
  overflow-x: auto;
}

.section_company {
  padding-bottom: 150px;
}
@media (max-width: 767.98px) {
  .section_company {
    padding-bottom: 70px;
  }
}

.company_table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color_white);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .company_table {
    table-layout: fixed;
    border-radius: 12px;
  }
}
.company_table th,
.company_table td {
  border-bottom: 1px solid var(--color_border);
  padding: 22px 24px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 767.98px) {
  .company_table th,
  .company_table td {
    display: table-cell;
    width: auto;
    padding: 12px 10px;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
}
.company_table th ul,
.company_table td ul {
  margin-block: 8px 0;
  padding: 0 0 0 1rem;
}
.company_table tr:last-child th,
.company_table tr:last-child td {
  border-bottom: none;
}
.company_table th {
  width: 220px;
  color: var(--color_text);
}
@media (max-width: 767.98px) {
  .company_table th {
    width: 32%;
    padding-left: 12px;
    font-weight: 700;
  }
}
@media (max-width: 767.98px) {
  .company_table td {
    width: 68%;
    padding-right: 12px;
  }
}

/* Contact page
───────────────────────*/
/* 電話・フォームの2カラム
───────────────────────*/
.section--topics_contact {
  padding-bottom: 70px;
}
@media (max-width: 767.98px) {
  .section--topics_contact {
    padding-bottom: 40px;
  }
}

.contact_channels {
  max-width: calc(920px + var(--content_gutter) + var(--content_gutter) + var(--content_gutter) + var(--content_gutter));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 767.98px) {
  .contact_channels {
    max-width: none;
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.contact_panel .section_label,
.form_area .section_label {
  margin: 0 !important;
  color: var(--color_text_sub);
  font-size: 18px;
  line-height: 1;
}
.contact_panel h2,
.form_area h2 {
  margin: 0 0 12px;
  color: var(--color_main);
  font-size: var(--type_block_title_size);
  font-weight: 700;
  line-height: 1.45;
}

/* 電話カード
───────────────────────*/
@media (max-width: 767.98px) {
  .section--action_contact {
    padding-bottom: 0;
  }
}
.section--action_contact .section_label {
  margin-bottom: 20px !important;
}
@media (max-width: 767.98px) {
  .section--action_contact .section_label {
    margin-bottom: 10px !important;
    font-size: 11px;
  }
}
@media (max-width: 767.98px) {
  .section--action_contact h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

.contact_panel {
  overflow: hidden;
  border: 1px solid var(--color_border);
  border-radius: 20px;
  background: var(--color_white);
  padding: clamp(26px, 3.2vw, 42px);
}
@media (max-width: 767.98px) {
  .contact_panel {
    padding: 22px;
    border-radius: 16px;
  }
}
.contact_panel .contact_tel {
  display: inline-flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.contact_panel .contact_tel span.number {
  display: inline-block;
  color: var(--color_text);
  font-family: var(--font_en);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
}
@media (max-width: 767.98px) {
  .contact_panel .contact_tel span.number {
    font-size: clamp(26px, 8vw, 32px);
  }
}
.contact_panel .contact_tel span.contact_tel_sub {
  margin-top: 5px;
  display: inline-block;
  padding: 0 15px;
  background: var(--color_silver_gray);
  border-radius: 50px;
  color: var(--color_white);
  font-size: 0.8rem;
}
@media (max-width: 767.98px) {
  .contact_panel .contact_tel span.contact_tel_sub {
    font-size: 11px;
  }
}
.contact_panel .contact_tel:hover, .contact_panel .contact_tel:focus-visible {
  color: var(--color_main);
}
.contact_panel p {
  margin-bottom: 0;
  color: var(--color_text_sub);
  overflow-wrap: anywhere;
}

/* フォームエリア
───────────────────────*/
.form_area p.form_area_p {
  margin-bottom: 40px;
  color: var(--color_text_sub);
  overflow-wrap: anywhere;
}
@media (max-width: 767.98px) {
  .form_area p.form_area_p {
    margin-bottom: 28px;
  }
}
@media (max-width: 767.98px) {
  .form_area {
    border-radius: 0;
    border: none;
    padding-block: 40px 60px;
  }
}

/* News page
───────────────────────*/
.news_page_head {
  display: flex;
  gap: 20px 32px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--color_border);
  border-radius: 16px;
  background: var(--color_white);
}
@media (max-width: 767.98px) {
  .news_page_head {
    display: grid;
  }
}
.news_page_head p {
  max-width: var(--read_width);
  margin: 0;
  color: var(--color_text_sub);
}

.news_list--page {
  max-width: min(100%, 820px);
}
.news_list--page article {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-width: 1px 0 0;
  border-radius: 0;
  background: transparent;
}
.news_list--page article:last-child {
  border-bottom: 1px solid var(--color_border);
}
.news_list--page article:hover {
  border-color: var(--color_border);
}
@media (max-width: 767.98px) {
  .news_list--page article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 16px;
  }
}
.news_list--page time {
  font-size: 12px;
  letter-spacing: 0.02em;
}
.news_list--page h2 {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}
.news_list--page p {
  display: none;
}

/* Privacy page
───────────────────────*/
.entry_content {
  max-width: var(--read_width);
  color: var(--color_text_sub);
  font-size: var(--type_content_text_size);
  line-height: 2;
}
.entry_content h2 {
  margin: 56px 0 18px;
  color: var(--color_text);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.45;
}
.entry_content h3 {
  margin: 36px 0 14px;
  color: var(--color_text);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.5;
}
.entry_content p {
  margin: 0 0 22px;
}
.entry_content a {
  color: var(--color_text);
  text-decoration: underline;
  text-decoration-color: var(--color_main);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.entry_content a:hover {
  color: var(--color_main);
}

/* Sitemap page
───────────────────────*/
.sitemap_links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 767.98px) {
  .sitemap_links {
    grid-template-columns: 1fr;
  }
}
.sitemap_links a {
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--color_bg_soft);
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}
.sitemap_links a:hover {
  background: var(--color_main);
  color: var(--color_text);
}

/* Thanks page
───────────────────────*/
.thanks_panel {
  max-width: calc(860px + var(--content_gutter) + var(--content_gutter));
  padding-block: clamp(52px, 6vw, 84px);
  text-align: center;
}
.thanks_panel .section_label {
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  font-family: var(--font_en);
  font-weight: 700;
}
.thanks_panel .section_title {
  margin-bottom: 42px;
  color: var(--color_text_sub);
  font-size: clamp(12px, 1.5vw, 25px);
  line-height: 1.5;
}
.thanks_panel p {
  max-width: 46em;
  margin: 0 auto;
  font-weight: 500;
  line-height: 2;
}
.thanks_panel p + p {
  margin-top: 12px;
}

.thanks_actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 32px auto 0;
}
@media (max-width: 559.98px) {
  .thanks_actions {
    display: grid;
  }
}

.recruit_contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--color_border);
  border-radius: 16px;
  background: var(--color_white);
}
.recruit_contact p {
  max-width: 640px;
  margin: 0;
  color: var(--color_text_sub);
}
.recruit_contact .button {
  margin: 0;
  border-color: var(--color_main);
}

.page-template-page-recuruit .company_table th,
.page-id-recuruit .company_table th {
  width: 220px;
}/*# sourceMappingURL=edit.css.map */