@-webkit-keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        transform: scale(0) rotate(45deg);
        opacity: 0.25;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 0.4;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
/* ========================
Base
======================== */
* {
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}

body {
    --ff-main: zen-maru-gothic, sans-serif;
    --ff-sub: 'Noto Sans JP', sans-serif;
    --ff-en: din-2014, sans-serif;

    --text: #442924;
    --primary: #ee6317;
    --secondary: #259da6;
    --secondary-light: #00a9c2;
    --bg: #fde7da;
    --yellow: #fff474;
    --red: #e42d2d;
    --brown: #5a4c49;
    --white: #fff;
    --black: #000000;

    color: var(--text);
    font-family: var(--ff-main);
    font-weight: 500;

    position: relative;
    line-height: 1.656;

    background: #f2f2f2;
}

@media screen and (min-width: 769px) {
    body {
        padding-block-start: 67px;
    }
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background:
        url(../images/fixed_bg-left.jpg) left center/auto 100% no-repeat,
        url(../images/fixed_bg-right.jpg) right center/auto 100% no-repeat;
}

img {
    max-width: 100%;
}

a {
    color: var(--secondary);
}

a:hover,
a:focus {
    opacity: 0.9;
}

ul,
ol {
    list-style: none;
}

em,
address,
b {
    font-style: normal;
}

/* ========================
Common
======================== */
.btn {
    overflow: hidden;
    display: block;
    border-radius: 999em;
    aspect-ratio: 345/68;

    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
.btn--gritter {
    overflow: hidden;
    position: relative;
    display: block;
}
.btn--gritter::before {
    content: '';
    display: block;
    height: 100%;
    width: 10%;
    position: absolute;
    top: -50%;
    left: -78px;
    background-color: #fff;
    opacity: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
    animation: reflection 3s ease-in-out infinite;
}

.btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 17px;
    padding-right: 17px;
    margin-top: 16px;
}

.fadeup {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.fadeup.show {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.sect-title {
    font-size: 3.1rem;
    text-align: center;
    letter-spacing: 0.08em;
    font-weight: 500;
    padding-inline: 24px;
    position: relative;
    display: block;
    width: max-content;
    margin-inline: auto;
}

.sect-title::before,
.sect-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 16px;
    height: 100%;
    background: url(../images/deco3.png) center/contain no-repeat;
}
.sect-title::after {
    right: 0;
    left: auto;
    scale: -1 1;
}
.sect-title span {
    font-size: 2.3rem;
}

/* --- Title component: English image (reusable) --- */
.sect-title_en {
    display: block;
    margin-inline: auto;
    width: 280px;
}

/* --- About title variant --- */
.sect-title--about {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding-inline: 0;
}
.sect-title--about::before,
.sect-title--about::after {
    display: none;
}
.sect-title--about .sect-title_en {
    aspect-ratio: 225/15;
}
.sect-title--about .sect-title_ja {
    display: block;
    color: var(--secondary);
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-block-start: 6px;
}
.sect-title--about .sect-title_sub {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.07em;
}
.sect-title--about .sect-title_sub em {
    color: var(--secondary);
    font-size: 4rem;
    letter-spacing: 0.065em;
    line-height: 1;
}

/* === Slick === */
.slick-list {
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.slick-slide {
    float: none;
    height: auto;
}
.slick-slide:not(.slick-current) * {
    -webkit-filter: none;
    filter: none;
}
.slick-prev,
.slick-next {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    height: 84px;
    padding: 0;
    background-color: var(--secondary);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border: none;
    outline: none;
    color: transparent;
    cursor: pointer;
}
.slick-prev::after,
.slick-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-70%, -50%) rotate(-45deg);
    transform: translate(-70%, -50%) rotate(-45deg);
    width: 10px;
    height: 10px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    color: transparent;
}
.slick-prev {
    -webkit-transform: translateY(-50%) scale(-1, 1);
    transform: translateY(-50%) scale(-1, 1);
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-disabled {
    opacity: 0;
    cursor: auto;
}
.slick-disabled:hover,
.slick-disabled:focus {
    opacity: 0;
}
.slick-dotted.slick-slider {
    margin-bottom: 40px;
}
.slick-dots {
    display: block;
    position: absolute;
    bottom: -32px;
    width: 100%;
    text-align: center;
    margin-inline-start: -10px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}
.slick-dots li button {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    padding: 0;
    background-color: #fff;
    border: 0;
    outline: none;
    color: transparent;
    font-size: 0px;
    line-height: 0px;
    cursor: pointer;
    border: 2px solid var(--secondary);
}
.slick-dots li.slick-active button {
    background-color: var(--secondary);
}

.cont {
    padding: 30px 15px 40px;
}

.cont_inner {
    max-width: 1000px;
    margin: 0 auto;
}

/* ========================
Blocks
======================== */
.sp-contents {
    overflow-x: hidden;
    max-width: 375px;
    margin-inline: auto;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.35);
    position: relative;
    background: var(--white);
}

@media screen and (max-width: 1220px) {
    .sp-contents {
        margin-inline-start: 295px;
    }
}
@media screen and (max-width: 768px) {
    .sp-contents {
        margin-inline: auto;
    }
}
@media screen and (max-width: 410px) {
    .sp-contents {
        box-shadow: none;
        max-width: none;
        width: 100%;
    }
}

/* PC用コンテンツ */

.pc-nav {
    position: fixed;
    top: 50%;
    left: calc(158 / 1440 * 100vw);
    translate: 0 -50%;
}

@media screen and (max-width: 1220px) {
    .pc-nav {
        left: 10px;
    }
}

.pc-nav_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: max-content;
    gap: 1em;
}

.pc_nav-item {
}

.pc-nav_link {
    position: relative;
    color: #acacac;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding-inline-start: 28px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.pc-nav_link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 19px;
    height: 16px;
    mask: url(../images/chevron2.svg) center/contain no-repeat;
    background: #00c5c5;
    opacity: 0;
}

.pc-nav_link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    translate: 0 -50%;
    width: calc(100% - 28px);
    height: 2px;
    background: #00c5c5;
    opacity: 0;
}

.pc_nav-item.current .pc-nav_link {
    color: #00c5c5;
}
.pc_nav-item.current > .pc-nav_link::before,
.pc_nav-item.current > .pc-nav_link::after {
    opacity: 1;
}

.pc_nav-item:hover {
    opacity: 1;
}
.pc_nav-item:hover > .pc-nav_link {
    color: #00c5c5;
    opacity: 1;
}
.pc_nav-item:hover > .pc-nav_link::before,
.pc_nav-item:hover > .pc-nav_link::after {
    opacity: 1;
}

.pc-cta {
    max-width: 331px;
    margin-inline: auto;
    position: fixed;
    top: 50%;
    translate: 0 -50%;
    left: calc(50% + 20vw);
}

@media screen and (max-width: 1220px) {
    .pc-cta {
        left: calc(50% + 16vw);
    }
}
@media screen and (max-width: 1024px) {
    .pc-cta {
        display: none;
    }
}
.pc-cta_block {
    padding-block-start: 42px;
}
@media screen and (max-height: 620px) {
    .pc-cta_block {
        padding-block-start: 3px;
    }
}
.pc-cta_block-inner {
    padding-block-start: calc(32 / 915 * 100vh);
    background: var(--white);
    border-radius: 15px;
}

.pc-cta_block-icon {
    aspect-ratio: 1;
    width: min(calc(84 / 1440 * 100vw), 90px);
    border-radius: 50%;
    background: var(--white);
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
    display: grid;
    place-items: center;
}

@media screen and (max-height: 620px) {
    .pc-cta_block-icon {
        display: none;
    }
}

.pc-cta_block-icon img {
    aspect-ratio: 1;
    width: calc(44 / 1440 * 100vw);
    margin-inline: auto;
    display: block;
    object-fit: contain;
}

.pc-cta_block-title {
    color: #00c5c5;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-align: center;
    padding-inline: 13px;
    position: relative;
    max-width: 280px;
    display: block;
    margin-inline: auto;
    width: max-content;
}
.pc-cta_block-title::before,
.pc-cta_block-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 2px;
    height: 50px;
    background-color: #00c5c5;
    rotate: -25deg;
}
.pc-cta_block-title::after {
    left: auto;
    right: 0;
    rotate: 25deg;
}

.pc-cta_block-line {
    width: calc(208 / 1440 * 100vw);
    max-width: 208px;
    margin-inline: auto;
    margin-block-start: 6px;
}

.pc-cta_block-desc {
    color: var(--text);
    font-size: 1.3rem;
    line-height: 1.5;
    display: block;
    width: calc(274 / 1440 * 100vw);
    max-width: 274px;
    margin-inline: auto;
    margin-block-start: 8px;
}

.pc-cta_block-qr {
    aspect-ratio: 234/80;
    width: calc(234 / 1440 * 100vw);
    max-width: 234px;
    margin-inline: auto;
    margin-block: 9px;
}

.pc-cta_block-footer {
    background: #00c5c5;
    padding: calc(21 / 915 * 100vh) 22px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.pc-cta_block-logo {
    display: flex;
    justify-content: center;
    align-self: center;
}
.pc-cta_block-logo span {
    font-size: min(1.4rem, 2.2vw);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    display: flex;
    align-items: center;
}

.pc-cta_block-footer-text {
    color: var(--white);
    text-align: center;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
}

.pc-cta_btn {
    margin-block-start: calc(26 / 915 * 100vh);
    display: block;
    border: 2px solid #00c5c5;
    border-radius: 999px;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 0 rgb(0 0 0 / 25%);
    padding-block: 8px;
    position: relative;
    color: #00c5c5;
}

.pc-cta_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0% -50%;
    width: 10px;
    height: 14px;
    background-color: #00c5c5;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.pc-cta_btn-inner {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.5;
}

/* ヘッダー */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: var(--white);
}
.header_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    gap: 30px;
    padding: 10px 22px 10px 14px;
}

.header_logo::before,
.header_logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 54%;
    translate: -50% -50%;
    width: 2px;
    height: 13px;
    background-color: #000;
    rotate: 45deg;
}

.header_logo::before {
    rotate: -45deg;
}

.header_brand {
    display: grid;
    place-items: center;
    width: 171px;
}

.header_salon {
    display: block;
    width: 132px;
    margin: 0;
}

/* ========================
Hero
======================== */
.hero {
    position: relative;
    overflow: hidden;
    background: #f8e8da;
    background: url(../images/hero_bg.jpg) no-repeat center/cover;
}

.hero_inner {
    padding-block-start: 75px;
}

/* 上部リード「令和8年度 診療報酬改定直後の 今がチャンス！」 */
.hero_inner > .hero_lead {
    text-align: center;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    padding-inline: 20px;
}

/* アピール「在宅療養ニーズの拡大で」 */
.hero_appeal {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    padding-inline: 15px;
    line-height: 1.4;
    margin-block-start: 10px;
    display: flex;
    align-items: baseline;

    strong {
        font-size: 3rem;
        font-weight: 700;
        background: var(--primary);
        color: var(--white);
        padding: 0px 10px 2px;

        display: block;
        border-radius: 15px 0 15px 0;
        position: relative;
        box-shadow: 0 3px 12px rgb(0 0 0 /10%);

        &::after {
            content: '';
            position: absolute;
            width: 26px;
            height: 23px;
            background: url(../images/deco1.png) no-repeat center / contain;
            top: 0;
            right: 0;
            translate: 90% -90%;
        }
    }
}

/* メイン画像（写真+年商1億円超えの実績） */
.hero_main {
    width: 100%;
    padding-inline: 15px;
    margin-block-start: 10px;
}

.hero_main img {
    width: 100%;
    height: auto;
    display: block;
}

/* バッジ画像（継続率100%・未経験OK・安定経営） */
.hero_badge {
    width: 100%;
    padding-inline: 25px;
    margin-block-start: 208px;
}

.hero_badge img {
    width: 100%;
    height: auto;
    display: block;
}

/* 下部セクション */
.hero_bottom {
    padding: 0 18px 17px;
    position: relative;
    z-index: 5;
}

.hero_bottom .hero_lead {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--text);
    letter-spacing: 0.07em;
    font-weight: 700;
    line-height: 1.25;
    margin-block-start: 25px;

    strong {
        font-size: 1.8rem;
    }

    em {
        font-size: 2rem;
    }
}

.hero_bottom .hero_lead span {
    display: inline-block;
    position: relative;
    padding-inline: 20px;

    &::before,
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        /* translate: 0 -50%; */
        background: url(../images/deco2.png) center/contain no-repeat;
        width: 25px;
        height: 47px;
    }
    &::after {
        right: auto;
        left: 0;
        scale: -1 1;
    }
}

.hero_btn {
    width: 100%;
    max-width: 345px;
    margin-inline: auto;
    margin-block-start: 8px;
}

/* ========================
  Intro
======================== */
.intro {
    background: var(--bg);
}

/* --- Head --- */
.intro_head {
    position: relative;
    overflow: hidden;
    padding-block-end: 45px;
}
.intro_head-inner {
    padding: 21px 15px 51px;
    text-align: center;
    background: var(--yellow);
    clip-path: polygon(
        0 0,
        100% 0,
        100% calc(100% - 20px),
        calc(50% + 41px) calc(100% - 20px),
        50% 100%,
        calc(50% - 41px) calc(100% - 20px),
        0 calc(100% - 20px)
    );
}
.intro_title {
    color: var(--primary);
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: -0.06em;
    margin-inline-start: 0.25em;
}
.intro_title span {
    font-size: 6rem;
    line-height: 0.8;
    vertical-align: middle;
    translate: -0.2em -0.2em;
    display: inline-block;
}

.intro_subtitle {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-block-start: 0;
    line-height: 1.35;
}

.intro_message {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-block-start: 8px;
    text-align: center;
    font-feature-settings: "palt" 1;
}
.intro_message strong {
    background: var(--primary);
    color: var(--white);
    padding: 0 4px 1px;
    font-size: 2.2rem;
    border-radius: 2px;
    display: inline-block;
    border-radius: 10px 0 10px 0;
    line-height: 1.4;
    text-align: center;
}
.intro_message em {
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 1.4;
}

.intro_icon {
    position: absolute;
    right: -10px;
    bottom: 0;
    top: 162px;
    aspect-ratio: 58/69;
    width: 116px;
}
.intro_icon img {
    display: block;
    width: 100%;
}

/* --- Charts --- */
.intro_charts {
    background: var(--white);
    border-radius: 15px;
    margin: -20px 16px 0;
    padding: 23px 15px 15px;
    position: relative;
    z-index: 3;
}

.intro_chart-label {
    font-family: var(--ff-sub);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: #515151;
    margin-block-end: 5px;
}

.intro_chart img {
    display: block;
    width: 100%;
}

.intro_chart-row {
    display: flex;
    gap: 10px;
    margin-block-start: 15px;
}
.intro_chart--sub {
    flex: 1;
}

.intro_source {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
    margin-block-start: 10px;
    letter-spacing: 0.06em;
}

/* --- Bridge --- */
.intro_bridge {
    background: var(--primary);
    padding: 18px 20px 28px;
    text-align: center;
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    /* letter-spacing: 0.06em; */
    line-height: 1.4;
    margin: 20px 28px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 23px), 50% 100%, 0 calc(100% - 23px));
}

.intro_bridge em {
    color: var(--yellow);
}

/* --- Factors --- */
.intro_factors {
    padding-inline: 15px;
    text-align: center;
    margin-block-start: 12px;
}

.intro_factor-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    background: linear-gradient(to top, var(--yellow) 13px, transparent 13px);
    display: inline;
    margin-block-start: 16px;
}
.intro_factor::before,
.intro_factor::after {
    content: '\201C';
    color: #00a9c1;
    opacity: 0.67;
    font-size: 3.5rem;
    font-weight: 700;
    vertical-align: top;
    line-height: 1;
}
.intro_factor::after {
    content: '\201D';
}

.intro_factors-join {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    font-feature-settings: 'palt' 1;
}

/* --- Cards --- */
.intro_card {
    background: var(--white);
    border-radius: 15px;
    margin: 20px 15px 0;
    padding: 15px 13px 24px;

    + .intro_card {
        margin-block-start: 28px;
    }
}

.intro_card-title {
    color: var(--secondary);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
    padding-block-end: 3px;
    border-bottom: 2px solid var(--secondary);
    display: block;
    padding-inline: 4px;
    width: max-content;
    margin-inline: auto;
}

.intro_card-photo {
    margin-block-start: 15px;
    border-radius: 8px;
    overflow: hidden;
}
.intro_card-photo img {
    display: block;
    width: 100%;
}

.intro_card-desc {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.66;
    margin-block-start: 15px;
    padding-inline: 4px;
}

.intro_card-lead {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin-block-start: 15px;
    letter-spacing: 0.06em;
}

.intro_card-note {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.66;
    margin-block-start: 6px;
    text-align: center;
}

/* --- Closing --- */
.intro_closing {
    padding: 22px 15px 70px;
    text-align: center;
}

.intro_closing-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
}

.intro_closing-cta {
    font-size: 2rem;
    font-weight: 500;
    margin-block-start: 15px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
    padding-inline: 16px;
}
.intro_closing-cta::before,
.intro_closing-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 30px;
    background: url(../images/deco2.png) no-repeat center / contain;
}
.intro_closing-cta::after {
    right: auto;
    left: 0;
    scale: -1 1;
}

.intro_closing-chance {
    color: var(--primary);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    background: linear-gradient(to top, var(--yellow) 16px, transparent 16px);
    display: inline-block;
    line-height: 1.3;
}

/* ========================
  About
======================== */
.about {
    position: relative;
    background:
        url(../images/about_bg.png) center top / 100% 100% no-repeat,
        linear-gradient(to top, #dff3f6 50%, transparent 50%);
    margin-block-start: -48px;
}

.about_inner {
    position: relative;
    z-index: 1;
    padding-block: 86px 120px;
    padding-inline: 15px;
}

/* --- About content --- */
.about_desc {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    margin-block-start: 20px;
}
.about_desc strong {
    color: var(--primary);
}

.about_lead {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.02em;
    margin-block-start: 20px;
}

.about_services {
    max-width: 306px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-block-start: 15px;
}

.about_service {
    background: var(--secondary-light);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: calc(40 / 34);
    text-align: center;
    padding: 3px 5px 4px;
    border-radius: 13px 0 13px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-feature-settings: 'palt' 1;
}

.about_note {
    font-size: 1.6rem;
    text-align: center;
    letter-spacing: 0.02em;
    margin-block-start: 16px;
}

.about_photo {
    position: relative;
    margin-block-start: 30px;
}
.about_photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary-light);
    border-radius: 20px;
    translate: 10px 10px;
}
.about_photo img {
    display: block;
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* ========================
  Showcase
======================== */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 7.5px));
    }
}

.showcase {
    position: relative;
    background:
        url(../images/showcase_bg.png) center top / 100% auto no-repeat,
        linear-gradient(to bottom, transparent 70px, var(--bg) 70px);
    padding-block: 83px 80px;
    margin-block-start: -75px;
}

/* --- Title --- */
.showcase_head {
    text-align: center;
    padding-inline: 15px;
}

.showcase_balloon {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    padding: 0 8px 4px;
    border-radius: 999em;
    position: relative;
    letter-spacing: 0.03em;
    line-height: 1;
}
.showcase_balloon em {
    font-size: 2.6rem;
    translate: 0 2px;
}
.showcase_balloon::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 50%;
    translate: -50% 100%;
    width: 12px;
    height: 16px;
    background: var(--primary);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.showcase_text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-block-start: 12px;
    line-height: 1.2;
}

.showcase_stat {
}

.showcase_rate {
    display: inline-block;
    margin-block-start: -10px;

    strong {
        font-size: 2.4rem;
        font-weight: 700;
    }

    em {
        color: var(--primary);
        font-size: 3.6rem;
        font-weight: 900;

        span {
            font-family: var(--ff-en);
            font-size: 5.1rem;
            font-weight: 600;
            display: inline-block;
            margin-inline-start: -5px;
            translate: 0 3px;
        }
    }

    i {
        display: inline-block;
        margin-inline-start: -0.2em;
    }
}

/* --- Marquee --- */
.showcase_marquee {
    overflow: hidden;
    margin-block-start: 10px;
    padding-block: 10px 25px;
}

.showcase_track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 240px;
    gap: 12px;
    animation: marquee 20s linear infinite;
    width: max-content;
    will-change: transform;
}

.showcase_item {
    position: relative;
}

.showcase_photo {
    position: relative;
}
.showcase_photo img {
    box-shadow: 4px 4px 0 #f9c7a9;
    display: block;
    width: 100%;
    aspect-ratio: 240 / 164;
    object-fit: cover;
}

.showcase_label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    translate: -50% 0;
    background: var(--primary);
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    padding: 0px 12px 2px;
    border-radius: 12px 0 12px 0;
    white-space: nowrap;
}

/* ========================
  Reasons
======================== */
.reasons {
    position: relative;
    background: url(../images/reasons_bg.png) center top / 100% 100% no-repeat;
    margin-block-start: -70px;
}

.reasons_inner {
    padding-block: 77px 110px;
}

/* --- Reasons title variant --- */
.sect-title--reasons {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding-inline: 0;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.sect-title--reasons::before,
.sect-title--reasons::after {
    display: none;
}
.sect-title--reasons .sect-title_en {
    width: 288px;
}
.sect-title--reasons .sect-title_ja {
    display: block;
    font-size: 2rem;
    margin-block-start: 12px;
}
.sect-title--reasons .sect-title_highlight {
    display: block;
    font-size: 2rem;
    margin-block-start: 5px;
    color: var(--brown);
}
.sect-title--reasons .sect-title_highlight em {
    color: var(--primary);
    font-size: 2.4rem;
}

/* --- List --- */
.reasons_list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-block-start: 30px;
}

/* --- Item --- */
.reasons_item {
    position: relative;
    min-height: 350px;
    padding-inline: 15px;
}

/* --- Index --- */
.reasons_index {
    width: 125px;
}
.reasons_index img {
    display: block;
    width: 100%;
}
.reasons_item:nth-child(even) .reasons_index {
    margin-inline-start: auto;
}

/* --- Photo (absolute composite image) --- */
.reasons_photo {
    position: absolute;
    top: 12px;
    width: 70%;
    z-index: -1;
}
.reasons_photo img {
    display: block;
    width: 100%;
}
.reasons_item:first-child .reasons_photo {
    left: 0;
    width: 367px;
}
.reasons_item:nth-child(2) .reasons_photo {
    left: 9px;
    width: 324px;
}
.reasons_item:nth-child(3) .reasons_photo {
    right: 0;
    width: 360px;
}
.reasons_item:last-child .reasons_photo {
    right: 0;
    width: 367px;
}

/* --- Title banners --- */
.reasons_title {
    position: relative;
    z-index: 1;
    margin-block-start: 150px;
}
.reasons_title em {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 700;
    padding: 5px 4px;
    border-radius: 5px;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-block-start: 5px;

    span {
        font-size: 2.8rem;
    }
}
.reasons_title em:first-child {
    margin-block-start: 0;
}

.reasons_item:nth-child(2) .reasons_title {
    margin-block-start: 165px;
}
.reasons_item:nth-child(3) .reasons_title {
    margin-block-start: 138px;
}
.reasons_item:last-child .reasons_title {
    margin-block-start: 163px;
    text-align: right;
}

/* --- Callout (item 2 only) --- */
.reasons_callout {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-block-start: 20px;
    position: relative;
    padding-inline: 0.75em;
    line-height: 1;
    display: block;
    width: max-content;
    margin-inline: auto;

    &::before,
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        /* translate: 0 -50%; */
        mask: url(../images/deco2.png) center/contain no-repeat;
        background: var(--primary);
        width: 11px;
        height: 21px;
    }
    &::after {
        right: auto;
        left: 0;
        scale: -1 1;
    }

    + p.reasons_desc {
        margin-block-start: 10px;
    }
}

/* --- Description --- */
.reasons_desc {
    font-size: 1.6rem;
    line-height: calc(53 / 32);
    margin-block-start: 15px;
    letter-spacing: -0.01em;
}
.reasons_desc strong {
    color: var(--primary);
}

.cta {
    padding: 45px 15px;
    background: var(--bg);
    position: relative;
    z-index: 2;
    margin-block-start: -2px;
}

.cta_inner {
}

/* ========================
  Voice
======================== */
.voice {
    background: url(../images/voice_bg.png) center top / 100% 100% no-repeat;
    padding-block: 77px 45px;
    margin-block-start: -100px;
    position: relative;
    z-index: 5;
}

/* --- Voice title variant --- */
.sect-title--voice {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding-inline: 0;
}
.sect-title--voice::before,
.sect-title--voice::after {
    display: none;
}
.sect-title--voice .sect-title_en {
    width: 287px;
}
.sect-title--voice .sect-title_ja {
    display: block;
    color: var(--secondary);
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-block-start: 6px;
}

/* --- Carousel list --- */
.voice_list {
    margin-block-start: 32px;
}

/* --- Item card --- */
.voice_list-item {
    width: 200px;
    margin: 0 15px;
    padding: 38px 8px 30px 0;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--secondary-light);
    position: relative;
    margin-inline: 22px;
}

/* --- Index --- */
.voice_index {
    width: 106px;
    margin-inline-start: 40px;
}

/* --- Name badge --- */
.voice_name {
    display: block;
    text-align: center;
    background: var(--secondary);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    padding: 3px 46px 3px 10px;
    margin-block-start: 8px;
    width: 220px;
}

/* --- Portrait --- */
.voice_portrait {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 130px;
}
.voice_portrait img {
    display: block;
    width: 100%;
}

/* --- Lead (headline) --- */
.voice_lead {
    color: var(--secondary-light);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.9;
    letter-spacing: 0.06em;
    margin-block-start: 10px;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--text);
    text-underline-offset: 0.35em;
    text-decoration-thickness: 2px;
    margin-inline-start: 10px;
}

/* --- Description --- */
.voice_desc {
    font-size: 1.5rem;
    line-height: 1.79;
    letter-spacing: 0.05em;
    margin-block-start: 15px;
    padding-inline: 16px;
}
.voice_desc strong {
    background: var(--yellow);
}

/* ========================
  Achievement
======================== */
.achievement {
    background: url(../images/achievement_bg.jpg) center / cover no-repeat;
}

.achievement_inner {
    padding-block: 40px 45px;
    padding-inline: 17px;
}

.achievement_title {
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}

/* --- Chart --- */
.achievement_chart {
    /* filter: drop-shadow( 2px 2px 10px rgba(0, 0, 0, 0.08)); */
    margin-block-start: 20px;
}
.achievement_chart img {
    display: block;
    width: 100%;
}

/* --- Stats --- */
.achievement_stats {
    text-align: center;
    margin-block-start: 16px;
}

.achievement_lead {
    font-size: 1.7rem;
    letter-spacing: 0.04em;
}
.achievement_lead strong {
    color: var(--primary);
}

.achievement_sub {
    font-size: 1.7rem;
    letter-spacing: 0.03em;
    position: relative;
    padding-block-end: 22px;
    line-height: 1;
    padding-inline: 3px;
    width: max-content;
    margin-inline: auto;

    strong {
        font-size: 2.3rem;
    }
}
.achievement_sub::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    height: 18px;
    background: url(../images/achievement_sub-deco.png) no-repeat center/contain;
}

.achievement_rate {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    padding-inline: 30px;
    line-height: 1;
    margin-block-start: -4px;

    strong {
        font-size: 4.4rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        display: inline-block;
        margin-inline-start: 2px;
    }

    strong span {
        font-size: 5.6rem;
        font-family: var(--ff-en);
        font-weight: 600;
    }
    em {
        font-size: 3rem;
    }
}
.achievement_rate::before,
.achievement_rate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 17px;
    height: 50px;
    background: url(../images/deco3.png) center / contain no-repeat;
}
.achievement_rate::after {
    left: auto;
    right: 0;
    scale: -1 1;
}

.achievement_result {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-block-start: -4px;
}

/* ========================
  Flow
======================== */
.flow {
    background: url(../images/flow_bg.jpg) center top / 100% 100% no-repeat;
}

.flow_inner {
    padding-block: 50px 15px;
}

/* --- Flow title variant --- */
.sect-title--flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    padding-inline: 0;
    letter-spacing: normal;
    font-size: 2.5rem;
}
.sect-title--flow::before,
.sect-title--flow::after {
    display: none;
}
.sect-title--flow .sect-title_en {
    width: 288px;
}
.sect-title--flow .sect-title_ja {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-block-start: 4px;
}

/* --- Scroll wrapper --- */
.flow_list-wrap {
    margin-block-start: 20px;
    overflow-x: auto;
    overflow-y: clip;
}

/* --- List --- */
.flow_list {
    display: grid;
    gap: 9px;
    grid-auto-flow: column;
    grid-auto-columns: 119px;
    align-items: end;
    width: max-content;
    padding-block: 20px;
    padding-inline: 20px;
}

/* --- First item (資料請求) --- */
.flow_item-first {
    width: 116px;
    background: #fff474;
    box-shadow: 0 4px 0 #b9af15;
    border-radius: 5px;
    aspect-ratio: 116 / 108;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: 700;
    text-align: center;
    margin-inline-end: 10px;
}

.flow_item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    line-height: 1;
}

.flow_icon {
    width: 37px;

    + span {
        display: block;
        padding-block-end: 20px;
        position: relative;
        text-align: center;

        &::after {
            position: absolute;
            content: '';
            left: 50%;
            bottom: 0;
            translate: -50% 0;
            width: 6px;
            height: 6px;
            border-right: 2px solid var(--secondary);
            border-bottom: 2px solid var(--secondary);
            rotate: 45deg;
        }
    }
}
.flow_icon img {
    display: block;
    width: 100%;
}

/* --- Step items --- */
.flow_item {
    width: 125px;
    background: url(../images/flow_step-bg.png) center / contain no-repeat;
    aspect-ratio: 125 / 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

    &:last-child{
        background: url(../images/flow_step-bg-last.png) center / contain no-repeat;

    }
}

/* --- Index --- */
.flow_item-index {
    font-family: var(--ff-en);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    letter-spacing: 0.12em;
    position: absolute;
    top: 0;
    translate: 0 -50%;
    border-radius: 999em;
    padding-inline: 7px;
}

/* --- Title --- */
.flow_item-title {
    color: var(--primary);
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.01em;
    padding-inline-end: 4px;
}

/* ========================
  Push
======================== */
.push {
    position: relative;
    background: #dff3f6;
}

.push_head {
    background: url(../images/push_head-bg.png) center / cover no-repeat;
    text-align: center;
    padding-block: 30px 42px;
}

.push_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.push_title em {
    color: var(--secondary);
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--white);
    border-radius: 999em;
    padding: 0 6px;
    letter-spacing: 0.02em;
}
.push_title strong {
    color: var(--white);
    font-size: 2.5rem;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.push_body {
    background: url(../images/push_body-bg.png) center top / 100% auto no-repeat;
    padding-block: 30px 55px;
    padding-inline: 24px;
}

.push_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.push_item {
    width: 245px;
}
.push_item--right {
    margin-inline-start: auto;
    width: 240px;
}
.push_item:last-child {
    width: 242px;
}

.push_item-text {
    background: url(../images/push_bubble1.png) center / 100% 100% no-repeat;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 15px 15px 19px 23px;
    letter-spacing: -0.02em;
}
.push_item--right .push_item-text {
    background-image: url(../images/push_bubble2.png);
    padding: 13px 15px 18px 40px;
}
.push_item:nth-child(3) .push_item-text {
    background-image: url(../images/push_bubble3.png);
    padding: 15px 5px 19px 10px;
}

.push_illust {
    width: 286px;
    margin-block-start: 15px;
    margin-inline: auto;
}
.push_illust img {
    display: block;
    width: 100%;
}

.request {
    position: relative;
    padding-top: 81px;
    padding-bottom: 58px;
    background: var(--white);
}
.request_title {
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    width: 100%;
    position: absolute;
    top: -56px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.request_title-inner {
    font-family: var(--ff-sub);
    box-sizing: border-box;
    width: max-content;
    padding: 20px 23px 25px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    background: url(../images/request_title-bg.png) center/contain no-repeat;
    width: 100%;
    line-height: 1.4;
    letter-spacing: 0.04em;
    color: var(--white);
}

.request_title-inner strong {
    font-size: 2.1rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    display: inline-block;
    margin-block-start: 4px;
}
.request_note {
    text-align: center;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.7;
    font-family: var(--ff-sub);
}
.request_note-mail {
    display: block;
}
.request_panel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
}
.request_appeal {
    font-family: var(--ff-sub);
    display: flex;
    align-items: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 18px;
    margin: 0 auto;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    white-space: nowrap;
    height: 35px;
    border-radius: 999em;
    margin-block-start: 15px;
}
.request_appeal em {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-inline-start: 2px;
    line-height: 1;
}
.request_appeal strong {
    font-size: 2.3rem;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    margin-block-start: -2px;
}
.request_require-note {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 500;
    margin-block-start: 21px;
    font-family: var(--ff-sub);
}
.request_form {
    margin-top: 11px;
    background: var(--white);
}
.form * {
    font-family: var(--ff-sub);
}
.form .form-text {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 56px;
    padding: 8px 14px;
    background-color: var(--white);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    border: 1px solid #d4d4d4;
    color: var(--text);
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    font-family: var(--font-en);
    background: #f6f6f6;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.form .form-text::-webkit-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::-moz-placeholder {
    color: #c0c0c0;
}
.form .form-text:-ms-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::-ms-input-placeholder {
    color: #c0c0c0;
}
.form .form-text::placeholder {
    color: #c0c0c0;
}
.form .form-text:not(:-moz-placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:-ms-input-placeholder) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-text:not(:placeholder-shown) {
    background-color: #fff;
    border: 1px solid #232323;
}
.form .form-select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 56px;
    padding: 8px 14px 8px;
    background-color: var(--white);
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 5px;
    -webkit-box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 3px 3px 2px rgba(0, 0, 0, 0.2);
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 2px solid var(--primary);
    color: var(--text);
}
.form .form-select--initial {
    background-color: #fff;
}
.form .form-zip-btn {
    padding: 10px 10px;
    background: #fff;
    border-radius: 999em;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.1428571429;
    cursor: pointer;
    height: 59px;
    flex-grow: 1;
    border: none;
    margin-block-start: 0;
    border: 2px solid var(--primary);
}
.form .wpcf7-form-control-wrap {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 7px;
}
.form .form-textarea {
    height: 151px;
}
.form_item {
    display: block;
    gap: 13px;
    color: #000;
}
.form_item:not(:first-child) {
    margin-top: 20px;
}
.form_item--short .wpcf7-form-control-wrap {
    max-width: 166px;
    margin-inline-end: 3px;
    flex-shrink: 0;
}
.form_item--has-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
.form_item--has-btn .form_title {
    width: 100%;
}

.form_item--has-btn .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 100%;
    margin-left: 0;
    margin-block-start: 0;
}
.form_item--left {
    float: none;
    width: auto;
}
.form_item--right {
    float: right;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: none;
    width: auto;
}
.form_title {
    display: block;
    width: auto;
    text-align: left;
    font-size: 1.5rem;
    font-family: var(--font-en);
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
}

.form_title--long {
    letter-spacing: -0.1em;
}
.form_required {
    color: var(--red);
}
.form_control {
    display: block;
    width: 100%;
}
.form .form_item--select {
    max-width: 235px;
}
.form .form_item--select .wpcf7-form-control-wrap {
    position: relative;
}
.form .form_item--select .wpcf7-form-control-wrap::after {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    right: 16px;
    width: 10px;
    height: 6px;
    background: var(--primary);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.form .form_item--radio > p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.form .form_item--radio .wpcf7-radio {
    width: auto;
    margin-top: 0;
    margin-left: 0;
    display: flex;
    gap: 21px;
}
.form .form_item--radio .wpcf7-radio input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label {
    cursor: auto;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::before {
    cursor: auto;
    border-color: var(--primary);
    box-shadow: none;
}
.form .form_item--radio .wpcf7-radio input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
    cursor: auto;
}
.form .form_item--radio .wpcf7-list-item {
    display: inline-block;
    display: block;
    margin-left: 0;
}
.form .form_item--radio .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    padding-left: 1.5em;
    font-size: 1.6rem;
    line-height: 1.25;
    cursor: pointer;
    font-weight: 400;
}
.form .form_item--radio .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    background-color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: inset 3px 3px rgb(0 0 0/10%);
}
.form .form_item--radio .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 4px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-checkbox {
    margin-top: 0;
    margin-left: 0;
}
.form .form_item--checkbox .wpcf7-checkbox input {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::before {
    background-color: #999;
    border: 1px solid #c1c1c1;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form .form_item--checkbox .wpcf7-checkbox input:checked + .wpcf7-list-item-label::after {
    opacity: 1;
}
.form .form_item--checkbox .wpcf7-list-item {
    display: block;
    margin-top: 12px;
    margin-left: 0;
}
.form .form_item--checkbox .wpcf7-list-item-label {
    display: inline-block;
    position: relative;
    line-height: 1.7857142857;
    cursor: pointer;
    padding-left: 27px;
    font-size: 1.1em;
    color: #bdbdbd;
    font-family: var(--font-en);
    font-weight: 300;
    letter-spacing: normal;
}
.form .form_item--checkbox .wpcf7-list-item-label::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
}
.form .form_item--checkbox .wpcf7-list-item-label::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-65%) rotate(-45deg);
    transform: translateY(-65%) rotate(-45deg);
    width: 9px;
    height: 4px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    opacity: 0;
    cursor: pointer;
    left: 5px;
}
.form .form_item--optional:not(._) {
    text-align: center;
    margin-top: 30px;
}
.form .form_item--optional:not(._) .wpcf7-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.form .form_item--optional:not(._) .wpcf7-list-item-label {
    color: #999;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 400;
}
.form .wpcf7-not-valid:not(.wpcf7-radio) {
    background: #f6f6f6;
    color: #464646;
}
.form .wpcf7-not-valid-tip {
    margin-top: 4px;
}
.form_note {
    margin-top: 4px;
    font-size: 1.3rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    margin-left: 0;
}
.form_privacy-policy-wrap {
    margin-top: 17px;
    text-align: center;
}
.form_privacy-policy {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
}
.form_submit-wrap {
    margin-top: 20px;
    text-align: center;
    position: relative;
    width: 235px;
    margin-inline: auto;
}
.form_submit {
    position: relative;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    outline: none;
    border: none;
    background: var(--secondary);
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    cursor: pointer;
    color: var(--white);
    padding-inline-end: 14px;
}

.form_submit-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
    width: 9px;
    height: 15px;
    background: url(../images/chevron.svg);
    z-index: 2;
}

.footer {
    background-color: #5a4c49;
    color: var(--white);
    padding-top: 30px;
    padding-bottom: 0;
}

.footer * {
    font-family: var(--ff-en);
}
.footer {
    color: #fff;
    padding-top: 30px;
    padding-bottom: 20px;
}
.footer_inner {
    position: relative;
    max-width: 1000px;
    padding: 0 20px;
    margin: 0 auto;
}
.footer_about-franchise-salon {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 5px;
    background-color: #fff;
    color: #393939;
    padding: 13px 20px 12px;
}
.footer_about-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    font-weight: 600;
    font-family: var(--font-sub);
    gap: 5px;
}
.footer_about-logo {
    display: inline-block;
    width: 163px;
    margin-inline-start: -10px;
}
.footer_about-desc {
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 400;
    color: #313131;
    font-family: var(--font-en);
}
.footer_company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 46px;
}
.footer_info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-family: var(--font-en);
    letter-spacing: 0.03em;
}
.footer_info + .footer_info {
    margin-block-start: 60px;
    padding-left: 0;
    border: none;
}
.footer_company {
    font-size: 1.4rem;
    font-weight: bold;
}
.footer_head-office {
    margin-top: 2px;
    font-size: 1.4rem;
    font-weight: 500;
}
.footer_address {
    margin-top: 4px;
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 400;
}
.footer_contact {
    margin-block-start: 19px;
    display: block;
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 10px 30px 9px 24px;
    width: max-content;
    position: relative;
    box-sizing: border-box;
}
.footer_contact-link {
    grid-area: 1/2/2/3;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-robo);
    letter-spacing: 0.07em;
    text-decoration: none;
    display: block;
    width: fit-content;
    padding-inline-end: 1.5em;
}
.footer_contact-link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    translate: 0 -50%;
    width: 9px;
    height: 12px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.footer_copyright {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.2;
    padding-block-end: 22px;
    font-family: var(--ff-sub);
}
.footer--copyright {
    padding-top: 77px;
    padding-bottom: 0px;
    margin-block-start: -1px;
}

/* ========================
Helper
======================== */
@media screen and (max-width: 768px) {
    .only-pc {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .only-sp {
        display: none;
    }
}

.clear-fix {
    clear: both;
}

.marker {
    background: linear-gradient(to top, var(--yellow) 10px, transparent 10px);
}

.highlight {
    background: linear-gradient(
        to top,
        transparent 2px,
        var(--yellow) 2px,
        var(--yellow) calc(100% - 2px),
        transparent calc(100% - 2px)
    );
    font-weight: 700;
}

.white-line {
    background-image: -webkit-linear-gradient(bottom, #fff 7px, transparent 7px);
    background-image: linear-gradient(to top, #fff 7px, transparent 7px);
}

.primary {
    color: var(--primary);
}

.primary-dark {
    color: var(--primary-dark);
}

.yellow {
    color: var(--yellow);
}
.orange {
    color: var(--orange);
}
.red {
    color: var(--red);
}

.gold {
    color: var(--gold);
}
.gold-light {
    color: var(--gold-light);
}

.bold {
    font-weight: bold;
}

.extrabold {
    font-weight: 800;
}

.box {
    display: inline-block;
    padding: 0 0.2em;
    background: linear-gradient(to right, #f5d784 0, #fdf4d5 50%, #f5d784 100%);
    color: var(--text);
}
