@charset "UTF-8";

:root {
    --ff-en: "Montserrat", sans-serif;
    --ff-num: "Inter", sans-serif;
    --ff-zenmaru: "Zen Maru Gothic", sans-serif;
    --pk01: #F54D9E;
    --pk02: #FF57B1;
    --pk03: #FE80B6;
    --bl01: #00C1DC;
    --bl02: #E0F4F8;
    --bk: #333333;
    --wh: #FFFFFF;
    --navy: #0155A5;
    --mv-grd: linear-gradient(86.62deg, #B5E1FF 1.57%, #FE89BB 99.53%);
    --voice-grd: linear-gradient(297.73deg, #FFCFE3 2.41%, #D0E9FA 88.27%);
    --cta-grd: linear-gradient(104.87deg, #FE89BB 29.5%, #D0E5F8 93.43%);
    --padding-10: clamp(10px, calc(10 / 380 * 100vw), 20px);
    --padding-15: clamp(15px, calc(15 / 380 * 100vw), 30px);
    --padding-20: clamp(20px, calc(20 / 380 * 100vw), 40px);
    --padding-30: clamp(30px, calc(30 / 380 * 100vw), 60px);
    --padding-40: clamp(40px, calc(40 / 380 * 100vw), 80px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: inherit;
    text-decoration: none;
    list-style: none;
}

a { 
    display: block;
    transition: .3s ease;
}

@media (min-width: 768px) {
    a:hover {
        opacity: 0.6;
    }
}


img {
    display: block;
    width: 100%;
    object-fit: contain;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: clamp(15px, calc(15 / 380 * 100vw), 18px);
    line-height: 1.5;
    letter-spacing: 0;
    color: var(--bk);
}

.--pc {
    display: none;
}

@media (min-width: 768px) {
    .--sp {
        display: none;
    }

    .--pc {
        display: block;
    }
}

.container {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--wh);
}

.header .container {
    width: 95%;
    height: 68px;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .header .container {
        width: 92%;
        max-width: 1400px;
        height: 120px;
    }
}

.header__right {
    display: contents;
}

@media (min-width: 768px) {
    .header__right {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


@media (min-width: 768px) {
    .header__logo {
        gap: 20px;
    }
}

.header__logo img {
    width: clamp(30px, calc(55/ 380 * 100vw), 55px)
}
.header__cta img {
    height: 50px;
}

@media (min-width: 768px) {
    .header__logo img {
        width: 80px;
    }

    .header__cta img {
        height: 77px;
    }
}

.header__logo-text {
    font-size: clamp(7px, calc(8 / 380 * 100vw), 10px);
    white-space: nowrap;
    line-height: 1.8;
    font-weight: 700;
}

.menu {
    width: 15%;
    max-width: 60px;
    max-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@media (min-width: 768px) {
    .menu{
        width: 60px;
    }
}

.menu__button {
    position: relative;
    width: 80%;
    height: 40px;
}

.menu__button span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--bk);
    transition: transform .3s ease;
}
.menu__button span:nth-of-type(1) {
    top: calc(30% - 1px);
}

.menu__button span:nth-of-type(2) {
    top: calc(70% - 1px);
}

.menu__button.active span:nth-of-type(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.menu__button.active span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
    width: 100%;
}

.menu__text {
    text-align: center;
    height: 21px;
    font-size: clamp(6px, calc(14 / 380 * 100vw), 14px);
    padding: 0 5px;
    font-family: var(--ff-en);
}

.menu__navi {
    position: fixed;
    top: 68px;
    right: -100%;
    width: 100%;
    height: auto;
    transition: right 0.3s ease;
    z-index: 1001;
    background: #ffffffc0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5em 0;
    gap: 2em;
}

@media (min-width: 768px) {
    .menu__navi {
        top: 120px;
        height: auto;
    }
}

.menu__navi.opened {
    right: 0;
}


/* Fix button */
.fix-btn {
    position: fixed;
    bottom: 0;
    left:0;
    width: 100%;
    z-index: 1000;
    display: none;
}
.fix-btn.show {
  display: block;
}
.fix-btn__inner {
    display: flex;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: var(--navy);
    font-size: 3.5vw;
    font-weight: 700;
    box-shadow: 0 -2px 4px 0 rgba(0,0,0,.2);
}
.fix-btn__link {
    flex: 1;
    display: block;
    padding: 10px 2px;
    padding: 3%;
    border-radius: 100vh;
    background: var(--wh);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.fix-btn__sttl {
    text-align: center;
    color: #303030;
    line-height: 1.2;
    flex: 1;
}
.fix-btn__ico {
    width: 20%;
    filter: brightness(0) saturate(100%) invert(18%) sepia(91%) saturate(2089%) hue-rotate(195deg) brightness(101%) contrast(99%);
}

@media (min-width: 768px) {
    .fix-btn {
        bottom: 2%;
        left: auto;
        right: 1%;
        width: 150px;
    }
    .fix-btn__inner {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0;
        background: none;
        box-shadow: none;
    }
    .fix-btn__link {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 150px;
        border-radius: 50vh;
        background: var(--navy);
        box-shadow: 0px 4px 10.1px 0px #00000029;
    }
    .fix-btn__sttl {
        padding: 0;
        background: none;
        border-radius: 0;
        color: var(--wh);
        font-size: 15px;
        line-height: 1.5;
        flex: 0 0 auto;
    }
    .pink .fix-btn__sttl {
        line-height: 1.2;
    }
    .fix-btn__ico {
        width: 20px;
        filter: none;
    }
}


/* MV Section */
.mv {
    background: url(../img/mv-bg.png);
    background-size: cover;
    margin-top: 68px;
    height: 100vw;
    max-height: 70vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .mv {
        margin-top: 120px;
    }
}

@media (min-width: 1024px) {
    .mv {
        height: 500px;
    }
}

.mv .container {
    position: relative;
    height: 100%;
    max-width: 800px;
}

.mv-bg__woman {
    position: absolute;
    width: 93%;
    max-width: 400px;
    top: clamp(6px, 1%, 30px);
    right: -10%;
    z-index: 1;
}

@media (min-width: 1024px) {
    .mv-bg__woman {
        top: auto;
        bottom: 0;
    }
}

.mv-bg__text {
    position: absolute;
    width: 46%;
    top: 11%;
    left: 11%;
    z-index: 1;
}

.mv__title {
    position: absolute;
    top: 53%;
    z-index: 3;
}

.mv__title span {
    color: var(--wh);
    font-weight: 700;
    font-size: clamp(26px, calc(26 / 380 * 100vw), 52px);
    line-height: 1.8;
    padding: 2px 10px 3.5px;
    background: var(--mv-grd);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.mv__title span strong {
    font-size: clamp(32px, calc(32 / 380 * 100vw), 64px);
}

/* Link Section */
.link {
    background: var(--wh);
    padding: var(--padding-30) 0 clamp(60px, calc(60 / 380 * 100vw), 120px);
}

.link .container {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, calc(10 / 380 * 100vw), 20px);
}

.link__button {
    position: relative;
    width: 100%;
    padding: 0.684em;
    background: var(--pk01);
    border-radius: 50px;
    box-shadow: 0px 4px 8.4px 0px #FBA2CD;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(19px, calc(19 / 380 * 100vw), 24px);
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: var(--wh);
}

.link__button::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 0.5em;
    height: 0.5em;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

@media (min-width: 768px) {
    .link__button:hover {
        opacity: 1;
        transform: scale(1.1);
    }
}



/* Job List */
.job-list {
    background: var(--bl02);
}

.job-list .container {
    position: relative;
    padding: var(--padding-40) 0 var(--padding-30);
}

.job-list__title {
    position: absolute;
    top: calc(-1 * var(--padding-30));
    left: 50%;
    transform: translate(-50%, 50%);
    font-family: var(--ff-en);
    font-weight: 500;
    font-size: clamp(48px, calc(48 / 380 * 100vw), 96px);
    line-height: 0.667em;
    letter-spacing: 0.04em;
    color: #86D0F0;
    white-space: nowrap;
}

.job-list__subtitle {
    margin-bottom: clamp(5px, calc(5 / 380 * 100vw), 10px);
    text-align: center;
    font-weight: 700;
    font-size: clamp(20px, calc(20 / 380 * 100vw), 32px);
    line-height: 1.4;
    color: var(--navy);
}

.triangle {
    display: block;
    margin: 0 auto clamp(18px, calc(18 / 380 * 100vw), 36px);
    width: clamp(24px, calc(24 / 380 * 100vw), 48px);
    height: clamp(12px, calc(12 / 380 * 100vw), 24px);
    background: var(--navy);
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.job-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    align-items: start;
    gap: calc(8 / 380 * 100vw) calc(5 / 380 * 100vw);
}

.job-list__item {
    background: var(--wh);
    box-shadow: 0px 2px 4.3px 0px #5683AD61;
    border-radius: 12px;
    cursor: pointer;
}

.job-list__menu {
    position: relative;
    padding: 0.867em;
    font-weight: 700;
    color: var(--navy);
    transition: opacity .3s ease;
}

.job-list__menu::after {
    content: '+';
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 0.867em;
    transform: translateY(-50%);
    transition: transform .3s ease;
}

@media (min-width: 768px) {
    .job-list__menu:hover {
        opacity: 0.6;
    }
}

.job-list__menu.is-open::after {
    transform: translateY(-50%) rotate(45deg);
}

.job-list__submenu {
    display: none;
}

.job-list__submenu a {
    border-top: 1px solid var(--bl02);
    padding: 0.867em;
    font-weight: 700;
    font-size: clamp(14px, calc(14 / 380 * 100vw), 16px);
    color: var(--navy);
}


/* Voice Section */
.voice {
    background: var(--wh);
}

.voice .container {
    padding: var(--padding-40) 0 clamp(18px, calc(18 / 380 * 100vw), 36px);
    text-align: center;
}

.voice__title {
    margin-bottom: clamp(18px, calc(18 / 380 * 100vw), 36px);
}

.voice__title span {
    background: var(--pk02);
    padding: 0 0.364em;
    font-weight: 700;
    font-size: clamp(22px, calc(22 / 380 * 100vw), 28px);
    line-height: 1.6;
    color: var(--wh);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.voice__text {
    line-height: 1.8;
}

.voice__text .highlight {
    background: linear-gradient(transparent 80%, #FFFFA38C 80%);
}

.voice-swiper__area {
    background: var(--voice-grd);
    overflow: hidden;
}

.voice-swiper {
    padding: var(--padding-40) 0 var(--padding-20) !important;
    width: 75% !important;
    margin: 0 auto;
    overflow: visible !important;
}

.swiper-slide.voice-slide {
    position: relative;
    height: auto;
    background: var(--wh);
    border-radius: 14px;
    padding: 5% 8px 4%;
    text-align: center;
    cursor: pointer;
}

.voice-slide__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, calc(6 / 380 * 100vw), 12px);
}

.voice-slide__badge {
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(48px, calc(48 / 380 * 100vw), 64px);
    height: clamp(48px, calc(48 / 380 * 100vw), 64px);
    transform: translate(-50%, -50%);
    color: var(--navy);
    font-family: var(--ff-en);
    font-weight: 200;
    font-size: clamp(18px, calc(18 / 380 * 100vw), 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.voice-slide__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--wh);
    width: clamp(48px, calc(48 / 380 * 100vw), 64px);
    height: clamp(48px, calc(48 / 380 * 100vw), 64px);
    border-radius: 50%;
    z-index: -1;
}

.voice-slide__title {
    font-family: var(--ff-zenmaru);
    font-weight: 700;
    font-size: clamp(13px, calc(13 / 380 * 100vw), 20px);
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--navy);
}

.voice-slide__profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, calc(4 / 380 * 100vw), 8px);
}

.voice-slide__img {
    width: clamp(72px, calc(72 / 380 * 100vw), 150px);
    height: clamp(72px, calc(72 / 380 * 100vw), 150px);
}

.voice-slide__name {
    font-size: clamp(11px, calc(11 / 380 * 100vw), 16px);
    line-height: 2.25em;
    letter-spacing: 0.015em;
}

.voice-slide__more {
    position: relative;
    padding-right: 1.5em;
    font-family: var(--ff-en);
    font-size: clamp(10px, calc(10 / 380 * 100vw), 14px);
    line-height: 1;
    color: #ABABAB;
    transition: opacity .3s ease;
}

.voice-slide__more::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.5em;
    width: 0.3em;
    height: 0.3em;
    margin: auto;
    border-top: 1px solid #ABABAB;
    border-right: 1px solid #ABABAB;
    transform: rotate(45deg);
}

@media (min-width: 768px) {
    .voice-slide__more:hover {
        opacity: 0.6;
    }
}
/* モーダル */
.voice-modal {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.voice-modal__inner {
    background: #fff;
    padding: 2em;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.voice-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


/* CTA Section */
.cta {
    background: var(--cta-grd);
    overflow: hidden;
}

.cta .container {
    position: relative;
    padding: var(--padding-40) 0 var(--padding-30);
    width: 88%;
    max-width: 600px;
}

.cta__title {
    margin: 0 0.5em 1em 0;
    text-align: right;
    font-weight: 700;
    font-size: clamp(18px, calc(18 / 380 * 100vw), 36px);
    color: var(--wh);
    letter-spacing: 0.01em;
    text-shadow: 0px 4px 11.4px var(--pk03);
}

.cta__button {
    position: relative;
    width: 64%;
    margin-left: auto;
    padding: 1em;
    background: var(--wh);
    border-radius: 50px;
    box-shadow: 5px 5px 8.5px 0px #F454A14D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(13px, calc(13 / 380 * 100vw), 20px);
    line-height: 1.54;
    color: var(--pk02);
}

.cta__button::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 27px;
    width: 0.5em;
    height: 0.5em;
    margin: auto;
    border-top: 2px solid var(--pk02);
    border-right: 2px solid var(--pk02);
    transform: rotate(45deg);
}

.cta-bg__woman {
    position: absolute;
    width: 50%;
    max-width: 300px;
    top: -7%;
    left: -16%;
}

@media (min-width: 768px) {
    .cta__button:hover {
        opacity: 1;
        transform: scale(1.1);
    }
}


/* Reason Section */
.reason {
    background: #E0F4F8;
}

.reason .container {
    padding: var(--padding-30) 0;
    max-width: 800px;
}

.reason__title {
    margin-bottom: clamp(24px, calc(24 / 380 * 100vw), 48px);
    text-align: center;
    font-weight: 700;
    font-size: clamp(22px, calc(22 / 380 * 100vw), 28px);
    line-height: 1.4;
    color: #00C1DC;
}

.reason__title::before {
    content: "";
    display: block;
    background: center / contain no-repeat url(../img/reason-title.png);
    width: auto;
    height: clamp(36px, calc(36 / 380 * 100vw), 60px);
    margin: 0 auto clamp(8px, calc(8 / 380 * 100vw), 16px);
}

.reason__list {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, calc(24 / 380 * 100vw), 48px);
}

.reason__item {
    background: var(--wh);
    box-shadow: 0px 4px 10.1px 0px #00000029;
    border-radius: 2px;
}

.reason__heading {
    position: relative;
}

.reason__badge {
    position: absolute;
    top: -6%;
    left: -2.7%;
    border-radius: 50%;
    border: 1px solid #FE80B6;
    width: clamp(62px, calc(62 / 380 * 100vw), 120px);
    height: clamp(62px, calc(62 / 380 * 100vw), 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-en);
    font-weight: 700;
    color: #FE80B6;
}

.reason__badge .text {
    font-size: clamp(11px, calc(11 / 380 * 100vw), 20px);
}

.reason__badge .num {
    font-size: clamp(24px, calc(24 / 380 * 100vw), 40px);
    line-height: 1;
}

.reason__label {
    background: #FE80B6;
    padding: 0.444em 0.778em;
    font-weight: 700;
    font-size: clamp(18px, calc(18 / 380 * 100vw), 36px);
    line-height: 1.3;
    color: var(--wh);
}

.reason__more {
    padding: var(--padding-10);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.reason__more-text {
    font-family: var(--ff-zenmaru);
    font-size: clamp(14px, calc(14 / 380 * 100vw), 20px);
    color: #656B75;
}

.reason__more-text::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 2px;
    border-top: 1px dashed #ccc;
    vertical-align: middle;
    margin-left: 10px;
    margin-right: 3px;
}

.reason__more-button {
    font-weight: 700;
    font-size: clamp(12px, calc(12 / 380 * 100vw), 18px);
    color: #FE80B6;
}

.reason__more-button::after {
    content: '';
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    margin-left: 10px;
    border-top: 2px solid #FE80B6;
    border-right: 2px solid #FE80B6;
    transform: rotate(135deg) translateY(50%);
}

.reason__body {
    display: none;
}

.reason__body-inner {
    border-top: 1px solid #FE80B6;
    padding: var(--padding-30) var(--padding-15) var(--padding-15);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, calc(18 / 380 * 100vw), 36px);
}

.reason__subtitle strong {
    font-size: clamp(18px, calc(18 / 380 * 100vw), 24px);
}

.reason__footer-button {
    font-weight: 400;
    font-size: clamp(14px, calc(14 / 380 * 100vw), 16px);
    line-height: 1.6;
    color: #9CA3AF;
    cursor: pointer;
}

.reason__footer-button::after {
    content: '';
    display: inline-block;
    width: 0.3em;
    height: 0.3em;
    margin-left: 10px;
    border-top: 2px solid #9CA3AF;
    border-right: 2px solid #9CA3AF;
    transform: rotate(-45deg);
}

.reason__feature-list {
    padding-bottom: var(--padding-10);
    display: flex;
    justify-content: center;
    gap: clamp(5px, calc(5 / 380 * 100vw), 10px);
}

.reason__feature-item {
    position: relative;
    background: #FFEFF9;
    border-radius: 50%;
    width: clamp(90px, calc(90 / 380 * 100vw), 180px);
    height: clamp(90px, calc(90 / 380 * 100vw), 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(11px, calc(11 / 380 * 100vw), 16px);
    line-height: 1.3;
    color: var(--pk02);
}

.reason__feature-item:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 5%;
    width: clamp(21.64px, calc(21.64 / 380 * 100vw), 60px);
    height: clamp(24.49px, calc(24.49 / 380 * 100vw), 60px);
    background: center / contain no-repeat url(../img/reason-feature01.png);
    transform: rotate(23.35deg);
}

.reason__feature-item:nth-child(2)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -7%;
    left: 25%;
    width: clamp(25.92px, calc(25.92 / 380 * 100vw), 60px);
    height: clamp(24px, calc(24 / 380 * 100vw), 60px);
    background: center / contain no-repeat url(../img/reason-feature02.png);
}

.reason__feature-item:nth-child(3)::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(27.83px, calc(27.83 / 380 * 100vw), 60px);
    height: clamp(31px, calc(31 / 380 * 100vw), 60px);
    background: center / contain no-repeat url(../img/reason-feature03.png);
}

.reason__able-title {
    position: relative;
    background: #4DB0DB;
    padding: 0.667em 0.2em;
    text-align: center;
    font-weight: 700;
    font-size: clamp(15px, calc(15 / 380 * 100vw), 30px);
    line-height: 1.65;
    color: var(--wh);
}

.reason__able-title span {
    border: 1px solid var(--wh);
    padding: 0 0.1em;
}

.reason__able-body {
    background: #F2FCFF;
    padding: var(--padding-20) var(--padding-10) var(--padding-10);
    display: flex;
    flex-direction: column;
    gap: clamp(14px, calc(14 / 380 * 100vw), 28px);
    align-items: center;
}

.reason__able-text {
    font-weight: 700;
    font-size: clamp(16px, calc(16 / 380 * 100vw), 22px);
    line-height: 1.6;
    color: #00C1DC;
    border-bottom: 1px solid #00C1DC;
}

.reason__able-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(6px, calc(6 / 380 * 100vw), 12px);
}

.reason__able-item {
    aspect-ratio: 1 / 1;
    width: clamp(70px, calc(70 / 380 * 100vw), 140px);
    border: 1px solid #69CCDB;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, calc(6 / 380 * 100vw), 20px);
    font-weight: 700;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 18px);
    line-height: 1;
    color: #69CCDB;
}

.reason__able-icon {
    width: auto;
    height: clamp(25px, calc(25 / 380 * 100vw), 50px);
}

.reason__able-subtext {
    font-size: clamp(10px, calc(12 / 380 * 100vw), 14px);
    line-height: 2;
}

.reason__event-heading {
    margin-bottom: clamp(18px, calc(18 / 380 * 100vw), 36px);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(10px, calc(10 / 380 * 100vw), 20px);
}

.reason__event-heading::before {
    content: "";
    display: inline-block;
    background: center / contain no-repeat url(../img/reason-event-l.svg);
    width: auto;
    height: clamp(78px, calc(78 / 380 * 100vw), 120px);
    aspect-ratio: 28 / 78;
}

.reason__event-heading::after {
    content: "";
    display: inline-block;
    background: center / contain no-repeat url(../img/reason-event-r.svg);
    width: auto;
    height: clamp(78px, calc(78 / 380 * 100vw), 120px);
    aspect-ratio: 28 / 78;
}

.reason__event-title {
    font-weight: 700;
    font-size: clamp(16px, calc(16 / 380 * 100vw), 24px);
    line-height: 1.4;
    color: var(--pk02);
}

.reason__event-title span {
    display: inline-block;
}

.reason__event-title strong {
    display: inline-block;
    text-shadow: 1px 1px 0 #FFE079, -1px 1px 0 #FFE079, 1px -1px 0 #FFE079, -1px -1px #FFE079;
    font-family: var(--ff-num);
    font-weight: 700;
    font-size: clamp(25px, calc(25 / 380 * 100vw), 40px);
    line-height: 1;
    transform: rotate(-6.47deg);
    vertical-align: middle;
    margin-left: 0.1em;
}

.reason__event-body {
    background: #FFEFF9;
    border-radius: 12px;
    padding: clamp(8px, calc(8 / 360 * 100vw), 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason__event-image {
    border-radius: 10px;
    margin-bottom: clamp(8px, calc(8 / 360 * 100vw), 16px);
}

.reason__event-text {
    font-size: clamp(14px, calc(14 / 380 * 100vw), 20px);
    line-height: 1.2;
    color: #FE80B6;
}

.reason__event-text span {
    display: block;
    margin-bottom: clamp(4px, calc(4 / 360 * 100vw), 8px);
    background: #FE80B6;
    border-radius: 50px;
    padding: 0.167em 1.5em;
    font-weight: 700;
    font-size: clamp(12px, calc(12 / 380 * 100vw), 18px);
    color: var(--wh);
}

.reason__event-text strong {
    font-weight: 700;
    font-size: clamp(18px, calc(18 / 380 * 100vw), 28px);
}

.reason__benefit-title {
    display: inline-block;
    margin-bottom: clamp(16px, calc(16 / 380 * 100vw), 32px);
    border-top: 1px solid #00C1DC;
    border-bottom: 1px solid #00C1DC;
    padding: var(--padding-10) var(--padding-40);
    font-size: clamp(14px, calc(14 / 380 * 100vw), 20px);
    line-height: 1.4;
    color: #00C1DC;
}

.reason__benefit-title strong {
    font-size: clamp(20px, calc(20 / 380 * 100vw), 36px);
    margin-top: 0.2em;
}

.reason__benefit-list {
    margin: 0 calc(30 / 380 * 100vw) clamp(4px, calc(4 / 360 * 100vw), 8px);
    background: #FFEFF9;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.reason__benefit-item {
    padding: 1.3em 0.77em;
    font-weight: 700;
    font-size: clamp(13px, calc(13 / 380 * 100vw), 20px);
    line-height: 1.3;
    color: #FE80B6;
}

.reason__benefit-item:nth-child(1) {
    border-right: 1px dashed #FE80B6;
    border-bottom: 1px dashed #FE80B6;
}

.reason__benefit-item:nth-child(2) {
    border-bottom: 1px dashed #FE80B6;
}

.reason__benefit-item:nth-child(3) {
    border-right: 1px dashed #FE80B6;
}

.reason__benefit-text {
    font-weight: 400;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 14px);
    line-height: 2;
}

.reason__case-title {
    position: relative;
    background: #4DB0DB;
    padding: 0.667em 0.2em;
    text-align: center;
    font-weight: 700;
    font-size: clamp(15px, calc(15 / 380 * 100vw), 30px);
    line-height: 1.65;
    color: var(--wh);
}

.reason__case-title::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: clamp(8px, calc(8 / 380 * 100vw), 20px) solid transparent;
    border-top: clamp(10px, calc(10 / 380 * 100vw), 20px) solid #4DB0DB;
}

.reason__case-list {
    padding-top: var(--padding-30);
    display: flex;
    flex-direction: column;
    gap: clamp(18px, calc(18 / 380 * 100vw), 36px);
}

.reason__case-item {
    position: relative;
    border-top: 1px solid #86D0F0;
    padding: var(--padding-20) 0 var(--padding-10);
}

.reason__case-heading {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #86D0F0;
    border-radius: 50px;
    padding: 0.05em 1em;
    font-family: var(--ff-en);
    font-weight: 600;
    font-size: clamp(12px, calc(12 / 380 * 100vw), 18px);
    line-height: 1.3;
    color: var(--wh);
}

.reason__case-body {
    display: flex;
    align-items: center;
}

.reason__case-item:nth-of-type(even) .reason__case-body {
    flex-direction: row-reverse;
}

.reason__case-text {
    flex-grow: 1;
    font-weight: 400;
    font-size: clamp(12px, calc(12 / 380 * 100vw), 16px);
    line-height: 1.8;
}

.reason__case-text strong {
    font-weight: 700;
    font-size: clamp(16px, calc(16 / 380 * 100vw), 20px);
    line-height: 1.5;
    color: var(--pk02);
}

.reason__case-image {
    width: 35%;
    flex-shrink: 0;
}

.reason__achievement-list {
    margin-bottom: clamp(16px, calc(16 / 380 * 100vw), 32px);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(2 / 380 * 100vw) calc(4 / 380 * 100vw);
}

.reason__achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reason__achievement-item:nth-child(1),
.reason__achievement-item:nth-child(2) {
    background: center / contain no-repeat url(../img/reason-achievent01.svg);
    width: clamp(139px, calc(139 / 380 * 100vw), 200px);
    height: auto;
    aspect-ratio: 139 / 133;
}

.reason__achievement-item:nth-child(3) {
    background: center / contain no-repeat url(../img/reason-achievent02.svg);
    width: clamp(127px, calc(127 / 380 * 100vw), 200px);
    height: auto;
    aspect-ratio: 127 / 126;
}

.reason__achievement-label {
    font-weight: 400;
    font-size: clamp(11px, calc(11 / 380 * 100vw), 14px);
    line-height: 1.364em;
}

.reason__achievement-num {
    position: relative;
    font-size: clamp(11px, calc(11 / 380 * 100vw), 16px);
    line-height: 2;
}

.reason__achievement-num strong {
    font-family: var(--ff-num);
    font-weight: 900;
    font-size: clamp(26px, calc(26 / 380 * 100vw), 42px);
    line-height: 1.08em;
}

.reason__achievement-item:nth-child(1) .reason__achievement-num strong,
.reason__achievement-item:nth-child(2) .reason__achievement-num strong {
    color: #D92585;
}

.reason__achievement-item:nth-child(3) .reason__achievement-num strong {
    color: var(--navy);
}

.reason__achievement-note {
    position: absolute;
    top: -0.3em;
    right: -0.5em;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 12px);
}

.reason__achievment-footnote {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 1em;
}

.reason__achievment-footnote small {
    font-size: clamp(10px, calc(10 / 380 * 100vw), 12px);
}

.reason__inhouse-title {
    margin-bottom: clamp(16px, calc(16 / 380 * 100vw), 32px);
    font-weight: 700;
    font-size: clamp(18px, calc(18 / 380 * 100vw), 24px);
    color: #00C1DC;
}

.reason__inhouse-body {
    background: linear-gradient(341.85deg, rgba(134, 208, 240, 0.65) 60.45%, rgba(0, 193, 220, 0.65) 92.09%);
    border-radius: 12px;
    padding: var(--padding-10);
}

.reason__inhouse-text {
    margin-bottom: clamp(10px, calc(10 / 380 * 100vw), 20px);
    font-weight: 700;
    font-size: clamp(16px, calc(16 / 380 * 100vw), 20px);
    line-height: 1.65;
    color: var(--wh);
}

.reason__inhouse-list {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, calc(8 / 380 * 100vw), 16px);
}

.reason__inhouse-item {
    background: #F2FCFF;
    border-radius: 8px;
}

.reason__inhouse-item-title {
    padding: var(--padding-10);
    font-weight: 700;
    font-size: clamp(14px, calc(14 / 380 * 100vw), 18px);
    line-height: 1.2;
    color: var(--navy);
}

.reason__inhouse-item-body {
    display: flex;
}

.reason__inhouse-item-box {
    width: 50%;
    background: var(--wh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.reason__inhouse-item-box:nth-child(even) {
    flex-direction: column-reverse;
}

.reason__inhouse-item-text {
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, calc(14 / 380 * 100vw), 16px);
    line-height: 1.4;
}

.reason__inhouse-item-text strong {
    font-weight: 700;
    font-size: clamp(16px, calc(16 / 380 * 100vw), 20px);
}

.reason__inhouse-item-text strong.--pk {
    color: #FE80B6;
}

.reason__inhouse-item-text strong.--bk {
    color: var(--bk);
}

.reason__inhouse-item-text small {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 12px);
}

.reason__inhouse-item-text small::before,
.reason__inhouse-item-text small::after {
    content: "";
    background: var(--bk);
    height: 1px;
    width: 1.2em;
}

.reason__inhouse-item-text small::before {
    transform: rotate(45deg); 
}

.reason__inhouse-item-text small::after {
    transform: rotate(-45deg); 
}

.reason__inhouse-item-image {
    height: 50%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .reason__inhouse-item-text {
        height: auto;
        padding: 2em;
    }

    .reason__inhouse-item-image {
        height: auto;
    }
}

.reason__inhouse-item-footer {
    padding: clamp(6px, calc(6 / 380 * 100vw), 20px);
    font-weight: 400;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 14px);
    line-height: 1.3;
}


/* Present Section */
.present {
    background: var(--wh);
}

.present .container {
    padding: var(--padding-20) 0;
    max-width: 600px;
}

.present__title {
    margin-bottom: clamp(10px, calc(10 / 380 * 100vw), 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, calc(6 / 380 * 100vw), 12px);
    font-weight: 700;
    font-size: clamp(20px, calc(20 / 380 * 100vw), 36px);
    color: #00C1DC;
}

.present__title::before,
.present__title::after {
    content: "";
    background: #00C1DC;
    height: 1px;
    width: 1em;
}

.present__title::before {
    transform: rotate(45deg); 
}

.present__title::after {
    transform: rotate(-45deg); 
}

.present__image {
    margin-bottom: clamp(5px, calc(5 / 380 * 100vw), 10px);
}

.present__text {
    text-align: center;
    font-weight: 400;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 14px);
}

/* FAQ */
.faq {
    background: #F8E2F5;
}

.faq .container {
    padding: var(--padding-40) 0;
    max-width: 800px;
}

.faq__title {
    margin-bottom: clamp(24px, calc(24 / 380 * 100vw), 48px);
    text-align: center;
    font-weight: 700;
    font-size: clamp(22px, calc(22 / 380 * 100vw), 28px);
    color: var(--pk02);
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, calc(14 / 380 * 100vw), 28px);
}

.faq__item {
    box-shadow: 0px 4px 11.1px 0px #E3B0C9AB;
    border-radius: 12px;
    overflow: hidden;
}

.faq__question {
    position: relative;
    background: var(--wh);
    padding: var(--padding-15) var(--padding-40) var(--padding-15) var(--padding-10);
    display: flex;
    gap: clamp(8px, calc(8 / 380 * 100vw), 16px);
    cursor: pointer;
}

.faq__question::after {
    content: "";
	display: inline-block;
	position: absolute;
	top: 45%;
	right: var(--padding-20);
	width: 0.3em;
	height: 0.3em;
	border-right: 2px solid #9CA3AF;
	border-bottom: 2px solid #9CA3AF;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

.faq__question.is-open::after {
    transform: rotate(225deg);
}

.faq__icon {
    font-family: var(--ff-en);
    font-weight: 700;
    font-size: clamp(20px, calc(20 / 380 * 100vw), 24px);
    color: #86D0F0;
    line-height: 1.2;
}

.faq__answer {
    display: none;
}

.faq__answer-inner {
    background: #FFF7FE;
    padding: var(--padding-15) var(--padding-10);
    display: flex;
    gap: clamp(8px, calc(8 / 380 * 100vw), 16px);
}

/* Footer */
.footer {
    background: #EFF5FB;
    margin-bottom: 60px;
}

.footer .container {
    padding: 67px 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, calc(10 / 380 * 100vw), 20px);
}

.footer__logo {
    margin: clamp(20px, calc(20 / 380 * 100vw), 40px) 0;
    width: 105px;
}

.footer__contact {
    text-align: center;
}

.footer__tel {
    margin-bottom: clamp(5px, calc(5 / 380 * 100vw), 10px);
    font-weight: 300;
    font-size: clamp(12px, calc(12 / 380 * 100vw), 16px);
}

.footer__tel a {
    display: inline;
}

.footer__time {
    font-weight: 300;
    font-size: clamp(10px, calc(10 / 380 * 100vw), 14px);
}

.footer__sns {
    padding: var(--padding-10) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, calc(15 / 380 * 100vw), 30px);
}

.footer__sns-icon {
    width: clamp(20px, calc(20 / 380 * 100vw), 40px);
}

.footer__sns-icon.icon-x {
    width: clamp(16px, calc(16 / 380 * 100vw), 38px);
}

@media (min-width: 768px) {

    .footer__navi-wrapper {
        column-count: 2;
        gap: 50px;
        margin: 0;
    }

    .footer__logo {
        margin: 0;
    }
    
}