@charset "UTF-8";

/* =========================
   Base / Theme
========================= */
:root {
    --container: 1200px;
    --gutter: 20px;

    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 64px;

    /* Color */
    --bg: #ffffff;
    --surface: rgba(255, 255, 255, 0.92);
    --text: #2b2b2b;
    --muted: #6b6b6b;
    --border: rgba(0, 0, 0, 0.08);

    --brand: #6bb6a1;
    --brand-weak: rgba(107, 182, 161, 0.14);

    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: "Zen Maru Gothic", "Noto Serif JP", system-ui, -apple-system, sans-serif;
    line-height: 1.75;
    letter-spacing: .02em;
    padding-top: 92px;
}

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

h1 {
    font-size: 2rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    font-weight: 600;
}

/* =========================
     logo
  ========================= */

.ptc,
.c-clinic__text {
    text-align: center;
    text-wrap: nowrap;
}

.ptc h1 {
    font-size: 1.5rem;
    margin: -10px auto;
}

.ptc p {
    font-size: 0.7rem;
}

/* Clinic */
.c-clinic {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.c-clinic__logo img {
    width: 64px;
    height: 64px;
}

.c-clinic__en {
    color: var(--muted);
    font-size: .85rem;
    letter-spacing: .08em;
}

.c-clinic__text h1 {
    font-size: 2rem;
    margin: -10px auto;
}

.c-clinic__text p {
    font-size: 0.9rem;
}

/* =========================
     Layout
  ========================= */
.l-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* セクション余白（全体統一） */
.l-section {
    padding: var(--space-7) 0;
}

/* 薄い背景のセクションに使う */
.l-section--muted {
    background: rgba(0, 0, 0, 0.02);
}

/* 文章ブロック：読みやすい行長に制限 */
.l-prose {
    max-width: 100ch;
}

/* =========================
     Section Title (共通)
  ========================= */
.c-sectionTitle {
    margin-bottom: var(--space-5);
}

.c-sectionTitle__main {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: .03em;
}

.c-sectionTitle__sub {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.95rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* =========================
   Button (base)
========================= */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.c-btn:hover {
    transform: translateY(-1px);
}

.c-btn--pill {
    border-radius: 999px;
}

.c-btn--brand {
    background: var(--color-brand-weak);
    border-color: rgba(107, 182, 161, 0.25);
}

.c-btn--ghost {
    background: #fff;
}


/* アウトラインボタン */
.c-btn--outline {
    background: #fff;
    border: 2px solid var(--brand);
    color: var(--brand);
}

.c-btn--outline:hover {
    background: var(--brand-weak);
    transform: translateY(-2px);
}

/* ボタン配置 */
.s-menu__actions {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}



/* =========================
   Theme variables
========================= */
:root {
    --color-bg: #ffffff;
    --color-surface: rgba(255, 255, 255, 0.92);
    --color-text: #2b2b2b;
    --color-muted: #6b6b6b;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-brand: #6bb6a1;
    --color-brand-weak: rgba(107, 182, 161, 0.14);

    --radius: 14px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* =========================
     Layout base
  ========================= */
.l-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
     Header
  ========================= */
.c-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 1000;
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.c-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 72px;
}

.c-header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.c-header__logo img {
    display: block;
    height: 44px;
    width: auto;
}


.c-header__contact {
    display: grid;
    gap: 6px;
    justify-items: end;
    white-space: nowrap;
}


.c-header__hours {
    font-size: .78rem;
    color: var(--color-muted);
    letter-spacing: .04em;
    text-align: center;
}


.c-header__tel {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--color-brand-weak);
    /* border: 2px solid rgba(107, 182, 161, 0.45); */
    box-shadow: 0 10px 22px rgba(0, 0, 0, .08);
    color: var(--color-text);
    text-decoration: none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.c-header__tel i {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    color: var(--color-brand);
    flex: 0 0 auto;
}


.c-header__telNumber {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: .04em;
    line-height: 1;
}


.c-header__tel:hover {
    transform: translateY(-1px);
    background: rgba(107, 182, 161, 0.20);
    border-color: rgba(107, 182, 161, 0.70);
}

.c-header__tel:hover::after {
    transform: translateX(4px);
}


/* =========================
   PC Navigation Pill（ボタン）
========================= */
.c-nav__list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}


.c-navPill-A {
    display: grid;
    grid-template-rows: auto auto;
    justify-items: center;
    align-content: center;
    gap: 2px;

    padding: 6px 14px;
    min-height: 44px;

    border-radius: 999px;
    text-decoration: none;
    color: var(--color-text);
    background: #fff;
    border: 2px solid transparent;

    transition:
        background .15s ease,
        border-color .15s ease,
        transform .15s ease;
}



.c-navPill-A:hover {
    background: var(--color-brand-weak);
    /* border-color: rgba(107, 182, 161, .35); */
    transform: translateY(-1px);
}


.c-navPill__ja,
.c-navPill__en {
    display: block;
    text-align: center;
}


.c-navPill__ja {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
}



.c-navPill__en {
    font-size: 0.68rem;
    color: var(--color-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.1;
}



.c-nav__item.is-current .c-navPill-A {
    background: var(--color-brand-weak);
    border-color: rgba(107, 182, 161, .6);
}



/* =========================
     Drawer (Mobile) ハンバーガーメニュー
  ========================= */
.c-drawer {
    display: none;
    position: relative;

}

.c-drawer__check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.c-drawer__btn {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    position: relative;
}

.c-drawer__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 999px;
    position: absolute;
}

/* 3本に見せる */
.c-drawer__bar:nth-child(1) {
    transform: translateY(-6px);
}

.c-drawer__bar:nth-child(3) {
    transform: translateY(6px);
}

/* 開いたら×にする */
.c-drawer__check:checked~.c-drawer__btn .c-drawer__bar:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

.c-drawer__check:checked~.c-drawer__btn .c-drawer__bar:nth-child(2) {
    opacity: 0;
}

.c-drawer__check:checked~.c-drawer__btn .c-drawer__bar:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}


/* パネル */
.c-drawer__panel {
    position: fixed;
    top: 85px;
    right: 0;
    width: 100%;
    height: calc(100dvh - 85px);
    background-color: #fff;
    background-image: url(/img/plaid01.png);
    background-size: cover;
    border-left: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    padding: 18px;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform .25s ease;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.c-drawer__check:checked~.c-drawer__panel {
    transform: translateX(0);
}


.c-drawer__check:checked~.c-drawer__backdrop {
    display: block;
}

.c-drawer__list {
    display: grid;
    gap: 8px;
}

/* =========================
   Drawer menu pills
========================= */
.c-navPill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--color-text);
    background: #fff;
    border: 3px solid rgba(107, 182, 161, 0.9);
    font-weight: 700;
    position: relative;
}

.c-navPill::after {
    content: "›";
    font-size: 1.4rem;
    line-height: 1;
    opacity: .9;
}

.c-navPill:hover {
    background: var(--brand);
    transform: translateY(-1px);
    color: #fff;
}

.c-drawer__contact {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
    display: grid;
    gap: 8px;
}

.c-drawer__hours {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.c-drawer__tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    background: var(--color-brand-weak);
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid rgba(107, 182, 161, 0.25);
    font-weight: 700;
}


/* =========================
   <home> Hero (Main Visual)
========================= */
.c-hero {
    padding: 22px 0 var(--space-7);
	height: 80vh;
}

.c-hero__wrap {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    min-height: clamp(360px, 42vw, 520px);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

/* 背景画像 */
.c-hero__media {
    position: absolute;
    inset: 0;
}

.c-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.02);
}

.c-hero__wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, .92) 0%,
            rgba(255, 255, 255, .78) 45%,
            rgba(255, 255, 255, .20) 70%,
            rgba(255, 255, 255, 0) 100%);
}

.c-hero__copy {
    position: relative;
    z-index: 2;
    padding: clamp(22px, 3.2vw, 44px);
    max-width: 560px;
    display: grid;
    gap: 16px;
}

.c-hero__kicker {
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .06em;
}

.c-hero__headline {
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .02em;
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.c-hero__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.c-hero__logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6px;
}

.c-hero__name {
    font-weight: 900;
    font-size: 1.1rem;
}

.c-hero__en {
    color: var(--muted);
    font-weight: 700;
    font-size: .9rem;
}

/* 右下カード */
.c-heroCard {
    position: absolute;
    right: clamp(14px, 2vw, 22px);
    bottom: clamp(14px, 2vw, 22px);
    z-index: 3;
    width: min(400px, calc(100% - 28px));
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    padding: 16px 16px 14px;
    display: grid;
    gap: 10px;
}

.c-heroCard__top {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 900;
    color: #d96b6b;
}

.c-heroCard__badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(217, 107, 107, .12);
    border: 1px solid rgba(217, 107, 107, .24);
    font-size: .85rem;
    color: #d96b6b;
}

.c-heroCard__row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: start;
}

.c-heroCard__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--brand-weak);
    color: var(--brand);
    display: grid;
    place-items: center;
}

.c-heroCard__label {
    font-weight: 900;
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.c-heroCard__value {
    font-weight: 700;
    line-height: 1.5;
}

.c-heroCard__link {
    display: inline-flex;
    font-size: .8rem;
    margin-top: 4px;
    font-weight: 600;
    color: var(--brand);
    text-decoration: none;
    border: 2px solid var(--brand);
    border-radius: 20px;
    padding: 0px 10px;
    /* margin-left: 20px */
}

.c-heroCard__link:hover {
    background-color: var(--brand);
    color: var(--bg);
}


/* Hero card tel CTA */
.c-heroCard__cta {
    margin-top: 6px;
}

.c-heroCardTel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;

    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;

    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .08);

    text-decoration: none;
    color: var(--text);

    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.c-heroCardTel:hover {
    transform: translateY(-1px);
    border-color: rgba(107, 182, 161, .35);
    background: rgba(107, 182, 161, .06);
}

/* left icon */
.c-heroCardTel__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;

    background: rgba(217, 107, 107, .12);
    border: 1px solid rgba(217, 107, 107, .20);
    flex: 0 0 auto;
}

.c-heroCardTel__icon i {
    color: #d96b6b;
    font-size: 18px;
}

/* text */
.c-heroCardTel__body {
    display: grid;
    gap: 2px;
    line-height: 1.1;
}

.c-heroCardTel__label {
    font-size: .78rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: .04em;
}

.c-heroCardTel__num {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: .02em;
}

/* arrow */
.c-heroCardTel::after {
    content: "›";
    position: absolute;
    right: 14px;
    font-size: 1.4rem;
    color: var(--brand);
    transition: transform .15s ease;
}

.c-heroCardTel:hover::after {
    transform: translateX(4px);
}


.c-heroCard__btn {
    position: relative;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 14px;
    border-radius: 14px;
    background: var(--brand);
    color: var(--bg);
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
}

.c-heroCard__btn span {
    opacity: .9;
}

.c-heroCard__btn:hover {
    filter: brightness(0.98);
}

/* 角の装飾（丸） */
.c-hero__blob {
    position: absolute;
    z-index: 1;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand) 16%, transparent);
    filter: blur(0px);
}

.c-hero__blob--tl {
    left: -110px;
    top: -110px;
}

.c-hero__blob--tr {
    right: -120px;
    top: -140px;
    background: color-mix(in srgb, var(--brand) 22%, transparent);
}

/* =========================
   Mini Hours table (Hero)
========================= */

.c-messageA {
    background: #fff;
    border-radius: var(--radius);
    padding: 8px 9px;
    box-shadow: var(--shadow);
    border-left: 6px solid #d96b6b;
    margin-bottom: var(--space-2);
}

.c-hoursMini {
    width: calc(100% - 30px);
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 6px;
    font-size: .82rem;
}

.c-hoursMini th,
.c-hoursMini td {
    height: 36px;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    display: table-cell !important;
}

.c-hoursMini thead th {
    color: var(--muted);
    font-weight: 700;
}

.c-hoursMini__timeHead {
    text-align: left;
    padding-left: 8px;
    width: 92px;
}

.c-hoursMini__time {
    text-align: left;
    padding-left: 8px;
    font-weight: 900;
    color: var(--text);
}


.c-hoursMini td.is-open::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--brand);
}


.c-hoursMini td.is-close {
    position: relative;
}

.c-hoursMini td.is-close::before,
.c-hoursMini td.is-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #999;
    border-radius: 999px;
    transform-origin: center;
}

.c-hoursMini td.is-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.c-hoursMini td.is-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}



/* =========================
   About
========================= */
.s-about {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--space-6);
    align-items: start;
}

/* Director card */
.c-director {
    /* background: #fff; */
    border-radius: var(--radius);
    padding: var(--space-3);
    /* box-shadow: var(--shadow); */
    text-align: center;
}

.c-director__photo {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--space-2);
    border-radius: 50%;
    overflow: hidden;
    background: #f3f3f3;
}

.c-director__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* role */
.c-director__role {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: .08em;
}

/* name */
.c-director__name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin: 6px 0 12px;
}

/* licenses */
.c-director__licenses {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text);
}

/* text */
.s-about__text p+p {
    margin-top: var(--space-4);
}

.s-about__text {
    margin-top: 30px;
}

/* =========================
   About additions
========================= */

.c-message {
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--brand);
    margin-bottom: var(--space-4);
}

.c-message__label {
    display: inline-block;
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .08em;
    margin-bottom: 6px;
}

.c-message__text {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.6;
}

.c-infoList {
    list-style: none;
    padding: 0;
    margin: var(--space-5) 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.c-infoCard {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius);
    padding: 16px 16px;
    box-shadow: var(--shadow);
    /* text-wrap: nowrap; */
}

.c-infoCard__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--brand-weak);
    color: var(--brand);
    font-size: 18px;
    flex: 0 0 auto;
}

.c-infoCard__title {
    font-weight: 700;
    margin-bottom: 4px;
    text-wrap: nowrap;
}

.c-infoCard__text {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.7;
}

.s-about__actions {
    min-width: 340px;
    margin-top: var(--space-2);
}


/* =========================
   Menu
========================= */
.s-menu {
    display: grid;
    gap: var(--space-5);
}

.s-menu__lead {
    max-width: 72ch;
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
}

.u-emphasis {
    color: var(--brand);
    font-weight: 700;
    padding: 0 .2em;
    border-bottom: 2px solid color-mix(in srgb, var(--brand) 35%, transparent);
}

.u-note {
    color: var(--muted);
    font-weight: 700;
}

/* service cards */
.c-serviceList {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.c-serviceCard {
    background: var(--brand-weak);
    border-radius: var(--radius);
    padding: var(--space-1);
    text-align: center;
    /* box-shadow: var(--shadow); */
    transition: transform .15s ease;
}


.c-serviceCard img {
    margin: 0 auto var(--space-3);
    width: 80px;
}

.c-serviceCard__title {
    font-weight: 700;
}


/* =========================
   Fee Section
========================= */
.s-fee {
    max-width: 640px;
    margin: 0 auto;
}

/* Table card */
.c-feeTable {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
}

.c-feeTable tr {
    background: #fff;
    box-shadow: var(--shadow);
}

.c-feeTable th {
    width: 40%;
    text-align: left;
    padding: 18px 20px;
    font-weight: 700;
    color: var(--muted);
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius) 0 0 var(--radius);
    white-space: nowrap;
}

.c-feeTable td {
    padding: 18px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.c-feeTable__price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.c-feeTable__unit {
    margin-left: 6px;
    font-size: 1rem;
    color: var(--muted);
}

/* 注釈 */
.s-fee__note {
    margin-top: var(--space-4);
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.7;
}

.unit {
    font-size: 1rem;
    font-weight: 400;
    padding: 10px;
}

/* =========================
   Badges
========================= */
.c-badgeRow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 var(--space-3);
}

.c-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.02);
    color: var(--text);
}

.c-badge--brand {
    border-color: rgba(0, 0, 0, 0);
    background: var(--brand-weak);
    color: var(--brand);
}

/* =========================
     Highlight message
  ========================= */
.c-highlight {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px 16px;
    border-left: 6px solid var(--brand);
    margin: 0 0 var(--space-4);
    font-weight: 800;
    line-height: 1.7;
}

.c-highlight__label {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--brand);
    color: var(--bg);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
}

/* =========================
   Access Section
========================= */
.s-access {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-6);
}

/* Info card */
.s-access__info {
    background: #fff;
    border-radius: var(--radius);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    display: grid;
    gap: var(--space-5);
}

/* Map */
.s-access__map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 420px;
}


/* Access item */
.c-accessItem {
    display: grid;
    grid-template-columns: 40px 1fr;
    /* ← アイコン列を固定 */
    gap: 14px;
    align-items: start;
}

.c-accessItem__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--brand-weak);
    color: var(--brand);
    font-size: 1.1rem;
}

.c-accessItem__label {
    font-weight: 800;
    font-size: .9rem;
    letter-spacing: .06em;
    margin-bottom: 6px;
    color: var(--text);
}

.c-accessItem__text {
    /* font-style: normal; */
    line-height: 1.8;
    color: var(--text);
    font-weight: 500;
}

.c-accessItem__zip {
    color: var(--muted);
    font-weight: 700;
}

/* tel */

.c-telLink {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 3px 10px 3px 80px;
    border-radius: 50px;
    width: 300px;
    background: var(--color-brand-weak);
    border: 2px solid var(--brand);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: transform .15s ease, background .15s ease;

}

.c-telLink__num {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: .02em;
    text-align: center;

}


.c-telLink::after {
    content: "›";
    position: absolute;
    right: 14px;
    font-size: 1.4rem;
    color: var(--brand);
    transition: transform .15s ease;
}

.c-telLink:hover {
    background: var(--brand);
    transform: translateY(-2px);
}

.c-telLink:hover .c-telLink__num {

    color: var(--bg);
}

.c-telLink:hover::after {
    transform: translateX(4px);
}


/* =========================
   Hours Table
========================= */
.c-hours {
    /* border: 2px solid var(--brand); */
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: var(--shadow);

}

.c-hours__title {
    border: 1px solid var(--brand);
    border-radius: 50px;
    padding: 2px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--bg);
    background-color: var(--brand);
    font-weight: 500;
}

.c-hours__table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    text-align: center;
    font-size: 0.95rem;
}

.c-hours__col-time {
    width: 120px;
}

.c-hours__table th,
.c-hours__table td {
    height: 32px;
    padding: 12px 6px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
    text-align: center;
}

.c-hours__table thead th {
    font-weight: 800;
    color: var(--text);
}

.c-hours__table th[scope="row"] {
    text-align: center;
    font-weight: 800;
    padding-left: 16px;
}

/* open / close */
.c-hours__table .is-open {
    color: var(--brand);
    font-weight: 900;
}

.c-hours__table .is-close {
    color: #999;
    font-weight: 900;
}


/* =========================
   Page title
========================= */
.c-pageTitle {
    margin-bottom: var(--space-5);
}

.c-pageTitle__mainB {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    font-size: 1.9rem;
    line-height: 1.3;
    background-image: url(/img/plaid01.png);
    background-size: cover;
    padding: var(--space-4);
}

.c-pageTitle__mainC {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    font-size: 1.9rem;
    line-height: 1.3;
    background-image: url(/img/plaid03.png);
    background-size: cover;
    padding: var(--space-4);
}

.c-pageTitle__icon {
    width: 44px;
    height: 44px;
}

/* compact section spacing (optional) */
.l-section--compact {
    padding: var(--space-6) 0;
}

/* =========================
     Intro
  ========================= */
.s-beginnerIntro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-6);
    align-items: center;

}

.s-beginnerIntro__image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.u-emphasis {
    color: var(--brand);
    font-weight: 700;
}

.u-required {
    color: #d04a4a;

    font-weight: 700;
}

/* =========================
     Icon grid
  ========================= */
.c-iconGrid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.c-iconCard {
    background-color: var(--brand-weak);
    background-size: cover;
    border-radius: var(--radius);
    padding: var(--space-1);
    text-align: center;
    color: #000;
    /* box-shadow: var(--shadow); */
}

.c-iconCard img {
    width: 64px;
    margin: 0 auto var(--space-3);
}

.c-iconCard__title {
    font-weight: 700;
}

/* =========================
     Steps
  ========================= */
.c-stepList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-4);
}

.c-step {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--space-5);
}

.c-step__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-3);
}

.c-step__num {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #fff;
    background: var(--brand);
}

.c-step__title {
    font-size: 1.15rem;
    font-weight: 900;
}

.c-step__text {
    color: var(--text);
}

.c-btn--tel {
    margin-top: var(--space-3);
    width: fit-content;
}

/* bottom decorative image */
.s-beginner__footerImage {
    margin-top: var(--space-6);
    display: grid;
    place-items: center;
    opacity: .9;
}

.s-beginner__footerImage img {
    max-width: 260px;
}



/* =========================
   Accident Intro
========================= */
.s-accidentIntro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-6);
    align-items: center;
}

.s-accidentIntro__image img {
    border-radius: var(--radius);
    padding: 0 80px
        /* box-shadow: var(--shadow); */
}

.s-accident__actions {
    margin-top: var(--space-6);
    display: flex;
    justify-content: center;
}

.c-pageTitle__mainA {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    font-size: 1.9rem;
    line-height: 1.3;
    background-image: url(/img/plaid02.png);
    background-size: cover;
    padding: var(--space-4);
}



/* =========================
   Recruit
========================= */
.s-recruit {
    display: grid;
    gap: var(--space-5);
    max-width: 860px;
    margin: 0 auto;
}

/* Job card */
.c-jobCard {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(16px, 2.2vw, 26px);
    display: grid;
    gap: var(--space-4);
}

.c-jobCard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border);
}

.c-jobCard__title {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: .04em;
}

/* definition list */
.c-jobList {
    display: grid;
    gap: 12px;
    margin: 0;
}

.c-jobRow {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.c-jobRow:last-child {
    border-bottom: none;
}

.c-jobRow dt {
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .06em;
    white-space: nowrap;
    padding-top: 2px;
}

.c-jobRow dd {
    margin: 0;
    font-weight: 600;
    line-height: 1.8;
    color: var(--text);
}

/* Contact block */
.c-jobContact {
    margin-top: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    display: grid;
    gap: 10px;
}

.c-jobContact__lead {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.c-jobContact__mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--brand-weak);
    padding: 6px;
}

.c-jobContact__note {
    color: var(--muted);
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .06em;
}

.c-jobContact__hours {
    color: var(--muted);
    font-size: .8rem;
    font-weight: 700;
    margin-left: var(--space-2);
}

/* =========================
   Footer
========================= */
.c-footer {
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.015);
    padding: var(--space-6) 0;
}

.c-footer__inner {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--space-4);
    align-items: center;
}

.c-footer__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    white-space: nowrap;
}


.c-footer__mark {
    width: 50px;
    height: 50px;
    margin-right: var(--space-1);
}

.c-footer__catch {
    font-size: .7rem;
}

.c-footer__name {
    margin: -10px auto;
    font-weight: 700;
    font-size: 1.5rem;

}

.c-footer__en {
    color: var(--muted);
    font-size: 0.7rem;

}

.c-footer__links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: nowrap;
    overflow-x: auto;
}

.c-footer__link img {
    height: 50px;
    width: auto;
    display: block;
    flex-wrap: nowrap;
}

.c-footer__copy {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: var(--space-4);
}
