@charset "UTF-8";



/*** HEADER ***/
header {
    width: 100%;
    background: #FFF;   
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
.header__inner {
    width: 95%;
    max-width: 1242px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    width: 172px;
}
.header__nav {
    display: flex;
    align-items: center;
    gap: 29px;
}
.header__nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header__nav ul li a {
    color: var(--colorblue);
    font-size: 14px;
    font-weight: 400;
    transition: color .3s ease;
}
.header__nav ul li a:hover {
    color: var(--colorlightblue);
}
.header__nav__cta {
    height: 83px;
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    background: var(--coloryellow);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    transition: background .3s ease;
}
.header__nav__cta:hover {
    background: #a7a210;
}
.header__nav__cta img {
    width: 16px;
    transform: translateY(2px);
}
.header__sp-btn {
    display: none;
}
@media screen and (max-width: 1000px) {
    .header__logo {
        width: 150px;
    }
    .header__nav ul {
        gap: 20px;
    }
    .header__nav ul li a {
        font-size: 13px;
    }
}
@media screen and (max-width: 800px) {
    .header__nav ul {
        gap: 10px;
    }
}
@media screen and (max-width: 767px) {
    .header__inner {
        width: calc(100% - 20px);
    }
    .header__logo {
        width: 120px;
    }
    .header__nav {
        display: none;
    }
    .header__sp-btn {
        width: 40px;
        height: 60px;
        border: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        background: var(--coloryellow);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .header__sp-btn__icon {
        width: 12px;
        height: 12px;
        position: relative;
    }
    .header__sp-btn__icon span {
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background: #FFF;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: top .3s, transform .3s, opacity .3s;
    }
    .header__sp-btn__icon span:nth-of-type(1) {
        top: 0;
    }
    .header__sp-btn__icon span:nth-of-type(2) {
        top: 50%;
    }
    .header__sp-btn__icon span:nth-of-type(3) {
        top: 100%;
    }
    .header__sp-btn.is-open .header__sp-btn__icon span:nth-of-type(1) {
        width: 120%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    .header__sp-btn.is-open .header__sp-btn__icon span:nth-of-type(2) {
        opacity: 0;
    }
    .header__sp-btn.is-open .header__sp-btn__icon span:nth-of-type(3) {
        width: 120%;
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    /* sp menu */
    .sp-menu {
        display: block;
        width: 100%;
        background: var(--colorboldblue);
        height: 100vh;
        height: 100dvh;
        box-sizing: border-box;
        padding-top: 60px;
        padding-bottom: 20px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .3s, visibility .3s;
    }
    .sp-menu.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    body.is-sp-menu-open {
        overflow: hidden;
    }
    .sp-menu nav ul li a {
        display: block;
        color: #FFF;
        font-size: 16px;
        font-weight: 600;
        border-bottom: 1px solid #FFF;
        padding: 15px;
    }
    .sp-menu__cta {
        display: block;
        width: 90%;
        color: #FFF;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        background: var(--coloryellow);
        border-radius: 3px;
        padding: 15px;
        margin: 20px auto 0;
        position: relative;
    }
    .sp-menu__cta img {
        width: 20px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
}



/*** FV ***/
.fv {
    padding: 140px 0;
}
.fv .global-inner {
    display: flex;
}
.fv__txt {
    width: 490px;
    padding-top: 19px;
}
.fv__index {
    color: var(--colorblack);
    font-size: 23px;
    font-weight: 500;
    line-height: 1;
}
.fv__cc {
    color: var(--colorlightblue);
    font-size: 37px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 50px;
    white-space: nowrap;
}
.fv__cc span {
    position: relative;
}
.fv__cc span::before {
    content: '';
    width: 100%;
    height: 15px;
    background: var(--coloryellow);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.fv__txt p {
    font-size: 17px;
    font-weight: 500;
    margin-top: 50px;
}
.fv__cta {
    width: 270px;
    height: 54px;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: var(--coloryellow);
    border-radius: 8px;
    margin-top: 56px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}
.fv__cta:hover {
    background: #a7a210;
}
.fv__cta img {
    width: 21px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}
.fv__mv {
    width: 616px;
    margin-left: -4px;
}

@media screen and (max-width: 767px) {
    .fv {
        padding: 110px 0 80px;
    }
    .fv .global-inner {
        flex-wrap: wrap;
    }
    .fv__txt {
        width: 100%;
        padding-top: 0;
    }
    .fv__index {
        line-height: 1.5;
    }
    .fv__cc {
        font-size: 30px;
        line-height: 1.5;
        margin-top: 50px;
        white-space: wrap;
    }
    .fv__cc span::before {
        height: 9px;
    }
    .fv__txt p {
        font-size: 16px;
    }
    .fv__cta {
        width: 100%;
        max-width: 270px;
        height: 49px;
        font-size: 16px;
        margin: 56px auto 0;
    }
    .fv__mv {
        width: 100%;
        margin: 50px auto 0;
    }
}



/*** ACHIEVE ***/
.achieve {
    padding: 0 0 140px;
}
.achieve h2 {
    color: var(--colorblack);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.achieve__cnt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 55px;
    margin: 50px auto 0;
}
.achieve__cnt__logo:nth-of-type(1) {
    width: 168px;
}
.achieve__cnt__logo:nth-of-type(2) {
    width: 148px;
}
.achieve__cnt__logo:nth-of-type(3) {
    width: 145px;
}
.achieve__cnt__logo:nth-of-type(4) {
    width: 121px;
}

@media screen and (max-width: 767px) {
    .achieve {
        padding: 0 0 100px;
    }
    .achieve h2 {
        color: var(--colorblack);
        font-size: 18px;
    }
    .achieve__cnt {
        max-width: 400px;
        gap: 20px 40px;
        margin: 30px auto 0;
        flex-wrap: wrap;
    }
    .achieve__cnt__logo:nth-of-type(1) {
        width: 135px;
    }
    .achieve__cnt__logo:nth-of-type(2) {
        width: 118px;
    }
    .achieve__cnt__logo:nth-of-type(3) {
        width: 118px;
    }
    .achieve__cnt__logo:nth-of-type(4) {
        width: 93px;
    }
}



/*** ISSUE ***/
.issue {
    padding: 0 0 140px;
}
.issue .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.issue__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.issue__row {
    display: flex;
    justify-content: space-between;
}
.issue__card {
    width: 354px;
    background: #F0EFED;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.issue__card__ttl {
    color: var(--colorblack);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}
.issue__card__txt {
    color: var(--colorblue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    flex: 1;
    margin: 0;
}
.issue__card__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
.issue__card__foot span {
    color: var(--colorlightblue);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    white-space: nowrap;
}
.issue__card__foot img {
    width: 26px;
    flex-shrink: 0;
}
.issue__bottom {
    color: var(--colorlightblue);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}
.issue__bottom span {
    text-decoration-line: underline;
    text-decoration-color: var(--coloryellow);
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

@media screen and (max-width: 767px) {
    .issue {
        padding: 0 0 70px;
    }
    .issue .global-inner {
        gap: 32px;
    }
    .issue__list {
        gap: 16px;
    }
    .issue__row {
        flex-direction: column;
        gap: 16px;
    }
    .issue__card {
        width: 100%;
        padding: 20px 30px;
        gap: 8px;
    }
    .issue__card__ttl {
        font-size: 18px;
    }
    .issue__card__txt {
        font-size: 14px;
    }
    .issue__card__foot span {
        font-size: 14px;
    }
    .issue__card__foot img {
        width: 20px;
    }
    .issue__bottom {
        font-size: 20px;
        line-height: 1.8;
        white-space: normal;
    }
    .issue__bottom span {
        text-decoration-thickness: 3px;
        text-underline-offset: 5px;
    }
}



/*** APPROACH ***/
.approach {
    background: #F4F4F4;
    padding: 140px 0;
}
.approach .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.approach__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}
.approach__desc {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--colorblack);
    text-align: center;
    margin: 0;
}
.approach__stream {
    width: 100%;
    background: var(--colorblue);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}
.approach__stream__cols {
    display: flex;
    gap: 24px;
}
.approach__stream__col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.approach__stream__label {
    display: flex;
    gap: 11px;
    align-items: center;
    justify-content: center;
}
.approach__stream__label__tag {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    border-radius: 5px;
    padding: 2px 7px;
    flex-shrink: 0;
}
.approach__stream__label__tag--yellow {
    background: var(--coloryellow);
}
.approach__stream__label__tag--blue {
    background: var(--colorlightblue);
}
.approach__stream__label__txt {
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
}
.approach__stream__card {
    flex: 1;
    background: #FFF;
    border-radius: 20px;
    padding: 30px 29px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.approach__stream__card__ttl {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    border-radius: 10px;
    padding: 15px 18px;
    line-height: 1;
    margin: 0;
}
.approach__stream__card__ttl--yellow {
    background: var(--coloryellow);
}
.approach__stream__card__ttl--blue {
    background: var(--colorlightblue);
}
.approach__stream__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.approach__stream__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--colorblack);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
}
.approach__stream__list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.approach__stream__list--yellow li::before {
    background: var(--coloryellow);
}
.approach__stream__list--blue li::before {
    background: var(--colorlightblue);
}
.approach__stream__note {
    height: 110px;
    background: #EEEEE7;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    margin-top: auto;
}
.approach__stream__note p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--colorblack);
    margin: 0;
}
.approach__stream__note--partner {
    background: #EBEFF0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
}
.approach__stream__note p.approach__stream__note__sub {
    font-size: 15px;
    margin: 0;
}
.approach__stream__arrow {
    position: absolute;
    bottom: -21px;
    left: 50%;
    transform: translateX(-50%);
    width: 144px;
    height: 42px;
    z-index: 1;
}
.approach__stream__arrow img {
    width: 144px;
    height: 42px;
}
.approach__journey {
    background: var(--colorblue);
    border-radius: 20px;
    padding: 40px;
    width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}
.approach__journey__ttl {
    color: #FFF;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}
.approach__journey__steps {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
}
.approach__journey__step {
    background: #FFF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-right: 15px;
}
.approach__journey__step__num {
    width: 75px;
    height: 75px;
    background: var(--colorgreen);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #FFF;
    line-height: 1;
    flex-shrink: 0;
}
.approach__journey__step__txt {
    flex: 1;
    color: var(--colorblack);
    font-size: 25px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
.approach__journey__step__arrow {
    display: flex;
    justify-content: center;
    padding-left: 60px;
}
.approach__journey__step__arrow img {
    width: 36px;
}
.approach__journey__star {
    width: 29px;
    position: absolute;
    top: 50%;
    right: 165px;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .approach {
        padding: 70px 0;
    }
    .approach .global-inner {
        gap: 50px;
    }
    .approach__head {
        gap: 24px;
    }
    .approach__stream {
        padding: 20px;
    }
    .approach__stream__cols {
        flex-direction: column;
        gap: 28px;
    }
    .approach__stream__label {
        flex-direction: column;
        gap: 6px;
    }
    .approach__stream__label__tag {
        font-size: 18px;
    }
    .approach__stream__label__txt {
        font-size: 20px;
        text-align: center;
    }
    .approach__stream__card {
        padding: 30px 22px;
    }
    .approach__stream__card__ttl {
        font-size: 20px;
    }
    .approach__stream__list li {
        font-size: 14px;
        line-height: 1.3;
        padding-left: 15px;
        align-items: flex-start;
        position: relative;
    }
    .approach__stream__list li::before {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .approach__stream__note {
        height: auto;
        padding: 20px;
    }
    .approach__stream__note--partner {
        padding: 30px 20px;
    }
    .approach__stream__note--partner p:not(.approach__stream__note__sub) {
        font-size: 16px;
    }
    .approach__stream__note p.approach__stream__note__sub {
        font-size: 14px;
    }
    .approach__stream__arrow {
        bottom: -30px;
        width: 127px;
        height: 37px;
    }
    .approach__stream__arrow img {
        width: 127px;
        height: 37px;
    }
    .approach__journey {
        width: 100%;
        padding: 20px;
        gap: 19px;
    }
    .approach__journey__ttl {
        font-size: 20px;
    }
    .approach__journey__step {
        padding-right: 10px;
    }
    .approach__journey__step__num {
        width: 50px;
        height: 50px;
        font-size: 23px;
    }
    .approach__journey__step__txt {
        font-size: 18px;
    }
    .approach__journey__step__arrow {
        padding-left: 40px;
    }
    .approach__journey__step__arrow img {
        width: 20px;
        height: 6px;
    }
    .approach__journey__star {
        right: auto;
        left: calc(50% + 75px);
        transform: translate(-50%, -50%);
    }
}


/*** PHASE ***/
.phase {
    background: #FFF;
    padding: 70px 0;
}
.phase .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.phase__wrap {
    background: #F0EFED;
    border-radius: 20px;
    padding: 70px 30px 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.phase__card {
    width: 336px;
    background: #FFF;
    border-radius: 15px;
    padding: 50px 18px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.phase__card__badge {
    position: absolute;
    top: -31px;
    left: 50%;
    transform: translateX(-50%);
    width: 62px;
    height: 62px;
    background: var(--coloryellow);
    border-radius: 50%;
}
.phase__card__badge__txt {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #FFF;
}
.phase__card__badge__txt span:first-child {
    font-size: 13px;
    line-height: 1.2;
}
.phase__card__badge__txt span:last-child {
    font-size: 25px;
    line-height: 1;
}
.phase__card__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
}
.phase__card__head__txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.phase__card__icon {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.phase__card__icon--01 {
    width: 102px;
}
.phase__card__icon--02,
.phase__card__icon--03 {
    width: 90px;
}
.phase__card__icon img {
    width: 100%;
}
.phase__card__en {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2;
    color: #A9A9A9;
    white-space: nowrap;
    margin: 0;
}
.phase__card__ttl {
    font-size: 22px;
    font-weight: 700;
    color: var(--colorlightblue);
    line-height: 1;
    text-align: center;
    margin: 0;
}
.phase__divider {
    height: 1px;
    background: #E0DFDD;
    width: 100%;
    flex-shrink: 0;
}
.phase__card__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}
.phase__card__list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--colorblue);
    line-height: 1.3;
    padding-left: 15px;
    position: relative;
}
.phase__card__list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--coloryellow);
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .phase {
        padding: 70px 0 30px;
    }
    .phase .global-inner {
        gap: 30px;
    }
    .phase__wrap {
        flex-direction: column;
        gap: 39px;
        padding: 40px 20px;
    }
    .phase__card {
        width: 100%;
        padding: 30px 20px;
        gap: 16px;
    }
    .phase__card__badge {
        width: 54px;
        height: 54px;
        top: -27px;
    }
    .phase__card__badge__txt span:first-child {
        font-size: 12px;
    }
    .phase__card__badge__txt span:last-child {
        font-size: 21px;
    }
    .phase__card__head {
        max-width: 270px;
        margin: 0 auto;
        flex-direction: row;
        gap: 10px;
        align-items: center;
    }
    .phase__card__head__txt {
        flex: 1;
        align-items: center;
        justify-content: center;
    }
    .phase__card__list {
        max-width: 270px;
        margin: 0 auto;
    }
    .phase__card__icon--01 {
        width: 66px;
    }
    .phase__card__icon--02 {
        width: 66px;
    }
    .phase__card__icon--03 {
        width: 57px;
    }
    .phase__card__ttl {
        font-size: 20px;
    }
    .phase__card__list li {
        font-size: 14px;
    }
}


/*** SERVICE ***/
.service {
    background: #FFF;
    padding: 70px 0 130px;
}
.service .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.service__block {
    background: #EBEFF0;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}
.service__block__head {
    height: 54px;
    border-radius: 10px;
    padding: 10px 27px;
    display: flex;
    align-items: center;
    gap: 23px;
}
.service__block__head--blue {
    background: var(--colorlightblue);
}
.service__block__head--green {
    background: var(--colorgreen);
}
.service__block__head--terracotta {
    background: var(--colorterracotta);
}
.service__block__head--pink {
    background: var(--colorpink);
}
.service__block__head__num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 30px;
    color: #FFF;
    line-height: 1;
    flex-shrink: 0;
}
.service__block__head__div {
    width: 1px;
    height: 27px;
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}
.service__block__head__ttl {
    font-size: 22px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.6;
}
.service__block__grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.service__row {
    display: flex;
    gap: 15px;
}
.service__row--two .service__card {
    flex: none;
    width: calc((100% - 30px) / 3);
}
.service__card {
    flex: 1;
    background: #FFF;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}
.service__card__head {
    display: flex;
    align-items: center;
    gap: 10px;
}
@media screen and (min-width: 768px) {
    .service__row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: auto auto 1fr;
        row-gap: 16px;
    }
    .service__row--two .service__card {
        width: auto;
    }
    .service__card {
        display: grid;
        grid-row: 1 / span 3;
        grid-template-rows: subgrid;
    }
}
.service__card__num {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.service__card__num--blue       { background: var(--colorlightblue); }
.service__card__num--green      { background: var(--colorgreen); }
.service__card__num--terracotta { background: var(--colorterracotta); }
.service__card__num--pink       { background: var(--colorpink); }
.service__card__num span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    color: #FFF;
    line-height: 1;
}
.service__card__ttl {
    font-size: 19px;
    font-weight: 700;
    color: var(--colorblack);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
}
.service__card__div {
    height: 1px;
    background: #E0DFDD;
    flex-shrink: 0;
}
.service__card__txt {
    font-size: 15px;
    font-weight: 500;
    color: var(--colorblack);
    line-height: 1.8;
    margin: 0;
}
.service__tabs {
    display: none;
}

@media screen and (max-width: 767px) {
    .service {
        padding: 70px 0;
    }
    .service .global-inner {
        gap: 30px;
    }
    .service__tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        width: 100%;
    }
    .service__tab {
        width: calc(50% - 5px);
        height: 50px;
        border-radius: 8px;
        padding: 13px 20px 9px 16px;
        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        border: 1px solid;
        background: #FAFAFA;
        cursor: pointer;
        position: relative;
        text-align: left;
        line-height: 1.1;
    }
    .service__tab::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-60%) rotate(45deg);
        flex-shrink: 0;
    }
    .service__tab--blue {
        border-color: var(--colorlightblue);
        color: var(--colorlightblue);
    }
    .service__tab--green {
        border-color: var(--colorgreen);
        color: var(--colorgreen);
    }
    .service__tab--terracotta {
        border-color: var(--colorterracotta);
        color: var(--colorterracotta);
    }
    .service__tab--pink {
        border-color: var(--colorpink);
        color: var(--colorpink);
    }
    .service__tab--blue.is-active {
        background: var(--colorlightblue);
        color: #FFF;
    }
    .service__tab--green.is-active {
        background: var(--colorgreen);
        color: #FFF;
    }
    .service__tab--terracotta.is-active {
        background: var(--colorterracotta);
        color: #FFF;
    }
    .service__tab--pink.is-active {
        background: var(--colorpink);
        color: #FFF;
    }
    .service__block {
        display: none;
    }
    .service__block.is-active {
        display: flex;
    }
    .service__block {
        padding: 15px;
        gap: 10px;
    }
    .service__block__head {
        height: auto;
        padding: 8px 10px;
        gap: 13px;
    }
    .service__block__head__num {
        font-size: 20px;
    }
    .service__block__head__ttl {
        font-size: 18px;
    }
    .service__block__grid {
        gap: 10px;
    }
    .service__row {
        flex-direction: column;
        gap: 10px;
    }
    .service__row--two .service__card {
        width: 100%;
    }
    .service__card {
        padding: 15px 20px;
        gap: 10px;
    }
    .service__card__head {
        gap: 6px;
    }
    .service__card__num {
        width: 25px;
        height: 25px;
    }
    .service__card__num span {
        font-size: 14px;
    }
    .service__card__ttl {
        font-size: 16px;
        white-space: wrap;
    }
    .service__card__txt {
        font-size: 14px;
    }
}



/*** PICKUP ***/
.pickup {
    background: #F4F4F4;
    padding: 100px 0;
}
.pickup .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.pickup__cards {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.pickup__card {
    width: 355px;
    background: #FFF;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.pickup__card__label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--colorblue);
    line-height: 1;
    margin: 0;
}
.pickup__card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    width: 100%;
    align-items: center;
}
.pickup__icon {
    position: relative;
    flex-shrink: 0;
}
.pickup__icon--01 {
    width: 90px;
    height: 90px;
}
.pickup__icon--02 {
    width: 81px;
    height: 90px;
}
.pickup__icon--03 {
    width: 133px;
    height: 90px;
}
.pickup__card__ttl {
    font-size: 22px;
    font-weight: 700;
    color: var(--colorblue);
    line-height: 1.4;
    text-align: center;
    margin: 0;
}
.pickup__card__txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorblue);
    line-height: 1.6;
    margin: 0;
}
.pickup__card__tags {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}
.pickup__card__tag {
    background: var(--colorlightblue);
    border-radius: 5px;
    padding: 3px 7px;
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .pickup {
        padding: 70px 0;
    }
    .pickup .global-inner {
        gap: 30px;
    }
    .pickup__cards {
        flex-direction: column;
        gap: 30px;
    }
    .pickup__card {
        width: 100%;
    }
    .pickup__card__ttl {
        font-size: 20px;
    }
    .pickup__card__txt {
        font-size: 14px;
        text-align: left;
    }
    .pickup__card__tags {
        justify-content: flex-start;
        gap: 6px;
        margin-top: 8px;
    }
    .pickup__card__tag {
        padding: 3px 6px;
    }
}



/*** CASE ***/
.case {
    background: #FFF;
    padding: 100px 0 70px;
}
.case .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.case__cards {
    display: flex;
    gap: 30px;
    width: 100%;
}
.case__card {
    flex: 1 0 0;
    min-width: 0;
    background: #EBEFF0;
    border-radius: 20px;
    padding: 90px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}
.case__card__badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--colorlightblue);
    border-radius: 20px 0 20px 0;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.4;
    white-space: nowrap;
}
.case__card__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}
.case__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.case__block__head {
    display: flex;
    align-items: center;
}
.case__block__head--issue {
    gap: 10px;
}
.case__block__head--support {
    gap: 6px;
}
.case__block__head__icon {
    width: 28px;
    position: relative;
}
.case__block__ttl {
    font-size: 20px;
    font-weight: 700;
    color: var(--colorblack);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}
.case__block__txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorblack);
    line-height: 1.8;
    margin: 0;
}
.case__div {
    width: 100%;
    height: 1px;
    background: #FFF;
    flex-shrink: 0;
}
.case__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.case__list__item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.case__list__item__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--colorlightblue);
    flex-shrink: 0;
}
.case__list__item p {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--colorblack);
    line-height: 1.3;
    margin: 0;
}
.case__result {
    background: #FFF;
    border-radius: 10px;
    padding: 30px 17px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case__result__head {
    display: flex;
    align-items: center;
    gap: 7px;
}
.case__result__icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}
.case__result__icon img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: fill;
}
.case__result__ttl {
    font-size: 20px;
    font-weight: 700;
    color: var(--colorblue);
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}
.case__result__txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorblue);
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .case {
        padding: 70px 0;
    }
    .case .global-inner {
        gap: 30px;
    }
    .case__cards {
        flex-direction: column;
        gap: 30px;
    }
    .case__card {
        padding: 70px 15px 20px;
    }
    .case__card__badge {
        font-size: 18px;
        padding: 10px 15px;
    }
    .case__block__head--issue {
        gap: 6px;
    }
    .case__block__head__icon {
        width: 24px;
    }
    .case__block__ttl {
        font-size: 18px;
    }
    .case__list {
        gap: 14px;
    }
    .case__list__item {
        align-items: flex-start;
    }
    .case__list__item__dot {
        margin-top: 9px;
    }
    .case__list__item p {
        line-height: 1.5;
    }
    .case__result__ttl {
        font-size: 18px;
        white-space: normal;
    }
}



/*** REASON ***/
.reason {
    padding: 70px 0 100px;
}
.reason .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.reason__cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
}
.reason__card {
    width: 347px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.reason__icon--01 {
    width: 113px;
}
.reason__icon--02 {
    width: 90px;
}
.reason__icon--03 {
    width: 95px;
}
.reason__card__ttl {
    font-size: 22px;
    font-weight: 700;
    color: var(--colorlightblue);
    line-height: 1.4;
    text-align: center;
    margin: 0;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason__card__txt {
    font-size: 16px;
    font-weight: 500;
    color: var(--colorblue);
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 767px) {
    .reason {
        padding: 70px 0;
    }
    .reason .global-inner {
        gap: 50px;
    }
    .reason__cards {
        flex-direction: column;
        gap: 40px;
    }
    .reason__card {
        width: 100%;
        gap: 8px;
    }
    .reason__card__ttl {
        min-height: auto;
        margin-top: 8px;
    }
}



/*** FAQ ***/
.faq {
    background: #F4F4F4;
    padding: 100px 0;
}
.faq .global-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.faq__row {
    display: flex;
    gap: 30px;
    width: 100%;
}
.faq__item {
    flex: 1 0 0;
    min-width: 0;
    background: #FFF;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq__q {
    display: flex;
    align-items: center;
    gap: 6px;
}
.faq__a {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.faq__badge {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
}
.faq__badge--q {
    background: var(--colorlightblue);
    color: #FFF;
}
.faq__badge--a {
    border: 1.5px solid var(--colorlightblue);
    color: var(--colorlightblue);
    background: transparent;
}
.faq__q__txt {
    font-size: 18px;
    font-weight: 700;
    color: var(--colorblue);
    line-height: 1.4;
    margin: 0;
    white-space: nowrap;
}
.faq__a__txt {
    font-size: 15px;
    font-weight: 500;
    color: var(--colorblue);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

@media screen and (max-width: 767px) {
    .faq {
        padding: 70px 0;
    }
    .faq .global-inner {
        gap: 50px;
    }
    .faq__list {
        gap: 15px;
    }
    .faq__row {
        flex-direction: column;
        gap: 15px;
    }
    .faq__item {
        padding: 20px 15px;
        gap: 10px;
    }
    .faq__badge {
        width: 25px;
        height: 25px;
        font-size: 14.52px;
    }
    .faq__q__txt {
        font-size: 16px;
        white-space: wrap;
    }
}



/*** CTA ***/
.cta {
    background: #FFF;
    padding: 100px 0;
}
.cta .global-inner {
    display: flex;
    justify-content: center;
}
.cta__box {
    background: var(--colorblue);
    border-radius: 40px;
    padding: 70px 0;
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 48px;
}
.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta__ttl {
    font-size: 40px;
    font-weight: 700;
    color: #FFF;
    line-height: 1.4;
    text-align: center;
}
.cta__txt {
    font-size: 17px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.6;
    margin: 0;
}
.cta__btn {
    background: var(--coloryellow);
    border-radius: 8px;
    width: 270px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
    text-decoration: none;
    position: relative;
}
.cta__btn:hover {
    background: #a7a210;
}
.cta__btn::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 15px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='15' viewBox='0 0 21 15' fill='none'%3E%3Cpath d='M0 7.5H19M19 7.5L13 1.5M19 7.5L13 13.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .cta {
        padding: 70px 0;
    }
    .cta__box {
        width: 100%;
        padding: 39px 0;
        gap: 28px;
    }
    .cta__inner {
        padding: 0 15px;
        width: 100%;
    }
    .cta__ttl {
        font-size: 29px;
        line-height: 1.3;
    }
    .cta__txt {
        font-size: 16px;
    }
    .cta__btn {
        height: 49px;
        font-size: 16px;
    }
}
