@charset "UTF-8";

:root {
    --mkk-ink: #17221e;
    --mkk-muted: #58655f;
    --mkk-green: #1c5b45;
    --mkk-green-dark: #123e30;
    --mkk-green-pale: #eaf3ef;
    --mkk-gold: #c88b2d;
    --mkk-cream: #f7f4ed;
    --mkk-white: #ffffff;
    --mkk-line: #d8e0dc;
    --mkk-line-green: #06c755;
    --mkk-phone: #c5523a;
    --mkk-shadow: 0 18px 50px rgba(19, 49, 39, 0.12);
    --mkk-radius-lg: 28px;
    --mkk-radius-md: 18px;
    --mkk-radius-sm: 12px;
}


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

body.mkk-custom-template {
    margin: 0;
    color: var(--mkk-ink);
    background: var(--mkk-white);
}

body.mkk-custom-template #wpadminbar {
    z-index: 100000;
}

.mkk-site-header {
    position: sticky;
    top: 0;
    z-index: 9990;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(8, 62, 78, 0.12);
    box-shadow: 0 8px 24px rgba(12, 34, 38, 0.06);
    backdrop-filter: blur(12px);
}

.admin-bar .mkk-site-header {
    top: 32px;
}

.mkk-site-header__top {
    color: #fff;
    background: #073f4f;
    font-size: 12px;
    line-height: 1.4;
}

.mkk-site-header__top .mkk-container {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.mkk-site-header__top p {
    margin: 0;
}

.mkk-site-header__top a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.mkk-site-header__main {
    background: #fff;
}

.mkk-site-header__inner {
    display: grid;
    grid-template-columns: minmax(250px, 0.9fr) minmax(420px, 1.35fr) auto;
    min-height: 86px;
    align-items: center;
    gap: 28px;
}

.mkk-site-brand {
    display: inline-flex;
    flex-direction: column;
    color: var(--mkk-ink) !important;
    text-decoration: none;
}

.mkk-site-brand__area {
    margin-bottom: 3px;
    color: #b76f12;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.mkk-site-brand strong {
    font-size: 19px;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.mkk-site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mkk-site-nav a {
    position: relative;
    color: #24312c !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mkk-site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    background: #d4771e;
    content: "";
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.mkk-site-nav a:hover::after {
    transform: scaleX(1);
}

.mkk-site-header__actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mkk-site-header__phone {
    display: flex;
    flex-direction: column;
    color: #073f4f !important;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
}

.mkk-site-header__phone small {
    font-size: 9px;
    font-weight: 700;
}

.mkk-site-header__phone strong {
    font-size: 14px;
}

.mkk-site-header__line {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    color: #fff !important;
    background: var(--mkk-line-green);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.mkk-mobile-menu {
    display: none;
    position: relative;
}

.mkk-mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    border: 1px solid #cdd7d3;
    border-radius: 50%;
}

.mkk-mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mkk-mobile-menu summary span {
    display: block;
    width: 20px;
    height: 2px;
    background: #073f4f;
}

.mkk-mobile-menu__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(340px, calc(100vw - 34px));
    padding: 16px;
    background: #fff;
    border: 1px solid #d9e0dd;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(14, 43, 35, 0.18);
}

.mkk-mobile-menu__panel > a {
    display: block;
    padding: 12px 6px;
    color: var(--mkk-ink) !important;
    border-bottom: 1px solid #edf0ee;
    font-weight: 800;
    text-decoration: none;
}

.mkk-mobile-menu__actions {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mkk-site-footer {
    padding: 58px 0 132px;
    color: rgba(255, 255, 255, 0.78);
    background: #073f4f;
}

.mkk-site-footer a {
    color: #fff !important;
    text-decoration: none;
}

.mkk-site-footer__grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.mkk-site-footer__grid p {
    margin: 4px 0;
}

.mkk-site-footer__name {
    margin-bottom: 12px !important;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.mkk-site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 10px 28px;
}

.mkk-site-footer nav a {
    font-size: 13px;
    font-weight: 700;
}

.mkk-site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 38px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.mkk-front,
.mkk-front * {
    box-sizing: border-box;
}

.mkk-front {
    position: relative;
    overflow-x: clip;
    padding-bottom: 24px;
    color: var(--mkk-ink);
    background: var(--mkk-white);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.mkk-front img {
    display: block;
    width: 100%;
    height: auto;
}

.mkk-front a {
    color: inherit;
    text-decoration: none;
}

.mkk-front a:focus-visible,
.mkk-front summary:focus-visible {
    outline: 3px solid rgba(200, 139, 45, 0.55);
    outline-offset: 4px;
}

.mkk-container {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
}

.mkk-demo-notice {
    position: relative;
    z-index: 3;
    padding: 10px 0;
    color: #46350e;
    background: #fff1bd;
    border-bottom: 1px solid #e4ca72;
    font-size: 13px;
    line-height: 1.5;
}

.mkk-demo-notice .mkk-container {
    display: flex;
    gap: 12px;
    align-items: center;
}

.mkk-demo-notice strong {
    flex: 0 0 auto;
    padding: 3px 8px;
    color: #fff;
    background: #8a650e;
    border-radius: 999px;
    font-size: 11px;
}

.mkk-section {
    padding: 104px 0;
}

.mkk-eyebrow,
.mkk-section-heading__en {
    margin: 0 0 14px;
    color: var(--mkk-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mkk-section-heading {
    margin-bottom: 42px;
}

.mkk-section-heading h2,
.mkk-method__content h2,
.mkk-director__content h2,
.mkk-access__content h2,
.mkk-faq__intro h2,
.mkk-final-cta h2 {
    margin: 0;
    color: var(--mkk-ink);
    font-size: clamp(30px, 4.2vw, 48px);
    line-height: 1.36;
    letter-spacing: 0;
}

.mkk-section-heading > p:last-child,
.mkk-section-heading--split > p,
.mkk-symptoms__intro > p,
.mkk-faq__intro > p {
    max-width: 680px;
    margin: 18px 0 0;
    color: var(--mkk-muted);
}

.mkk-section-heading--center {
    text-align: center;
}

.mkk-section-heading--center > p:last-child {
    margin-inline: auto;
}

.mkk-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 48px;
    align-items: end;
}

.mkk-section-heading--split > p {
    margin-bottom: 4px;
}

/* Hero */
.mkk-hero {
    position: relative;
    padding: 70px 0 84px;
    background:
        radial-gradient(circle at 91% 12%, rgba(200, 139, 45, 0.14), transparent 31%),
        linear-gradient(135deg, #f7faf8 0%, #eef5f1 46%, #f9f5ec 100%);
}

.mkk-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(28, 91, 69, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(28, 91, 69, 0.045) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
    mask-image: linear-gradient(to bottom, #000 0%, transparent 84%);
}

.mkk-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 60px;
    align-items: center;
}

.mkk-hero h1 {
    margin: 0;
    font-size: clamp(39px, 5.4vw, 68px);
    line-height: 1.28;
    letter-spacing: -0.035em;
}

.mkk-hero h1 span {
    color: var(--mkk-green);
    white-space: nowrap;
}

.mkk-hero__lead {
    max-width: 670px;
    margin: 28px 0 0;
    color: #384740;
    font-size: 17px;
    line-height: 2;
}

.mkk-hero__cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.mkk-button {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.mkk-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(20, 45, 35, 0.16);
}

.mkk-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mkk-button span {
    display: flex;
    flex-direction: column;
}

.mkk-button small {
    font-size: 10px;
    font-weight: 600;
    opacity: 0.88;
}

.mkk-button--line {
    color: #fff !important;
    background: var(--mkk-line-green);
}

.mkk-button--phone {
    color: #fff !important;
    background: var(--mkk-phone);
}

.mkk-button--dark {
    color: #fff !important;
    background: var(--mkk-green-dark);
}

.mkk-button--light {
    color: var(--mkk-green-dark) !important;
    background: #fff;
    border-color: #bed0c8;
}

.mkk-text-link,
.mkk-outline-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
}

.mkk-text-link {
    margin-top: 20px;
    color: var(--mkk-green) !important;
    border-bottom: 1px solid currentColor;
}

.mkk-text-link--light {
    color: #fff !important;
    opacity: 0.92;
}

.mkk-outline-link {
    min-height: 50px;
    padding: 10px 20px;
    color: var(--mkk-green-dark) !important;
    border: 1px solid #afc8bd;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mkk-outline-link:hover {
    color: #fff !important;
    background: var(--mkk-green);
}

.mkk-hero__visual {
    position: relative;
    padding: 0 0 58px;
}

.mkk-hero__image-wrap {
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, 0.86);
    border-radius: 40px 12px 40px 12px;
    box-shadow: var(--mkk-shadow);
}

.mkk-hero__image-wrap img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mkk-hero__badges {
    position: absolute;
    right: auto;
    bottom: 0;
    left: 50%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(440px, calc(100% - 28px));
    margin: 0;
    padding: 0;
    overflow: hidden;
    list-style: none;
    color: #fff;
    background: var(--mkk-green-dark);
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(18, 62, 48, 0.22);
    transform: translateX(-50%);
}

.mkk-hero__badges li {
    padding: 16px 10px;
    text-align: center;
}

.mkk-hero__badges li + li {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.mkk-hero__badges strong,
.mkk-hero__badges span {
    display: block;
}

.mkk-hero__badges strong {
    font-size: 15px;
}

.mkk-hero__badges span {
    margin-top: 2px;
    font-size: 10px;
    opacity: 0.78;
}

/* Concern cards */
.mkk-concerns {
    background: #fff;
}

.mkk-concern-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mkk-concern-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--mkk-line);
    border-radius: var(--mkk-radius-lg);
    box-shadow: 0 10px 28px rgba(18, 62, 48, 0.07);
}

.mkk-concern-card__image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.mkk-concern-card__body {
    padding: 28px;
}

.mkk-concern-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.45;
}

.mkk-concern-card p {
    margin: 12px 0 0;
    color: var(--mkk-muted);
    font-size: 14px;
}

.mkk-concern-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.mkk-concern-card li {
    padding: 5px 10px;
    color: var(--mkk-green-dark);
    background: var(--mkk-green-pale);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.mkk-concern-card__body > a {
    display: flex;
    justify-content: space-between;
    color: var(--mkk-green) !important;
    font-weight: 800;
}

/* Method */
.mkk-method {
    background: var(--mkk-cream);
}

.mkk-method__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    gap: 72px;
    align-items: center;
}

.mkk-method__visual {
    position: relative;
}

.mkk-method__visual::before {
    position: absolute;
    inset: -20px 26px 26px -20px;
    background: var(--mkk-green-pale);
    border-radius: 34px;
    content: "";
}

.mkk-method__visual img {
    position: relative;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--mkk-shadow);
}

.mkk-method__content .mkk-section-heading {
    margin-bottom: 20px;
}

.mkk-method__lead {
    color: var(--mkk-muted);
}

.mkk-step-list {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.mkk-step-list li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #d9d5ca;
}

.mkk-step-list li:last-child {
    border-bottom: 1px solid #d9d5ca;
}

.mkk-step-list > li > span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: var(--mkk-green);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 900;
}

.mkk-step-list strong {
    font-size: 19px;
}

.mkk-step-list p {
    margin: 4px 0 0;
    color: var(--mkk-muted);
    font-size: 14px;
}

/* Principles */
.mkk-principles {
    color: #fff;
    background: var(--mkk-green-dark);
}

.mkk-principles .mkk-section-heading h2 {
    color: #fff;
}

.mkk-principle-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--mkk-radius-lg);
}

.mkk-principle-card {
    min-height: 280px;
    padding: 30px;
    background: var(--mkk-green-dark);
}

.mkk-principle-card__number {
    display: block;
    color: var(--mkk-gold);
    font-family: Georgia, serif;
    font-size: 34px;
    font-style: italic;
}

.mkk-principle-card h3 {
    margin: 42px 0 0;
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.mkk-principle-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

/* Service hub */
.mkk-service-hub {
    background: #fff;
}

.mkk-service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--mkk-line);
    border-left: 1px solid var(--mkk-line);
}

.mkk-service-card {
    position: relative;
    min-height: 255px;
    padding: 30px;
    border-right: 1px solid var(--mkk-line);
    border-bottom: 1px solid var(--mkk-line);
    transition: color 0.2s ease, background 0.2s ease;
}

.mkk-service-card:hover {
    color: #fff;
    background: var(--mkk-green);
}

.mkk-service-card__group {
    color: var(--mkk-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.mkk-service-card h3 {
    margin: 42px 0 0;
    font-size: 21px;
}

.mkk-service-card p {
    margin: 10px 0 0;
    color: var(--mkk-muted);
    font-size: 14px;
}

.mkk-service-card:hover p,
.mkk-service-card:hover .mkk-service-card__group {
    color: rgba(255, 255, 255, 0.78);
}

.mkk-service-card__arrow {
    position: absolute;
    right: 24px;
    bottom: 20px;
    font-size: 24px;
}

/* Symptoms */
.mkk-symptoms {
    background: var(--mkk-green-pale);
}

.mkk-symptoms__grid {
    display: grid;
    grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
    gap: 72px;
    align-items: start;
}

.mkk-symptoms__intro h2,
.mkk-faq__intro h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.4;
}

.mkk-symptoms__intro .mkk-outline-link,
.mkk-faq__intro .mkk-outline-link {
    margin-top: 28px;
}

.mkk-symptom-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #b7cfc4;
    border-left: 1px solid #b7cfc4;
}

.mkk-symptom-list a {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 22px;
    background: rgba(255, 255, 255, 0.52);
    border-right: 1px solid #b7cfc4;
    border-bottom: 1px solid #b7cfc4;
    font-weight: 800;
    transition: background 0.2s ease;
}

.mkk-symptom-list a:hover {
    background: #fff;
}

/* First visit */
.mkk-first-visit {
    background: #fff;
}

.mkk-visit-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mkk-visit-flow li {
    position: relative;
    padding: 24px 22px 28px;
    border-top: 3px solid var(--mkk-green);
    border-bottom: 1px solid var(--mkk-line);
}

.mkk-visit-flow li + li {
    border-left: 1px solid var(--mkk-line);
}

.mkk-visit-flow li::after {
    position: absolute;
    top: 36px;
    right: -8px;
    z-index: 2;
    display: grid;
    width: 16px;
    height: 16px;
    place-items: center;
    color: var(--mkk-green);
    background: #fff;
    content: "›";
    font-size: 22px;
}

.mkk-visit-flow li:last-child::after {
    display: none;
}

.mkk-visit-flow span {
    color: var(--mkk-gold);
    font-family: Georgia, serif;
    font-size: 30px;
}

.mkk-visit-flow strong {
    display: block;
    margin-top: 18px;
    font-size: 18px;
}

.mkk-visit-flow p {
    margin: 8px 0 0;
    color: var(--mkk-muted);
    font-size: 13px;
}

.mkk-first-visit__links,
.mkk-access__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

/* Director */
.mkk-director {
    background: var(--mkk-cream);
}

.mkk-director__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 72px;
    align-items: center;
}

.mkk-director__image img {
    aspect-ratio: 9 / 11;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
    box-shadow: var(--mkk-shadow);
}

.mkk-director__content > p:not(.mkk-section-heading__en) {
    color: var(--mkk-muted);
}

.mkk-qualification-list {
    margin: 30px 0;
    border-top: 1px solid #d8d1c3;
}

.mkk-qualification-list > div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid #d8d1c3;
}

.mkk-qualification-list dt {
    color: var(--mkk-muted);
    font-size: 13px;
}

.mkk-qualification-list dd {
    margin: 0;
    font-weight: 800;
}



.mkk-director__content h2 {
    max-width: 100%;
    font-size: clamp(30px, 3.35vw, 44px) !important;
    line-height: 1.45 !important;
    word-break: normal;
    overflow-wrap: anywhere;
}

/* Voice */
.mkk-voices {
    background: #fff;
}

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

.mkk-voice-card {
    position: relative;
    min-height: 240px;
    padding: 38px 28px 26px;
    background: var(--mkk-cream);
    border-radius: var(--mkk-radius-md);
}

.mkk-voice-card::before {
    position: absolute;
    top: 12px;
    left: 22px;
    color: rgba(28, 91, 69, 0.18);
    content: "“";
    font-family: Georgia, serif;
    font-size: 74px;
    line-height: 1;
}

.mkk-voice-card p {
    position: relative;
    margin: 22px 0 0;
    font-size: 17px;
    font-weight: 700;
}

.mkk-voice-card span {
    display: block;
    margin-top: 24px;
    color: var(--mkk-muted);
    font-size: 12px;
}

.mkk-center-link {
    margin-top: 36px;
    text-align: center;
}

.mkk-trustindex-widget {
    position: relative;
    min-height: 120px;
    margin-top: 10px;
}

.mkk-trustindex-widget > * {
    max-width: 100%;
}

.mkk-trustindex-missing {
    margin: 18px 0 0;
    color: #8a650e;
    font-size: 12px;
    text-align: center;
}

/* Access */
.mkk-access {
    background: var(--mkk-green-dark);
}

.mkk-access__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 68px;
    align-items: center;
}

.mkk-access__visuals {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    align-items: end;
}

.mkk-access__visuals img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 24px;
}

.mkk-access__visuals img:nth-child(2) {
    transform: translateY(32px);
}

.mkk-access__content,
.mkk-access__content h2 {
    color: #fff !important;
}

.mkk-access__content a:not(.mkk-button) {
    color: #fff !important;
}

.mkk-access .mkk-button--dark {
    color: #073f4f !important;
    background: #fff;
    border-color: #fff;
}

.mkk-access .mkk-button--light {
    color: #fff !important;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.62);
}

.mkk-info-list {
    margin: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mkk-info-list > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mkk-info-list dt {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.mkk-info-list dd {
    margin: 0;
    font-size: 14px;
}

.mkk-access__buttons {
    justify-content: flex-start;
}

/* FAQ */
.mkk-faq {
    background: var(--mkk-cream);
}

.mkk-faq__grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
    gap: 80px;
    align-items: start;
}

.mkk-faq-list {
    border-top: 1px solid #cdc6b9;
}

.mkk-faq-list details {
    border-bottom: 1px solid #cdc6b9;
}

.mkk-faq-list summary {
    position: relative;
    padding: 24px 52px 24px 0;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.mkk-faq-list summary::-webkit-details-marker {
    display: none;
}

.mkk-faq-list summary::before {
    margin-right: 14px;
    color: var(--mkk-gold);
    content: "Q";
    font-family: Georgia, serif;
    font-size: 24px;
}

.mkk-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 18px;
    height: 18px;
    color: var(--mkk-green);
    content: "+";
    font-size: 24px;
    line-height: 18px;
    transform: translateY(-50%);
}

.mkk-faq-list details[open] summary::after {
    content: "−";
}

.mkk-faq-list details > div {
    padding: 0 46px 22px;
}

.mkk-faq-list p {
    margin: 0;
    color: var(--mkk-muted);
}

/* News */
.mkk-news {
    background: #fff;
}

.mkk-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.mkk-news-card {
    overflow: hidden;
    border: 1px solid var(--mkk-line);
    border-radius: var(--mkk-radius-md);
}

.mkk-news-card__image img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.mkk-news-card__body {
    padding: 24px;
}

.mkk-news-card time {
    color: var(--mkk-gold);
    font-size: 12px;
    font-weight: 800;
}

.mkk-news-card h3 {
    margin: 10px 0 0;
    font-size: 18px;
    line-height: 1.55;
}

.mkk-news-card p {
    margin: 10px 0 0;
    color: var(--mkk-muted);
    font-size: 13px;
}

.mkk-news-card__body > span {
    display: inline-block;
    margin-top: 18px;
    color: var(--mkk-green);
    font-size: 13px;
    font-weight: 800;
}

/* Final CTA */
.mkk-final-cta {
    padding: 84px 0;
    color: #fff;
    background: linear-gradient(135deg, #173f31, #215f48);
}

.mkk-final-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 60px;
    align-items: center;
}

.mkk-final-cta h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px);
}

.mkk-final-cta p:not(.mkk-section-heading__en) {
    color: rgba(255, 255, 255, 0.76);
}

.mkk-final-cta__buttons {
    display: grid;
    gap: 11px;
}

.mkk-final-cta__buttons .mkk-text-link {
    justify-self: center;
    margin-top: 8px;
}

/* Floating CTA */
.mkk-floating-cta {
    position: fixed;
    right: auto;
    bottom: 22px;
    left: 50%;
    z-index: 9998;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(620px, calc(100% - 48px));
    padding: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(9, 57, 49, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(12, 31, 24, 0.24);
    transform: translateX(-50%);
    backdrop-filter: blur(10px);
}

.mkk-floating-cta a {
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 18px;
    overflow: visible;
    color: #fff !important;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: left;
    isolation: isolate;
    transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.mkk-floating-cta a:hover,
.mkk-floating-cta a:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.035);
    box-shadow: 0 12px 24px rgba(12, 31, 24, 0.2);
}

.mkk-floating-cta a + a {
    border: 0;
}

.mkk-floating-cta__icon {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    place-items: center;
}

.mkk-floating-cta__icon::before,
.mkk-floating-cta__icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    pointer-events: none;
    border: 1.5px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
    animation: mkk-water-ripple 3.8s cubic-bezier(0.16, 0.72, 0.28, 1) infinite;
}

.mkk-floating-cta__icon::after {
    animation-delay: 1.25s;
}

.mkk-floating-cta__phone .mkk-floating-cta__icon::before {
    animation-delay: 0.55s;
}

.mkk-floating-cta__phone .mkk-floating-cta__icon::after {
    animation-delay: 1.8s;
}

.mkk-floating-cta__icon svg {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mkk-floating-cta__text,
.mkk-floating-cta__text small {
    display: block;
}

.mkk-floating-cta small {
    margin-bottom: 2px;
    font-size: 9px;
    font-weight: 500;
    opacity: 0.88;
}

.mkk-floating-cta__line {
    background: var(--mkk-line-green);
}

.mkk-floating-cta__phone {
    background: var(--mkk-phone);
}


@keyframes mkk-water-ripple {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.45);
    }
    12% {
        opacity: 0.62;
    }
    72%,
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2.35);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mkk-floating-cta a {
        transition: none;
    }

    .mkk-floating-cta__icon::before,
    .mkk-floating-cta__icon::after {
        animation: none;
    }
}

@media (max-width: 1199px) {
    .mkk-site-header__inner {
        grid-template-columns: minmax(230px, 0.9fr) 1fr auto;
        gap: 18px;
    }

    .mkk-site-nav {
        gap: 15px;
    }

    .mkk-site-header__phone {
        display: none;
    }
}

@media (max-width: 959px) {
    .mkk-front {
        padding-bottom: 69px;
    }

    .mkk-container {
        width: min(100% - 34px, 720px);
    }

    .mkk-section {
        padding: 76px 0;
    }

    .mkk-section-heading--split,
    .mkk-hero__grid,
    .mkk-method__grid,
    .mkk-director__grid,
    .mkk-access__grid,
    .mkk-faq__grid,
    .mkk-final-cta__inner {
        grid-template-columns: 1fr;
    }

    .mkk-section-heading--split,
    .mkk-method__grid,
    .mkk-director__grid,
    .mkk-access__grid,
    .mkk-faq__grid,
    .mkk-final-cta__inner {
        gap: 38px;
    }

    .mkk-hero {
        padding: 52px 0 66px;
    }

    .mkk-hero__grid {
        gap: 44px;
    }

    .mkk-hero__visual {
        width: min(620px, 100%);
        margin-inline: auto;
    }

    .mkk-concern-grid,
    .mkk-service-grid,
    .mkk-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mkk-principle-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mkk-symptoms__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .mkk-visit-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mkk-visit-flow li + li {
        border-left: 0;
    }

    .mkk-visit-flow li:nth-child(even) {
        border-left: 1px solid var(--mkk-line);
    }

    .mkk-visit-flow li::after {
        display: none;
    }

    .mkk-voice-grid {
        grid-template-columns: 1fr;
    }

    .mkk-voice-card {
        min-height: auto;
    }

    .mkk-site-nav,
    .mkk-site-header__actions {
        display: none;
    }

    .mkk-site-header__inner {
        grid-template-columns: 1fr auto;
        min-height: 74px;
    }

    .mkk-mobile-menu {
        display: block;
    }

    .mkk-floating-cta {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 5px;
        border-radius: 17px;
    }

    .mkk-floating-cta a {
        min-height: 60px;
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 12px;
    }

    .mkk-site-footer {
        padding-bottom: 106px;
    }
}

@media (max-width: 639px) {
    .mkk-front {
        font-size: 15px;
    }

    .mkk-demo-notice .mkk-container {
        align-items: flex-start;
    }

    .mkk-section {
        padding: 62px 0;
    }

    .mkk-section-heading {
        margin-bottom: 30px;
    }

    .mkk-section-heading h2,
    .mkk-method__content h2,
    .mkk-director__content h2,
    .mkk-access__content h2,
    .mkk-faq__intro h2,
    .mkk-final-cta h2 {
        font-size: 30px;
    }

    .mkk-hero h1 {
        font-size: 39px;
    }

    .mkk-hero__lead {
        font-size: 15px;
        line-height: 1.9;
    }

    .mkk-hero__cta {
        grid-template-columns: 1fr;
    }

    .mkk-hero__visual {
        padding: 0 0 58px;
    }

    .mkk-hero__image-wrap {
        border-width: 7px;
        border-radius: 28px 10px 28px 10px;
    }

    .mkk-hero__badges {
        right: auto;
        left: 50%;
        width: 94%;
        transform: translateX(-50%);
    }

    .mkk-concern-grid,
    .mkk-service-grid,
    .mkk-news-grid,
    .mkk-principle-grid,
    .mkk-symptom-list {
        grid-template-columns: 1fr;
    }

    .mkk-concern-card__body,
    .mkk-principle-card,
    .mkk-service-card {
        padding: 24px;
    }

    .mkk-principle-card {
        min-height: 220px;
    }

    .mkk-principle-card h3,
    .mkk-service-card h3 {
        margin-top: 28px;
    }

    .mkk-service-card {
        min-height: 220px;
    }

    .mkk-method__visual::before {
        inset: -12px 18px 18px -12px;
    }

    .mkk-symptom-list a {
        min-height: 68px;
    }

    .mkk-visit-flow {
        grid-template-columns: 1fr;
    }

    .mkk-visit-flow li:nth-child(even) {
        border-left: 0;
    }

    .mkk-director__grid {
        gap: 38px;
    }

    .mkk-director__image {
        width: min(360px, 88%);
        margin-inline: auto;
    }

    .mkk-qualification-list > div,
    .mkk-info-list > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .mkk-access__visuals {
        grid-template-columns: 1fr;
    }

    .mkk-access__visuals img:nth-child(2) {
        display: none;
        transform: none;
    }

    .mkk-access__buttons,
    .mkk-first-visit__links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mkk-faq-list summary {
        padding-right: 40px;
    }

    .mkk-faq-list details > div {
        padding-inline: 0;
    }

    .mkk-final-cta {
        padding: 64px 0;
    }

    .mkk-floating-cta__icon {
        flex-basis: 22px;
        width: 22px;
        height: 22px;
    }

    .mkk-floating-cta__icon svg {
        width: 20px;
        height: 20px;
    }

    .mkk-floating-cta a {
        font-size: 11px;
    }

    .mkk-pc-only {
        display: none;
    }
}



@media (max-width: 639px) {
    html {
        scroll-padding-top: 104px;
    }

    .mkk-site-header__top .mkk-container {
        justify-content: center;
        min-height: 26px;
    }

    .mkk-site-header__top p {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mkk-site-header__top a {
        display: none;
    }

    .mkk-site-brand__area {
        display: none;
    }

    .mkk-site-brand strong {
        font-size: 16px;
    }

    .mkk-site-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .mkk-site-footer nav {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mkk-site-footer__bottom {
        flex-direction: column;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mkk-front *,
    .mkk-front *::before,
    .mkk-front *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}


@media (max-width: 782px) {
    .admin-bar .mkk-site-header {
        top: 46px;
    }
}

/* ========================================================================
 * v0.1.6 — Full-bleed hero redesign
 * ===================================================================== */
.mkk-hero--full {
    position: relative;
    display: flex;
    min-height: clamp(650px, 78vh, 830px);
    align-items: stretch;
    padding: 0;
    color: #fff;
    background-color: #102f2c;
    background-image: var(--mkk-hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    isolation: isolate;
}

.mkk-hero--full::before {
    display: none;
}

.mkk-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(6, 36, 35, 0.97) 0%,
            rgba(8, 42, 39, 0.92) 31%,
            rgba(10, 43, 39, 0.62) 52%,
            rgba(10, 43, 39, 0.12) 72%,
            rgba(10, 43, 39, 0.02) 100%),
        linear-gradient(0deg, rgba(4, 28, 27, 0.25), transparent 42%);
}

.mkk-hero__inner {
    position: relative;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: 66px;
    padding-bottom: 126px;
}

.mkk-hero--full .mkk-hero__content {
    width: min(720px, 59%);
}

.mkk-hero--full .mkk-eyebrow {
    margin-bottom: 20px;
    color: #e6b55c;
    font-size: 15px;
    letter-spacing: 0.08em;
}

.mkk-hero__headline-row {
    display: grid;
    grid-template-columns: 138px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.mkk-hero--full h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(44px, 4.7vw, 72px);
    line-height: 1.2;
    letter-spacing: -0.035em;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.32);
}

.mkk-hero--full h1 span {
    color: #e8b762;
    white-space: normal;
}

.mkk-hero__trust-seal {
    display: grid;
    width: 138px;
    aspect-ratio: 1;
    place-content: center;
    padding: 13px;
    color: #fff;
    text-align: center;
    background: rgba(4, 38, 35, 0.78);
    border: 2px solid #dba94e;
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px rgba(219, 169, 78, 0.14), 0 16px 32px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(5px);
}

.mkk-hero__trust-seal span,
.mkk-hero__trust-seal em {
    display: block;
    font-size: 10px;
    font-style: normal;
    line-height: 1.35;
}

.mkk-hero__trust-seal strong {
    display: block;
    margin: 3px 0;
    color: #fff;
    font-size: 42px;
    line-height: 1;
}

.mkk-hero__trust-seal strong small {
    margin-left: 2px;
    font-size: 11px;
}

.mkk-hero__trust-seal em {
    width: max-content;
    margin: 5px auto 0;
    padding: 3px 10px;
    color: #173b36;
    font-weight: 800;
    background: #f5e8ca;
    border-radius: 999px;
}

.mkk-hero--full .mkk-hero__lead {
    max-width: 680px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 17px;
    line-height: 1.9;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.mkk-hero--full .mkk-hero__cta {
    width: min(610px, 100%);
    margin-top: 28px;
}

.mkk-hero--full .mkk-button {
    border-color: rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.mkk-hero--full .mkk-text-link {
    color: #fff !important;
}

.mkk-hero--full .mkk-hero__badges {
    right: 0;
    bottom: 104px;
    left: auto;
    width: min(610px, 49%);
    transform: none;
    background: rgba(5, 54, 49, 0.93);
    border: 1px solid rgba(231, 181, 93, 0.68);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.mkk-hero--full .mkk-hero__badges li {
    padding: 18px 12px;
}

.mkk-hero--full .mkk-hero__badges strong {
    color: #f0c97d;
    font-size: 20px;
}

.mkk-hero--full .mkk-hero__badges span {
    font-size: 11px;
}

.mkk-hero__symptoms {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: -45px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: min(1320px, calc(100% - 48px));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(210, 196, 165, 0.82);
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(10, 42, 36, 0.19);
    transform: translateX(50%);
}

.mkk-hero__symptoms a {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 10px;
    color: #173b36 !important;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mkk-hero__symptoms a + a {
    border-left: 1px solid #e8dfcf;
}

.mkk-hero__symptoms a:hover {
    background: #f4f8f6;
    transform: translateY(-2px);
}

.mkk-hero__symptoms span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    color: #fff;
    font-size: 13px;
    background: #0c514a;
    border-radius: 50%;
}

.mkk-hero--full + .mkk-section {
    padding-top: 126px;
}

@media (max-width: 1100px) {
    .mkk-hero--full {
        min-height: 710px;
        background-position: 62% center;
    }

    .mkk-hero__headline-row {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 18px;
    }

    .mkk-hero__trust-seal {
        width: 112px;
    }

    .mkk-hero__trust-seal strong {
        font-size: 34px;
    }

    .mkk-hero--full h1 {
        font-size: clamp(39px, 5.5vw, 58px);
    }

    .mkk-hero__symptoms {
        grid-template-columns: repeat(3, 1fr);
        bottom: -91px;
    }

    .mkk-hero__symptoms a:nth-child(4) {
        border-left: 0;
        border-top: 1px solid #e8dfcf;
    }

    .mkk-hero__symptoms a:nth-child(5),
    .mkk-hero__symptoms a:nth-child(6) {
        border-top: 1px solid #e8dfcf;
    }

    .mkk-hero--full + .mkk-section {
        padding-top: 172px;
    }
}

@media (max-width: 959px) {
    .mkk-hero--full {
        min-height: 740px;
        background-position: 68% center;
    }

    .mkk-hero__shade {
        background: linear-gradient(90deg, rgba(5, 34, 32, 0.96) 0%, rgba(5, 35, 32, 0.88) 52%, rgba(5, 35, 32, 0.28) 100%);
    }

    .mkk-hero__inner {
        padding-top: 50px;
        padding-bottom: 190px;
    }

    .mkk-hero--full .mkk-hero__content {
        width: min(650px, 82%);
    }

    .mkk-hero--full .mkk-hero__badges {
        right: auto;
        bottom: 112px;
        left: 17px;
        width: min(610px, calc(100% - 34px));
    }
}

@media (max-width: 639px) {
    .mkk-hero--full {
        min-height: auto;
        background-position: 70% top;
    }

    .mkk-hero__shade {
        background:
            linear-gradient(180deg, rgba(5, 33, 31, 0.38) 0%, rgba(5, 33, 31, 0.66) 34%, rgba(5, 33, 31, 0.97) 72%, rgba(5, 33, 31, 1) 100%);
    }

    .mkk-hero__inner {
        display: block;
        min-height: 760px;
        padding-top: 330px;
        padding-bottom: 170px;
    }

    .mkk-hero--full .mkk-hero__content {
        width: 100%;
    }

    .mkk-hero--full .mkk-eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
    }

    .mkk-hero__headline-row {
        display: block;
    }

    .mkk-hero__trust-seal {
        display: none;
    }

    .mkk-hero--full h1 {
        font-size: clamp(32px, 10.5vw, 43px);
        line-height: 1.25;
    }

    .mkk-hero--full .mkk-hero__lead {
        font-size: 14px;
        line-height: 1.75;
    }

    .mkk-hero--full .mkk-hero__cta {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .mkk-hero--full .mkk-hero__badges {
        bottom: 108px;
        grid-template-columns: repeat(3, 1fr);
    }

    .mkk-hero--full .mkk-hero__badges li {
        padding: 12px 5px;
    }

    .mkk-hero--full .mkk-hero__badges strong {
        font-size: 13px;
    }

    .mkk-hero--full .mkk-hero__badges span {
        font-size: 8px;
    }

    .mkk-hero__symptoms {
        bottom: -141px;
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 24px);
    }

    .mkk-hero__symptoms a {
        min-height: 72px;
        font-size: 12px;
    }

    .mkk-hero__symptoms a:nth-child(odd) {
        border-left: 0;
    }

    .mkk-hero__symptoms a:nth-child(n+3) {
        border-top: 1px solid #e8dfcf;
    }

    .mkk-hero--full + .mkk-section {
        padding-top: 208px;
    }
}

/* v0.1.7: デスクトップの資格バーをCTAと完全に分離 */
@media (min-width: 1200px) {
    .mkk-hero--full .mkk-hero__badges {
        right: 3.5%;
        bottom: 250px;
        width: min(560px, 40%);
    }
}

/* --------------------------------------------------------------------------
 * v0.1.8 Motion system
 * 描画はCSS、スクロール発火のみIntersectionObserverで制御します。
 * -------------------------------------------------------------------------- */

/* 初回表示：ヒーロー */
.mkk-motion-ready .mkk-hero--full .mkk-eyebrow,
.mkk-motion-ready .mkk-hero--full h1,
.mkk-motion-ready .mkk-hero--full .mkk-hero__lead,
.mkk-motion-ready .mkk-hero--full .mkk-hero__cta,
.mkk-motion-ready .mkk-hero--full .mkk-text-link,
.mkk-motion-ready .mkk-hero--full .mkk-hero__trust-seal,
.mkk-motion-ready .mkk-hero--full .mkk-hero__badges,
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a {
    animation-duration: 720ms;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.mkk-motion-ready .mkk-hero--full .mkk-eyebrow { animation-name: mkk-fade-up; }
.mkk-motion-ready .mkk-hero--full h1 { animation-name: mkk-fade-up; animation-delay: 80ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__lead { animation-name: mkk-fade-up; animation-delay: 170ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__cta { animation-name: mkk-fade-up; animation-delay: 260ms; }
.mkk-motion-ready .mkk-hero--full .mkk-text-link { animation-name: mkk-fade-up; animation-delay: 330ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__trust-seal { animation-name: mkk-scale-in; animation-delay: 150ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__badges { animation-name: mkk-fade-left; animation-delay: 300ms; }

.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a { animation-name: mkk-fade-up; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(1) { animation-delay: 380ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(2) { animation-delay: 430ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(3) { animation-delay: 480ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(4) { animation-delay: 530ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(5) { animation-delay: 580ms; }
.mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a:nth-child(6) { animation-delay: 630ms; }

@keyframes mkk-fade-up {
    from { opacity: 0; transform: translate3d(0, 16px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes mkk-fade-left {
    from { opacity: 0; transform: translate3d(18px, 0, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes mkk-scale-in {
    from { opacity: 0; transform: scale(.94); }
    to { opacity: 1; transform: scale(1); }
}

/* スクロール表示 */
.mkk-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity 680ms cubic-bezier(.22, 1, .36, 1),
        transform 680ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--mkk-delay, 0ms);
    will-change: opacity, transform;
}

.mkk-reveal--left { transform: translate3d(-20px, 0, 0); }
.mkk-reveal--right { transform: translate3d(20px, 0, 0); }
.mkk-reveal--scale { transform: translate3d(0, 12px, 0) scale(.97); }
.mkk-reveal--fade { transform: none; }

.mkk-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

/* カード・リンクの操作時モーション */
.mkk-concern-card,
.mkk-principle-card,
.mkk-service-card,
.mkk-news-card,
.mkk-access__visuals img {
    transition:
        transform 300ms cubic-bezier(.22, 1, .36, 1),
        box-shadow 300ms ease,
        border-color 300ms ease;
}

.mkk-concern-card__image,
.mkk-news-card__image {
    overflow: hidden;
}

.mkk-concern-card__image img,
.mkk-news-card__image img {
    transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .mkk-concern-card:hover,
    .mkk-principle-card:hover,
    .mkk-service-card:hover,
    .mkk-news-card:hover {
        transform: translateY(-4px);
    }

    .mkk-concern-card:hover .mkk-concern-card__image img,
    .mkk-news-card:hover .mkk-news-card__image img {
        transform: scale(1.025);
    }

    .mkk-service-card__arrow,
    .mkk-concern-card__body > a span {
        display: inline-block;
        transition: transform 240ms ease;
    }

    .mkk-service-card:hover .mkk-service-card__arrow,
    .mkk-concern-card:hover .mkk-concern-card__body > a span {
        transform: translateX(4px);
    }

    .mkk-button {
        transition:
            transform 240ms ease,
            box-shadow 240ms ease,
            filter 240ms ease;
    }

    .mkk-button:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
    }
}

/* FAQ：標準detailsを保ちつつ、記号と本文を穏やかに表示 */
.mkk-faq-list summary::after {
    transition: transform 260ms ease;
}

.mkk-faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.mkk-faq-list details > div {
    transform-origin: top;
}

.mkk-faq-list details[open] > div {
    animation: mkk-faq-open 300ms ease both;
}

@keyframes mkk-faq-open {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 固定CTA：既存の波紋を邪魔せず、ページ読込直後の出現だけ整える */
.mkk-motion-ready .mkk-floating-cta {
    animation: mkk-floating-enter 560ms 900ms cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes mkk-floating-enter {
    from { opacity: 0; transform: translate3d(-50%, 16px, 0); }
    to { opacity: 1; transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }

    .mkk-reveal,
    .mkk-reveal--left,
    .mkk-reveal--right,
    .mkk-reveal--scale,
    .mkk-reveal--fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .mkk-motion-ready .mkk-hero--full .mkk-eyebrow,
    .mkk-motion-ready .mkk-hero--full h1,
    .mkk-motion-ready .mkk-hero--full .mkk-hero__lead,
    .mkk-motion-ready .mkk-hero--full .mkk-hero__cta,
    .mkk-motion-ready .mkk-hero--full .mkk-text-link,
    .mkk-motion-ready .mkk-hero--full .mkk-hero__trust-seal,
    .mkk-motion-ready .mkk-hero--full .mkk-hero__badges,
    .mkk-motion-ready .mkk-hero--full .mkk-hero__symptoms a,
    .mkk-motion-ready .mkk-floating-cta,
    .mkk-faq-list details[open] > div {
        animation: none !important;
    }

    .mkk-concern-card,
    .mkk-principle-card,
    .mkk-service-card,
    .mkk-news-card,
    .mkk-concern-card__image img,
    .mkk-news-card__image img,
    .mkk-button,
    .mkk-service-card__arrow,
    .mkk-concern-card__body > a span {
        transition: none !important;
    }
}
