/* ==========================================
   Design System
========================================== */
:root {
    /* Font */
    --font-mincho:
        "A1明朝",
        "A1 Mincho",
        "Yu Mincho",
        "Hiragino Mincho ProN",
        "HGS明朝E",
        serif;

    --font-gothic:
        "Noto Sans JP",
        "Yu Gothic",
        "Hiragino Sans",
        sans-serif;

    /* Color */
    --color-primary: #E7347B;
    --color-primary-light: #FEE7EB;
    --color-text: #222222;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-bg: #FFFFFF;
    --color-bg-pink: #FFF8FA;
    --color-border: #F3D7DF;

    /* Width */
    --container-width: 1080px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    /* Shadow */
    --shadow-card:
        0 10px 30px rgba(0, 0, 0, .05);

    --shadow-hover:
        0 16px 40px rgba(0, 0, 0, .1);

    /* Transition */
    --transition: .3s ease;

    /* Section */
    --section-padding-pc: 100px;
    --section-padding-sp: 60px;
}

/* ==========================================
   Base
========================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-text);
    background: var(--color-bg);
    font-family: var(--font-gothic);
    font-size: 16px;
    line-height: 1.8;
}

h1,
h2,
h3 {
    font-family: var(--font-mincho);
    font-weight: 600;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================
   強調マーカー
========================================== */

.text-marker {
    padding: 2px 4px;
    background: linear-gradient(transparent 68%,
            #ffefb0 68%);
    color: inherit;
    font-weight: 700;
}

/* ==========================================
   Layout
========================================== */
.c-container {
    width: min(var(--container-width),
            calc(100% - 40px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding:
        var(--section-padding-pc) 0;
}

/* ==========================================
   Section Heading
========================================== */
.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading__en {
    color: var(--color-primary);
    font-family: var(--font-gothic);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    line-height: 1;
}

.section-heading__title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    color: var(--color-primary);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.4;
}

.section-heading__title span {
    position: relative;
    flex: 1;
    max-width: 160px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary));
    opacity: .8;
}

.section-heading__title--sub {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    gap: 25px;
}

.section-heading__title--sub::before,
.section-heading__title--sub::after {
    content: "";
    width: 80px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            var(--color-primary));
}

.section-heading__title--sub::after {
    background: linear-gradient(to left,
            transparent,
            var(--color-primary));
}

/* 大きい丸 */
.section-heading__title span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -22px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translateY(-50%);
}

/* 小さい丸 */
.section-heading__title span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--color-primary);
    transform: translateY(-50%);
}

/* 右側 */
.section-heading__title span:last-child {
    background: linear-gradient(to left, transparent, var(--color-primary));
}

.section-heading__title span:last-child::before {
    left: -22px;
    right: auto;
}

.section-heading__title span:last-child::after {
    left: -10px;
    right: auto;
}

.is_sp {
    display: none;
}

.is_pc {
    display: block;
}


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

@media(max-width:768px) {
    .section {
        padding:
            var(--section-padding-sp) 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading__title {
        gap: 30px;
        font-size: 1.8rem;
    }

    .section-heading__title--sub {
        font-size: 1.4rem;
    }

    .section-heading__title span {
        max-width: 70px;
    }

    .section-heading__title span::before {
        width: 5px;
        height: 5px;
        right: -18px;
    }

    .section-heading__title span::after {
        width: 3px;
        height: 3px;
        right: -9px;
    }

    .section-heading__title span:last-child::before {
        left: -18px;
    }

    .section-heading__title span:last-child::after {
        left: -9px;
    }

    .is_sp {
        display: block;
    }

    .is_pc {
        display: none;
    }
}

.page-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(182, 158, 132, .75);
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    transition: background .2s, transform .2s;
}

@media only screen and (max-width: 1024px) {
    #return_top a {
        border-radius: 50%;
    }
}

.page-top::before {
    content: "↑";
    line-height: 1;
    transform: translateY(-2px);
}

.page-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

@media(max-width:768px) {
    .page-top {
        right: 15px;
        bottom: 20px;
        width: 48px;
        height: 48px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    max-width: 100%;
    height: 64px;
    padding: 0 36px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.btn::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: .8em;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='%23E7347B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .3s ease;
}

.btn-primary::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn:hover::after {
    transform: translateX(4px);
}

/* ==========================================
   予約CTA
========================================== */

.flow-section__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 460px;
    max-width: 100%;
    height: 88px;
    overflow: hidden;
    border-radius: 10px;
    background:
        linear-gradient(135deg,
            #f58db8 0%,
            #e7347b 45%,
            #c91d60 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, .25),
        0 6px 0 #b81f59,
        0 16px 30px rgba(231, 52, 123, .28);
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.flow-section__btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background:
        linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);
    transform: skewX(-25deg);
    animation:
        reserveShine 5s infinite;
}

.flow-section__btn::after {
    inset: 7px;
    border: 1px solid rgba(255, 220, 140, .9);
    border-radius: 5px;
}

.flow-btn__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 9px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
}

.flow-btn__icon img {
    width: 100%;
    height: 100%;
}

.flow-section__btn:hover {
    color: #fff;
    filter: brightness(1.08);
}

.flow-section__btn:active {
    transform: translateY(4px);

    box-shadow:
        inset 0 1px 3px rgba(255, 255, 255, .25),
        0 2px 0 #b81f59,
        0 8px 15px rgba(231, 52, 123, .2);
}

@keyframes reserveShine {
    0% {
        left: -120%;
    }

    25% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

@media(max-width:768px) {
    .flow-section__btn {
        height: 68px;
        font-size: 0.9rem;
    }

    .flow-btn__icon {
        width: 34px;
        height: 34px;
    }

    .flow-btn__icon img {
        width: 22px;
        height: 22px;
    }

}

/* ==========================================
   FV
========================================== */

.fv-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 0;
    background: #fff url("../images/top/fv-bg.webp") center top / min(100%, 1600px) auto no-repeat;
    border-radius: 0 0 50px 50px;
}

.fv-section__inner {
    position: relative;
    z-index: 10;
    max-width: var(--container-width);
    margin: 60px auto 0;
    padding: 20px 20px 0;
}

.fv-section__content {
    max-width: 560px;
    padding-bottom: 60px;
    text-align: center;
}

.fv-title {
    position: relative;
    display: inline-block;
    margin: 0;
    line-height: 1.15;
    font-weight: 700;
}

.fv-title__ai-wrap {
    position: relative;
    display: inline-block;
}

.fv-title__label {
    position: absolute;
    left: -3em;
    top: -.7em;
    display: flex;
    align-items: center;
    gap: .25em;
    color: var(--color-primary);
    font-size: .35em;
    font-weight: 700;
    white-space: nowrap;
    transform: rotate(-12deg);
}

.fv-title__label::before,
.fv-title__label::after {
    content: "";
    width: 1.8em;
    height: 2px;
    background: var(--color-primary);
}

.fv-title__label::before {
    transform: rotate(35deg);
}

.fv-title__label::after {
    transform: rotate(-35deg);
}

.fv-title__main {
    display: block;
    color: var(--color-primary);
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.fv-title__ai {
    font-size: 1.3em;
    letter-spacing: .08em;
}

.fv-title__sub {
    display: block;
    margin-top: 6px;
    color: var(--color-primary);
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.fv-subtitle {
    margin-top: 26px;
    color: var(--color-primary);
    font-size: clamp(1.05rem, 1.7vw, 1.6rem);
    font-weight: 700;
}

.fv-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.fv-buttons .flow-section__btn {
    width: 420px;
    height: 78px;
}

.btn--compact {
    width: 260px;
    height: 58px;
    padding: 0 20px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 20px rgba(231, 52, 123, .18);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(231, 52, 123, .3);
    filter: brightness(1.04);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(231, 52, 123, .18);
}

.btn-secondary {
    background: rgba(255, 255, 255, .95);
    color: var(--color-primary);
    border: 2px solid rgba(231, 52, 123, .25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
}

.btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12), 0 6px 12px rgba(0, 0, 0, .06);
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}

/* IBJ */
.fv-section__ibj {
    position: absolute;
    top: -50px;
    right: 20px;
    z-index: 20;
}

.fv-section__ibj img {
    display: block;
    width: 170px;
}


@media (min-width: 1200px) {
    .fv-section__ibj {
        right: -60px;
    }
}

@media(max-width:1024px) {
    .fv-section {
        background-position: center center;
        background-size: cover;
    }
}

@media (max-width:900px) and (min-width:769px) {
    .fv-section__ibj img {
        width: 140px;
    }

    .fv-buttons .flow-section__btn {
        width: 360px;
        height: 54px;
        font-size: 1.1rem;
    }
}

/* SP */
@media(max-width:768px) {
    /* .admin-bar {
        padding-top: 0;
    } */

    .fv-section {
        min-height: 720px;
        background-image: url("../images/top/fv-bg-sp.webp");
        background-position: center center;
        background-size: cover;
    }

    .fv-section__inner {
        min-height: 660px;
        box-sizing: border-box;
        padding: 10px 20px 0px;
    }

    .fv-section__content {
        max-width: none;
        padding-bottom: 0;
        text-align: center;
    }

    .fv-title {
        line-height: 1;
    }

    .fv-title__main,
    .fv-title__sub {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .fv-subtitle {
        margin-top: 16px;
        font-size: .95rem;
    }

    .fv-buttons {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 60px;
        margin: 0;
    }

    .fv-buttons .flow-section__btn {
        width: 100%;
        max-width: 360px;
        height: 54px;
        padding: 0 20px;
        margin: 0 auto;
    }

    .fv-section__ibj {
        top: auto;
        right: 20px;
        bottom: 125px;
        transform: none;
    }

    .fv-section__ibj img {
        width: 140px;
    }
}

/* ==========================================
   NEWS
========================================== */

.news-section {
    padding: 80px 20px;
    background: var(--color-bg-pink);
}

.news-section__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.news-section__heading {
    flex: 0 0 180px;
}

.news-heading__en {
    color: var(--color-primary);
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    letter-spacing: .2em;
}

.news-heading__title {
    margin: 10px 0 0;
    color: var(--color-text);
    font-family: var(--font-mincho);
    font-size: 2rem;
    font-weight: 600;
}

.news-section__content {
    flex: 1;
}

.news-list {
    margin: 0;
    padding: 25px 30px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);

    /* max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin; */
}

.news-list::-webkit-scrollbar {
    width: 6px;
}

.news-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.news-list__item {
    border-bottom: 1px solid var(--color-primary-light);
}

.news-list__item:first-child {
    border-top: 1px solid var(--color-primary-light);
}

.news-list__item a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 0;
    color: var(--color-text);
    transition: var(--transition);
}


/* 画像 */

.news-list__image {
    flex-shrink: 0;
    width: 110px;
}

.news-list__image img {
    display: block;
    width: 100%;
    height: auto;
}

.news-list__image--none {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 110px;
    min-height: 70px;
    background: #f5f5f5;
    color: #aaa;
    font-size: .75rem;
    letter-spacing: .05em;
}


/* 本文 */

.news-list__body {
    flex: 1;
    min-width: 0;
}

.news-list__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 6px;
}

.news-list__item time {
    color: var(--color-primary);
    font-size: .85rem;
    letter-spacing: .05em;
    white-space: nowrap;
}

.news-list__category {
    flex-shrink: 0;
    padding: 3px 10px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    color: var(--color-primary);
    font-size: .75rem;
}

.news-list__title {
    display: block;
    flex: 1;
    min-width: 0;
    font-weight: 400;
    line-height: 1.6;
}

.news-list__item a:hover {
    opacity: .7;
}


/* 一覧ボタン */

.news-more {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .6em;
    margin-top: 15px;
    color: var(--color-primary);
    font-size: .9rem;
    font-weight: 500;
}

.news-more::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='%23E7347B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}


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

@media(max-width:768px) {

    .news-section {
        padding: 50px 0px;
    }

    .news-section__inner {
        display: block;
    }

    .news-section__heading {
        margin-bottom: 25px;
    }

    .news-heading__title {
        margin: 0;
        font-size: 1.6rem;
    }

    .news-list {
        padding: 20px 15px;
        border-radius: var(--radius-md);
    }

    .news-list__item a {
        gap: 12px;
    }

    .news-list__image {
        width: 80px;
    }

    .news-list__image--none {
        width: 80px;
        min-height: 55px;
        font-size: .65rem;
    }

    .news-list__meta {
        flex-wrap: wrap;
        gap: 5px 10px;
    }

    .news-list__item time {
        font-size: .75rem;
    }

    .news-list__category {
        padding: 2px 8px;
        font-size: .65rem;
    }

    .news-list__title {
        font-size: .85rem;
    }
}

/* ==========================================
   信頼訴求
========================================== */
.trust-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%,
            rgba(255, 255, 255, .35),
            transparent 35%),
        radial-gradient(circle at 90% 80%,
            rgba(255, 255, 255, .25),
            transparent 30%),
        linear-gradient(135deg,
            #e96b9c,
            #f5b6d0);
}

.trust-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    top: -300px;
    right: -200px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    z-index: 0;
}

.trust-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: -250px;
    left: -150px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    z-index: 0;
}


.trust-section__inner {
    position: relative;
    z-index: 1;
    padding: 55px 60px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(180, 70, 110, .18);
    text-align: center;
}

.trust-section__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

.trust-section__badges span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    min-height: 48px;
    padding: 10px 20px;
    border-radius: 999px;
    box-sizing: border-box;
    background: linear-gradient(135deg,
            #fff6d8,
            #f8dda0);
    border: 1px solid #e8bd5a;
    color: #9a6715;
    font-size: .95rem;
    font-weight: 700;
    box-shadow:
        0 6px 15px rgba(200, 150, 50, .15);
}

.trust-section__title {
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.7;
}

.trust-section__text {
    margin: 0 auto;
    max-width: 850px;
    color: #555;
    font-size: 1rem;
    line-height: 2;
}

@media(max-width:768px) {

    .trust-section {
        padding: 50px 0;
    }

    .trust-section__inner {
        padding: 30px 15px;
        border-radius: 22px;
    }

    .trust-section__badges {
        gap: 10px 5px;
        margin-bottom: 25px;
    }

    .trust-section__badges span {
        width: calc(50% - 5px);
        min-height: 44px;
        padding: 8px 3px;
        font-size: .75rem;
        text-align: center;
    }

    .trust-section__title {
        font-size: 1.0rem;
        line-height: 1.6;
    }

    .trust-section__text {
        font-size: .76rem;
        line-height: 1.8;
        text-align: left;
    }

}

/* ==========================================
   コンセプト
========================================== */

.concept-section {
    background: var(--color-white);
}

.concept-section__inner {
    display: flex;
    align-items: center;
    gap: 80px;
}

.concept-section__image {
    position: relative;
    width: 40%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    z-index: 1;
}

/* 背景楕円 */
.concept-section__image::before {
    content: "";
    position: absolute;
    top: 8%;
    right: -5%;
    bottom: 3%;
    left: 5%;
    width: 95%;
    height: 74%;
    background: var(--color-primary-light);
    border-radius: 50%;
    transform: rotate(-35deg) rotateX(-36deg);
    z-index: 0;
    pointer-events: none;
}


/* 2枚共通 */
.concept-section__image-staff,
.concept-section__image-user {
    position: absolute;
    overflow: hidden;
    background: #fff;
    border: 6px solid #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


.concept-section__image-staff img,
.concept-section__image-user img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* カウンセラー：左上 */
.concept-section__image-staff {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    aspect-ratio: 4 / 3;
    transform: rotate(-4deg);
    z-index: 3;
}

/* ユーザー */
.concept-section__image-user {
    position: absolute;
    right: 0;
    bottom: 3%;
    width: 66%;
    aspect-ratio: 4 / 3;
    transform: rotate(4deg);
    z-index: 2;
}


/* 発光する軌道 */
.concept-section__image::after {
    content: "";
    position: absolute;
    top: calc(18% - 15px);
    left: calc(8% - 15px);
    width: calc(84% + 30px);
    height: calc(64% + 30px);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 20px,
            #fff 0,
            #fff 2px,
            rgba(255, 255, 255, .95) 5px,
            rgba(255, 255, 255, .65) 6px,
            transparent 11px);
    filter:
        drop-shadow(0 0 3px rgba(255, 255, 255, .95)) drop-shadow(0 0 7px rgba(255, 255, 255, .75)) drop-shadow(0 0 12px rgba(255, 255, 255, .45));
    z-index: 1;
    pointer-events: none;
    animation: concept-orbit 3.5s linear infinite;
}

@keyframes concept-orbit {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(80deg);
    }

    35% {
        transform: rotate(190deg);
    }

    50% {
        transform: rotate(270deg);
    }

    65% {
        transform: rotate(330deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (hover: hover) {

    .concept-section__image-staff:hover {
        transform: rotate(-1deg) translateY(-8px) scale(1.04);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
        z-index: 10;
    }

    .concept-section__image-user:hover {
        transform: rotate(1deg) translateY(-8px) scale(1.04);
        box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
        z-index: 10;
    }

}

.concept-section__content {
    width: 60%;
}

.concept-section__title {
    color: var(--color-primary);
    font-size: clamp(1.8rem, 2.5vw, 2.6rem);
    line-height: 1.45;
}

.concept-section__text {
    margin-top: 24px;
    color: var(--color-text);
    line-height: 1.8;
    font-size: .95rem;
}

.concept-section__message {
    margin-top: 35px;
    padding: 25px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-bg-pink);
}

.concept-section__message p {
    margin: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.concept-section__btn {
    margin-top: 35px;
}

@media(max-width:1024px) {
    .concept-section__inner {
        gap: 35px;
    }

    .concept-section__title {
        font-size: 1.7rem;
    }

    .concept-section__text {
        font-size: .9rem;
    }
}

@media(max-width:768px) {

    .concept-section__inner {
        flex-direction: column;
        gap: 40px;
    }

    .concept-section__image,
    .concept-section__content {
        width: 100%;
    }

    .concept-section__image {
        max-width: 430px;
        width: 90%;
        margin: 0 auto;
        aspect-ratio: 1 / .85;
    }

    .concept-section__image-staff {
        width: 60%;
        top: 0;
        left: 0;
    }

    .concept-section__image-user {
        width: 60%;
        right: 0;
        bottom: 0;
    }

    .concept-section__content {
        text-align: center;
    }

    .concept-section__text {
        margin-top: 20px;
        font-size: .8rem;
    }

    .concept-section__message {
        margin-top: 25px;
        padding: 20px;
    }

    .concept-section__btn {
        width: 100%;
        margin-top: 25px;
    }

    .concept-section__image::before {
        top: 15%;
        left: -1%;
    }
}

/* ==========================================
   Plan
========================================== */

.plan-section {
    background: var(--color-bg-pink);
}

.plan-section__lead {
    width: fit-content;
    margin: -10px auto 50px;
    padding: 10px 35px;

    text-align: center;

    color: #555;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.8;

    background: rgba(255, 255, 255, .75);
    border: 1px solid #f2cfd8;
    border-radius: 999px;
}

/* ==========================================
   PLAN CARD
========================================== */

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 35px 30px 30px;
    background: #fff;
    border: 2px solid var(--plan-color);
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: var(--transition);

}

/* リボン */

.plan-card__corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
}

.plan-card__ribbon {
    position: absolute;
    top: 18px;
    left: -42px;
    z-index: 20;
    width: 150px;
    padding: 8px 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .35) 0%,
            transparent 35%,
            rgba(0, 0, 0, .08) 100%),
        var(--plan-color);

    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: .08em;

    transform: rotate(-45deg);

    box-shadow:
        0 5px 10px rgba(0, 0, 0, .18),
        inset 0 1px 2px rgba(255, 255, 255, .5);
}


/* 内側ライン */
.plan-card__ribbon::before {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 4px;
    bottom: 4px;

    border-top: 1px dashed rgba(255, 255, 255, .7);
    border-bottom: 1px dashed rgba(255, 255, 255, .25);

    pointer-events: none;
}

/* ヘッダー */

.plan-card__header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #ececec;
    margin-left: -15px;
    margin-right: -15px;
}

.plan-card__name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.plan-card__number {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.plan-card__number span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--plan-color);
    font-family: var(--font-mincho);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.plan-card__title {
    color: var(--plan-color);
    font-size: 1.65rem;
    font-weight: 700;
}

.plan-card__lead {
    margin-top: 15px;
    padding: 10px;
    border-radius: 6px;
    background: var(--plan-lead-bg);
    color: var(--plan-color);
    font-size: .95rem;
    font-weight: 700;
}

/* 料金一覧 */

.plan-card__fees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0px 0 30px;
    padding-top: 10px;
    border-bottom: 1px solid #ececec;
}

.plan-fee {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
}

.plan-fee:last-child {
    border-bottom: none;
}

.plan-fee__label {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 65%;
    padding-right: 15px;
    color: #333;
    font-weight: 700;
    border-right: 1px solid #ececec;
}

.plan-fee__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--plan-color);
}

.plan-fee__icon img {
    width: 20px;
    height: 20px;
}

.plan-fee__price {
    width: 35%;
    padding-left: 15px;
    color: var(--plan-color);
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    font-weight: 700;
    text-align: right;
}

/* 対象 */

.plan-card__target {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding: 14px;
    border-radius: 14px;
    background: var(--plan-target-bg);
    color: var(--plan-color);
    font-weight: 700;
}

.plan-card__target span {
    flex: none;
    text-align: center;
}

.plan-card__target strong {
    color: var(--plan-color);
    font-family: var(--font-mincho);
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1;
}

.plan-card__target img {
    width: 50px;
    flex-shrink: 0;
}

/* .plan-card__target span {
    flex: 1;
    text-align: center;
} */

/* ==========================================
   サブスク
========================================== */

.plan-subscription {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}

.plan-subscription__message {
    text-align: center;
    font-size: 1.4rem;
    color: #333;
    font-weight: 700;
}

.plan-subscription__message p {
    margin: 0;
}

.plan-subscription__message p+p {
    margin-top: -5px;
}

.plan-year-number {
    color: #FD3667;
    font-family: var(--font-mincho);
    font-size: 3.0rem;
    line-height: 1;
    vertical-align: -0.05em;
}

.plan-year-text {
    color: #FD3667;
    font-size: 2.0rem;
    margin-right: 3px;
}

.plan-subscription__total {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 8px;
    padding: 12px 17px;
    border: 2px solid var(--plan-color);
    border-radius: 16px;
    background: #F8F6FA;
}

.plan-subscription__total small {
    color: var(--plan-color);
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    font-weight: 700;
}

.plan-subscription__total strong {
    display: flex;
    align-items: baseline;
    color: var(--plan-color);
    font-family: var(--font-mincho);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
}

.plan-subscription__total strong span {
    font-size: 1.3rem;
    line-height: 1;
}

.plan-subscription__total strong {
    font-family: var(--font-mincho);
}

/* ==========================================
   カラー
========================================== */

.plan-card--light {
    --plan-color: #f5758f;
    --plan-lead-bg: #FEF2D8;
    --plan-target-bg: #FDF1F2;
}

.plan-card--standard {
    /* --plan-color: #5F9B82; */
    --plan-color: #3F8068;
    --plan-lead-bg: #E5F0EB;
    --plan-target-bg: #EEF6F2;
    /* --plan-color: #1A3B6E;
    --plan-lead-bg: #E9EEF7;
    --plan-target-bg: #F3F5FB; */
}

.plan-card--subscription {
    --plan-color: #6652AA;
    --plan-lead-bg: #EDE8F6;
    --plan-target-bg: #F5F1F8;
}


/* ==========================================
   リボン
========================================== */

.plan-card__corner {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 28px 0 0 0;
    z-index: 5;
}


/* リボン本体 */
.plan-card__ribbon {
    position: absolute;
    top: 25px;
    left: -42px;

    width: 165px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .35),
            transparent 35%,
            rgba(0, 0, 0, .12)),
        var(--plan-color);

    color: #fff;
    font-size: .85rem;
    font-weight: 700;

    border-radius: 3px;

    transform: rotate(-45deg);

    box-shadow:
        0 5px 12px rgba(0, 0, 0, .2);

    z-index: 10;
}

.plan-card__ribbon img {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

/* 内側レースライン */
.plan-card__ribbon::before {
    content: "";
    position: absolute;

    top: 5px;
    left: 25px;
    right: 25px;

    border-top: 1px dashed rgba(255, 255, 255, .75);
}


/* 折り返し影 */
.plan-card__corner::before,
.plan-card__corner::after {
    content: "";
    position: absolute;

    width: 8px;
    height: 8px;

    background: rgba(0, 0, 0, .2);
}


/* 左側の折り返し */
.plan-card__corner::before {
    top: 95px;
    left: 0px;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}


/* 上側の折り返し */
.plan-card__corner::after {
    top: 0;
    left: 95px;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}



.plan-section__note {
    margin: 35px 0 80px;
    text-align: center;

    color: #777;
    font-size: .9rem;
    line-height: 1.8;
}

@media (hover:hover) {
    .plan-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    }
}

/* ==========================================
   PLAN Responsive
========================================== */


/* タブレット〜小型PC */
@media screen and (max-width: 1100px) {

    .plan-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* 1列目はライトプランのみ */
    .plan-card:first-child {
        grid-column: 1 / -1;
        width: min(100%, 500px);
        justify-self: center;
    }

    .plan-card {
        padding: 35px 25px 30px;
    }


    .plan-card__title {
        font-size: 1.55rem;
    }


    .plan-fee__label {
        width: 60%;
        padding-right: 10px;
        gap: 8px;
        font-size: .95rem;
    }


    .plan-fee__price {
        width: 40%;
        padding-left: 10px;
        font-size: 1.2rem;
    }


    .plan-card__target img {
        width: 42px;
    }


    /* 横長ライトプラン */
    .plan-card:first-child .plan-card__fees {
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

}


/* スマホ */
@media screen and (max-width: 768px) {


    .plan-section__lead {
        margin-bottom: 35px;
        padding: 10px 10px;
        font-size: 0.95rem;
    }


    .plan-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /* 横幅指定解除 */
    .plan-card:first-child {
        grid-column: auto;
    }


    .plan-card {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
        padding: 30px 25px 25px;
        border-radius: 20px;
    }


    .plan-card__header {
        margin-left: -5px;
        margin-right: -5px;
    }


    .plan-card__title {
        font-size: 1.55rem;
    }


    .plan-card__number span {
        width: 42px;
        height: 42px;
        font-size: 1.8rem;
    }


    .plan-card__lead {
        font-size: 1rem;
    }


    .plan-fee {
        padding: 10px 0;
    }


    .plan-fee__label {
        width: 62%;
        font-size: .85rem;
        gap: 8px;
    }


    .plan-fee__price {
        width: 38%;
        font-size: 1.15rem;
    }


    .plan-fee__icon {
        width: 28px;
        height: 28px;
    }


    .plan-fee__icon img {
        width: 17px;
        height: 17px;
    }


    .plan-card__target {
        padding: 12px;
        font-size: .9rem;
    }


    .plan-card__target img {
        width: 38px;
    }


    .plan-card__target span {
        text-align: left;
    }


    .plan-subscription__message {
        font-size: 1.25rem;
    }


    .plan-year-number {
        font-size: 2.7rem;
    }


    .plan-year-text {
        font-size: 1.7rem;
    }


    .plan-subscription__total {
        gap: 15px;
        padding: 14px;
    }


    .plan-subscription__total small {
        font-size: 1.2rem;
    }


    .plan-subscription__total strong span {
        font-size: 3.2rem;
    }

}


/* 小型スマホ */
@media screen and (max-width: 480px) {


    .plan-card {
        padding: 25px 20px 25px;
    }


    .plan-card__title {
        font-size: 1.4rem;
    }


    .plan-fee__label {
        width: 60%;
        font-size: .8rem;
    }


    .plan-fee__price {
        width: 40%;
        font-size: 1.05rem;
    }


    .plan-card__target {
        gap: 8px;
    }


    .plan-card__target img {
        width: 34px;
    }


    .plan-subscription__total strong span {
        font-size: 2.8rem;
    }

}

/* ==========================================
   価格を抑えられる理由 比較
========================================== */

.support-compare {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 70px;
}

.support-column {
    position: relative;
    width: 340px;
}

.support-column__title {
    min-height: 65px;
    margin: 0 0 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--color-text);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
}

.support-column__title span {
    color: var(--color-primary);
}


/* ==========================================
   比較枠
========================================== */

.support-frame {
    padding: 20px;
    border-radius: 24px;
}

.support-frame--old {
    border: 4px solid #999;
}

.support-frame--new {
    border: 4px solid var(--color-primary);
    margin-top: 120px;
}


/* ラベル */

.support-frame__label {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 15px;

    border-radius: 18px;

    font-weight: 700;
    line-height: 2;
    text-align: center;
}

.support-frame--old .support-frame__label {
    min-height: 160px;

    background: #888;
    color: #fff;
}

.support-frame--new .support-frame__label {
    min-height: 40px;

    background: #f9d9e2;
    color: var(--color-primary);

    font-size: 1.2rem;
}


/* サービスブロック */

.support-block {
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 70px;
    margin-top: 12px;

    border-radius: 14px;

    color: #fff;
    font-weight: 700;
    text-align: center;
}

.support-block--profile {
    background: #5b8fc9;
}

.support-block--meeting {
    background: #e5b94c;
}

.support-block--support {
    background: #6dbb8a;
}


/* ==========================================
   圧縮部分
========================================== */

.support-column--new {
    position: relative;
}

.support-compress {
    position: absolute;
    top: 65px;
    left: 145px;
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 2;
}


/* 矢印 */
.support-compress__arrow {
    position: relative;
    width: 45px;
    height: 80px;
    background: var(--color-primary);
}

.support-compress__arrow::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 50px solid var(--color-primary);
    transform: translateX(-50%);
}


/* 吹き出し */
.support-compress__bubble {
    position: relative;
    padding: 14px 20px;
    background: #fff0f6;
    border: 2px solid #f3bfd3;
    border-radius: 18px;
    color: var(--color-primary);
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.7;
    white-space: nowrap;
}

.support-compress__bubble span {
    display: block;
}


/* 吹き出し三角 */
.support-compress__bubble::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 10px 13px 10px 0;
    border-style: solid;
    border-color: transparent #f3bfd3 transparent transparent;
}

.support-compress__bubble::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 11px 8px 0;
    border-style: solid;
    border-color: transparent #fff0f6 transparent transparent;
}

/* ==========================================
   説明文
========================================== */

.plan-reason-text {
    max-width: 760px;
    margin: 35px auto 0;
    color: var(--color-text-light);
    font-size: .95rem;
    line-height: 2;
    text-align: center;
}

.plan-reason-text::before {
    content: "価格を抑えられる理由";
    display: block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ==========================================
   オンライン対応
========================================== */

.plan-online {
    margin-top: 50px;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--color-border);
    text-align: center;
}

.plan-online h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.plan-online p {
    margin-top: 20px;
}

/* ==========================================
   ボタン
========================================== */
.plan-section__btn {
    display: flex;

    margin: 50px auto 0;
}

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

@media(max-width:768px) {
    .support-compare {
        gap: 8px;
        align-items: flex-start;
    }

    .support-column {
        width: calc(50% - 4px);
    }

    .support-column__title {
        display: block;
        text-align: center;
        min-height: 50px;
        margin-bottom: 10px;
        font-size: .8rem;
        line-height: 1.4;
    }

    .support-column__title span {
        display: block;
    }

    .support-frame {
        padding: 8px;
        border-radius: 15px;
    }

    .support-frame--old,
    .support-frame--new {
        border-width: 2px;
    }

    .support-frame--new {
        margin-top: 55px;
    }

    .support-frame__label {
        margin-bottom: 8px;
        border-radius: 10px;
        font-size: .7rem;
        line-height: 1.5;
    }

    .support-frame--old .support-frame__label {
        min-height: 90px;
    }

    .support-frame--new .support-frame__label {
        min-height: 45px;
        font-size: .7rem;
    }

    .support-block {
        min-height: 45px;
        margin-top: 6px;
        border-radius: 8px;
        font-size: .7rem;
        line-height: 1.3;
    }

    .support-compress {
        position: absolute;
        top: 50px;
        left: 70%;
        transform: translateX(-50%);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .support-compress__arrow {
        width: 18px;
        height: 38px;
    }

    .support-compress__arrow::after {
        bottom: -12px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 16px solid var(--color-primary);
    }

    .support-compress__bubble {
        display: block;
        padding: 5px 8px;
        border-radius: 8px;
        font-size: .55rem;
        line-height: 1.3;
        white-space: nowrap;
    }

    .support-compress__bubble::before,
    .support-compress__bubble::after {
        display: none;
    }

    .plan-reason-text {
        margin-top: 30px;
        padding: 20px;
        font-size: .8rem;
    }

    .plan-online {
        margin-top: 20px;
        padding: 20px;
    }

    .plan-online h3 {
        font-size: 1.2rem;
    }

    .plan-online p {
        margin-top: 10px;
        font-size: .8rem;
    }
}

/* ==========================================
   IBJ
========================================== */

.ibj-section {
    background: #ffeef4;
}

.ibj-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border: 1px solid #f2d8e3;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(200, 120, 150, .08);
}

.ibj-lead {
    margin-bottom: 50px;
    text-align: center;
    color: #555;
    line-height: 2;
}

.ibj-lead p {
    margin: 0 0 20px;
}

.ibj-lead p:last-child {
    margin-bottom: 0;
}

.ibj-graph {
    margin: 50px 0 30px;
    text-align: center;
}

.ibj-graph img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
}

.ibj-text {
    margin-bottom: 40px;
    text-align: center;
    color: #555;
    line-height: 2;
}

.ibj-text p {
    margin: 0;
}

.ibj-graph--01 {
    margin-top: 0;
}

.ibj-graph--03 {
    margin-bottom: 0;
}

@media (max-width: 768px) {

    .ibj-content {
        padding: 35px 20px;
        border-radius: 20px;
    }

    .ibj-lead {
        margin-bottom: 35px;
        font-size: .8rem;
        text-align: left;
    }

    .ibj-lead p {
        margin-bottom: 15px;
    }

    .ibj-graph {
        margin: 35px 0 20px;
    }

    .ibj-graph img {
        border-radius: 12px;
    }

    .ibj-text {
        margin-bottom: 30px;
        font-size: .8rem;
        text-align: left;
    }

}

/* ==========================================
   Reason
========================================== */

.section.reason-section {
    background: #fff;
    /* padding-bottom: 20px; */
}

.reason-lead {
    margin: 35px auto 60px;
    text-align: center;
    line-height: 1.9;
}

.reason-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.reason-item {
    padding: 35px 20px 30px;
    background: #fff;
    border: 1px solid #f0dbe3;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
}

.reason-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 80px;
    margin: 0 auto 25px;
}

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

.reason-item h3 {
    margin-bottom: 15px;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

.reason-item p {
    color: var(--color-text-light);
    font-size: .9rem;
    line-height: 1.8;
    text-align: left;
    max-width: 220px;
    margin: 0 auto;
}


/* こんな方も大歓迎 */
.welcome-area {
    position: relative;
    margin-top: 90px;
    padding-bottom: 0;
    overflow: hidden;
    border: 1px solid #f0dbe3;
    border-radius: 24px;
    background: linear-gradient(135deg,
            #fff 0%,
            #fffafd 55%,
            #fff3f7 100%);
}

.welcome-title {
    margin: 20px 0;
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

.welcome-content {
    padding: 45px;
}

.welcome-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    width: calc(100% - 160px);
}

.welcome-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #ffffff;
    border: 2px solid #f3c5d5;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

.welcome-item__mark {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
}

.welcome-item p {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
}

.welcome-image {
    position: absolute;
    right: -60px;
    bottom: 0px;
    width: 400px;
    z-index: 5;
}

.welcome-image img {
    display: block;
    width: 100%;
}

@media (hover:hover) {
    .reason-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    }
}

@media(max-width:768px) {

    .reason-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .reason-item {
        padding: 25px 15px 20px;
        border-radius: 16px;
    }

    .reason-item__icon {
        width: 100px;
        height: 70px;
        margin-bottom: 18px;
    }

    .reason-item h3 {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .reason-item p {
        font-size: .8rem;
        line-height: 1.7;
        max-width: 180px;
    }

    /* こんな方も大歓迎 */
    .welcome-content {
        padding: 15px;
    }

    .welcome-list {
        width: calc(100% - 100px);
        gap: 12px;
    }

    .welcome-item {
        gap: 10px;
        padding: 14px 12px;
    }

    .welcome-item__mark {
        width: 30px;
        height: 30px;
        font-size: .9rem;
    }

    .welcome-item p {
        font-size: .85rem;
    }

    .welcome-image {
        right: -50px;
        bottom: -10px;
        width: 270px;
    }

}

@media(max-width:480px) {

    .reason-list {
        gap: 15px;
    }

    .reason-item {
        padding: 20px 10px;
    }

    .reason-item p br {
        display: none;
    }

    /* こんな方も歓迎 */
    .welcome-area {
        margin-top: 70px;
        border-radius: 20px;
    }

    .welcome-title {
        position: relative;
        z-index: 2;
        margin: 18px 0 10px;
        padding: 0 70px 0 15px;
        font-size: 1.4rem;
        line-height: 1.5;
        /* text-align: left; */
    }

    .welcome-content {
        position: relative;
        padding: 15px 15px 25px;
        z-index: 10;
    }

    .welcome-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .welcome-item {
        gap: 7px;
        padding: 11px 8px;
        border-width: 1px;
        border-radius: 10px;
    }

    .welcome-item__mark {
        width: 25px;
        height: 25px;
        font-size: .8rem;
    }

    .welcome-item p {
        font-size: .78rem;
        line-height: 1.4;
    }

    .welcome-image {
        right: -35px;
        top: 18px;
        bottom: auto;
        width: 160px;
        border-radius: 50%;
        overflow: hidden;
    }
}

/* ==========================================
   キャンペーン
========================================== */

.campaign-section {
    padding: 0px;
    z-index: 10;
    position: relative;
}

.campaign-box {
    padding: 20px;
    background: var(--color-primary);
    border-radius: 5px;
    text-align: center;
}

.campaign-box__lead {
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
    letter-spacing: .08em;
}

.campaign-box__title {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
}

.campaign-card {
    position: relative;
    margin: 10px auto 0;
    max-width: 900px;
    padding: 10px 10px 15px;
    background: #fff;
    border-radius: 20px;
}

.campaign-card__corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 0;
    z-index: 5;
}

.campaign-card__ribbon {
    position: absolute;
    top: 18px;
    left: -42px;
    z-index: 20;
    width: 150px;
    padding: 8px 0;
    background: linear-gradient(135deg, #ffe27a, #ffd34d);
    color: #7b4b00;
    font-size: .85rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: .08em;
    transform: rotate(-45deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}


.campaign-card__badge {
    position: absolute;
    top: -18px;
    left: 30px;
    padding: 8px 18px;
    background: #ffd34d;
    border-radius: 999px;
    color: #7b4b00;
    font-size: .9rem;
    font-weight: 700;
}

.campaign-card__heading {
    margin-bottom: 20px;
    color: var(--color-primary);
    font-size: 1.6rem;
}

.campaign-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.campaign-price__label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: .9rem;
}

.campaign-price__value {
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.campaign-price__value del {
    color: #999;
}

.campaign-price__value--sale {
    color: var(--color-primary);
}

.campaign-price__tax {
    display: block;
    margin-top: 6px;
    font-size: .85rem;
    color: var(--color-text-light);
}

.campaign-price__arrow {
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 28px solid var(--color-primary);
}

.campaign-card__off {
    display: inline-block;
    margin-top: 0px;
    padding: 10px 28px;
    background: #ffe7ef;
    border-radius: 999px;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
}

@media(max-width:768px) {

    .campaign-section {
        padding: 0px;
    }

    .campaign-box {
        padding: 35px 20px;
    }

    .campaign-box__title {
        font-size: 1.5rem;
    }

    .campaign-card {
        margin-top: 35px;
        padding: 35px 20px;
    }

    .campaign-price {
        flex-direction: column;
        gap: 20px;
    }

    .campaign-price__arrow {
        transform: rotate(90deg);
        border-top-width: 15px;
        border-bottom-width: 15px;
        border-left-width: 24px;
    }

    .campaign-card__off {
        margin-top: 25px;
        font-size: 1.05rem;
    }
}


/* ==========================================
   受賞・メディア掲載
========================================== */
.achievement-section {
    background: #fff;
}

.achievement-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0dbe3;
    border-radius: 18px;
    transition: .3s;
}

.achievement-item:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.achievement-item__image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
    padding: 20px;
    background: #faf7f8;
    border-bottom: 1px solid #f0dbe3;
}

.achievement-item__image img {
    display: block;
    max-width: 240px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.achievement-item__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 5px;
    text-align: center;
}

.achievement-item__content h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}

.achievement-item__content p {
    margin: 0;
    color: var(--color-text-light);
    font-size: .9rem;
    line-height: 1.8;
}

@media (max-width:768px) {

    .achievement-list {
        grid-template-columns: 1fr;
        gap: 18px;
        width: min(100%, 420px);
        margin: 0 auto;
    }

    .achievement-item__image {
        height: 110px;
        padding: 16px;
    }

    .achievement-item__content {
        padding: 18px 5px;
    }

    .achievement-item__content h3 {
        margin-bottom: 10px;
        font-size: 1rem;
    }

    .achievement-item__content p {
        font-size: .85rem;
        line-height: 1.7;
    }
}

/* ==========================================
   カウンセラー紹介
========================================== */

.counselor-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(231, 52, 123, .05), transparent 300px),
        radial-gradient(circle at 80% 80%, rgba(231, 52, 123, .04), transparent 260px),
        #fff8fb;
}

.counselor-section .c-container {
    position: relative;
    z-index: 2;
}

.counselor-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.counselor-bg .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 52, 123, .08);
}

.counselor-bg .circle--1 {
    top: -60px;
    left: -70px;
    width: 220px;
    aspect-ratio: 1;
    animation: counselorFloat1 24s linear infinite;
}

.counselor-bg .circle--2 {
    top: 120px;
    right: 80px;
    width: 110px;
    aspect-ratio: 1;
    background: rgba(231, 52, 123, .12);
    animation: counselorFloat2 20s linear infinite;
}

.counselor-bg .circle--3 {
    bottom: 80px;
    left: 18%;
    width: 45px;
    aspect-ratio: 1;
    background: rgba(231, 52, 123, .18);
    animation: counselorFloat3 18s linear infinite;
}

.counselor-bg .circle--4 {
    right: -120px;
    bottom: -80px;
    width: 300px;
    aspect-ratio: 1;
    animation: counselorFloat2 28s linear infinite reverse;
}

@keyframes counselorFloat1 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -18px);
    }

    50% {
        transform: translate(-10px, -35px);
    }

    75% {
        transform: translate(-18px, -10px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes counselorFloat2 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-20px, 18px);
    }

    50% {
        transform: translate(12px, 35px);
    }

    75% {
        transform: translate(18px, 8px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes counselorFloat3 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(10px, -10px);
    }

    50% {
        transform: translate(-12px, -18px);
    }

    75% {
        transform: translate(-8px, 8px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.counselor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
}

.counselor-card {
    position: relative;
    display: flex;
    gap: 28px;
    padding: 30px;
    background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
    border: 1px solid #f2d8e3;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    transition: .35s;
    z-index: 1;
}

.counselor-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid #f6bfd1;
    border-radius: 22px;
    transform: translate(-10px, -10px);
    z-index: -1;
    transition: .35s;
}

@media (hover: hover) {
    .counselor-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(231, 52, 123, .12);
    }
}

.counselor-card__image {
    flex-shrink: 0;
    width: 170px;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    background: #fafafa;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.counselor-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.counselor-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.counselor-card__content h3 {
    position: relative;
    display: inline-block;
    margin: 0 0 12px;
    padding-bottom: 10px;
    color: var(--color-primary);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.4;
}

.counselor-card__content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 140px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-primary);
}

.counselor-card__position {
    margin-bottom: 18px;
    color: #888;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.counselor-card__text {
    color: #555;
    font-size: .95rem;
    line-height: 1.9;
    text-align: left;
}

@media (max-width: 1100px) {
    .counselor-card__image {
        width: 140px;
    }
}

@media (max-width:768px) {
    .counselor-bg .circle--1 {
        width: 160px;
        top: -40px;
        left: -50px;
    }

    .counselor-bg .circle--2 {
        width: 80px;
        right: 20px;
    }

    .counselor-bg .circle--3 {
        width: 30px;
    }

    .counselor-bg .circle--4 {
        width: 180px;
        right: -70px;
        bottom: -50px;
    }

    .counselor-list {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 20px 14px;
    }

    .counselor-card {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 18px 14px;
        text-align: center;
    }

    .counselor-card::after {
        transform: translate(-6px, -6px);
    }

    .counselor-card__image {
        width: 140px;
        aspect-ratio: 4 / 5;
        border-radius: 12px;
    }

    .counselor-card__content {
        width: 100%;
        align-items: center;
    }

    .counselor-card__content h3 {
        margin-bottom: 7px;
        padding-bottom: 7px;
        font-size: 1.05rem;
    }

    .counselor-card__content h3::after {
        left: 50%;
        width: 70px;
        height: 2px;
        transform: translateX(-50%);
    }

    .counselor-card__position {
        margin-bottom: 8px;
        font-size: .72rem;
        line-height: 1.5;
        letter-spacing: .04em;
    }

    .counselor-card__text {
        font-size: .75rem;
        line-height: 1.7;
    }

}

@media (max-width:480px) {

    .counselor-list {
        gap: 16px 10px;
    }

    .counselor-card {
        padding: 14px 10px;
        gap: 10px;
    }

    .counselor-card__image {
        width: 80px;
    }

    .counselor-card__content h3 {
        font-size: .95rem;
    }

    .counselor-card__position {
        font-size: .6rem;
    }

    .counselor-card__text {
        font-size: .5rem;
        line-height: 1.6;
    }
}

/* ==========================================
   問い合わせ LINE, Instagram
========================================== */

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px 10px 0px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px 20px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid #f2d8e3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.contact-card__image {
    flex-shrink: 0;
    width: 110px;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    background: #fafafa;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
}

.contact-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card__content {
    flex: 1;
}

.contact-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.contact-card__title img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.contact-card__title h3 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}

.contact-card__title--line h3 {
    color: #06c755;
}

.contact-card__title--instagram h3 {
    color: #c13584;
    font-size: 1.25rem;
}

.contact-card__content p {
    margin-bottom: 25px;
    color: #555;
    font-size: .95rem;
    line-height: 1.8;
    text-align: left;
}

.contact-card__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

.contact-card__btn span {
    font-size: 1.4rem;
    line-height: 1;
}

.contact-card__btn--line {
    background: #06c755;
}

.contact-card__btn--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.contact-card__btn:hover {
    opacity: .8;
    color: #fff;
}

@media(max-width:768px) {

    .contact-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px 0;
        width: min(100%, 520px);
        margin: 0 auto;
    }

    .contact-card {
        gap: 20px;
        padding: 20px 10px;
    }

    .contact-card__image {
        width: 85px;
        height: 170px;
    }

    .contact-card__title h3 {
        font-size: 1.1rem;
    }

    .contact-card__title img {
        width: 28px;
        height: 28px;
    }

    .contact-card__content p {
        font-size: .85rem;
        margin-bottom: 18px;
        padding-left: 20px;
    }

    .contact-card__btn {
        padding: 12px 15px;
        font-size: .9rem;
    }

}


/* ==========================================
   成婚実績
========================================== */

.results-section {
    background: #fff;
}

.results-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.result-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #f2d8e3;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.result-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(231, 52, 123, .12);
}

.result-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid #f2d8e3;
}

.result-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card__content {
    padding: 24px;
}

.result-card__content h3 {
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.result-card__content p {
    color: #555;
    font-size: .92rem;
    line-height: 1.8;
    text-align: left;
}

.result-card--sp-only {
    display: none;
}

.results-section__btn-wrap {
    display: flex;
    justify-content: center;
}

.results-section__btn {
    width: fit-content;
    flex-shrink: 0;
    margin: auto;
}

@media (max-width: 1100px) {

    .results-list {
        gap: 20px;
    }

    .result-card__content {
        padding: 18px;
    }

    .result-card__content h3 {
        font-size: 1.05rem;
    }

    .result-card__content p {
        font-size: .85rem;
    }
}

@media(max-width:768px) {

    .results-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        width: 100%;
        margin: 0 auto 40px;
    }

    .result-card--sp-only {
        display: block;
    }

    .result-card {
        border-radius: 16px;
    }

    .result-card__content {
        padding: 14px 10px 16px;
    }

    .result-card__content h3 {
        margin-bottom: 8px;
        font-size: .95rem;
        line-height: 1.5;
    }

    .result-card__content p {
        font-size: .75rem;
        line-height: 1.7;
    }

}

.flow-section {
    background: #fff8fb;
}

.flow-list {
    max-width: 900px;
    margin: auto;
}

.flow-item {
    position: relative;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 30px;
    align-items: stretch;
    padding-bottom: 40px;
}

/* タイムライン */

.flow-item::before {
    content: "";
    position: absolute;
    left: 55px;
    top: 105px;
    bottom: 0;
    width: 2px;
    background: #f4bfd2;
}

.flow-item--last::before {
    display: none;
}

.flow-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-item__step {
    color: var(--color-primary);
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: .08em;
    background: #fff8fb;
    padding: 3px 0;

}

.flow-item__step span {
    display: block;
    margin-top: 4px;
    font-size: 2rem;
    line-height: 1;
}

.flow-item__icon {
    position: relative;
    overflow: hidden;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100px;
    height: 100px;
    margin-top: 18px;

    border-radius: 50%;
    background: #fff;
    border: 2px solid #f4bfd2;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);

    transition:
        border-color .35s,
        box-shadow .35s;
}

.flow-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.flow-item:hover .flow-item__icon {
    border-color: var(--color-primary);
    box-shadow:
        0 10px 24px rgba(0, 0, 0, .08),
        0 0 0 6px rgba(231, 52, 123, .10);
}

.flow-item:hover .flow-item__icon img {
    transform: scale(1.08);
}

/*--------------------
content
--------------------*/

.flow-item__content {
    padding: 25px 30px;
    background: #fff;
    border: 1px solid #f2d8e3;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
}

.flow-item__content h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
    font-family: var(--font-gothic);
    font-size: 1.25rem;
    font-weight: 600;
}

.flow-item__content p {
    color: #555;
    line-height: 1.9;
}

/*--------------------
link cta
--------------------*/

.flow-detail-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .8em;
    margin-top: 16px;
    color: var(--color-primary);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: .25s;
}

.flow-detail-link::after {
    content: "";
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5l7 7-7 7' fill='none' stroke='%23E7347B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .3s ease;
}

.flow-detail-link:hover {
    opacity: .8;
}

.flow-detail-link:hover::after {
    transform: translateX(4px);
}

.flow-cta {
    margin-top: 60px;
    text-align: center;
}

.flow-cta .c-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
}


/*=====================================
Tablet
=====================================*/

@media (max-width:768px) {

    .flow-list {
        max-width: 520px;
    }

    .flow-item {
        grid-template-columns: 70px 1fr;
        gap: 20px;
        padding-bottom: 32px;
    }

    .flow-item::before {
        left: 32px;
        top: 88px;
    }

    .flow-item__step {
        font-size: .7rem;
    }

    .flow-item__step span {
        font-size: 1.45rem;
    }

    .flow-item__icon {
        width: 64px;
        height: 64px;
        margin-top: 14px;
    }

    .flow-item__content {
        padding: 20px;
    }

    .flow-item__content h3 {
        font-size: 1.05rem;
    }

    .flow-item__content p {
        font-size: .9rem;
        line-height: 1.8;
    }

    .flow-detail-link {
        margin-top: 14px;
        font-size: .84rem;
    }

    .flow-cta {
        margin-top: 45px;
    }

    .flow-cta .c-button {
        width: 100%;
        max-width: 420px;
        min-width: 0;
    }
}

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

@media (max-width:480px) {

    .flow-item {
        gap: 16px;
    }

    .flow-item::before {
        left: 35px;
        top: 82px;
    }

    .flow-item__step {
        font-size: .65rem;
    }

    .flow-item__step span {
        font-size: 1.3rem;
    }

    .flow-item__icon {
        width: 58px;
        height: 58px;
    }

    .flow-item__content {
        padding: 18px;
    }

    .flow-item__content h3 {
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .flow-item__content p {
        font-size: .85rem;
    }

    .flow-detail-link {
        margin-top: 12px;
        font-size: .8rem;
    }

    .flow-cta {
        margin-top: 36px;
    }

}


/*==============================
FAQ
==============================*/

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: #fff;
    border: 1px solid #f2d8e3;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .04);
    overflow: hidden;

    transition: transform .25s ease, box-shadow .25s ease;
}

@media (hover: hover) {
    .faq-item:hover {
        transform: translateY(-3px);
    }
}

.faq-item__question {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 30px;
    border: 0;
    background: none;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    background: #fff4f8;
    color: var(--color-text);
}

.faq-item.is-open .faq-item__question {
    background: #fff0f6;
}

.faq-item__label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e7347b, #f39abb);
    color: #fff;
    font-family: var(--font-gothic);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(231, 52, 123, .2);
}

.faq-item__icon {
    display: none;
    /* position: absolute;
    right: 30px;
    width: 14px;
    height: 14px; */
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: .3s;
}

.faq-item.is-open .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
    height: auto;
    overflow: visible;

    /* height: 0;
    overflow: hidden;
    transition: height .35s ease; */
}

.faq-item__answer-inner {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px 30px;
    color: #555;
    line-height: 1.8;
}

.faq-item__answer-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #f4bfd2;
    color: var(--color-primary);
    font-size: .9rem;
    font-weight: 700;
}

.faq-item__answer-inner p {
    margin: 0;
}

.faq-item__answer-inner span {
    margin-right: 10px;
    color: var(--color-primary);
    font-weight: 700;
}

.faq-item__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

@media(max-width:768px) {

    .faq-item__question {
        padding: 20px;
        padding-right: 50px;
        font-size: .9rem;
    }

    .faq-item__icon {
        right: 20px;
    }

    .faq-item__answer-inner {
        padding: 10px 20px 20px;
        font-size: .8rem;
    }

}

/*==============================
Contact
==============================*/

.contact-section {
    background: #fff0f4;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.contact-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 55px 70px 50px;
    background: #fff;
    border: 1px solid #f2d8e3;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(200, 120, 150, .08);
}

.contact-info {
    text-align: center;
}

/* タイトル */

.contact-info h3 {
    display: inline-block;
    margin: 0 0 20px;
    padding: 8px 35px;

    color: var(--color-primary);
    background: #fff0f4;

    border-radius: 999px;

    font-size: 1.4rem;
    font-weight: 700;
}

/* 説明 */

.contact-info p {
    margin: 0 0 30px;

    color: #555;
    line-height: 1.9;
}

/* CTA */

.contact-info .flow-cta {
    margin: 0 auto 45px;
}

.contact-info .flow-section__btn {
    margin: 0 auto;
}

/* 会社情報 */

.contact-info dl {
    max-width: 500px;
    margin: 0 auto;
    padding-top: 30px;

    text-align: left;

    border-top: 1px solid #f2d8e3;
}

.contact-info dl div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;

    padding: 16px 0;

    border-bottom: 1px solid #f2d8e3;
}

.contact-info dt {
    color: var(--color-primary);
    font-weight: 700;
}

.contact-info dd {
    margin: 0;

    color: #555;
    line-height: 1.8;
}


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

@media (max-width: 768px) {

    .contact-content {
        padding: 35px 20px;
        border-radius: 22px;
    }

    .contact-info h3 {
        margin-bottom: 18px;
        padding: 8px 25px;

        font-size: 1.15rem;
    }

    .contact-info p {
        margin-bottom: 25px;

        font-size: .9rem;
        line-height: 1.8;
    }

    .contact-info .flow-cta {
        margin-bottom: 35px;
    }

    .contact-info dl {
        padding-top: 25px;
    }

    .contact-info dl div {
        grid-template-columns: 1fr;
        gap: 8px;

        padding: 15px 0;
    }

    .contact-info dt {
        font-size: .9rem;
    }

    .contact-info dd {
        font-size: .9rem;
        line-height: 1.7;
    }

}