html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
}
html {
    scroll-behavior: smooth;
}
.reveal-on-scroll {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    transition:
        opacity 0.76s ease var(--reveal-delay, 0s),
        transform 0.76s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s);
    will-change: transform, opacity;
}
.reveal-on-scroll.reveal-from-left {
    transform: translate3d(-34px, 0, 0) scale(0.985);
}
.reveal-on-scroll.reveal-from-right {
    transform: translate3d(34px, 0, 0) scale(0.985);
}
.reveal-on-scroll.reveal-from-scale {
    transform: translate3d(0, 20px, 0) scale(0.94);
}
.reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .reveal-on-scroll.reveal-visible {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}
/* 背景のあしらい */
.bg-pattern {
    position: relative;
}
.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(66, 185, 211, 0.05) 0%, transparent 30%),
                      radial-gradient(circle at 90% 80%, rgba(66, 185, 211, 0.05) 0%, transparent 30%);
    z-index: -1;
    pointer-events: none;
}
.about-story {
    min-height: 680px;
    background:
        linear-gradient(90deg, rgba(73, 131, 187, 0.92) 0%, rgba(89, 146, 204, 0.88) 45%, rgba(102, 160, 216, 0.92) 100%),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 30%);
    isolation: isolate;
}
.about-story::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 73, 125, 0.1), rgba(255, 255, 255, 0.08));
    z-index: 1;
    pointer-events: none;
}
.about-story__photo {
    position: relative;
    width: min(34vw, 420px);
    aspect-ratio: 1;
    z-index: 2;
    overflow: hidden;
    border-radius: 9999px;
    box-shadow: 0 30px 70px rgba(23, 73, 125, 0.28);
}
.about-story__photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 12px solid rgba(255, 255, 255, 0.18);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.about-story__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: saturate(0.92) contrast(0.98);
}
.about-story__photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}
.about-story__photo-wrap--mobile {
    display: none;
}
.about-story__photo-wrap::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 4%;
    width: min(32vw, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 9999px;
    transform: translate(-10%, -8%);
    z-index: 1;
}
.about-story__copy {
    max-width: 660px;
}
.about-story__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: 92px;
    margin-bottom: 1.75rem;
    overflow: visible;
}
.about-story__brand::before {
    content: 'About US';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.1);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
}
.about-story__brand::after {
    content: none;
}
.about-story__brand-label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.about-story__heading {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.55;
}
.about-story__line {
    position: absolute;
    left: -8%;
    bottom: 12%;
    z-index: 2;
    width: 116%;
    height: 36%;
    opacity: 0.38;
    pointer-events: none;
}
@media (max-width: 1024px) {
    .about-story {
        min-height: auto;
    }
    .about-story__photo {
        width: min(70vw, 360px);
    }
}
@media (max-width: 640px) {
    .about-story .grid > .about-story__photo-wrap:not(.about-story__photo-wrap--mobile) {
        display: none;
    }
    .about-story__photo-wrap--mobile {
        display: flex;
        margin-top: 1.6rem;
        margin-bottom: 2rem;
    }
    .about-story__photo {
        width: min(62vw, 240px);
    }
    .about-story__copy .space-y-6 {
        line-height: 1.9;
    }
    .about-story__copy .space-y-6 > :not([hidden]) ~ :not([hidden]) {
        margin-top: 0.85rem;
    }
    .about-story__line {
        top: clamp(14.5rem, 56vw, 18.5rem);
        bottom: auto;
        left: -28%;
        width: 150%;
        height: 10rem;
    }
    .about-story__brand {
        justify-content: flex-start;
        min-height: 78px;
    }
}
.strengths-section {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7.5rem) 0 clamp(5.5rem, 8vw, 7rem);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82)),
        linear-gradient(135deg, #f8fbfd 0%, #edf6fb 52%, #fdfefe 100%);
    isolation: isolate;
}
.strengths-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.9)),
        url('images/strength-consulting.png') center / cover no-repeat;
    opacity: 0.16;
    filter: saturate(0.75) blur(0.2px);
    transform: scale(1.03);
    z-index: -2;
}
.strengths-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 32%, rgba(66, 185, 211, 0.12), transparent 18%),
        radial-gradient(circle at 88% 18%, rgba(0, 107, 143, 0.08), transparent 19%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
    z-index: -1;
}
.strengths-flow {
    position: absolute;
    inset: 8% auto auto 50%;
    width: min(42vw, 520px);
    height: min(42vw, 520px);
    transform: translateX(-50%);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
.strengths-flow .ribbon-path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset 3s ease-in-out;
}
.strengths-flow.ribbon-drawn .ribbon-path {
    stroke-dashoffset: 0;
}
.strengths-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto clamp(2.8rem, 5vw, 4.5rem);
    text-align: center;
}
.strengths-heading__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.6rem, 8vw, 7rem);
    margin-bottom: 0.25rem;
    overflow: visible;
}
.strengths-heading__brand::before {
    content: 'STRENGTHS';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 107, 143, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    white-space: nowrap;
}
.strengths-heading__label {
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.55;
}
.strengths-heading__label span {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    margin: 0 0.22em;
    color: #42B9D3;
    font-size: clamp(3.25rem, 7vw, 5.6rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 0.9;
}
.strengths-heading__text {
    max-width: 680px;
    margin: 1rem auto 0;
    color: #4d5962;
    font-size: clamp(0.88rem, 1.12vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.strengths-cta {
    position: absolute;
    top: -1.4rem;
    right: clamp(-5.5rem, -6vw, -3rem);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8.7rem;
    aspect-ratio: 1;
    border: 1px dashed rgba(0, 107, 143, 0.42);
    border-radius: 9999px;
    color: #006B8F;
    background: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.7;
}
.strengths-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 1.8rem);
    max-width: 1020px;
    margin: 0 auto;
}
.strengths-card {
    position: relative;
    min-height: 314px;
    padding: 2.25rem 1.45rem 2.05rem;
    border: 1px solid rgba(0, 107, 143, 0.24);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 42px rgba(0, 107, 143, 0.06);
    text-align: center;
    opacity: 0;
    transform: translateY(34px) scale(0.97);
    transition:
        opacity 0.72s ease var(--strength-delay, 0s),
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--strength-delay, 0s),
        border-color 0.35s ease,
        box-shadow 0.35s ease;
    will-change: transform, opacity;
}
.strengths-card::before {
    content: none;
}
.strengths-card:hover {
    border-color: rgba(66, 185, 211, 0.55);
    box-shadow: 0 26px 60px rgba(0, 107, 143, 0.13);
    transform: translateY(-8px) scale(1.015);
    transition-delay: 0s;
}
.strengths-section.strengths-visible .strengths-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.strengths-card:nth-child(2) { --strength-delay: 0.08s; }
.strengths-card:nth-child(3) { --strength-delay: 0.16s; }
.strengths-card:nth-child(4) { --strength-delay: 0.24s; }
.strengths-card:nth-child(5) { --strength-delay: 0.32s; }
.strengths-card:nth-child(6) { --strength-delay: 0.4s; }
.strengths-card__point {
    position: absolute;
    top: 2.15rem;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: #42B9D3;
    background: transparent;
    font-family: 'Yusei Magic', sans-serif;
    font-size: clamp(0.92rem, 1.4vw, 1.18rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 8px 18px rgba(66, 185, 211, 0.16);
    transform: translateX(-5.4rem) rotate(-11deg);
    transform-origin: right bottom;
    pointer-events: none;
}
.strengths-card__point::before,
.strengths-card__point::after {
    content: none;
}
.strengths-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 6.4rem;
    background: linear-gradient(180deg, #006B8F 0%, #42B9D3 100%);
    color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(2.85rem, 4.9vw, 4.25rem);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 12px 26px rgba(0, 107, 143, 0.1);
}
.strengths-number::after {
    content: none;
}
.strengths-icon {
    position: relative;
    width: 5.9rem;
    height: 5.9rem;
    margin: 1.15rem auto 1.05rem;
    overflow: hidden;
    border-radius: 9999px;
    box-shadow: 0 14px 34px rgba(0, 107, 143, 0.16);
}
.strengths-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 4px solid rgba(255, 255, 255, 0.42);
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 107, 143, 0.12);
}
.strengths-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.98);
    transition: transform 0.45s ease;
}
.strengths-card:hover .strengths-icon img {
    transform: scale(1.08);
}
.strengths-kicker {
    color: #667780;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.7;
}
.strengths-title {
    margin-top: 0.28rem;
    color: #006B8F;
    font-size: clamp(1.1rem, 1.45vw, 1.38rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.7;
}
.strengths-description {
    margin-top: 0.9rem;
    color: #55636b;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
@media (max-width: 1024px) {
    .strengths-cta {
        position: static;
        width: auto;
        aspect-ratio: auto;
        margin: 1.2rem auto 0;
        padding: 0.7rem 1.25rem;
        border-radius: 9999px;
    }
    .strengths-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 660px;
    }
}
@media (max-width: 640px) {
    .strengths-section {
        padding: 4.5rem 0 5rem;
    }
    .strengths-flow {
        width: 76vw;
        height: 76vw;
        opacity: 0.08;
    }
    .strengths-heading {
        margin-bottom: 2.75rem;
    }
    .strengths-heading__brand {
        min-height: 4.3rem;
    }
    .strengths-heading__label {
        letter-spacing: 0.14em;
    }
    .strengths-heading__label span {
        margin: 0 0.16em;
    }
    .strengths-grid {
        grid-template-columns: 1fr;
        max-width: 330px;
        gap: 1.45rem;
    }
    .strengths-card {
        min-height: auto;
        padding: 2.15rem 1.35rem 1.9rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .strengths-card,
    .strengths-section.strengths-visible .strengths-card {
        opacity: 1;
        transform: none;
        animation: none;
    }
    .strengths-card:hover,
    .strengths-card:hover .strengths-icon img {
        transform: none;
    }
}
/* ヒーローセクションのグリッドアニメーション */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating {
    animation: float 6s ease-in-out infinite;
}
@keyframes heroImageBase {
    0%, 42% { opacity: 1; }
    50%, 92% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes heroImageAlt {
    0%, 42% { opacity: 0; }
    50%, 92% { opacity: 1; }
    100% { opacity: 0; }
}
.hero-bg-cell {
    position: relative;
    overflow: hidden;
}
.hero-bg-cell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-bg-cell img:first-child {
    animation: heroImageBase 18s ease-in-out infinite;
}
.hero-bg-cell img:last-child {
    opacity: 0;
    animation: heroImageAlt 18s ease-in-out infinite;
}
.hero-bg-cell:nth-child(2) img { animation-delay: -3s; }
.hero-bg-cell:nth-child(3) img { animation-delay: -6s; }
.hero-bg-cell:nth-child(4) img { animation-delay: -9s; }
.hero-bg-cell:nth-child(5) img { animation-delay: -12s; }
.hero-bg-cell:nth-child(6) img { animation-delay: -15s; }
@media (prefers-reduced-motion: reduce) {
    .hero-bg-cell img {
        animation: none !important;
    }
    .hero-bg-cell img:last-child {
        display: none;
    }
}
.hero-focus-field {
    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.96) 48%,
            rgba(255, 255, 255, 0.78) 60%,
            rgba(255, 255, 255, 0.18) 78%,
            rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 640px) {
    .hero-bg-grid {
        display: none;
    }
    .hero-focus-field {
        display: none;
    }
}
/* スマホヒーロー画像: 位置固定で画像のみ切り替え */
.hero-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}
.hero-mobile-cell {
    position: relative;
    overflow: hidden;
    height: 5.8rem;
    background: rgba(255, 255, 255, 0.68);
}
.hero-mobile-cell img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-mobile-cell img:first-child {
    animation: heroImageBase 18s ease-in-out infinite;
}
.hero-mobile-cell img:last-child {
    opacity: 0;
    animation: heroImageAlt 18s ease-in-out infinite;
}
.hero-mobile-cell:nth-child(2) img { animation-delay: -4s; }
.hero-mobile-cell:nth-child(3) img { animation-delay: -8s; }
.hero-mobile-cell:nth-child(4) img { animation-delay: -12s; }
@media (prefers-reduced-motion: reduce) {
    .hero-mobile-cell img {
        animation: none !important;
    }
    .hero-mobile-cell img:last-child {
        display: none;
    }
}
@media (max-width: 640px) {
    .hero-copy-card {
        padding-top: 2.5rem;
        padding-bottom: 1.5rem;
    }
    .hero-section {
        min-height: auto !important;
        padding-bottom: 0 !important;
    }
    .numbers-section {
        padding-top: 4rem !important;
    }
    .hero-title {
        font-size: 2.95rem;
        letter-spacing: 0.03em;
    }
    .hero-subcopy {
        gap: 0.45rem;
        line-height: 1.65;
    }
    .hero-cta-wrap {
        margin-top: 2rem;
    }
}
.hero-copy-card {
    position: relative;
    isolation: isolate;
    overflow: visible;
    text-shadow: 0 2px 16px rgba(255, 255, 255, 0.9);
}
.hero-cta {
    text-shadow: none;
}
@keyframes heroRibbonReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translate3d(-1.5rem, 0.9rem, 0) rotate(calc(var(--hero-ribbon-rotate) - 4deg)) scale(0.98);
    }
    60% {
        opacity: var(--hero-ribbon-opacity);
    }
    100% {
        opacity: var(--hero-ribbon-opacity);
        clip-path: inset(0 0 0 0);
        transform: translate3d(0, 0, 0) rotate(var(--hero-ribbon-rotate)) scale(1);
    }
}
@keyframes heroRibbonDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(var(--hero-ribbon-rotate)) scale(1);
    }
    50% {
        transform: translate3d(0.55rem, -0.35rem, 0) rotate(calc(var(--hero-ribbon-rotate) + 0.8deg)) scale(1.01);
    }
}
.hero-copy-card > * {
    position: relative;
    z-index: 1;
}
.hero-bow {
    position: absolute;
    top: 1.3rem;
    right: 1.5rem;
    z-index: 2;
    width: 5.8rem;
    height: 4.2rem;
    transform: rotate(12deg);
    pointer-events: none;
}
.hero-bow__loop,
.hero-bow__tail {
    position: absolute;
    background: linear-gradient(135deg, #BFEAF2, #42B9D3);
    box-shadow: 0 8px 16px rgba(0, 107, 143, 0.16);
}
.hero-bow__loop {
    top: 0.45rem;
    width: 2.55rem;
    height: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.75);
}
.hero-bow__loop--left {
    left: 0.15rem;
    border-radius: 72% 34% 62% 42%;
    transform: rotate(22deg) skewX(-8deg);
}
.hero-bow__loop--right {
    right: 0.15rem;
    border-radius: 34% 72% 42% 62%;
    transform: rotate(-22deg) skewX(8deg);
}
.hero-bow__knot {
    position: absolute;
    top: 1.13rem;
    left: 50%;
    z-index: 1;
    width: 1.15rem;
    height: 1.15rem;
    background: linear-gradient(135deg, #00A0E9, #006B8F);
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    box-shadow: 0 5px 12px rgba(0, 107, 143, 0.2);
    transform: translateX(-50%);
}
.hero-bow__tail {
    top: 2.25rem;
    width: 1.45rem;
    height: 1.9rem;
    clip-path: polygon(0 0, 100% 12%, 82% 100%, 50% 76%, 14% 100%);
    opacity: 0.9;
}
.hero-bow__tail--left {
    left: 1.55rem;
    transform: rotate(12deg);
}
.hero-bow__tail--right {
    right: 1.55rem;
    transform: rotate(-12deg) scaleX(-1);
}
@media (max-width: 640px) {
    .hero-bow {
        top: 0.95rem;
        right: 0.95rem;
        width: 4.5rem;
        height: 3.3rem;
        opacity: 0.85;
    }
    .hero-bow__loop {
        width: 2rem;
        height: 1.55rem;
    }
    .hero-bow__knot {
        top: 0.9rem;
        width: 0.95rem;
        height: 0.95rem;
    }
    .hero-bow__tail {
        top: 1.75rem;
        width: 1.1rem;
        height: 1.45rem;
    }
    .hero-bow__tail--left {
        left: 1.2rem;
    }
    .hero-bow__tail--right {
        right: 1.2rem;
    }
}
.hero-copy-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.75);
    display: none;
    pointer-events: none;
}
.hero-copy-card::after {
    content: '';
    position: absolute;
    top: -35%;
    right: -18%;
    z-index: 0;
    width: 58%;
    height: 82%;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(66, 185, 211, 0.12));
    transform: rotate(-18deg);
    filter: blur(2px);
    display: none;
    pointer-events: none;
}
@media (min-width: 1024px) {
    .hero-copy-card::before {
        inset: auto;
        top: -8.8rem;
        left: -10.5rem;
        display: block;
        width: 54rem;
        height: 43rem;
        border: 0;
        border-radius: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 820 650' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='r' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23006B8F' stop-opacity='0.08'/%3E%3Cstop offset='0.45' stop-color='%2342B9D3' stop-opacity='0.34'/%3E%3Cstop offset='1' stop-color='%2300A0E9' stop-opacity='0.07'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23r)' stroke-width='1.25' stroke-linecap='round'%3E%3Cpath d='M-90 188 C80 96 220 138 360 212 S610 322 910 118'/%3E%3Cpath d='M-86 197 C84 105 224 147 364 221 S614 331 914 127'/%3E%3Cpath d='M-82 206 C88 114 228 156 368 230 S618 340 918 136'/%3E%3Cpath d='M-78 215 C92 123 232 165 372 239 S622 349 922 145'/%3E%3Cpath d='M-74 224 C96 132 236 174 376 248 S626 358 926 154'/%3E%3Cpath d='M-70 233 C100 141 240 183 380 257 S630 367 930 163'/%3E%3Cpath d='M-66 242 C104 150 244 192 384 266 S634 376 934 172'/%3E%3Cpath d='M-62 251 C108 159 248 201 388 275 S638 385 938 181'/%3E%3Cpath d='M-58 260 C112 168 252 210 392 284 S642 394 942 190'/%3E%3Cpath d='M-54 269 C116 177 256 219 396 293 S646 403 946 199'/%3E%3Cpath d='M88 -70 C170 58 260 130 372 224 S560 420 648 706'/%3E%3Cpath d='M98 -74 C180 54 270 126 382 220 S570 416 658 702'/%3E%3Cpath d='M108 -78 C190 50 280 122 392 216 S580 412 668 698'/%3E%3Cpath d='M118 -82 C200 46 290 118 402 212 S590 408 678 694'/%3E%3Cpath d='M128 -86 C210 42 300 114 412 208 S600 404 688 690'/%3E%3Cpath d='M138 -90 C220 38 310 110 422 204 S610 400 698 686'/%3E%3Cpath d='M148 -94 C230 34 320 106 432 200 S620 396 708 682'/%3E%3Cpath d='M158 -98 C240 30 330 102 442 196 S630 392 718 678'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        --hero-ribbon-opacity: 0.95;
        --hero-ribbon-rotate: -2deg;
        opacity: var(--hero-ribbon-opacity);
        transform: rotate(var(--hero-ribbon-rotate));
        transform-origin: center;
        will-change: clip-path, opacity, transform;
        animation:
            heroRibbonReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both,
            heroRibbonDrift 9s ease-in-out 2.2s infinite;
    }
}
@media (max-width: 640px) {
    .hero-copy-card::before {
        inset: auto;
        top: -8.5rem;
        right: -10.5rem;
        display: block;
        width: 45rem;
        height: 43rem;
        border: 0;
        border-radius: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 680 820' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='r' x1='0' y1='0' x2='1' y2='1'%3E%3Cstop offset='0' stop-color='%23006B8F' stop-opacity='0.08'/%3E%3Cstop offset='0.48' stop-color='%2342B9D3' stop-opacity='0.36'/%3E%3Cstop offset='1' stop-color='%2300A0E9' stop-opacity='0.08'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='none' stroke='url(%23r)' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M24 -52 C108 82 218 160 344 278 S532 536 626 878'/%3E%3Cpath d='M34 -56 C118 78 228 156 354 274 S542 532 636 874'/%3E%3Cpath d='M44 -60 C128 74 238 152 364 270 S552 528 646 870'/%3E%3Cpath d='M54 -64 C138 70 248 148 374 266 S562 524 656 866'/%3E%3Cpath d='M64 -68 C148 66 258 144 384 262 S572 520 666 862'/%3E%3Cpath d='M74 -72 C158 62 268 140 394 258 S582 516 676 858'/%3E%3Cpath d='M84 -76 C168 58 278 136 404 254 S592 512 686 854'/%3E%3Cpath d='M-64 452 C72 342 208 350 354 276 S550 172 744 242'/%3E%3Cpath d='M-60 462 C76 352 212 360 358 286 S554 182 748 252'/%3E%3Cpath d='M-56 472 C80 362 216 370 362 296 S558 192 752 262'/%3E%3Cpath d='M-52 482 C84 372 220 380 366 306 S562 202 756 272'/%3E%3Cpath d='M-48 492 C88 382 224 390 370 316 S566 212 760 282'/%3E%3Cpath d='M-44 502 C92 392 228 400 374 326 S570 222 764 292'/%3E%3Cpath d='M-40 512 C96 402 232 410 378 336 S574 232 768 302'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        --hero-ribbon-opacity: 0.98;
        --hero-ribbon-rotate: -6deg;
        opacity: var(--hero-ribbon-opacity);
        transform: rotate(var(--hero-ribbon-rotate));
        transform-origin: center;
        will-change: clip-path, opacity, transform;
        animation:
            heroRibbonReveal 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both,
            heroRibbonDrift 9s ease-in-out 2.2s infinite;
    }
    .hero-copy-card::after {
        display: none;
    }
}
@media (prefers-reduced-motion: reduce) {
    .hero-copy-card::before {
        animation: none !important;
        clip-path: inset(0 0 0 0);
        will-change: auto;
    }
}
/* 曲線のSVG背景用クラス */
.bg-curve {
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,100 C150,200 350,0 500,100 C650,200 850,0 1000,100 L1000,0 L0,0 Z' fill='rgba(230, 244, 248, 0.5)'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}
.testimonial-slider {
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.testimonial-slider::-webkit-scrollbar {
    display: none;
}
.voices-section {
    position: relative;
    isolation: isolate;
    padding: clamp(5rem, 8vw, 7.25rem) 0;
    background:
        linear-gradient(90deg, rgba(73, 131, 187, 0.94) 0%, rgba(89, 146, 204, 0.9) 45%, rgba(102, 160, 216, 0.94) 100%),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 30%);
    overflow: hidden;
}
.voices-section::before {
    content: '';
    position: absolute;
    top: -7rem;
    left: 50%;
    width: min(1180px, 132vw);
    height: min(620px, 70vw);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1180 620' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.32' stroke-width='1.25' stroke-linecap='round'%3E%3Cpath d='M-70 338 C136 180 318 198 524 320 S846 522 1258 210'/%3E%3Cpath d='M-64 350 C142 192 324 210 530 332 S852 534 1264 222'/%3E%3Cpath d='M-58 362 C148 204 330 222 536 344 S858 546 1270 234'/%3E%3Cpath d='M-52 374 C154 216 336 234 542 356 S864 558 1276 246'/%3E%3Cpath d='M-46 386 C160 228 342 246 548 368 S870 570 1282 258'/%3E%3Cpath d='M-40 398 C166 240 348 258 554 380 S876 582 1288 270'/%3E%3Cpath d='M-34 410 C172 252 354 270 560 392 S882 594 1294 282'/%3E%3Cpath d='M140 -88 C238 84 360 178 520 314 S786 542 912 724'/%3E%3Cpath d='M154 -94 C252 78 374 172 534 308 S800 536 926 718'/%3E%3Cpath d='M168 -100 C266 72 388 166 548 302 S814 530 940 712'/%3E%3Cpath d='M182 -106 C280 66 402 160 562 296 S828 524 954 706'/%3E%3Cpath d='M196 -112 C294 60 416 154 576 290 S842 518 968 700'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.78;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 0;
    pointer-events: none;
}
.voices-section::after {
    content: '';
    position: absolute;
    right: -18%;
    bottom: -20%;
    width: min(760px, 72vw);
    height: min(420px, 48vw);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 760 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23FFFFFF' stroke-opacity='0.2' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M-40 218 C118 90 286 126 438 206 S642 322 812 98'/%3E%3Cpath d='M-34 230 C124 102 292 138 444 218 S648 334 818 110'/%3E%3Cpath d='M-28 242 C130 114 298 150 450 230 S654 346 824 122'/%3E%3Cpath d='M-22 254 C136 126 304 162 456 242 S660 358 830 134'/%3E%3Cpath d='M-16 266 C142 138 310 174 462 254 S666 370 836 146'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.9;
    z-index: 0;
    pointer-events: none;
}
.voices-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto clamp(2.6rem, 4.5vw, 4rem);
    text-align: center;
}
.voices-heading__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.3rem, 7vw, 6.25rem);
    margin-bottom: 0.15rem;
}
.voices-heading__brand::before {
    content: 'VOICES';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.12);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}
.voices-heading__label {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.55;
}
.voices-heading__text {
    max-width: 720px;
    margin: 1rem auto 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.88rem, 1.12vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.voices-carousel {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 4.8rem;
}
.testimonial-slider {
    --voice-gap: clamp(1.35rem, 2.8vw, 2.2rem);
    display: flex;
    gap: var(--voice-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0.4rem 0 1.2rem;
}
.voice-card {
    flex: 0 0 calc((100% - (var(--voice-gap) + var(--voice-gap))) / 3);
    min-height: 360px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 107, 143, 0.12);
    border-radius: 0.75rem;
    box-shadow: 0 18px 42px rgba(23, 73, 125, 0.16);
    padding: 2rem 1.65rem 2.15rem;
}
.voice-card__avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    background: #E6F4F8;
    color: #006B8F;
    box-shadow: 0 10px 22px rgba(0, 107, 143, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    overflow: hidden;
}
.voice-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice-card__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.4rem;
    margin-bottom: 1rem;
    padding: 0.32rem 0.75rem;
    background: #42B9D3;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.4;
}
.voice-card__title {
    color: #006B8F;
    font-size: clamp(1rem, 1.28vw, 1.18rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.65;
    text-align: center;
}
.voice-card__text {
    margin-top: 1rem;
    color: #354044;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 2.05;
}
.voice-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    color: #fff;
    transition: color 0.25s ease, transform 0.25s ease;
}
.voice-nav:hover {
    color: #E6F4F8;
    transform: translateY(-50%) scale(1.08);
}
.voice-nav--prev {
    left: 0.4rem;
}
.voice-nav--next {
    right: 0.4rem;
}
.voice-nav svg {
    width: 2.65rem;
    height: 2.65rem;
    stroke-width: 3;
}
@media (max-width: 1024px) {
    .voices-carousel {
        max-width: 720px;
        padding: 0 3.8rem;
    }
    .voice-card {
        flex-basis: calc((100% - 1.5rem) / 2);
    }
}
@media (max-width: 640px) {
    .voices-section {
        padding: 4.5rem 0 5rem;
    }
    .voices-section::before {
        top: -2rem;
        width: 170vw;
        height: 92vw;
        opacity: 0.58;
    }
    .voices-section::after {
        right: -42%;
        bottom: -12%;
        width: 120vw;
        height: 70vw;
        opacity: 0.48;
    }
    .voices-carousel {
        padding: 0 2.75rem;
    }
    .voices-heading__brand {
        min-height: 4.1rem;
    }
    .voices-heading__label {
        letter-spacing: 0.12em;
    }
    .voice-card {
        flex-basis: 100%;
        min-height: auto;
        padding: 1.8rem 1.45rem 1.95rem;
    }
    .voice-card__text {
        font-size: 0.86rem;
    }
    .voice-nav {
        width: 2.3rem;
        height: 2.3rem;
    }
    .voice-nav--prev {
        left: 0.15rem;
    }
    .voice-nav--next {
        right: 0.15rem;
    }
    .voice-nav svg {
        width: 2.2rem;
        height: 2.2rem;
    }
}
.vision-section {
    position: relative;
    isolation: isolate;
    min-height: 650px;
    padding: clamp(5.75rem, 8vw, 8rem) 0 clamp(5.5rem, 7vw, 7.25rem);
    background: linear-gradient(180deg, #fff 0%, rgba(230, 244, 248, 0.38) 100%);
    overflow: hidden;
}
.vision-content {
    position: relative;
    z-index: 5;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}
.vision-title-en {
    position: absolute;
    top: -2.4rem;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
    color: rgba(0, 107, 143, 0.06);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}
.vision-logo {
    width: clamp(7.2rem, 12vw, 10rem);
    height: auto;
    margin: 0 auto 1.9rem;
}
.vision-heading {
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.55;
}
.vision-copy {
    max-width: 42rem;
    margin: 0 auto;
    color: #243746;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2.05;
}
.vision-network-heading {
    margin-top: 1.75rem;
    color: #006B8F;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.65;
}
.vision-copy + .vision-heading {
    margin-top: 1.45rem;
}
.vision-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.25rem;
}
.vision-metric {
    position: relative;
    overflow: hidden;
    min-height: 8.7rem;
    padding: 1.35rem 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 32px rgba(0, 107, 143, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.vision-metric::after {
    content: '';
    position: absolute;
    top: -2.4rem;
    right: -2.25rem;
    width: 6rem;
    height: 6rem;
    border-radius: 999px;
    background: rgba(230, 244, 248, 0.82);
    pointer-events: none;
}
.vision-metric > * {
    position: relative;
    z-index: 1;
}
.vision-metric__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(66, 185, 211, 0.14);
    color: #42B9D3;
}
.vision-metric__label {
    color: #243746;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
}
.vision-metric__value {
    margin-top: 0.45rem;
    color: #006B8F;
    font-size: clamp(2rem, 3.4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}
.count-up {
    display: inline-block;
    min-width: max-content;
    font-variant-numeric: tabular-nums;
    transition: transform 0.12s ease, filter 0.12s ease;
}
.count-up.is-counting {
    transform: translateY(-0.04em);
    filter: blur(0.2px);
}
.vision-metric__unit {
    margin-left: 0.16rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
}
.vision-metric__split {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.7rem;
}
.vision-metric__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.9rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.66rem;
    font-weight: 800;
}
.vision-metric__badge--male {
    background: #0076BC;
}
.vision-metric__badge--female {
    background: #E45B66;
}
.vision-metric__age {
    display: block;
    margin-top: 0.38rem;
    font-size: clamp(1.65rem, 2.7vw, 2.15rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
}
.vision-metric__age--male {
    color: #0076BC;
}
.vision-metric__age--female {
    color: #E45B66;
}
.vision-metric__small {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
}
.vision-metrics-note {
    margin-top: 0.85rem;
    color: #5D6B75;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: right;
}
.vision-photo {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    background: #f4f1ed;
}
.vision-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.86) brightness(1.07);
}
.vision-photo--left {
    top: 6rem;
    left: 0;
    width: min(28vw, 18rem);
    height: min(28vw, 18rem);
}
.vision-photo--left img {
    object-position: 50% 52%;
}
.vision-photo--top-right {
    top: -1.8rem;
    right: -1.5rem;
    width: min(22vw, 13.5rem);
    height: min(22vw, 13.5rem);
}
.vision-photo--top-right img {
    object-position: 47% 44%;
}
.vision-photo--bottom-right {
    right: 7.8vw;
    bottom: 5.05rem;
    width: min(18vw, 11.8rem);
    height: min(18vw, 11.8rem);
}
.vision-photo--bottom-right img {
    object-position: center;
}
@keyframes visionRibbonReveal {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translate3d(-1.25rem, 0.6rem, 0) var(--vision-ribbon-transform);
    }
    65% {
        opacity: var(--vision-ribbon-opacity);
    }
    100% {
        opacity: var(--vision-ribbon-opacity);
        clip-path: inset(0 0 0 0);
        transform: translate3d(0, 0, 0) var(--vision-ribbon-transform);
    }
}
@keyframes visionRibbonDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) var(--vision-ribbon-transform);
    }
    50% {
        transform: translate3d(0.5rem, -0.28rem, 0) var(--vision-ribbon-transform);
    }
}
.vision-ribbon {
    position: absolute;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 980 420' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2342B9D3' stroke-width='1.35' stroke-linecap='round' opacity='0.38'%3E%3Cpath d='M-80 168 C120 48 258 118 410 194 S690 324 1060 96'/%3E%3Cpath d='M-76 181 C124 61 262 131 414 207 S694 337 1064 109'/%3E%3Cpath d='M-72 194 C128 74 266 144 418 220 S698 350 1068 122'/%3E%3Cpath d='M-68 207 C132 87 270 157 422 233 S702 363 1072 135'/%3E%3Cpath d='M-64 220 C136 100 274 170 426 246 S706 376 1076 148'/%3E%3Cpath d='M-60 233 C140 113 278 183 430 259 S710 389 1080 161'/%3E%3Cpath d='M-56 246 C144 126 282 196 434 272 S714 402 1084 174'/%3E%3Cpath d='M-52 259 C148 139 286 209 438 285 S718 415 1088 187'/%3E%3Cpath d='M-48 272 C152 152 290 222 442 298 S722 428 1092 200'/%3E%3Cpath d='M-44 285 C156 165 294 235 446 311 S726 441 1096 213'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    --vision-ribbon-opacity: 0.95;
    --vision-ribbon-transform: rotate(0deg);
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: var(--vision-ribbon-transform);
    will-change: clip-path, opacity, transform;
    pointer-events: none;
}
.vision-section.vision-visible .vision-ribbon {
    animation:
        visionRibbonReveal 1.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both,
        visionRibbonDrift 9s ease-in-out 2.25s infinite;
}
.vision-section.vision-visible .vision-ribbon--lower {
    animation-delay: 0.34s, 2.45s;
}
.vision-ribbon--main {
    top: 0.5rem;
    left: 8vw;
    width: min(88vw, 980px);
    height: min(38vw, 420px);
    --vision-ribbon-transform: rotate(1.5deg);
}
.vision-ribbon--lower {
    right: -8vw;
    bottom: 0.3rem;
    width: min(70vw, 760px);
    height: min(30vw, 320px);
    --vision-ribbon-transform: rotate(-10deg) scaleX(-1);
    --vision-ribbon-opacity: 0.48;
}
@media (max-width: 1023px) {
    .vision-section {
        min-height: auto;
        padding: 5.5rem 0;
    }
    .vision-content {
        max-width: 42rem;
    }
    .vision-photo--left {
        left: -5rem;
        opacity: 0.3;
    }
    .vision-photo--top-right {
        right: -4.5rem;
        opacity: 0.35;
    }
    .vision-photo--bottom-right,
    .vision-ribbon--lower {
        display: none;
    }
    .vision-metrics {
        grid-template-columns: 1fr;
        max-width: 24rem;
        margin-right: auto;
        margin-left: auto;
    }
    .vision-ribbon--main {
        left: -6rem;
        width: 60rem;
        height: 26rem;
        --vision-ribbon-opacity: 0.52;
    }
}
@media (max-width: 640px) {
    .vision-section {
        padding: 4.75rem 0;
    }
    .vision-title-en {
        top: -1.2rem;
        font-size: 3rem;
        letter-spacing: 0.04em;
    }
    .vision-heading {
        font-size: 1.28rem;
        letter-spacing: 0.04em;
    }
    .vision-copy {
        font-size: 0.86rem;
        letter-spacing: 0.04em;
        line-height: 2;
    }
    .vision-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
        max-width: none;
        margin-top: 1.6rem;
    }
    .vision-metric {
        min-height: auto;
        padding: 0.85rem 0.45rem 0.78rem;
        border-radius: 1rem;
        box-shadow: 0 10px 24px rgba(0, 107, 143, 0.08);
    }
    .vision-metric::after {
        top: -1.65rem;
        right: -1.55rem;
        width: 4rem;
        height: 4rem;
    }
    .vision-metric__icon {
        width: 1.75rem;
        height: 1.75rem;
        margin-bottom: 0.55rem;
    }
    .vision-metric__icon svg {
        width: 0.95rem;
        height: 0.95rem;
    }
    .vision-metric__label {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 2.4em;
        font-size: 0.62rem;
        line-height: 1.2;
    }
    .vision-metric__value {
        margin-top: 0.35rem;
        font-size: clamp(1.2rem, 5.6vw, 1.45rem);
        letter-spacing: -0.06em;
        white-space: nowrap;
    }
    .vision-metric:nth-child(2) .vision-metric__value {
        font-size: clamp(1.08rem, 5.1vw, 1.32rem);
    }
    .vision-metric__unit {
        margin-left: 0.1rem;
        font-size: 0.58rem;
        white-space: nowrap;
    }
    .vision-metric__split {
        gap: 0.24rem;
        margin-top: 0.1rem;
        transform: translateY(-0.08rem);
    }
    .vision-metric__badge {
        min-width: 1.85rem;
        padding: 0.14rem 0.34rem;
        font-size: 0.52rem;
    }
    .vision-metric__age {
        margin-top: 0.18rem;
        font-size: clamp(1.02rem, 4.7vw, 1.2rem);
        white-space: nowrap;
    }
    .vision-metric__small {
        font-size: 0.52rem;
        white-space: nowrap;
    }
    .vision-metric .mt-2 {
        display: none;
    }
    .vision-metrics-note {
        text-align: left;
        margin-top: 0.65rem;
        font-size: 0.66rem;
    }
    .vision-photo {
        display: none;
    }
    .vision-ribbon--main {
        top: 0.5rem;
        left: -12rem;
        width: 46rem;
        height: 21rem;
        --vision-ribbon-opacity: 0.38;
    }
}
@media (prefers-reduced-motion: reduce) {
    .count-up {
        transition: none;
    }
    .vision-ribbon,
    .vision-section.vision-visible .vision-ribbon {
        animation: none !important;
        opacity: var(--vision-ribbon-opacity);
        clip-path: inset(0 0 0 0);
        will-change: auto;
    }
}
.price-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7.25rem) 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84)),
        linear-gradient(135deg, #f8fbfd 0%, #edf6fb 52%, #fdfefe 100%);
}
.price-section::before {
    content: '';
    position: absolute;
    top: -6rem;
    left: 50%;
    width: min(1120px, 128vw);
    height: min(560px, 66vw);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1120 560' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2342B9D3' stroke-opacity='0.16' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M-70 318 C136 160 318 178 524 300 S846 502 1198 190'/%3E%3Cpath d='M-64 330 C142 172 324 190 530 312 S852 514 1204 202'/%3E%3Cpath d='M-58 342 C148 184 330 202 536 324 S858 526 1210 214'/%3E%3Cpath d='M-52 354 C154 196 336 214 542 336 S864 538 1216 226'/%3E%3Cpath d='M140 -88 C238 84 360 178 520 314 S786 542 912 724'/%3E%3Cpath d='M154 -94 C252 78 374 172 534 308 S800 536 926 718'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%) rotate(-2deg);
    z-index: -1;
    pointer-events: none;
}
.price-heading {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto clamp(2.6rem, 4.5vw, 4rem);
    text-align: center;
}
.price-heading__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.3rem, 7vw, 6.25rem);
    margin-bottom: 0.15rem;
}
.price-heading__brand::before {
    content: 'PRICE';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 107, 143, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}
.price-heading__label {
    position: relative;
    z-index: 1;
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.55;
}
.price-heading__text {
    max-width: 720px;
    margin: 1rem auto 0;
    color: #4d5962;
    font-size: clamp(0.88rem, 1.12vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.price-simple-card {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(1.05rem, 2.4vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 1.6rem;
    background: linear-gradient(135deg, rgba(219, 245, 250, 0.92) 0%, rgba(246, 252, 253, 0.86) 48%, rgba(196, 232, 241, 0.9) 100%);
    box-shadow:
        0 26px 68px rgba(0, 107, 143, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.price-simple-card::before {
    content: none;
}
.price-simple-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0, 107, 143, 0.05);
    pointer-events: none;
}
.price-simple-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: clamp(0.8rem, 1.5vw, 1rem);
}
.price-simple-item {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(11rem, 0.8fr) minmax(0, 1fr);
    align-items: center;
    min-height: 5.35rem;
    padding: clamp(1.18rem, 2.3vw, 1.55rem) clamp(1.35rem, 3vw, 2.25rem);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.05rem;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 56%, rgba(244, 251, 253, 0.92) 100%);
    box-shadow:
        0 12px 30px rgba(23, 73, 125, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.price-simple-item::before {
    content: none;
}
.price-simple-item dt {
    color: #075f7c;
    font-size: clamp(0.98rem, 1.55vw, 1.12rem);
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1.55;
    text-shadow: none;
}
.price-simple-item dd {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.75rem;
    color: #26333a;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.price-simple-item__total {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
}
.price-simple-item__amount {
    color: #20323c;
    font-size: clamp(1.28rem, 2.45vw, 1.68rem);
    letter-spacing: 0.045em;
    text-shadow: none;
}
.price-simple-item__tax {
    display: inline-flex;
    align-items: center;
    padding: 0.24rem 0.52rem;
    border-radius: 9999px;
    background: rgba(230, 244, 248, 0.72);
    color: #52616a;
    font-size: clamp(0.72rem, 1.05vw, 0.82rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.price-simple-item__breakdown {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
    font-size: clamp(0.72rem, 1.05vw, 0.82rem);
    letter-spacing: 0.04em;
}
.price-simple-item__breakdown span {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.56rem;
    border: 1px solid rgba(7, 95, 124, 0.14);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.76);
    color: #075f7c;
    font-weight: 900;
    white-space: nowrap;
}
.monitor-cta-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(3.6rem, 6vw, 5rem) 0;
    background:
        linear-gradient(90deg, rgba(73, 131, 187, 0.94) 0%, rgba(89, 146, 204, 0.9) 45%, rgba(102, 160, 216, 0.94) 100%),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 30%);
    color: #fff;
}
.monitor-cta-inner {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100% - 2rem));
    margin: 0 auto;
    text-align: center;
}
.monitor-cta-brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(3.4rem, 6vw, 5.2rem);
    margin-bottom: -0.55rem;
}
.monitor-cta-brand::before {
    content: 'CAMPAIGN';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.12);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.2rem, 8vw, 6.1rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}
.monitor-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.85rem;
    margin-bottom: 0;
    padding: 0.58rem 1.35rem;
    border-radius: 9999px;
    background: #F8E85C;
    color: #006B8F;
    font-size: clamp(0.88rem, 1.2vw, 1rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: 0 12px 28px rgba(2, 8, 23, 0.14);
}
.monitor-cta-heading {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(0.45rem, 1.4vw, 0.9rem);
    width: fit-content;
    margin: 0 auto;
    color: #fff;
    font-size: clamp(1.58rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.45;
}
.monitor-cta-heading__note {
    position: absolute;
    top: -1.45rem;
    left: -1rem;
    display: inline-block;
    color: #F8E85C;
    font-family: 'Yusei Magic', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    transform: rotate(-9deg);
    white-space: nowrap;
}
.monitor-cta-text {
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(0.9rem, 1.35vw, 1.05rem);
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.9;
}
.monitor-cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: clamp(1.7rem, 3vw, 2.4rem);
    padding: 1rem 1.85rem;
    border-radius: 9999px;
    background: #fff;
    color: #006B8F;
    font-size: clamp(0.92rem, 1.25vw, 1rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    box-shadow: 0 18px 42px rgba(2, 8, 23, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.monitor-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(2, 8, 23, 0.22);
}
.monitor-cta-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #E6F4F8;
    color: #006B8F;
    flex: 0 0 auto;
}
.floating-campaign-button {
    position: fixed;
    right: max(1.15rem, env(safe-area-inset-right));
    bottom: max(1.15rem, env(safe-area-inset-bottom));
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    max-width: 21rem;
    padding: 0.9rem 1rem;
    border-radius: 1.25rem;
    background: linear-gradient(90deg, #006B8F, #42B9D3);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 107, 143, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.floating-campaign-button::before {
    content: 'CAMPAIGN';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 0;
    color: rgba(255, 255, 255, 0.12);
    font-size: clamp(2.2rem, 7vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.floating-campaign-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 46px rgba(0, 107, 143, 0.34);
}
.floating-campaign-button__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.24);
    flex: 0 0 auto;
}
.floating-campaign-button__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.08rem;
    text-align: left;
}
.floating-campaign-button__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-bottom: 0.08rem;
    padding: 0.28rem 0.75rem;
    border-radius: 9999px;
    background: #F8E85C;
    color: #006B8F;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(2, 8, 23, 0.12);
}
.floating-campaign-button__title {
    font-size: clamp(0.9rem, 1.6vw, 1.02rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.35;
}
.floating-campaign-button__note {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.45;
}
.floating-campaign-button__arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.18);
    flex: 0 0 auto;
}
.faq-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5.25rem, 8vw, 7.5rem) 0 clamp(5.75rem, 8vw, 8rem);
    background:
        radial-gradient(circle at 12% 12%, rgba(66, 185, 211, 0.13), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(0, 107, 143, 0.1), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%);
}
.faq-section::before {
    content: '';
    position: absolute;
    top: 1.2rem;
    left: 50%;
    z-index: -1;
    width: min(1180px, 136vw);
    height: min(540px, 62vw);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1180 540' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2342B9D3' stroke-opacity='0.15' stroke-width='1.2' stroke-linecap='round'%3E%3Cpath d='M-80 338 C130 164 316 190 514 312 S842 518 1264 170'/%3E%3Cpath d='M-74 353 C136 179 322 205 520 327 S848 533 1270 185'/%3E%3Cpath d='M-68 368 C142 194 328 220 526 342 S854 548 1276 200'/%3E%3Cpath d='M142 -96 C248 96 378 184 538 322 S790 542 930 704'/%3E%3Cpath d='M160 -104 C266 88 396 176 556 314 S808 534 948 696'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translateX(-50%) rotate(2deg);
    pointer-events: none;
}
.faq-section::after {
    content: '';
    position: absolute;
    right: -9rem;
    bottom: -9rem;
    z-index: -1;
    width: clamp(18rem, 34vw, 31rem);
    height: clamp(18rem, 34vw, 31rem);
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(230, 244, 248, 0.9), rgba(66, 185, 211, 0.18));
    filter: blur(0.4px);
    pointer-events: none;
}
.faq-heading {
    max-width: 820px;
    margin: 0 auto clamp(2.6rem, 4.8vw, 4rem);
    text-align: center;
}
.faq-heading__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.3rem, 7vw, 6.25rem);
    margin-bottom: 0.15rem;
}
.faq-heading__brand::before {
    content: 'FAQ';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 107, 143, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(4.2rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    white-space: nowrap;
}
.faq-heading__label {
    position: relative;
    z-index: 1;
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.55;
}
.faq-heading__text {
    max-width: 720px;
    margin: 1rem auto 0;
    color: #4d5962;
    font-size: clamp(0.88rem, 1.12vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.45fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.faq-guide-card {
    position: sticky;
    top: 7rem;
    overflow: hidden;
    padding: clamp(1.9rem, 3vw, 2.45rem);
    border: 1px solid rgba(0, 107, 143, 0.12);
    border-radius: 1.55rem;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 248, 0.84)),
        #fff;
    box-shadow: 0 24px 60px rgba(0, 107, 143, 0.1);
}
.faq-guide-card::after {
    content: '';
    position: absolute;
    top: -4.5rem;
    right: -4.4rem;
    width: 10rem;
    height: 10rem;
    border-radius: 999px;
    background: rgba(66, 185, 211, 0.18);
    pointer-events: none;
}
.faq-guide-card > * {
    position: relative;
    z-index: 1;
}
.faq-guide-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #006B8F;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}
.faq-guide-card__eyebrow::before {
    content: '';
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: #42B9D3;
    box-shadow: 0 0 0 0.38rem rgba(66, 185, 211, 0.14);
}
.faq-guide-card__title {
    margin-top: 1.05rem;
    color: #243746;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.65;
}
.faq-guide-card__text {
    margin-top: 1rem;
    color: #53646c;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.faq-guide-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.45rem;
}
.faq-guide-list li {
    display: flex;
    gap: 0.65rem;
    color: #354044;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.75;
}
.faq-guide-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.08rem;
    border-radius: 999px;
    background: #E6F4F8;
    color: #006B8F;
    font-size: 0.78rem;
    font-weight: 900;
}
.faq-items {
    display: grid;
    gap: 1rem;
}
.faq-item {
    overflow: hidden;
    border: 1px solid rgba(0, 107, 143, 0.12);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 42px rgba(0, 107, 143, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover,
.faq-item[open] {
    transform: translateY(-2px);
    border-color: rgba(0, 107, 143, 0.22);
    box-shadow: 0 22px 54px rgba(0, 107, 143, 0.12);
}
.faq-item summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem clamp(1.15rem, 2.6vw, 1.75rem);
    color: #243746;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #006B8F, #42B9D3);
    color: #fff;
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(0, 107, 143, 0.18);
}
.faq-item__question {
    font-size: clamp(0.98rem, 1.25vw, 1.12rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1.7;
}
.faq-item__toggle {
    position: relative;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: #E6F4F8;
    flex: 0 0 auto;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.78rem;
    height: 2px;
    border-radius: 999px;
    background: #006B8F;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
}
.faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item[open] .faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq-item__body {
    padding: 0 clamp(1.15rem, 2.6vw, 1.75rem) 1.45rem;
}
.faq-item__answer {
    padding: 1.2rem 1.25rem;
    border-top: 1px solid rgba(0, 107, 143, 0.1);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(248, 251, 253, 0.94), rgba(255, 255, 255, 0.94));
}
.faq-item__answer p {
    color: #4d5962;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 2;
}
.faq-item__proposal {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.95rem;
    padding: 0.52rem 0.9rem;
    border-radius: 999px;
    background: rgba(230, 244, 248, 0.9);
    color: #006B8F;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.faq-item__proposal::before {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: #42B9D3;
}
.faq-bridge {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 5vw, 4rem);
}
.faq-section {
    padding: clamp(4.25rem, 7vw, 6.25rem) 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.25)),
        #f1f1f1;
}
.faq-section::before,
.faq-section::after {
    content: none;
}
.faq-section .max-w-7xl {
    max-width: 980px;
}
.faq-heading {
    position: relative;
    display: block;
    margin: 0 auto clamp(2rem, 3.8vw, 2.8rem);
    text-align: center;
}
.faq-heading__text {
    display: none;
}
.faq-heading__brand {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.3rem, 7vw, 6.25rem);
    margin-bottom: 0.15rem;
    pointer-events: none;
}
.faq-heading__brand::before {
    content: 'FAQ';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 107, 143, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(4.2rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1;
    white-space: nowrap;
}
.faq-heading__label {
    position: relative;
    z-index: 1;
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.55;
}
.faq-heading__link {
    position: absolute;
    right: 0;
    top: clamp(2.15rem, 3.5vw, 3.15rem);
    z-index: 1;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #26333a;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.faq-heading__link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    background: #42B9D3;
    color: #fff;
    box-shadow: 0 8px 18px rgba(66, 185, 211, 0.22);
}
.faq-layout {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}
.faq-items {
    gap: 0.75rem;
}
.faq-item {
    border: 0;
    border-radius: 0.42rem;
    background: #fff;
    box-shadow: none;
}
.faq-item:hover,
.faq-item[open] {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}
.faq-item summary {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 4.15rem;
    gap: 0.95rem;
    padding: 1rem 1.4rem;
}
.faq-item__mark {
    width: 1.95rem;
    height: 1.95rem;
    background: #42B9D3;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    box-shadow: none;
}
.faq-item__question {
    color: #1f2937;
    font-size: clamp(0.92rem, 1.2vw, 1rem);
    letter-spacing: 0.04em;
    line-height: 1.65;
}
.faq-item__toggle {
    width: 1.3rem;
    height: 1.3rem;
    background: transparent;
}
.faq-item__toggle::before,
.faq-item__toggle::after {
    width: 0.8rem;
    height: 2px;
    background: #42B9D3;
}
.faq-item__body {
    padding: 0 1.4rem 1.25rem 4.35rem;
}
.faq-item__answer {
    padding: 0.95rem 0 0;
    border-top: 1px solid rgba(31, 41, 55, 0.08);
    border-radius: 0;
    background: transparent;
}
.faq-item__answer p {
    color: #4b5563;
    font-size: 0.86rem;
    line-height: 1.9;
}
.faq-item__proposal {
    display: block;
    margin-top: 0.65rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #006B8F;
    font-size: 0.82rem;
    line-height: 1.75;
}
.faq-item__proposal::before {
    content: none;
}
@media (max-width: 640px) {
    .price-section {
        padding: 4.75rem 0;
    }
    .price-heading__brand {
        min-height: 4.2rem;
    }
    .price-simple-card {
        padding: 0.6rem;
        border-radius: 1rem;
    }
    .price-simple-list {
        gap: 0.65rem;
    }
    .price-simple-item {
        grid-template-columns: 1fr;
        gap: 0.55rem;
        min-height: auto;
        padding: 1.25rem 1.15rem;
        text-align: center;
    }
    .price-simple-item dd {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.35rem 0.55rem;
    }
    .monitor-cta-section {
        padding: 3.6rem 0 3.9rem;
    }
    .monitor-cta-brand {
        min-height: 3.9rem;
        margin-bottom: -0.35rem;
    }
    .monitor-cta-brand::before {
        font-size: clamp(3.2rem, 17vw, 4.9rem);
        letter-spacing: 0.06em;
    }
    .monitor-cta-heading {
        padding-top: 0;
    }
    .monitor-cta-heading__note {
        top: -1.55rem;
        left: 0.9rem;
        transform: rotate(-7deg);
    }
    .monitor-cta-button {
        width: min(100%, 21rem);
    }
    .floating-campaign-button {
        right: max(0.8rem, env(safe-area-inset-right));
        bottom: max(0.8rem, env(safe-area-inset-bottom));
        max-width: calc(100vw - 1.6rem);
        gap: 0.65rem;
        padding: 0.72rem 0.8rem;
        border-radius: 1rem;
        box-shadow: 0 12px 28px rgba(0, 107, 143, 0.26);
    }
    .floating-campaign-button__icon {
        width: 2rem;
        height: 2rem;
    }
    .floating-campaign-button__label,
    .floating-campaign-button__note {
        font-size: 0.66rem;
    }
    .floating-campaign-button__label {
        padding: 0.24rem 0.62rem;
    }
    .floating-campaign-button__title {
        font-size: 0.84rem;
    }
    .floating-campaign-button__arrow {
        width: 1.45rem;
        height: 1.45rem;
    }
}
@media (max-width: 1024px) {
    .faq-layout {
        display: block;
    }
}
@media (max-width: 640px) {
    .faq-section {
        padding: 3.8rem 0;
    }
    .faq-heading {
        margin-bottom: 1.5rem;
    }
    .faq-heading__brand {
        min-height: 4.1rem;
    }
    .faq-heading__brand::before {
        font-size: clamp(3.8rem, 18vw, 5rem);
    }
    .faq-heading__link {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        font-size: 0.74rem;
    }
    .faq-item summary {
        min-height: 4rem;
        padding: 0.95rem 1rem;
    }
    .faq-item__body {
        padding: 0 1rem 1.05rem 3.9rem;
    }
    .faq-item__question {
        font-size: 0.88rem;
    }
    .faq-item__answer p,
    .faq-item__proposal {
        font-size: 0.8rem;
    }
}
.contact-line-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5.5rem, 8vw, 7.5rem) 0;
    background: linear-gradient(135deg, #fbfdfe 0%, #f5fbfd 46%, #fff 100%);
}
.contact-line-section::before,
.contact-line-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    pointer-events: none;
}
.contact-line-section::before {
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(230, 244, 248, 0.18)),
        url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
    opacity: 0.86;
    filter: saturate(0.96);
}
.contact-line-section::after {
    left: 50%;
    bottom: 0.9rem;
    width: 120vw;
    height: clamp(8rem, 16vw, 14rem);
    background: rgba(255, 255, 255, 0.72);
    transform: translateX(-50%) rotate(-17deg);
    box-shadow: 0 -24px 80px rgba(0, 107, 143, 0.05);
}
.contact-line-inner {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}
.contact-line-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.3rem, 7vw, 6.25rem);
    margin-bottom: 0.15rem;
}
.contact-line-heading::before {
    content: 'CONTACT';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 107, 143, 0.08);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(3.6rem, 8vw, 6.4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
}
.contact-line-heading__label {
    position: relative;
    z-index: 1;
    color: #006B8F;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.55;
}
.contact-line-copy {
    margin-top: 1.3rem;
    color: #354044;
    font-size: clamp(0.92rem, 1.18vw, 1.02rem);
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 2.05;
}
.contact-line-card {
    margin-top: clamp(2.2rem, 4vw, 3rem);
    padding: clamp(2rem, 4.5vw, 3rem);
    border: 1px solid rgba(0, 107, 143, 0.12);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(0, 107, 143, 0.1);
    backdrop-filter: blur(10px);
}
.contact-line-lead {
    color: #006B8F;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.7;
}
.contact-line-actions {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.contact-line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    min-width: min(100%, 18.2rem);
    padding: 1rem 1.55rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.5;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.contact-line-button:hover {
    transform: translateY(-3px);
}
.contact-line-button--primary {
    background: linear-gradient(90deg, #006B8F, #42B9D3);
    color: #fff;
    box-shadow: 0 14px 32px rgba(0, 107, 143, 0.22);
}
.contact-line-button--primary:hover {
    box-shadow: 0 20px 42px rgba(0, 107, 143, 0.28);
}
.contact-line-button--sub {
    border: 1px solid rgba(0, 107, 143, 0.28);
    background: rgba(255, 255, 255, 0.72);
    color: #006B8F;
}
.contact-line-button--sub:hover {
    border-color: rgba(0, 107, 143, 0.48);
    box-shadow: 0 12px 26px rgba(0, 107, 143, 0.1);
}
.contact-line-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.86);
    color: #006B8F;
    flex: 0 0 auto;
}
.contact-line-button--sub .contact-line-button__icon {
    background: #E6F4F8;
}
.contact-line-note {
    margin-top: 1.5rem;
    color: #667780;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
}
.site-footer {
    overflow: hidden;
    padding: clamp(3.75rem, 6vw, 5.5rem) 0 2rem;
    color: #fff;
    background:
        radial-gradient(ellipse 130% 95% at 18% -10%, rgba(66, 185, 211, 0.18), transparent 52%),
        radial-gradient(ellipse 80% 70% at 100% 100%, rgba(0, 107, 143, 0.22), transparent 45%),
        linear-gradient(165deg, #0c4558 0%, #083d52 38%, #062c3d 70%, #051d2b 100%);
}
.site-footer__inner {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}
.site-footer__main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1.75rem, 4vw, 3rem);
}
.site-footer__brand {
    flex: 1 1 min(17rem, 100%);
    max-width: min(22rem, 100%);
}
.site-footer__brand-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.25rem;
}
.site-footer__brand-row .site-footer__social {
    margin-top: 0;
}
.site-footer__logo {
    display: block;
    width: min(190px, 58vw);
    height: auto;
}
.site-footer__tagline {
    margin-top: 1rem;
    font-size: 0.98rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}
.site-footer__text {
    max-width: 26rem;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.8;
}
.site-footer__social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0;
}
.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #0f1419;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35) inset;
}
.site-footer__social-link--youtube {
    color: #ff0000;
}
.site-footer__social-svg {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    display: block;
}
.site-footer__social-link:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.2rem;
    flex: 1 1 min(16rem, 100%);
}
.site-footer__nav a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.4;
    white-space: nowrap;
    padding: 0.4rem 0.7rem;
    border-radius: 9999px;
    transition: color 0.2s ease, background 0.2s ease;
}
.site-footer__nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: clamp(2.8rem, 5vw, 4rem);
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.site-footer__message {
    color: rgba(255, 255, 255, 0.58);
}
@media (max-width: 640px) {
    .contact-line-section {
        padding: 4.75rem 0 5.25rem;
    }
    .contact-line-inner {
        padding: 0 1.25rem;
    }
    .contact-line-heading {
        min-height: 4.2rem;
    }
    .contact-line-heading::before {
        font-size: clamp(3.1rem, 15vw, 4.2rem);
        letter-spacing: 0.06em;
    }
    .contact-line-card {
        border-radius: 1.25rem;
    }
    .contact-line-actions {
        gap: 0.95rem;
    }
    .contact-line-button {
        width: 100%;
        min-width: 0;
    }
    .site-footer {
        padding: 3.4rem 0 1.6rem;
    }
    .site-footer__main {
        flex-direction: column;
        align-items: stretch;
    }
    .site-footer__brand {
        max-width: none;
    }
    .site-footer__brand-row {
        justify-content: flex-start;
    }
    .site-footer__nav {
        justify-content: flex-start;
    }
    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
