@charset "UTF-8";
/*----------------------------------------------------------

setting（カラー定義など）

----------------------------------------------------------*/
/*----------------------------------------------------------

mixin（メディアクエリ）

----------------------------------------------------------*/
/*----------------------------------------------------------

Reset

----------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
large,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

button {
  border: 0;
}

/*----------------------------------------------------------

全体（デザイントークン・base要素）

----------------------------------------------------------*/
:root {
  --header-block-size: 95px;
  /* Colors */
  --black: #261F1C;
  --gray-dark: #525252;
  --gray-pale: #F3F3F3;
  --gray-light: #C8CACA;
  --white: #FFFFFF;
  --orange: #F96F17;
  --orange-middle: #FFDEC9;
  --blue: #0596D8;
  --blue-pale: #D0F0FF;
  --red: #DE3C87;
  --pink-middle: #FFD3E7;
  --orange-bg: #FFF5EE;
  /* Shadows */
  --shadow-gray: 0 0 60px rgba(149, 149, 149, 0.25);
  --shadow-gray-large: 0 30px 60px rgba(21, 21, 21, 0.15);
  --shadow-orange: 0 15px 30px rgba(254, 123, 93, 0.15);
  --shadow-orange-large: 0 30px 60px rgba(254, 123, 93, 0.15);
  /* Gradients */
  --grad-orange: linear-gradient(90deg, #FF7D68, #F96F17);
  --grad-orange-v: linear-gradient(180deg, #FF7D68, #F96F17);
  /* Typography */
  --font-jp: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --font-num: "Jost", sans-serif;
}

/* Body offset for fixed header */
body {
  padding-top: 72px;
  font-family: var(--font-jp);
  font-weight: 500;
  color: var(--black);
}

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

a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

/* 電話リンク: PC はタップ発信できないためクリック無効。SP（≤768px）のみ有効 */
a[href^="tel:"] {
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

address {
  font-style: normal;
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

@media (min-width: 769px) {
  .is-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

/*----------------------------------------------------------

inner（共通コンテンツ幅コンテナ）
width / max-width / margin / padding のみを持つ。
レイアウト（flex / grid 等）は inner 直下に子要素を立てて指定する。

----------------------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1440px;
  padding-inline: 120px;
  margin-inline: auto;
}
@media (max-width: 1200px) {
  .inner {
    padding-inline: 64px;
  }
}
@media (max-width: 1024px) {
  .inner {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .inner {
    padding-inline: 16px;
  }
}

/*----------------------------------------------------------

section-title（セクションの小ラベル・見出し）

----------------------------------------------------------*/
/* Section label (小ラベル) */
.c-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--blue);
  /* 濃色背景セクションで白文字にする場合のダブルクラス修飾子 */
}
.c-section-label.--white {
  color: var(--white);
}
.c-section-label {
  /* 英字ラベルを小文字にする修飾子（contact ラベル等） */
}
.c-section-label.--lower {
  text-transform: lowercase;
}
.c-section-label {
  /* 中央寄せ（位置調整は親ではなく修飾子で行う） */
}
.c-section-label.--center {
  display: flex;
  justify-content: center;
}

.c-section-label__ring {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.c-section-title {
  display: block;
}

.c-section-heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.3;
  color: var(--black);
  margin-top: 8px;
}
@media (max-width: 1024px) {
  .c-section-heading {
    font-size: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .c-section-heading {
    font-size: 28px;
  }
}
.c-section-heading.--small {
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .c-section-heading.--small {
    font-size: 20px;
  }
}
.c-section-heading.--white {
  color: var(--white);
}
.c-section-heading {
  /* 中央寄せ（位置調整は親ではなく修飾子で行う） */
}
.c-section-heading.--center {
  text-align: center;
}

/*----------------------------------------------------------

button（ボタン）

----------------------------------------------------------*/
/* Pill button */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border-radius: 999px;
  padding: 16px 32px;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.c-btn:hover {
  opacity: 0.7;
}

.c-btn--orange {
  color: var(--white);
  background-color: var(--orange);
}

.c-btn--white {
  color: var(--black);
  background-color: var(--white);
}

.c-btn--red {
  color: var(--white);
  background-color: var(--red);
}

.c-btn--blue {
  color: var(--white);
  background-color: var(--blue);
}

.c-btn--outline-orange {
  color: var(--orange);
  background-color: transparent;
  border: 2px solid var(--orange);
}

.c-btn--outline-blue {
  color: var(--blue);
  background-color: transparent;
  border: 2px solid var(--blue);
}

/* 濃色背景上の白アウトラインボタン（下層 CTA 用） */
.c-btn--outline-white {
  color: var(--white);
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
}
.c-btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

/* 小サイズ（下層の補助 CTA 用・カンプ実数値） */
.c-btn--sm {
  font-size: 14px;
  padding: 16px 24px;
}

/* ボタン内アイコン（ラッパー無しの img に付与する共通フック） */
.c-btn__icon {
  flex-shrink: 0;
}

.c-btn__icon-img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* mailアイコン: orangeボタン内は白に */
.c-btn--orange img[src*=icon-mail] {
  filter: brightness(0) invert(1);
}

/*----------------------------------------------------------

tag（タグバッジ）

----------------------------------------------------------*/
.c-tag {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 999px;
  padding: 8px 16px;
}

/*----------------------------------------------------------

tag-list（c-tag を横並びにする共通ラッパー）

----------------------------------------------------------*/
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/*----------------------------------------------------------

text-link（テキストリンク）

----------------------------------------------------------*/
/* More link */
.c-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  color: var(--orange);
  transition: opacity 0.2s ease;
}
.c-more-link:hover {
  opacity: 0.7;
}

.c-more-link__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-more-link__icon {
    width: 32px;
    height: 32px;
  }
}

/*----------------------------------------------------------

header

----------------------------------------------------------*/
.header {
  height: 72px;
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  height: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  /* ノートPC幅でナビを1段に収めるため余白を段階的に縮める */
}
@media (max-width: 1400px) {
  .header__inner {
    gap: 24px;
    padding-inline: 24px;
  }
}
@media (max-width: 1280px) {
  .header__inner {
    gap: 16px;
    padding-inline: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .header__inner {
    gap: 16px;
    padding-inline: 16px;
  }
}

/* Logo */
.header__logo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo-img {
  width: 156px;
}
@media only screen and (max-width: 768px) {
  .header__logo-img {
    width: 120px;
  }
}

.header__logo-certified {
  font-size: 9px;
  line-height: 1;
  white-space: nowrap;
  color: var(--gray-dark);
}

/* Nav */
.header__nav {
  margin-left: auto;
}
@media only screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px 20px;
}
@media (max-width: 1280px) {
  .header__nav-list {
    gap: 8px 16px;
  }
}

/* 各項目はヘッダー高さいっぱい＝サブメニューをヘッダー下端に落とすため */
.header__nav-item {
  display: flex;
  align-items: center;
  height: 72px;
  position: relative;
}

/* トップレベル項目（リンク／トグル共通） */
.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  color: var(--black);
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
  cursor: pointer;
}
.header__nav-link:hover {
  color: var(--orange);
}

/* ドロップダウン親（リンクを持たないトグル）はポインターを変えない */
.header__nav-toggle {
  cursor: default;
}

/* ドロップダウンの ▾ アイコン */
.header__nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

/* サブメニュー */
.header__submenu {
  display: flex;
  flex-direction: column;
  min-width: 220px;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  translate: 0 8px;
  transition: opacity 0.2s ease, translate 0.2s ease, visibility 0.2s;
}
.header__submenu a {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  color: var(--black);
  border-radius: 8px;
  padding: 10px 14px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.header__submenu a:hover {
  color: var(--orange);
  background-color: var(--orange-bg);
}

/* ホバー・キーボードフォーカス・クリックのいずれでも開く */
.header__nav-item--dropdown:hover .header__submenu,
.header__nav-item--dropdown:focus-within .header__submenu,
.header__nav-toggle[aria-expanded=true] + .header__submenu {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}

.header__nav-item--dropdown:hover .header__nav-caret,
.header__nav-item--dropdown:focus-within .header__nav-caret,
.header__nav-toggle[aria-expanded=true] .header__nav-caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* 現在ページのナビ項目（body[data-active-nav] で配線） */
body[data-active-nav=about] .header__nav-item[data-nav=about] > .header__nav-link,
body[data-active-nav=service] .header__nav-item[data-nav=service] > .header__nav-link,
body[data-active-nav=seminar] .header__nav-item[data-nav=seminar] > .header__nav-link,
body[data-active-nav=column] .header__nav-item[data-nav=column] > .header__nav-link,
body[data-active-nav=faq] .header__nav-item[data-nav=faq] > .header__nav-link,
body[data-active-nav=shops] .header__nav-item[data-nav=shops] > .header__nav-link {
  font-weight: 700;
  color: var(--orange);
}

/* 現在ページのリンク（子メニュー項目・フラット項目）を強調 */
.header__nav-link[aria-current=page],
.header__submenu a[aria-current=page],
.header__mobile-nav-item a[aria-current=page] {
  font-weight: 700;
  color: var(--orange);
}

/* Header actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .header__actions {
    gap: 8px;
  }
}

.header__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .header__tel {
    display: none;
  }
}

.header__tel-number {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--blue);
}
.header__tel-number .icon {
  display: block;
  width: 16px;
  height: 16px;
}

.header__tel-hours {
  font-size: 12px;
  line-height: 1;
}

.header__cta {
  font-size: 14px;
  white-space: nowrap;
  padding: 8px 24px;
}
.header__cta .icon {
  display: block;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 768px) {
  .header__cta {
    display: none;
    font-size: 13px;
    padding: 8px 16px;
  }
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger[aria-expanded=true] .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav overlay */
.header__mobile-nav {
  flex-direction: column;
  gap: 24px;
  background-color: var(--white);
  padding: 32px 24px;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}
.header__mobile-nav.is-open {
  display: flex;
  transform: translateX(0);
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
}

.header__mobile-nav-item {
  border-bottom: 1px dotted var(--blue);
}
.header__mobile-nav-item > a,
.header__mobile-nav-item > .header__mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  background: none;
  border: none;
  padding: 12px 0;
  cursor: pointer;
}

/* SP アコーディオンの ▾ アイコン */
.header__mobile-nav-caret {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.2s ease;
}

.header__mobile-nav-toggle[aria-expanded=true] .header__mobile-nav-caret {
  transform: rotate(225deg) translate(-1px, -1px);
}

/* サブメニュー（高さアニメーションで開閉） */
.header__mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.header__mobile-submenu a {
  display: block;
  font-size: 13px;
  color: var(--gray-dark);
  padding: 10px 0 10px 16px;
}

.header__mobile-nav-toggle[aria-expanded=true] + .header__mobile-submenu {
  max-height: 320px;
}

.header__mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.header__mobile-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  width: 100%;
  border: 1px solid var(--blue);
  border-radius: 9999px;
  padding: 8px 24px;
  margin-inline: auto;
}

.header__mobile-tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-weight: 700;
  font-size: 24px;
  color: var(--blue);
}
.header__mobile-tel-number .icon {
  width: 24px;
  height: 24px;
}

.header__mobile-tel-hours {
  font-size: 13px;
}

.header__mobile-cta {
  width: 100%;
  justify-content: center;
}

/*----------------------------------------------------------

footer

----------------------------------------------------------*/
.footer {
  background-color: var(--gray-pale);
  padding: 80px 0 40px;
}

.footer__inner {
  max-width: 1200px;
  padding-inline: 120px;
  margin-inline: auto;
}
@media (max-width: 1200px) {
  .footer__inner {
    padding-inline: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .footer__inner {
    padding-inline: 16px;
  }
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 48px;
}
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer__logo {
  width: 180px;
}

.footer__address {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 24px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.footer__nav-heading {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer__nav-list a {
  font-size: 14px;
}

.footer__nav-sub-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  margin-top: 8px;
}

.footer__nav-sub-list a {
  font-size: 13px;
}

.footer__external-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
}
@media only screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.footer__policies {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__policies a {
  font-size: 12px;
  color: var(--gray-dark);
  padding: 8px 8px;
}

.footer__policies span {
  font-size: 12px;
}

.footer__copyright {
  font-size: 12px;
}

/*----------------------------------------------------------

breadcrumb（パンくずリスト）

----------------------------------------------------------*/
.c-breadcrumb {
  max-width: 1440px;
  padding-top: 40px;
  padding-inline: 0px;
  padding-bottom: 40px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .c-breadcrumb {
    padding-top: 16px;
    padding-inline: 0px;
    padding-bottom: 16px;
  }
}

.c-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--gray-dark);
  overflow-x: auto;
}
.c-breadcrumb__list a {
  transition: color 0.2s ease;
  white-space: nowrap;
}
.c-breadcrumb__list a:hover {
  color: var(--orange);
}

.c-breadcrumb__sep {
  font-size: 16px;
  color: var(--gray-dark);
  white-space: nowrap;
}

.c-breadcrumb__current {
  font-weight: 700;
  color: var(--gray-dark);
  white-space: nowrap;
}

/*----------------------------------------------------------

page-hero（下層ページの共通ヒーロー）

----------------------------------------------------------*/
.page-hero {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .page-hero {
    padding: 0px 0 48px;
  }
}

.page-hero__inner {
  margin-top: 32px;
}

.page-hero__heading {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .page-hero__heading {
    font-size: 30px;
  }
}
.page-hero__heading .accent {
  color: var(--orange);
}
.page-hero__heading {
  /* 法令ページなどの小さめ見出し */
}
.page-hero__heading.--sm {
  font-size: 34px;
}

.page-hero__lead {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .page-hero__lead {
    font-size: 14px;
  }
}

/* 写真付き 2 カラムヒーロー */
.page-hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.page-hero__visual {
  position: relative;
}

.page-hero__photo {
  width: 100%;
  aspect-ratio: 5/4;
  border-radius: 32px 32px 32px 80px;
  box-shadow: var(--shadow-gray-large);
  overflow: hidden;
}

.page-hero__ring {
  width: 120px;
  height: 120px;
  position: absolute;
  right: -24px;
  top: -30px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .page-hero__ring {
    width: 84px;
    height: 84px;
  }
}

/* ヒーロー内のプライマリ CTA（カンプ実数値） */
.page-hero__cta {
  font-size: 17px;
  box-shadow: var(--shadow-orange);
  padding: 16px 48px;
  margin-top: 32px;
}

/*----------------------------------------------------------

page-hero（下層ページの共通ヒーロー）

----------------------------------------------------------*/
.page-content {
  margin-top: 80px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .page-content {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}
.page-content h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--black);
  border-bottom: 2px solid var(--gray-dark);
  padding-bottom: 8px;
  margin-top: 56px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .page-content h2 {
    font-size: 21px;
    margin-top: 40px;
  }
}
.page-content h3 {
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .page-content h3 {
    font-size: 18px;
    margin-top: 32px;
  }
}
.page-content h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .page-content h4 {
    font-size: 16px;
    margin-top: 24px;
  }
}
.page-content p {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .page-content p {
    font-size: 14px;
  }
}
.page-content {
  /* リスト */
}
.page-content ul,
.page-content ol {
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .page-content ul,
  .page-content ol {
    font-size: 14px;
  }
}
.page-content * + * {
  margin-top: 16px;
}
.page-content li {
  line-height: 1.8;
}
.page-content li + li {
  margin-top: 8px;
}

/*----------------------------------------------------------

section（下層ページの汎用セクション枠）

----------------------------------------------------------*/
.section {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
  /* 固定ヘッダー（72px）分のアンカーオフセット */
  scroll-margin-top: 88px;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.section--gray {
  background: var(--gray-pale);
}

.section--orange {
  background: var(--orange-bg);
}

.section__head {
  text-align: left;
  margin-bottom: 48px;
}
.section__head .c-section-heading {
  margin-top: 8px;
}
.section__head {
  /* 下マージン詰め */
}
.section__head.--tight {
  margin-bottom: 24px;
}

.section__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 24px;
}

/* 表の下などに添える注記 */
.section__note {
  font-size: 12.5px;
  color: var(--gray-light);
  margin-top: 16px;
}

/*----------------------------------------------------------

single-content（投稿詳細 single.php の本文 the_content の装飾）

----------------------------------------------------------*/
.single-inner {
  max-width: 1000px;
}

.single-section {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .single-section {
    padding-top: 24px;
    padding-bottom: 40px;
  }
}

.single-content__thumbnail {
  margin-bottom: 40px;
}

.single-content {
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .single-content {
    font-size: 14px;
  }
}
.single-content {
  /* 先頭要素の上余白を消す */
}
.single-content > :first-child {
  margin-top: 0;
}
.single-content {
  /* 見出し */
}
.single-content h2 {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--black);
  border-bottom: 2px solid var(--gray-pale);
  padding-bottom: 12px;
  margin-top: 56px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .single-content h2 {
    font-size: 21px;
    margin-top: 40px;
  }
}
.single-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--black);
  margin-top: 40px;
  margin-bottom: 16px;
}
.single-content h3::before {
  content: "";
  width: 6px;
  height: 22px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .single-content h3 {
    font-size: 18px;
    margin-top: 32px;
  }
}
.single-content h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 12px;
}
.single-content {
  /* 段落 */
}
.single-content p {
  margin-top: 16px;
  margin-bottom: 16px;
}
.single-content {
  /* 強調・リンク */
}
.single-content strong {
  font-weight: 700;
  color: var(--black);
}
.single-content a {
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-content {
  /* リスト */
}
.single-content ul,
.single-content ol {
  padding-left: 1.6em;
  margin-top: 16px;
  margin-bottom: 16px;
}
.single-content ul {
  list-style: disc;
}
.single-content ol {
  list-style: decimal;
}
.single-content li {
  line-height: 1.8;
  margin-top: 8px;
}
.single-content li::marker {
  color: var(--orange);
}
.single-content {
  /* 引用 */
}
.single-content blockquote {
  color: var(--gray-dark);
  background: var(--orange-bg);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  padding: 16px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.single-content blockquote p {
  margin: 0;
}
.single-content {
  /* 画像 */
}
.single-content img {
  border-radius: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.single-content {
  /* 区切り線 */
}
.single-content hr {
  border: 0;
  border-top: 1px solid var(--gray-pale);
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-content {
  /* 表 */
}
.single-content table {
  width: 100%;
  background: var(--white);
  border-collapse: collapse;
  border-radius: 12px;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
  margin-top: 24px;
  margin-bottom: 24px;
}
.single-content table th,
.single-content table td {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--gray-pale);
  padding: 14px 18px;
}
.single-content table th {
  font-weight: 700;
  color: var(--black);
  background: #fff1e7;
}
@media (max-width: 600px) {
  .single-content table th,
  .single-content table td {
    font-size: 14px;
    padding: 12px 14px;
  }
}

/*----------------------------------------------------------

flow（ご相談の流れ・ステップカード）

----------------------------------------------------------*/
.c-flow-step {
  display: flex;
  gap: 24px;
  list-style: none;
}
@media only screen and (max-width: 768px) {
  .c-flow-step {
    flex-direction: column;
    gap: 48px;
  }
}

.c-flow-step__item {
  width: calc(25% - 18px);
  height: auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-flow-step__item {
    width: 100%;
  }
}

.c-flow-step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 1;
  translate: 75% -50%;
}
@media only screen and (max-width: 768px) {
  .c-flow-step__arrow {
    top: inherit;
    bottom: 0;
    left: 50%;
    right: inherit;
    translate: -50% 110%;
    rotate: 90deg;
  }
}

.c-flow-step__item--last .c-flow-step__arrow {
  display: none;
}

.c-flow-step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  height: 100%;
  background-color: #FFFFFF;
  border: 1px dashed #0596D8;
  border-radius: 16px;
  padding: 24px 16px 16px;
  position: relative;
}

.c-flow-step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 80px;
  margin-inline: auto;
}
.c-flow-step-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-flow-step-card__step-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  color: #0596D8;
  background-color: #FFF;
  padding-inline: 8px;
  position: absolute;
  top: 0;
  left: 0;
  translate: 20% -60%;
}

.c-flow-step-card__step-word {
  font-size: 20px;
  text-transform: lowercase;
}

.c-flow-step-card__step-digits {
  font-size: 26px;
}

.c-flow-step-card__title {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #261F1C;
}

.c-flow-step-card__text {
  font-size: 16px;
  line-height: 1.5;
  color: #261F1C;
  margin-top: 8px;
}

/* Bottom link cards — seamlessly joined */
.c-flow__links {
  display: flex;
  gap: 0;
  padding-inline: 104px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .c-flow__links {
    flex-direction: column;
    gap: 16px;
    padding-inline: 0px;
    margin-top: 40px;
  }
}

.c-flow-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  background-color: #FFFFFF;
  border: 1px solid #FF7D68;
  padding: 24px 32px;
}
@media only screen and (max-width: 768px) {
  .c-flow-link-card {
    border-radius: 16px;
  }
}

.c-flow-link-card--left {
  border-radius: 16px 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .c-flow-link-card--left {
    border-radius: 16px;
  }
}

.c-flow-link-card--right {
  border-radius: 0 16px 16px 0;
  border-left: none;
}
@media only screen and (max-width: 768px) {
  .c-flow-link-card--right {
    border-radius: 16px;
    border-left: 1px solid #FF7D68;
  }
}

.c-flow-link-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.c-flow-link-card__title {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #FF7D68, #F96F17);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-flow-link-card__mail-icon {
  filter: brightness(0) invert(1);
}

/*----------------------------------------------------------

faq-block（FAQ：縦積みラッパー c-faq-list ＋ Q&A 1件 c-faq-item）
  ※ c-faq-item は top ページ等で c-faq-list 以外のラッパー配下でも単独再利用するため
    item を要素化せず独立ブロックのまま据え置く

----------------------------------------------------------*/
/* 縦積みラッパー */
.c-faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Q&A 1件 */
.c-faq-item {
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-gray);
  padding: 32px;
}
@media only screen and (max-width: 768px) {
  .c-faq-item {
    padding: 16px;
  }
}

.c-faq-item__question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.c-faq-item__q-marker {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--blue);
}
@media only screen and (max-width: 768px) {
  .c-faq-item__q-marker {
    font-size: 18px;
  }
}

.c-faq-item__question-text {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .c-faq-item__question-text {
    font-size: 16px;
  }
}

.c-faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid var(--gray-pale);
  padding-left: 0;
  padding-top: 16px;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-faq-item__answer {
    padding-top: 12px;
    margin-top: 12px;
  }
}

.c-faq-item__a-marker {
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
}
@media only screen and (max-width: 768px) {
  .c-faq-item__a-marker {
    font-size: 18px;
    line-height: 1.8;
  }
}

.c-faq-item__answer-text {
  font-size: 16px;
  line-height: 1.7;
}

/*----------------------------------------------------------

seminar-card（セミナーカード／注目セミナー：共有パーツ）

----------------------------------------------------------*/
/* Featured seminar card */
.c-seminar-featured {
  display: flex;
  align-items: center;
  gap: 32px;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-gray-large);
  padding: 40px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}
.c-seminar-featured:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .c-seminar-featured {
    flex-direction: column;
    gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured {
    gap: 24px;
    padding: 32px 24px;
  }
}

.c-seminar-featured__wrap {
  display: flex;
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.c-seminar-featured__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__date {
    flex-direction: row;
  }
}

.c-seminar-featured__year {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.c-seminar-featured__month-day {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--blue);
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__month-day {
    font-size: 32px;
    margin-left: 8px;
  }
}
.c-seminar-featured__month-day .dot {
  font-size: 20px;
}

.c-seminar-featured__dow {
  font-weight: 600;
  font-size: 16px;
  color: var(--blue);
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__dow {
    margin-top: 0;
  }
}

.c-seminar-featured__body {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__body {
    flex-direction: column;
    gap: 16px;
  }
}

/* 画像は figure で囲む（flex アイテムは figure 側） */
.c-seminar-featured__figure {
  width: 100%;
  max-width: 240px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__figure {
    max-width: 100%;
  }
}

.c-seminar-featured__thumb {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
}

/* サムネ未設定時のフォールバック（アイドカロゴを小さく表示） */
.c-seminar-featured__thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--gray-pale);
  border-radius: 12px;
}

.c-seminar-featured__thumb-logo {
  width: 100px;
  height: auto;
  filter: brightness(0);
  opacity: 0.18;
}

.c-seminar-featured__info {
  flex: 1;
}

.c-seminar-featured__badge {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  background-color: var(--blue);
  border-radius: 999px;
  padding: 8px 16px;
}

.c-seminar-featured__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__title {
    font-size: 16px;
  }
}

.c-seminar-featured__detail {
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-seminar-featured__detail {
    font-size: 14px;
    margin-top: 12px;
  }
}

.c-seminar-featured__action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .c-seminar-featured__action {
    justify-content: flex-end;
    width: 100%;
  }
}
.c-seminar-featured__action {
  /* 記事リンクをカード全体に拡張（.c-seminar-featured は position: relative） */
}
.c-seminar-featured__action .c-more-link::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Seminar card */
.c-seminar-card {
  position: relative;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-gray);
  padding: 24px;
  transition: opacity 0.3s ease;
}
.c-seminar-card:hover {
  opacity: 0.8;
}

/* サムネイル（全カード共通で上部に表示） */
.c-seminar-card__figure {
  margin-bottom: 20px;
}

.c-seminar-card__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}

/* サムネ未設定時のフォールバック（アイドカロゴを小さく表示） */
.c-seminar-card__thumb-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: var(--gray-pale);
  border-radius: 12px;
}

.c-seminar-card__thumb-logo {
  width: 120px;
  height: auto;
  filter: brightness(0);
  opacity: 0.18;
}

.c-seminar-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-seminar-card__date {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--blue);
}

.c-seminar-card__availability--open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  color: var(--blue);
  background-color: var(--blue-pale);
  border-radius: 999px;
  padding: 8px 8px;
}

.c-seminar-card__availability--closed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  color: var(--gray-dark);
  background-color: var(--gray-pale);
  border-radius: 999px;
  padding: 8px 8px;
}

.c-seminar-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 12px;
}

.c-seminar-card__summary {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-dark);
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* c-more-link はセクション側 div で上余白を制御する */
.c-seminar-card__more {
  margin-top: 16px;
  /* 「詳細を見る」は表示したまま、リンク範囲をカード全体に拡張（.c-seminar-card は position: relative） */
}
.c-seminar-card__more .c-more-link::after {
  content: "";
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 768px) {
  .c-seminar-card__more {
    display: flex;
    justify-content: flex-end;
  }
}

/*----------------------------------------------------------

column-card（コラムカード：共有パーツ）

----------------------------------------------------------*/
.c-column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .c-column-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.c-column-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-gray);
  position: relative;
  transition: opacity 0.2s ease;
  overflow: hidden;
}
.c-column-card:hover {
  opacity: 0.7;
}

/* リンク範囲をカード全体に拡張（.c-column-card は position: relative） */
.c-column-card__link {
  color: inherit;
}
.c-column-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
}

.c-column-card__photo {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .c-column-card__photo {
    height: 100%;
    aspect-ratio: 16/9;
  }
}

.c-column-card__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background-color: var(--gray-pale);
}

.c-column-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}
@media only screen and (max-width: 768px) {
  .c-column-card__body {
    height: auto;
    padding: 16px 24px 24px;
  }
}

.c-column-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.c-column-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .c-column-card__title {
    font-size: 16px;
  }
}

.c-column-card__date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.12em;
  color: #525252;
  padding-top: 16px;
  margin-top: auto;
}
@media only screen and (max-width: 768px) {
  .c-column-card__date {
    font-size: 10px;
  }
}

.c-column-card__date-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .c-column-card__date-icon {
    width: 16px;
    height: 16px;
  }
}

/*----------------------------------------------------------

shop-card（店舗カード）

----------------------------------------------------------*/
.c-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .c-shop-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .c-shop-grid {
    margin-top: 40px;
  }
}

.c-shop-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-gray);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.c-shop-card__media {
  height: 190px;
}
.c-shop-card__media .c-photo-slot {
  width: 100%;
  height: 100%;
}

.c-shop-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 24px 24px 32px;
}

.c-shop-card__name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--black);
}

.c-shop-card__info {
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--gray-dark);
}

.c-shop-card__meta {
  font-size: 12.5px;
  color: var(--gray-light);
}

.c-shop-card__badge {
  align-self: flex-start;
  margin-top: auto;
}

/*----------------------------------------------------------

photo-slot（写真プレースホルダー・実装時に img へ差し替え）

----------------------------------------------------------*/
.c-photo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  color: #9a9a9a;
  background: repeating-linear-gradient(45deg, #f3f3f3, #f3f3f3 14px, #ececec 14px, #ececec 28px);
  border-radius: inherit;
  margin: 0;
}

.c-photo-slot__label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  padding: 8px 16px;
}

/*----------------------------------------------------------

filter（一覧の絞り込み行・コラム/セミナーで共用）

----------------------------------------------------------*/
.c-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.c-filter__btn {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--gray-dark);
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  padding: 8px 16px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.c-filter__btn:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.c-filter__btn.is-active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

/*----------------------------------------------------------

page/top — TOPページ各セクション

----------------------------------------------------------*/
/* ============================================
   Hero
   ============================================ */
.top-hero {
  background-color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .top-hero {
    padding: 64px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .top-hero {
    padding: 48px 0 0;
  }
}

/* レイアウト（横並び）は inner 直下の子要素で制御 */
.top-hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .top-hero__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.top-hero__content {
  position: relative;
  z-index: 1;
}

.top-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.top-hero__heading {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.3;
  white-space: nowrap;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .top-hero__heading {
    font-size: 40px;
  }
}
.top-hero__heading .big {
  font-size: 68px;
}
@media only screen and (max-width: 768px) {
  .top-hero__heading .big {
    font-size: 40px;
  }
}
.top-hero__heading .left-space {
  margin-left: 144px;
}
@media only screen and (max-width: 768px) {
  .top-hero__heading .left-space {
    margin-left: 0;
  }
}

.top-hero__lead {
  max-width: 480px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .top-hero__lead {
    font-size: 14px;
  }
}

.top-hero__cta {
  gap: 8px;
  font-size: 16px;
  box-shadow: 0 15px 30px rgba(254, 123, 93, 0.15);
  padding: 16px 48px;
}
@media only screen and (max-width: 768px) {
  .top-hero__cta {
    display: flex;
    justify-content: center;
    width: min(100%, 320px);
    padding: 16px 32px;
    margin-inline: auto;
  }
}

.top-hero__cta-icon {
  width: 20px;
  height: 16px;
  /* img tag: SVG uses currentColor=white from parent button */
  filter: brightness(0) invert(1);
}

/* Trust badges */
.top-hero__badges {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.top-hero__badge {
  height: 120px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 768px) {
  .top-hero__badge {
    height: 100px;
  }
}

/* Hero visual (right side): trust badges + CTA */
.top-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .top-hero__visual {
    justify-content: flex-start;
  }
}

.top-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 400px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .top-hero__actions {
    gap: 32px;
    max-width: none;
  }
}

.top-hero__visual-decoration {
  width: 300px;
  height: 300px;
  background-color: var(--blue-pale);
  border-radius: 60% 40% 70% 30%/50% 60% 40% 50%;
  position: absolute;
  top: -40px;
  right: -60px;
  z-index: 0;
  opacity: 0.6;
}
@media (max-width: 1024px) {
  .top-hero__visual-decoration {
    display: none;
  }
}

/* Slider section（CSS 無限ループ：同一グループを translateX -100% で送る） */
.top-hero__slider-wrapper {
  overflow: hidden;
  padding-bottom: 64px;
  margin-top: 64px;
}
@media only screen and (max-width: 768px) {
  .top-hero__slider-wrapper {
    padding-bottom: 40px;
    margin-top: 40px;
  }
}

/* グループを横並びにする外側トラック */
.top-hero__slider {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

/* 1グループ＝1セット。自身の幅(100%)分だけ動かして無限ループ。
   グループ全体が一体で動くため、スライド幅が可変でも速度は一定。
   枚数・幅を変えた場合は duration（30s）で速度を調整する。 */
.top-hero__slider-group {
  display: flex;
  align-items: center;
  animation: hero-marquee 30s linear infinite both;
  /* 動きを抑える設定のユーザーには停止 */
}
@media (prefers-reduced-motion: reduce) {
  .top-hero__slider-group {
    animation: none;
  }
}

@keyframes hero-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.top-hero__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  flex-shrink: 0;
  border: 12px solid var(--orange);
  /* スライド間隔（末尾にも付与し、グループ連結部の間隔を均一に保つ） */
  margin-right: 32px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-hero__slide {
    border: 6px solid;
    margin-right: 24px;
  }
}
.top-hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-hero__slide.--blue {
  border-color: var(--blue);
}
.top-hero__slide.--red {
  border-color: var(--red);
}
.top-hero__slide.--orange {
  border-color: var(--orange);
}
.top-hero__slide.--circle {
  border-radius: 100%;
}
.top-hero__slide.--width-400 {
  width: min(27.7777777778vw, 400px);
  aspect-ratio: 1;
}
@media only screen and (max-width: 768px) {
  .top-hero__slide.--width-400 {
    width: min(53.3333333333vw, 200px);
  }
}
.top-hero__slide.--width-320 {
  width: min(22.2222222222vw, 320px);
  aspect-ratio: 1;
}
@media only screen and (max-width: 768px) {
  .top-hero__slide.--width-320 {
    width: min(42.6666666667vw, 160px);
  }
}
.top-hero__slide.--width-280 {
  width: min(19.4444444444vw, 280px);
  aspect-ratio: 1;
}
@media only screen and (max-width: 768px) {
  .top-hero__slide.--width-280 {
    width: min(37.3333333333vw, 140px);
  }
}
.top-hero__slide.--width-200 {
  width: min(13.8888888889vw, 200px);
  aspect-ratio: 1;
}
@media only screen and (max-width: 768px) {
  .top-hero__slide.--width-200 {
    width: min(26.6666666667vw, 100px);
  }
}

/* ============================================
   About / What is AIDCA
   ============================================ */
.top-about {
  padding-block: 120px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-about {
    padding-top: 64px;
  }
}

.top-about__bg {
  width: 194px;
  aspect-ratio: 194/194;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .top-about__bg {
    width: 140px;
  }
}

.top-about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media only screen and (max-width: 768px) {
  .top-about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.top-about__body {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-size: 16px;
  line-height: 180%;
}
@media only screen and (max-width: 768px) {
  .top-about__body {
    font-size: 14px;
  }
}

/* c-more-link はセクション側 div で上余白を制御する */
.top-about__link {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .top-about__link {
    display: flex;
    justify-content: flex-end;
  }
}

/* ============================================
   Services / What is AIDCA
   ============================================ */
.top-services {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-services {
    padding: 64px 0;
  }
}

/* レイアウト（横並び）は inner 直下の子要素で制御 */
.top-services__layout {
  display: flex;
  gap: 80px;
  align-items: center;
}
@media (max-width: 1200px) {
  .top-services__layout {
    gap: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .top-services__layout {
    flex-direction: column-reverse;
  }
}

.top-services__image-area {
  width: 47.2222222222vw;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-services__image-area {
    width: 100%;
    margin-left: 0;
  }
}

.top-services__figure {
  max-height: 500px;
  border-radius: 0 40px 40px 0;
  position: relative;
  overflow: hidden;
}

.top-services__image {
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-services__image-deco {
  width: 194px;
  aspect-ratio: 194/194;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .top-services__image-deco {
    width: 140px;
  }
}

.top-services__content {
  position: relative;
}

.top-services__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-top: 40px;
}

/* c-more-link はセクション側 div で上余白を制御する */
.top-services__link {
  margin-top: 32px;
}

/* Family placeholder for services */
.top-services__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4/3;
  background-color: var(--gray-pale);
  border-radius: 24px;
  box-shadow: var(--shadow-gray-large);
}

.top-services__image-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--gray-light);
}

.top-services__image-placeholder-text {
  font-size: 13px;
  color: var(--gray-light);
}

/* Pink decoration shape */
.top-services__bg {
  width: 177px;
  aspect-ratio: 177/177;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  translate: 50% 100%;
}

/* ============================================
   Service Cards (個人・法人)
   ============================================ */
.top-service-cards {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-service-cards {
    padding: 48px 0;
  }
}

/* 左端の橙半円装飾 */
.top-service-cards__decoration {
  width: 90px;
  height: 180px;
  background-color: var(--orange);
  border-radius: 0 90px 90px 0;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  pointer-events: none;
}

/* 個人／法人 グループ（枠なし・中央寄せ縦並び） */
.top-service-cards__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

/* グループ見出し（アイコン＋グラデ文字） */
.top-service-cards__group-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}
.top-service-cards__group-head::before, .top-service-cards__group-head::after {
  content: "";
  display: block;
  width: min(100%, 400px);
  height: 2px;
  background-color: var(--red);
}
@media only screen and (max-width: 768px) {
  .top-service-cards__group-head::before, .top-service-cards__group-head::after {
    width: min(100%, 160px);
    flex: 1;
  }
}
.top-service-cards__group-head.--blue::before, .top-service-cards__group-head.--blue::after {
  background-color: var(--blue);
}

.top-service-cards__group-icon {
  flex-shrink: 0;
}

.top-service-cards__group-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--red);
}
.top-service-cards__group-title.--blue {
  color: var(--blue);
}

/* カード列 */
.top-service-cards__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  margin-top: 32px;
}

.top-service-cards__button {
  margin-top: 40px;
}

/* 個別カード（白・円プレースホルダ＋テキスト） */
.top-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  min-width: 0;
  max-width: 320px;
  flex: 1 1 280px;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-gray);
  padding: 16px 24px;
}

.top-service-card__thumb {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  background-color: #D9D9D9;
  border-radius: 9999px;
}

.top-service-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.top-service-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.top-service-card__text {
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================
   Seminars
   ============================================ */
.top-seminars {
  background-color: var(--blue);
  border-radius: 40px;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-seminars {
    padding: 64px 0;
  }
}

.top-seminars__lead {
  font-size: 16px;
  line-height: 1.7;
  color: #FFFFFF;
  margin-top: 24px;
}

/* Decoration shape */
.top-seminars__decoration {
  width: 340px;
  aspect-ratio: 451/630;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  translate: 0% 0%;
}
@media only screen and (max-width: 768px) {
  .top-seminars__decoration {
    width: 160px;
  }
}

/* Seminar cards grid */
.top-seminars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .top-seminars__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.top-seminars__more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* ============================================
   Consultation Flow
   ============================================ */
.top-flow {
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-flow {
    padding: 64px 0;
  }
}

/* Decoration - pink rounded rect */
.top-flow__decoration {
  width: 140px;
  aspect-ratio: 280/360;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  translate: 0% -100%;
}

/* Steps wrapper: flex row with arrows between */
.top-flow__steps-wrap {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top-flow__steps-wrap {
    margin-top: 40px;
  }
}

.top-flow__steps {
  display: flex;
  gap: 0;
  list-style: none;
}
@media (max-width: 1024px) {
  .top-flow__steps {
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .top-flow__steps {
    flex-direction: column;
    gap: 24px;
  }
}

.top-flow__step-item {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
@media (max-width: 1024px) {
  .top-flow__step-item {
    flex: 0 0 calc(50% - 12px);
  }
  .top-flow__step-item::after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .top-flow__step-item {
    width: 100%;
    flex: none;
  }
}

/* Blue circle arrow between steps */
.top-flow__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .top-flow__step-arrow {
    display: none;
  }
}

.top-flow__step-item--last .top-flow__step-arrow {
  display: none;
}

.top-flow-step-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  background-color: #FFFFFF;
  border: 1px dashed #0596D8;
  border-radius: 16px;
  padding: 24px 16px 16px;
  position: relative;
}

.top-flow-step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 120px;
  max-height: 80px;
  margin-inline: auto;
}
.top-flow-step-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-flow-step-card__step-num {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1;
  color: #0596D8;
  background-color: #FFF;
  padding-inline: 8px;
  position: absolute;
  top: 0;
  left: 0;
  translate: 20% -60%;
}

.top-flow-step-card__step-word {
  font-size: 20px;
  text-transform: lowercase;
}

.top-flow-step-card__step-digits {
  font-size: 26px;
}

.top-flow-step-card__title {
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #261F1C;
}

.top-flow-step-card__text {
  font-size: 16px;
  line-height: 1.5;
  color: #261F1C;
  margin-top: 8px;
}

/* Bottom link cards — seamlessly joined */
.top-flow__links {
  display: flex;
  gap: 0;
  padding-inline: 104px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .top-flow__links {
    flex-direction: column;
    gap: 16px;
    padding-inline: 0px;
    margin-top: 40px;
  }
}

.top-flow-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  background-color: #FFFFFF;
  border: 1px solid #FF7D68;
  padding: 24px 32px;
}
@media only screen and (max-width: 768px) {
  .top-flow-link-card {
    border-radius: 16px;
  }
}

.top-flow-link-card--left {
  border-radius: 16px 0 0 16px;
}
@media only screen and (max-width: 768px) {
  .top-flow-link-card--left {
    border-radius: 16px;
  }
}

.top-flow-link-card--right {
  border-radius: 0 16px 16px 0;
  border-left: none;
}
@media only screen and (max-width: 768px) {
  .top-flow-link-card--right {
    border-radius: 16px;
    border-left: 1px solid #FF7D68;
  }
}

.top-flow-link-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.top-flow-link-card__title {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(90deg, #FF7D68, #F96F17);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.top-flow-link-card__mail-icon {
  filter: brightness(0) invert(1);
}

/* ============================================
   FAQ
   ============================================ */
.top-faq {
  padding: 104px 0;
}
@media only screen and (max-width: 768px) {
  .top-faq {
    padding: 64px 0;
  }
}

/* レイアウト（横並び）は inner 直下の子要素で制御 */
.top-faq__layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1200px) {
  .top-faq__layout {
    gap: 48px;
    grid-template-columns: 360px 1fr;
  }
}
@media (max-width: 1024px) {
  .top-faq__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.top-faq__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================================
   Testimonials
   ============================================ */
.top-testimonials {
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-testimonials {
    padding: 64px 0;
  }
}

/* Pink triangle decoration */
.top-testimonials__decoration {
  width: 224px;
  aspect-ratio: 448/376;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  translate: 0% 0%;
}

.top-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 104px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) {
  .top-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.top-testimonial-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-gray);
  padding: 24px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-testimonial-card {
    padding: 16px;
  }
}

.top-testimonial-card__avatar {
  width: 76px;
  height: 76px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  left: 24px;
  translate: 0 -50%;
}

.top-testimonial-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-left: 104px;
}

.top-testimonial-card__text {
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 24px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .top-testimonial-card__text {
    font-size: 14px;
    margin-top: 16px;
    padding-bottom: 16px;
  }
}

.top-testimonial-card__footer {
  font-weight: 700;
  font-size: 13px;
  text-align: right;
  color: var(--gray-dark);
  border-top: 1px solid #cccccc;
  padding-top: 16px;
  margin-top: auto;
}
@media only screen and (max-width: 768px) {
  .top-testimonial-card__footer {
    padding-top: 12px;
  }
}

.top-testimonials__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

/* ============================================
   Access
   ============================================ */
.top-access {
  background-color: #FFF5EE;
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-access {
    padding: 64px 0;
  }
}

.top-access__decoration {
  width: 150px;
  aspect-ratio: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  translate: -50% 50%;
}

.top-access-card {
  background-color: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-orange-large);
  position: relative;
  transition: opacity 0.2s ease;
  overflow: hidden;
}

.top-access-card__photo {
  width: 100%;
  height: 269px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .top-access-card__photo {
    height: 100%;
    aspect-ratio: 350/180;
  }
}

.top-access-card__photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  background-color: var(--gray-pale);
}

.top-access-card__body {
  padding: 24px;
}
@media only screen and (max-width: 768px) {
  .top-access-card__body {
    padding: 16px 24px 24px;
  }
}

.top-access-card__name {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}

.top-access-card__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: normal;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .top-access-card__details {
    gap: 4px;
    margin-top: 12px;
  }
}

.top-access-card__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.top-access-card__detail-icon {
  flex-shrink: 0;
}

.top-access__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

/* ============================================
   Column
   ============================================ */
.top-column {
  padding: 104px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-column {
    padding: 64px 0;
  }
}

/* Beige blob decoration */
.top-column__decoration {
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, #F5E6C8, #EDD9A3);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  position: absolute;
  right: -80px;
  top: 50%;
  z-index: 0;
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.top-column__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

/* ============================================
   News
   ============================================ */
.top-news {
  padding: 120px 0;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .top-news {
    padding: 64px 0;
  }
}

.top-news__inner {
  max-width: 1200px;
}

.top-news__content {
  max-width: 1200px;
  padding-inline: 120px;
  margin-inline: auto;
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .top-news__content {
    padding-inline: 20px;
    margin-top: 40px;
  }
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 768px) {
  .top-news__list {
    padding-inline: 0;
    margin-top: 40px;
  }
}

.top-news-item:first-child {
  border-top: 1px dashed var(--gray-light);
}

.top-news-item__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px dashed var(--gray-light);
  padding: 24px 0;
  transition: background-color 0.2s ease;
}
.top-news-item__link:hover {
  background-color: rgba(249, 111, 23, 0.04);
}
@media only screen and (max-width: 768px) {
  .top-news-item__link {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
  }
}

.top-news-item__wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .top-news-item__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.top-news-item__date {
  min-width: 100px;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
}
@media only screen and (max-width: 768px) {
  .top-news-item__date {
    font-size: 12px;
  }
}

.top-news-item__tag {
  flex-shrink: 0;
}

.top-news-item__title {
  flex: 1;
  font-size: 16px;
  line-height: 150%;
}
@media only screen and (max-width: 768px) {
  .top-news-item__title {
    font-size: 14px;
  }
}

.top-news-item__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--orange);
  border-radius: 50%;
}

.top-news__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 48px;
}

/* ============================================
   Contact CTA
   ============================================ */
.top-contact {
  background-color: #0596D8;
  border-radius: 40px 40px 0 0;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .top-contact {
    border-radius: 24px 24px 0 0;
    padding: 40px 0;
  }
}

.top-contact__card {
  display: flex;
  gap: 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .top-contact__card {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
}
@media only screen and (max-width: 768px) {
  .top-contact__card {
    padding: 0px;
  }
}

.top-contact__content {
  width: min(41.25vw, 576px);
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .top-contact__content {
    width: auto;
    flex: 1;
  }
}

.top-contact__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: #FFFFFF;
}

.top-contact__heading {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.3;
  color: #FFFFFF;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .top-contact__heading {
    font-size: 28px;
  }
}

.top-contact__sub {
  font-size: 16px;
  line-height: 1.8;
  color: #F3F3F3;
  margin-top: 16px;
}

/* Right column */
.top-contact__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  flex: 1;
}

/* White card row */
.top-contact__action-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.top-contact__action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex: 1;
  text-decoration: none;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 32px 16px;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.top-contact__action-btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 768px) {
  .top-contact__action-btn {
    padding: 16px;
  }
}

.top-contact__action-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #0596D8;
}
@media only screen and (max-width: 768px) {
  .top-contact__action-label {
    font-size: 14px;
  }
}

/* ラベル → アイコンの間隔（margin-top のみで制御） */
.top-contact__action-icon {
  margin-top: 8px;
}

.top-contact__action-text {
  font-weight: 700;
  font-size: 20px;
  color: #0596D8;
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .top-contact__action-text {
    font-size: 18px;
  }
}

/* Tel row */
.top-contact__tel-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  border-top: 1px dashed #FFFFFF;
  padding-top: 24px;
}
@media only screen and (max-width: 768px) {
  .top-contact__tel-wrap {
    padding-top: 16px;
  }
}

.top-contact__tel-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact__tel-icon {
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .top-contact__tel-icon {
    width: 24px;
    height: 24px;
  }
}

.top-contact__tel-number {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .top-contact__tel-number {
    font-size: 28px;
  }
}

.top-contact__tel-hours {
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
}

/* ============================================
   取扱保険会社（ソーシャルプルーフ帯）
   ============================================ */
.top-insurers {
  padding: 96px 0;
  background: var(--gray-pale);
}
@media only screen and (max-width: 768px) {
  .top-insurers {
    padding: 64px 0;
  }
}

.top-insurers__head {
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .top-insurers__head {
    margin-bottom: 32px;
  }
}

.top-insurers__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-top: 24px;
}

.top-insurers__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px 16px;
  list-style: none;
}
@media (max-width: 1024px) {
  .top-insurers__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .top-insurers__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .top-insurers__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ロゴ＋社名で 1 セット */
.top-insurer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.top-insurer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 8px;
  padding: 8px 12px;
}

.top-insurer__logo-img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ロゴ未設定時のプレースホルダー */
.top-insurer__logo-ph {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gray-light);
}

/* SEO 用：ロゴ下の社名（12px） */
.top-insurer__name {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: var(--gray-dark);
}

.top-insurers__note {
  font-size: 12.5px;
  color: var(--gray-light);
  margin-top: 24px;
}

/*----------------------------------------------------------

page/about（会社案内ページ）— クラス名はセクション英語名で統一

----------------------------------------------------------*/
/* ============================================
   Hero（ページ内ナビ）
   ============================================ */
.about-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.about-nav a {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-dark);
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}
.about-nav a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* ============================================
   Message（代表挨拶）— 画像とテキストの左右レイアウト
   ============================================ */
.about-message {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
}
@media (max-width: 860px) {
  .about-message {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-message__media {
  position: relative;
}
.about-message__media img {
  width: 100%;
}

.about-message__title {
  font-size: 18px;
  font-weight: 700;
}

.about-message__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 16px;
}
.about-message__text strong {
  font-weight: 700;
  color: var(--black);
}

.about-message__sign {
  font-size: 14px;
  color: var(--gray-dark);
  margin-top: 24px;
}
.about-message__sign strong {
  display: block;
  font-size: 20px;
  color: var(--black);
  margin-top: 8px;
}

/* ============================================
   Philosophy（経営理念）
   ============================================ */
.about-philosophy__quote {
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
  color: var(--orange);
}
@media only screen and (max-width: 768px) {
  .about-philosophy__quote {
    font-size: 20px;
  }
}

.about-philosophy__text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .about-philosophy__text {
    font-size: 14px;
  }
}

/* ============================================
   History（沿革）
   ============================================ */
.about-history__table {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  border-collapse: collapse;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}
.about-history__table th,
.about-history__table td {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
  padding: 16px 24px;
}
@media only screen and (max-width: 768px) {
  .about-history__table th,
  .about-history__table td {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.about-history__table tr + tr th,
.about-history__table tr + tr td {
  border-top: 1px solid var(--gray-pale);
}
.about-history__table th {
  width: 230px;
  font-weight: 700;
  background: #fff1e7;
}
@media only screen and (max-width: 768px) {
  .about-history__table th {
    width: 100px;
  }
}

/* ============================================
   Company（会社情報）— History と同一の表組み（セクション独立のため複製）
   ============================================ */
.about-company__table {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  border-collapse: collapse;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}
.about-company__table th,
.about-company__table td {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
  padding: 16px 24px;
}
@media only screen and (max-width: 768px) {
  .about-company__table th,
  .about-company__table td {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.about-company__table tr + tr th,
.about-company__table tr + tr td {
  border-top: 1px solid var(--gray-pale);
}
.about-company__table th {
  width: 230px;
  font-weight: 700;
  color: var(--black);
  background: #fff1e7;
}
.about-company__table td {
  color: var(--gray-dark);
}
@media (max-width: 640px) {
  .about-company__table,
  .about-company__table tbody,
  .about-company__table tr,
  .about-company__table th,
  .about-company__table td {
    display: block;
    width: auto;
  }
}

/* ============================================
   Quality（業務品質評価制度 認定代理店）— 画像を右に配置する反転レイアウト
   ============================================ */
.about-quality {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-quality {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.about-quality__media {
  order: 2;
  position: relative;
}
@media (max-width: 860px) {
  .about-quality__media {
    order: 0;
  }
}

.about-quality__photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 28px 28px 70px 28px;
  box-shadow: var(--shadow-gray-large);
  overflow: hidden;
}

.about-quality__text {
  font-size: 15.5px;
  line-height: 2;
  margin-top: 16px;
  /* 直前余白を無くす（メディア横の本文先頭など） */
}
.about-quality__text.--flush {
  margin-top: 0;
}
.about-quality__text strong {
  font-weight: 700;
  color: var(--black);
}

.about-quality__cite {
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray-dark);
  background: var(--orange-bg);
  border-left: 2px solid var(--orange);
  padding: 16px 24px;
  margin-top: 16px;
}
.about-quality__cite strong {
  color: var(--black);
}
.about-quality__cite a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: underline;
}

/* ============================================
   Access（店舗・アクセス）
   ============================================ */
.about-access__link {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

/* ============================================
   Sustainability（SDGs・健康経営）
   ============================================ */
.about-sustainability__block + .about-sustainability__block {
  margin-top: 32px;
}

.about-sustainability__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  color: var(--blue);
  margin: 0 0 8px;
}
.about-sustainability__title::before {
  content: "";
  width: 4px;
  height: 20px;
  background: var(--blue);
}

.about-sustainability__text {
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .about-sustainability__text {
    font-size: 14px;
  }
}

/*----------------------------------------------------------

3世代保険サービスページ 固有スタイル

----------------------------------------------------------*/
.threegen-hero {
  background: url("../img/threegen/threegen_mv.png") no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  .threegen-hero {
    background: none;
  }
}

.threegen-hero__bg {
  display: none;
}
@media only screen and (max-width: 768px) {
  .threegen-hero__bg {
    display: block;
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    /* 縦長画像を枠（390px）に収め、上下中央でクロップ表示 */
  }
  .threegen-hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

@media only screen and (max-width: 768px) {
  .threegen-hero__accent {
    font-size: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .threegen-hero__lead {
    margin-top: 220px;
  }
}

@media only screen and (max-width: 768px) {
  .threegen-hero__cta {
    display: flex;
    justify-content: center;
  }
}

/* 事例セクション下の「もっと見る」リンクの上余白 */
.threegen-hero__cta {
  margin-top: 24px;
}

/*----------------------------------------------------------

feature-card（アイコン付き特徴カード .threegen-fcard）※ de-share

----------------------------------------------------------*/
.threegen-fcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .threegen-fcards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .threegen-fcards {
    grid-template-columns: 1fr;
  }
}

.threegen-fcard {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #ffe3d6;
  border-radius: 20px;
  box-shadow: var(--shadow-orange);
  padding: 32px;
}

.threegen-fcard--blue {
  border-color: #cfebfa;
  box-shadow: 0 15px 30px rgba(5, 150, 216, 0.1);
}

.threegen-fcard--stack {
  flex-direction: column;
  gap: 16px;
}

.threegen-fcard__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 18px;
  margin-inline: auto;
}
.threegen-fcard--blue .threegen-fcard__icon {
  background: linear-gradient(180deg, #36b3ee, #0596d8);
}

.threegen-fcard__no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--orange);
}
.threegen-fcard--blue .threegen-fcard__no {
  color: var(--blue);
}

.threegen-fcard__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 8px;
  /* 事例カード等の小さめ見出し */
}
.threegen-fcard__title.--sm {
  font-size: 17px;
}

.threegen-fcard__text {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 8px;
}

/*----------------------------------------------------------

imgcard（画像付きカード・場面/事例の汎用版 .threegen-imgcard）※ de-share

----------------------------------------------------------*/
.threegen-imgcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .threegen-imgcard-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.threegen-imgcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}

.threegen-imgcard__media {
  height: 160px;
}
.threegen-imgcard__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 375/250;
  -o-object-fit: cover;
     object-fit: cover;
}

.threegen-imgcard__body {
  padding: 24px 24px 24px;
}

.threegen-imgcard__title {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--black);
}

.threegen-imgcard__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

.threegen-case-fcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .threegen-case-fcards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .threegen-case-fcards {
    grid-template-columns: 1fr;
  }
}

.threegen-case-fcards__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/*----------------------------------------------------------

個人のお客様ページ 固有スタイル

----------------------------------------------------------*/
.personal-hero {
  background: url("../img/personal/personal_mv.png") no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  .personal-hero {
    background: none;
  }
}

.personal-hero__bg {
  display: none;
}
@media only screen and (max-width: 768px) {
  .personal-hero__bg {
    display: block;
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    /* 縦長画像を枠（390px）に収め、上下中央でクロップ表示 */
  }
  .personal-hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

@media only screen and (max-width: 768px) {
  .personal-hero__lead {
    margin-top: 220px;
  }
}

@media only screen and (max-width: 768px) {
  .personal-hero__cta {
    display: flex;
    justify-content: center;
  }
}

/* 取扱保険商品 */
.personal-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .personal-prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .personal-prod-grid {
    grid-template-columns: 1fr;
  }
}

.personal-prod-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: var(--shadow-gray);
  padding: 24px;
}

.personal-prod-card__icon {
  display: block;
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .personal-prod-card__icon {
    width: 80px;
    height: 80px;
  }
}

.personal-prod-card__title {
  font-weight: 700;
  font-size: 20px;
  color: var(--orange);
}

.personal-prod-card__subtitle {
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
}

.personal-prod-card__text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}

.personal-prod-note {
  font-size: 13px;
  color: var(--gray-dark);
  margin-top: 24px;
}

/* 選ばれる理由（画像付き） */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .reason-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.reason-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}

.reason-card__media {
  height: 180px;
}
.reason-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-card__body {
  padding: 24px 24px 32px;
}

.reason-card__no {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--orange);
}

.reason-card__title {
  font-weight: 700;
  font-size: 18.5px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 8px;
}

.reason-card__text {
  font-size: 14px;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-top: 16px;
}
.reason-card__text a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--orange);
}

/* お客さまの声 */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}

.voice-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-gray);
  padding: 32px 32px 32px;
  position: relative;
}

.voice-card__mark {
  height: 24px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 56px;
  line-height: 0.6;
  color: var(--orange-middle);
}

.voice-card__meta {
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

.voice-card__text {
  font-size: 15px;
  line-height: 1.95;
  color: var(--black);
  margin-top: 16px;
}

.voice-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

/*----------------------------------------------------------

checklist（チェック付きの悩みリスト）※ components/_checklist.scss より固有化

----------------------------------------------------------*/
.personal-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .personal-checklist {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.personal-checklist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-gray);
  padding: 24px 24px;
}

.personal-checklist__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 50%;
}

.personal-checklist__text {
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--black);
}
.personal-checklist__text .em {
  color: var(--orange);
}

/*----------------------------------------------------------

法人のお客様ページ 固有スタイル

----------------------------------------------------------*/
.corporate-hero {
  background: url("../img/corporate/corporate_mv.png") no-repeat center center/cover;
}
@media only screen and (max-width: 768px) {
  .corporate-hero {
    background: none;
  }
}

.corporate-hero__bg {
  display: none;
}
@media only screen and (max-width: 768px) {
  .corporate-hero__bg {
    display: block;
    width: 100%;
    height: 350px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    /* 縦長画像を枠（390px）に収め、上下中央でクロップ表示 */
  }
  .corporate-hero__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

@media only screen and (max-width: 768px) {
  .corporate-hero__lead {
    margin-top: 220px;
  }
}

@media only screen and (max-width: 768px) {
  .corporate-hero__cta {
    display: flex;
    justify-content: center;
  }
}

/* 法人向け保険・取扱商品カード */
.corporate-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .corporate-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .corporate-card-grid {
    grid-template-columns: 1fr;
  }
}

.corporate-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: var(--shadow-gray);
  padding: 24px;
}

.corporate-card__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
}
.corporate-card__title::before {
  content: "";
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .corporate-card__title {
    font-size: 18px;
  }
}

.corporate-card__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

/* 導入事例 */
.lcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .lcase-grid {
    grid-template-columns: 1fr;
  }
}

.lcase {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-gray);
  padding: 32px;
}

.lcase__meta {
  font-weight: 700;
  font-size: 13px;
  color: var(--blue);
}

.lcase__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--black);
  margin-top: 8px;
}

.lcase__tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

/*----------------------------------------------------------

保険以外のコンサルティングメニュー＋法人資産サポート一覧モーダル

----------------------------------------------------------*/
.corporate-consulting__lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-dark);
}

.corporate-consulting__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .corporate-consulting__actions {
    flex-direction: column;
  }
}

.corporate-consulting__plus {
  font-weight: 700;
  line-height: 1;
}

/* モーダル内：法人資産サポート一覧 */
.corp-support-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 24px;
}
@media (max-width: 900px) {
  .corp-support-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .corp-support-menu {
    grid-template-columns: 1fr;
  }
}

.corp-support-menu__cat {
  padding: 20px;
}

.corp-support-menu__cat-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--orange);
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}

.corp-support-menu__list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.corp-support-menu__list li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--black);
}
.corp-support-menu__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 50%;
}

.corp-support-menu__note {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray-dark);
}

/* 法人資産サポート一覧モーダル（このページ専用） */
body.is-modal-open {
  overflow: hidden;
}

.corporate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  /* 初期は非表示。hidden 属性を JS でトグルする（中身は HTML に出力＝クロール可） */
}
.corporate-modal[hidden] {
  display: none;
}
@media only screen and (max-width: 768px) {
  .corporate-modal {
    padding: 20px;
  }
}

.corporate-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 31, 28, 0.55);
}

.corporate-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-gray-large);
}
@media only screen and (max-width: 768px) {
  .corporate-modal__dialog {
    padding: 24px 20px;
    max-height: calc(100vh - 40px);
  }
}

.corporate-modal__head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-pale);
}

.corporate-modal__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.corporate-modal__title {
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .corporate-modal__title {
    font-size: 18px;
  }
}

.corporate-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--gray-dark);
  background: var(--gray-pale);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.corporate-modal__close:hover {
  opacity: 0.7;
}

.corporate-modal__body {
  margin-top: 24px;
}

/*----------------------------------------------------------

imgcard（画像付きカード・場面/事例の汎用版）※ components/_imgcard.scss から固有化

----------------------------------------------------------*/
.corporate-imgcard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .corporate-imgcard-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.corporate-imgcard {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}

.corporate-imgcard__media {
  height: 160px;
}
.corporate-imgcard__media .c-photo-slot {
  width: 100%;
  height: 100%;
}

.corporate-imgcard__body {
  padding: 24px 24px 24px;
}

.corporate-imgcard__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .corporate-imgcard__title {
    font-size: 16px;
  }
}

.corporate-imgcard__text {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 8px;
}

/*----------------------------------------------------------

お問い合わせページ 固有スタイル（電話案内＋フォーム）

----------------------------------------------------------*/
/* 電話でのお問い合わせ：店舗カード一覧 */
.contact-tel-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .contact-tel-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.contact-tel-card {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 20px;
  box-shadow: var(--shadow-gray);
  padding: 32px 24px;
}
@media (max-width: 600px) {
  .contact-tel-card {
    padding: 24px 20px;
  }
}

.contact-tel-card__name {
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: var(--black);
}

.contact-tel-card__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-top: 12px;
}
@media (max-width: 600px) {
  .contact-tel-card__num {
    font-size: 26px;
  }
}

.contact-tel-card__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.contact-tel-card__info {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
}

.contact-tel-card__row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px;
  font-size: 16px;
  line-height: 1.7;
}
.contact-tel-card__row + .contact-tel-card__row {
  margin-top: 8px;
}
.contact-tel-card__row dt {
  font-weight: 700;
  color: var(--black);
}
.contact-tel-card__row dd a {
  font-family: var(--font-num);
  font-weight: 700;
  color: var(--blue);
}

/* フォーム本体 */
.form {
  background: var(--white);
  border: 1px solid #ececec;
  border-radius: 24px;
  box-shadow: var(--shadow-gray);
  padding: 40px;
}
@media (max-width: 600px) {
  .form {
    padding: 24px;
  }
}

/* お問い合わせフォームは中央寄せ・読みやすい幅に制限 */
.contact-form {
  max-width: 760px;
  margin-inline: auto;
}

/* リード文中の「必須」注記 */
.form-req-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
@media (max-width: 600px) {
  .form-req-note {
    margin-left: 0;
    margin-top: 8px;
  }
}

.form__submit {
  width: 100%;
  font-size: 18px;
  padding: 24px;
  margin-top: 32px;
}

.field {
  margin-bottom: 24px;
}
.field input[type=text],
.field input[type=tel],
.field input[type=email],
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  padding: 16px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 111, 23, 0.12);
}
.field textarea {
  min-height: 130px;
  line-height: 1.7;
  resize: vertical;
}

.field__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--black);
  margin-bottom: 8px;
}

.field__req {
  font-weight: 700;
  font-size: 11px;
  color: var(--white);
  background: var(--red);
  border-radius: 4px;
  padding: 8px 8px;
}

.field__opt {
  font-weight: 700;
  font-size: 11px;
  color: var(--gray-dark);
  background: var(--gray-pale);
  border-radius: 4px;
  padding: 8px 8px;
}

/* 2 カラム入力 */
.field--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .field--half {
    grid-template-columns: 1fr;
  }
}

/* 郵便番号：横幅を抑える */
.field--postal input {
  max-width: 240px;
}

.radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-chip {
  position: relative;
}
.radio-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.radio-chip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--gray-dark);
  border-radius: 999px;
  border: 1.5px solid #d9d9d9;
  padding: 16px 24px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.radio-chip input:checked + span {
  color: var(--orange);
  background: var(--orange-bg);
  border-color: var(--orange);
}

.agree {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--gray-pale);
  border-radius: 12px;
  padding: 16px;
}
.agree input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  margin-top: 8px;
}
.agree a {
  text-decoration: underline;
  color: var(--orange);
}

/*----------------------------------------------------------

Contact Form 7 の自動生成部分の調整
（フォーム本文は管理画面で管理。.field 等の既存スタイルを流用し、
 CF7 が生成するラジオ・同意・送信・検証表示のみここで整える）

----------------------------------------------------------*/
/* 入力ラップを block 化して幅・余白を安定させる */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

/* ラジオ（ご相談の種別・ご希望の相談方法）をチップ UI に */
.contact-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-form .wpcf7-radio .wpcf7-list-item {
  position: relative;
  margin: 0;
}

.contact-form .wpcf7-radio input[type=radio] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.contact-form .wpcf7-radio .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--gray-dark);
  border: 1.5px solid #d9d9d9;
  border-radius: 999px;
  padding: 16px 24px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-form .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label {
  color: var(--orange);
  background: var(--orange-bg);
  border-color: var(--orange);
}

/* 同意（acceptance）を .agree 相当のボックスに */
.contact-form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-form .wpcf7-acceptance label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray-dark);
  background: var(--gray-pale);
  border-radius: 12px;
  padding: 16px;
  margin: 0;
}

.contact-form .wpcf7-acceptance input[type=checkbox] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--orange);
  margin-top: 4px;
}

.contact-form .wpcf7-acceptance a {
  text-decoration: underline;
  color: var(--orange);
}

/* 検証エラー・送信状態 */
.contact-form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: var(--red);
  margin-top: 6px;
}

.contact-form .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--red);
}

.contact-form .wpcf7-response-output {
  font-size: 14px;
  line-height: 1.7;
  border-radius: 12px;
  padding: 16px;
  margin: 24px 0 0;
}

.contact-form .wpcf7-spinner {
  margin: 0 0 0 12px;
}

/* フォーム準備中の代替表示 */
.form-fallback {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: var(--gray-dark);
}

/*----------------------------------------------------------

よくあるご質問ページ 固有スタイル

----------------------------------------------------------*/
/* カテゴリ内ナビ（ピル型・about-nav と同方式） */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.faq-nav a {
  font-weight: 700;
  font-size: 13px;
  color: var(--gray-dark);
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  padding: 8px 16px;
  transition: all 0.2s ease;
}
.faq-nav a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.faq-group + .faq-group {
  margin-top: 56px;
}

.faq-group__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  font-size: 22px;
  color: var(--black);
  margin-bottom: 24px;
  /* 固定ヘッダー(72px)分のアンカーオフセット */
  scroll-margin-top: 88px;
}
.faq-group__title::before {
  content: "";
  width: 6px;
  height: 24px;
  background: var(--grad-orange);
  border-radius: 3px;
}

/*----------------------------------------------------------

コラム一覧ページ 固有スタイル

----------------------------------------------------------*/
/* 一覧見出しの下余白 */
.column-list-head {
  margin-bottom: 32px;
}

/* 記事サムネイル枠 */
.col-thumb {
  width: 100%;
  height: 220px;
}

/* ページャー */
.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
}
.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-dark);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #e4e4e4;
  transition: all 0.2s ease;
}
.pager a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.pager .is-active {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

/*----------------------------------------------------------

セミナーページ 固有スタイル

----------------------------------------------------------*/
/* 注目セミナーの下余白（c-seminar-featured と併用） */
.seminar__featured {
  margin-bottom: 40px;
}

/* 注目セミナーのサムネイル枠 */
.seminar-thumb-slot {
  width: 220px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .seminar-thumb-slot {
    width: 100%;
  }
}

/*----------------------------------------------------------

店舗一覧・アクセスページ 固有スタイル

----------------------------------------------------------*/
/*----------------------------------------------------------

店舗一覧（1店舗1ブロック・情報量多め）

----------------------------------------------------------*/
.shops-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .shops-list {
    gap: 24px;
    margin-top: 24px;
  }
}

.shop {
  display: grid;
  grid-template-columns: 340px 1fr;
  grid-template-areas: "gallery body" "map     map";
  gap: 28px 40px;
  align-items: start;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-gray);
  padding: 32px;
}
@media (max-width: 768px) {
  .shop {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "body" "map";
    gap: 20px;
    padding: 20px;
  }
}

/* 写真ギャラリー（外観＋店内などの複数枚） */
.shop__gallery {
  grid-area: gallery;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.shop__photo--main {
  border-radius: 16px;
  overflow: hidden;
}
.shop__photo--main img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__photo-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop__photo--sub {
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}
.shop__photo--sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop__body {
  grid-area: body;
}

/* Googleマップ（住所から埋め込み） */
.shop__map {
  grid-area: map;
}
.shop__map iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .shop__map iframe {
    height: 240px;
  }
}

.shop__brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--blue);
}

.shop__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .shop__name {
    font-size: 20px;
  }
}

.shop__feature {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 12px;
}

.shop__info {
  margin-top: 20px;
}

.shop__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 4px 16px;
  font-size: 14px;
  line-height: 1.7;
  padding: 10px 0;
}
.shop__row + .shop__row {
  border-top: 1px solid var(--gray-pale);
}
.shop__row dt {
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .shop__row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 8px 0;
  }
}

.shop__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* オンライン・訪問の 2 カラム */
.online-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .online-grid {
    grid-template-columns: 1fr;
  }
}

.online-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-gray);
  padding: 32px;
}

.online-card__title {
  font-weight: 700;
  font-size: 19px;
  color: var(--black);
}

.online-card__text {
  font-size: 15px;
  line-height: 1.85;
  margin-top: 16px;
}

.online-card__btn {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* 地図枠 */
.map-slot {
  width: 100%;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
}

/*----------------------------------------------------------

de-share: compare-table（旧 .c-compare-table を固有化）

----------------------------------------------------------*/
/* 比較表（2 列・ヘッダー付き） */
.shops-compare-table {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  border-collapse: collapse;
  box-shadow: var(--shadow-gray);
  overflow: hidden;
}
.shops-compare-table th,
.shops-compare-table td {
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
  padding: 16px 24px;
}
.shops-compare-table thead th {
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
}
.shops-compare-table tbody tr + tr td {
  border-top: 1px solid var(--gray-pale);
}
.shops-compare-table tbody td:first-child {
  width: 50%;
  font-weight: 700;
  color: var(--black);
}
.shops-compare-table tbody td:last-child {
  font-weight: 700;
  color: var(--orange);
}
@media (max-width: 600px) {
  .shops-compare-table th,
  .shops-compare-table td {
    font-size: 14px;
    padding: 16px 16px;
  }
}

/*----------------------------------------------------------

page/reason（選ばれる理由）— 画像とテキストの左右交互レイアウト（altrow）

----------------------------------------------------------*/
.reason {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 80px;
}
.reason + .reason {
  margin-top: 72px;
}
@media (max-width: 860px) {
  .reason {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* 反転（画像を右に） */
.reason--rev .reason__media {
  order: 2;
}
.reason--rev .reason__photo {
  border-radius: 28px;
}

@media (max-width: 860px) {
  .reason--rev .reason__media {
    order: 0;
  }
}
.reason__media {
  position: relative;
}

.reason__photo {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 28px;
  box-shadow: var(--shadow-gray-large);
  overflow: hidden;
}
.reason__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason__no {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.reason__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: var(--black);
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .reason__title {
    font-size: 22px;
  }
}

.reason__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .reason__text {
    font-size: 14px;
  }
}
.reason__text {
  /* 直前余白を無くす（メディア横の本文先頭など） */
}
.reason__text.--flush {
  margin-top: 0;
}
.reason__text strong {
  font-weight: 700;
  color: var(--black);
}

/* altrow 内の補助 CTA の上余白 */
.reason__cta {
  margin-top: 24px;
}

/*----------------------------------------------------------

reason-cite-box（出典・注記ボックス｜固有化）

----------------------------------------------------------*/
.reason-cite-box {
  font-size: 13px;
  line-height: 1.9;
  color: var(--gray-dark);
  background: var(--orange-bg);
  border-radius: 14px;
  padding: 16px 24px;
  margin-top: 16px;
}
.reason-cite-box strong {
  color: var(--black);
}
.reason-cite-box a {
  font-weight: 700;
  color: var(--orange);
}

/*----------------------------------------------------------

anti-social（反社会的勢力に対する基本方針ページ固有：旧 legal を固有化）

----------------------------------------------------------*/
.anti-social-legal {
  max-width: 760px;
}

.anti-social-legal__lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--gray-dark);
}

/* 本文中の小見出し */
.anti-social-legal__subtitle {
  font-weight: 700;
  font-size: 20px;
  margin: 40px 0 16px;
}

.anti-social-legal__meta {
  font-size: 12.5px;
  color: var(--gray-light);
  margin-top: 24px;
}

.anti-social-legal__related {
  font-size: 13.5px;
  color: var(--gray-dark);
  margin-top: 8px;
}
.anti-social-legal__related a {
  font-weight: 700;
  color: var(--orange);
}

.anti-social-policy-list {
  counter-reset: pol;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.anti-social-policy-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-gray);
  padding: 24px 32px 24px 72px;
  position: relative;
}
.anti-social-policy-item::before {
  counter-increment: pol;
  content: counter(pol);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  background: var(--grad-orange);
  border-radius: 50%;
  position: absolute;
  left: 24px;
  top: 24px;
}

.anti-social-policy-item__t {
  font-weight: 700;
  font-size: 16.5px;
  color: var(--black);
}

.anti-social-policy-item__d {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-top: 8px;
}

/* 法令ページ末尾の注記帯 */
.anti-social-note-band {
  background: var(--gray-pale);
  padding: 24px 0;
}
.anti-social-note-band p {
  font-size: 13.5px;
  text-align: center;
  color: var(--gray-dark);
}
.anti-social-note-band strong {
  font-family: var(--font-num);
  color: var(--black);
}

/*----------------------------------------------------------

customer-harassment（カスタマーハラスメント基本方針ページ固有）

----------------------------------------------------------*/
.customer-harassment {
  max-width: 760px;
}

.customer-harassment__lead {
  font-size: 16px;
  line-height: 1.95;
  color: var(--gray-dark);
}
@media only screen and (max-width: 768px) {
  .customer-harassment__lead {
    font-size: 15px;
  }
}

/* 本文中の小見出し */
.customer-harassment__subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  color: var(--black);
  margin-top: 48px;
  margin-bottom: 16px;
}
.customer-harassment__subtitle::before {
  content: "";
  width: 6px;
  height: 22px;
  flex-shrink: 0;
  background: var(--grad-orange);
  border-radius: 3px;
}
@media only screen and (max-width: 768px) {
  .customer-harassment__subtitle {
    font-size: 18px;
    margin-top: 40px;
  }
}

/* 定義・対応の箇条書き */
.customer-harassment__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.customer-harassment__item {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray-dark);
  padding-left: 28px;
}
.customer-harassment__item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.65em;
  width: 8px;
  height: 8px;
  background: var(--grad-orange);
  border-radius: 50%;
}

/*----------------------------------------------------------

page/sdgs（SDGsへの取り組みページ固有）

----------------------------------------------------------*/
/* 取り組み：画像（左）＋文章（右）の2カラム */
.sdgs-figure {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 32px;
  align-items: start;
}
@media only screen and (max-width: 768px) {
  .sdgs-figure {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sdgs-figure {
  /* page-content の自動マージン（* + *）を打ち消し、gap で間隔を制御 */
}
.sdgs-figure > * + * {
  margin-top: 0;
}

.sdgs-figure__img img {
  width: 150px;
}

/*----------------------------------------------------------

post-detail（セミナー／コラム／お知らせ 詳細のタイトル付近）
各タイプを固有クラス（seminar-detail / column-detail / news-detail）に
しているため、デザインが分かれたらブロックごとに分割して個別調整できる。

----------------------------------------------------------*/
.seminar-detail__hero,
.column-detail__hero,
.news-detail__hero {
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .seminar-detail__hero,
  .column-detail__hero,
  .news-detail__hero {
    padding: 0 0 20px;
  }
}

.seminar-detail__title,
.column-detail__title,
.news-detail__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: var(--black);
}
@media only screen and (max-width: 768px) {
  .seminar-detail__title,
  .column-detail__title,
  .news-detail__title {
    font-size: 20px;
  }
}

.seminar-detail__date,
.column-detail__date,
.news-detail__date {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-dark);
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .seminar-detail__date,
  .column-detail__date,
  .news-detail__date {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */