:root {
    --bg: #ffffff;
    --bg2: #f7f9f8;

    --text: #1a1a1a;
    --subtext: #555555;
    --muted: #888888;

    --brand: #007b43;
    --brand-dark: #005e32;
    --brand-light: #3faf7b;
    --brand-pale: #e6f4ed;
    --accent: #e6b422;

    --border: #e0e5e2;
    --border-strong: #c7d1cb;

    --card: rgba(255, 255, 255, 0.88);
    --card-border: rgba(199, 209, 203, 0.9);
    --badge-bg: rgba(230, 244, 237, 0.9);

    --line: #e0e5e2;
    --panel-bg: rgba(255, 255, 255, 0.96);

    --header-bg: rgba(255, 255, 255, 0.88);
    --shadow: 0 10px 30px rgba(26, 26, 26, 0.08);
    --transition: 0.28s ease;

    --max-width: 1120px;
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family:
        "Inter",
        "Noto Sans JP",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--text);
    background: #ffffff;
}

body {
    position: relative;
}

body.is-locked {
    overflow: hidden;
}

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.site-bg-item {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.42;
    transform-origin: center;
}

.site-bg-item-1 {
    width: 760px;
    height: 760px;
    top: -220px;
    left: -180px;
    background: radial-gradient(
        circle at center,
        rgba(230, 244, 237, 0.95) 0%,
        rgba(230, 244, 237, 0.72) 38%,
        rgba(230, 244, 237, 0) 72%
    );
    animation: bgMove1 34s linear infinite alternate;
}

.site-bg-item-2 {
    width: 920px;
    height: 920px;
    top: 18%;
    right: -260px;
    background: radial-gradient(
        circle at center,
        rgba(63, 175, 123, 0.18) 0%,
        rgba(63, 175, 123, 0.12) 34%,
        rgba(63, 175, 123, 0) 72%
    );
    animation: bgMove2 42s linear infinite alternate;
}

.site-bg-item-3 {
    width: 680px;
    height: 680px;
    bottom: -180px;
    left: 28%;
    background: radial-gradient(
        circle at center,
        rgba(230, 180, 34, 0.16) 0%,
        rgba(230, 180, 34, 0.1) 36%,
        rgba(230, 180, 34, 0) 74%
    );
    animation: bgMove3 48s linear infinite alternate;
}

@keyframes bgMove1 {
    0% {
        transform: translate3d(0, 0, 0) rotate(-12deg);
    }
    100% {
        transform: translate3d(120px, -70px, 0) rotate(168deg);
    }
}

@keyframes bgMove2 {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    100% {
        transform: translate3d(-140px, 110px, 0) rotate(180deg);
    }
}

@keyframes bgMove3 {
    0% {
        transform: translate3d(0, 0, 0) rotate(10deg);
    }
    100% {
        transform: translate3d(80px, 90px, 0) rotate(190deg);
    }
}

.site-header,
.site-footer,
.message-block.message-block--top {
    position: relative;
    z-index: 100;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    background: var(--header-bg);
    backdrop-filter: blur(16px);
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.site-header__inner,
.topics-bar__inner,
.container {
    width: min(calc(100% - 40px), 1280px);
    margin: 0 auto;
}

.site-header__inner {
    height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.site-logo__mark {
    width: 28px;
    height: 28px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.site-logo__mark::before,
.site-logo__mark::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 2px;
    height: 22px;
    background: currentColor;
    transform-origin: center;
}

.site-logo__mark::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-logo__mark::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-logo__text {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.site-nav {
    justify-self: center;
    height: 100%;
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.site-nav__item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.site-nav__link,
.site-nav__trigger {
    height: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
}

.site-nav__link::after,
.site-nav__trigger::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 22px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.site-nav__item:hover > .site-nav__link::after,
.site-nav__item:hover > .site-nav__trigger::after,
.site-nav__item.is-open > .site-nav__trigger::after,
.site-nav__link:focus-visible::after,
.site-nav__trigger:focus-visible::after {
    transform: scaleX(1);
}

.site-nav__caret {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition);
}

.site-nav__item.is-open .site-nav__caret {
    transform: rotate(225deg) translateY(-1px);
}

.mega-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--panel-bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(26, 26, 26, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
        opacity var(--transition),
        transform var(--transition),
        visibility var(--transition);
}

.site-nav__item.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu__inner {
    width: min(calc(100% - 40px), 1280px);
    margin: 0 auto;
    padding: 28px 0 34px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.mega-menu__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-card {
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--border);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(247, 249, 248, 0.96)
    );
}

.mega-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(230, 244, 237, 0.96),
        rgba(63, 175, 123, 0.18)
    );
    margin-bottom: 16px;
}

.mega-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.mega-card__title {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
}

.mega-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.mega-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--subtext);
    line-height: 1.6;
    transition:
        color var(--transition),
        opacity var(--transition),
        transform var(--transition);
}

.mega-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-light);
    flex: 0 0 auto;
}

.mega-links a:hover,
.mega-links a:focus-visible {
    color: var(--brand);
    opacity: 1;
    transform: translateX(4px);
}

.menu-toggle {
    width: 52px;
    height: 52px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.mobile-drawer {
    position: fixed;
    inset: var(--header-height) 0 0 auto;
    width: min(100%, 420px);
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 1001;
    overflow: auto;
}

.mobile-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer__inner {
    padding: 18px 20px 36px;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--line);
}

.mobile-nav__row,
.mobile-nav__link {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mobile-nav__icon {
    width: 10px;
    height: 10px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--transition);
    flex: 0 0 auto;
}

.mobile-nav__row[aria-expanded="true"] .mobile-nav__icon {
    transform: rotate(225deg);
}

.mobile-subnav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-subnav__inner {
    padding: 0 0 16px;
    display: grid;
    gap: 10px;
}

.mobile-subnav a {
    display: block;
    padding-left: 4px;
    color: var(--subtext);
}

.mobile-subnav a:hover,
.mobile-subnav a:focus-visible {
    color: var(--brand);
}

.header-overlay {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(26, 26, 26, 0.16);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity var(--transition),
        visibility var(--transition);
    z-index: 999;
}

.header-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.topics-bar {
    position: relative;
    z-index: 2;
    padding: 18px 0 80px;
}

.topics-bar__inner {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.05);
}

.topics-bar__label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
}

.topics-bar__divider {
    width: 1px;
    height: 30px;
    background: var(--line);
}

.topics-ticker {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.topics-ticker__viewport {
    overflow: hidden;
    height: 28px;
    touch-action: pan-y;
    cursor: grab;
}

.topics-ticker__viewport.is-dragging {
    cursor: grabbing;
}

.topics-ticker__track {
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.topics-item {
    height: 28px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.topics-item__date {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    white-space: nowrap;
}

.topics-item__text {
    font-size: 15px;
    color: var(--subtext);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topics-item:hover .topics-item__text,
.topics-item:focus-visible .topics-item__text {
    color: var(--text);
}

.topics-ticker__controls {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topics-ticker__button {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.84);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.topics-ticker__button:hover,
.topics-ticker__button:focus-visible {
    background: var(--brand-pale);
    border-color: var(--border-strong);
    transform: translateY(-1px);
}

.fv-placeholder {
    position: relative;
    z-index: 1;
    min-height: clamp(360px, 58vh, 640px);
    padding: 96px 24px 72px;
    overflow: hidden;
    isolation: isolate;
}

.fv-placeholder__inner {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: clamp(280px, 44vh, 520px);
}

.fv-placeholder__eyebrow {
    margin: 0 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--brand);
}

.fv-placeholder__title {
    margin: 0;
    max-width: 720px;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: var(--text);
}

.fv-placeholder__text {
    margin: 20px 0 0;
    max-width: 560px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--subtext);
}

.fv-placeholder__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.fv-placeholder__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(72px);
    opacity: 0.9;
    will-change: transform;
}

.fv-placeholder__orb--1 {
    width: 560px;
    height: 560px;
    top: -120px;
    left: -80px;
    background: radial-gradient(
        circle at center,
        rgba(63, 175, 123, 0.34) 0%,
        rgba(63, 175, 123, 0.22) 34%,
        rgba(63, 175, 123, 0) 72%
    );
    animation: fvFloat1 14s ease-in-out infinite alternate;
}

.fv-placeholder__orb--2 {
    width: 760px;
    height: 760px;
    right: -180px;
    top: 8%;
    background: radial-gradient(
        circle at center,
        rgba(230, 180, 34, 0.26) 0%,
        rgba(230, 180, 34, 0.16) 34%,
        rgba(230, 180, 34, 0) 72%
    );
    animation: fvFloat2 18s ease-in-out infinite alternate;
}

.fv-placeholder__orb--3 {
    width: 620px;
    height: 620px;
    left: 26%;
    bottom: -180px;
    background: radial-gradient(
        circle at center,
        rgba(230, 244, 237, 0.98) 0%,
        rgba(230, 244, 237, 0.72) 40%,
        rgba(230, 244, 237, 0) 74%
    );
    animation: fvFloat3 16s ease-in-out infinite alternate;
}

.fv-placeholder__grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 123, 67, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 123, 67, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.12)
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.12)
    );
}

.fv-placeholder::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.38) 0%,
        rgba(255, 255, 255, 0.12) 26%,
        rgba(255, 255, 255, 0.34) 100%
    );
    pointer-events: none;
}

@keyframes fvFloat1 {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate3d(80px, 48px, 0) scale(1.08) rotate(18deg);
    }
}

@keyframes fvFloat2 {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate3d(-96px, 72px, 0) scale(1.1) rotate(-16deg);
    }
}

@keyframes fvFloat3 {
    0% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate3d(56px, -60px, 0) scale(1.06) rotate(14deg);
    }
}

@media (max-width: 767px) {
    .fv-placeholder {
        min-height: 420px;
        padding: 80px 20px 56px;
    }

    .fv-placeholder__inner {
        width: calc(100% - 40px);
        min-height: 280px;
    }

    .fv-placeholder__title {
        font-size: clamp(32px, 9vw, 52px);
        line-height: 1.08;
    }

    .fv-placeholder__text {
        font-size: 14px;
        line-height: 1.75;
    }

    .fv-placeholder__orb--1 {
        width: 420px;
        height: 420px;
        top: -80px;
        left: -120px;
    }

    .fv-placeholder__orb--2 {
        width: 520px;
        height: 520px;
        right: -180px;
        top: 12%;
    }

    .fv-placeholder__orb--3 {
        width: 420px;
        height: 420px;
        left: 12%;
        bottom: -120px;
    }

    .fv-placeholder__grid {
        background-size: 32px 32px;
    }
}

.container {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    place-items: center;
    padding: 60px 0 40px;
}

.card {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--card);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--badge-bg);
    border: 1px solid var(--border);
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

h1 span {
    display: block;
    background: linear-gradient(
        90deg,
        var(--brand-dark),
        var(--brand),
        var(--brand-light)
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--subtext);
}

.status {
    margin-bottom: 28px;
}

.status-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--brand);
}

.progress {
    width: 100%;
    height: 12px;
    background: rgba(230, 244, 237, 0.8);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.progress-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    box-shadow: 0 0 20px rgba(0, 123, 67, 0.18);
    transition: width 1.2s ease;
}

.status-text {
    margin-top: 10px;
    font-size: 14px;
    color: var(--subtext);
}

.info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.info-item {
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
}

.info-title {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.info-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

@keyframes float1 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 30px);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -20px);
    }
}

@media (max-width: 1100px) {
    .site-nav {
        display: none;
    }

    .topics-bar__inner {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 14px;
    }

    .topics-bar__divider {
        display: none;
    }
}

@media (min-width: 1101px) {
    .menu-toggle,
    .mobile-drawer {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-header__inner,
    .topics-bar__inner,
    .container {
        width: min(calc(100% - 24px), 1280px);
    }

    .site-header__inner {
        gap: 12px;
    }

    .site-logo__text {
        font-size: 12px;
        letter-spacing: 0.18em;
    }

    .topics-item {
        grid-template-columns: 1fr;
        gap: 4px;
        height: 44px;
        align-content: center;
    }

    .topics-ticker__viewport {
        height: 44px;
    }

    .topics-item__date {
        font-size: 12px;
    }

    .topics-item__text {
        font-size: 13px;
    }

    .topics-ticker {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .topics-ticker__controls {
        justify-content: flex-end;
    }

    .card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .lead {
        font-size: 15px;
        line-height: 1.8;
    }

    .info {
        grid-template-columns: 1fr;
    }
}

/* =========================
  FOOTER CSS START
  style.css の末尾に追加
========================= */

.site-footer {
    background: #f3f3f1;
    color: #222;
    border-top: 1px solid #e3e3df;
}

.site-footer__inner {
    width: min(100% - 48px, 1120px);
    margin: 0 auto;
    padding: 96px 0 56px;
}

.site-footer__brand {
    margin-bottom: 56px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: inherit;
    text-decoration: none;
}

.site-footer__logo-mark {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.site-footer__logo-mark::before,
.site-footer__logo-mark::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #2a2a2a;
    transform: translate(-50%, -50%);
}

.site-footer__logo-mark::before {
    width: 2px;
    height: 42px;
    box-shadow:
        0 0 0 0 #2a2a2a,
        0 0 0 0 #2a2a2a;
    transform: translate(-50%, -50%) rotate(22deg);
}

.site-footer__logo-mark::after {
    width: 42px;
    height: 2px;
    transform: translate(-50%, -50%) rotate(22deg);
    box-shadow:
        0 0 0 0 #2a2a2a,
        0 0 0 0 #2a2a2a;
}

/* 放射線追加 */
.site-footer__logo-mark {
    background:
        linear-gradient(
            22deg,
            transparent 47%,
            #2a2a2a 47%,
            #2a2a2a 53%,
            transparent 53%
        ),
        linear-gradient(
            67deg,
            transparent 47%,
            #2a2a2a 47%,
            #2a2a2a 53%,
            transparent 53%
        ),
        linear-gradient(
            112deg,
            transparent 47%,
            #2a2a2a 47%,
            #2a2a2a 53%,
            transparent 53%
        ),
        linear-gradient(
            157deg,
            transparent 47%,
            #2a2a2a 47%,
            #2a2a2a 53%,
            transparent 53%
        );
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.site-footer__logo-text {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__lead {
    margin-top: 34px;
    max-width: 760px;
}

.site-footer__lead p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.95;
    letter-spacing: 0.02em;
}

.site-footer__address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    margin-bottom: 44px;
}

.site-footer__address h2 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__address p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.9;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 36px;
}

.site-footer__social a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.site-footer__social a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

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

.site-footer__bottom {
    padding-top: 8px;
}

.site-footer__bottom small {
    font-size: 14px;
    line-height: 1.6;
    color: #222;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 767px) {
    .site-footer__inner {
        width: min(100% - 32px, 1120px);
        padding: 72px 0 40px;
    }

    .site-footer__logo {
        gap: 14px;
        align-items: center;
    }

    .site-footer__logo-mark {
        width: 34px;
        height: 34px;
    }

    .site-footer__logo-text {
        font-size: 18px;
        letter-spacing: 0.12em;
    }

    .site-footer__lead {
        margin-top: 26px;
    }

    .site-footer__lead p {
        font-size: 14px;
        line-height: 1.9;
    }

    .site-footer__address-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .site-footer__address h2 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .site-footer__address p {
        font-size: 14px;
    }

    .site-footer__social {
        gap: 16px 20px;
        margin-bottom: 28px;
    }

    .site-footer__social a {
        font-size: 14px;
    }

    .site-footer__bottom small {
        font-size: 13px;
    }
}

/* =========================
  FOOTER CSS END
========================= */
/* =========================
MESSAGE BLOCK
========================= */

.message-block {
    background: #f2f2f2;
    padding: 120px 20px;
    text-align: center;
}

.message-inner {
    max-width: 760px;
    margin: 0 auto;
}

.message-script {
    font-family: "Brush Script MT", cursive;
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.message-title {
    font-size: 32px;
    line-height: 1.6;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.message-text {
    font-size: 14px;
    line-height: 2;
    color: #444;
    margin-bottom: 40px;
}

.message-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #555;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.message-btn:hover {
    background: #333;
}

.message-btn .arrow {
    font-size: 18px;
}

/* =========================
SP
========================= */

@media (max-width: 768px) {
    .message-block {
        padding: 80px 20px;
    }

    .message-script {
        font-size: 24px;
    }

    .message-title {
        font-size: 22px;
    }
}
