.button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    padding: 12px 32px;
    width: 200px;
    box-sizing: border-box;
    position: relative;
    transition: opacity .3s ease;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover {
    opacity: .9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px 2px #00000026;
}

@media(max-width:768px) {
    .button {
        width: 100%
    }
}

.button.button--white {
    background: transparent;
    color: #ee87b4;
    border: 2px solid #EE87B4
}

@media(max-width:768px) {
    .button.button--white {
        padding: 14px 24px
    }
}

.button.button--pink {
    background-color: #ee87b4;
    color: #fff;
    border: none
}

@media(max-width:768px) {
    .button.button--pink {
        padding: 14px 24px
    }
}

.button.button--purple {
    background-color: #a688bd;
    color: #fff;
    border: none;
    width: 310px;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 32px
}

@media(max-width:768px) {
    .button.button--purple {
        padding: 16px 0
    }
}

.button.button--white-trans {
    background-color: #fff;
    color: #a688bd;
    border: none
}

@media(max-width:768px) {
    .button.button--white-trans {
        padding: 14px 24px
    }
}

.button.button--trans {
    background-color: #fff3;
    color: #fff;
    border: 2px solid #fff
}

@media(max-width:768px) {
    .button.button--trans {
        padding: 14px 24px
    }
}

:global(body.is-header-drawer-open) {
    overflow: hidden
}

.header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    max-width: 1280px;
    z-index: 1000;
    padding: 16px 24px 0;
    box-sizing: border-box
}

@media(max-width:1024px) {
    .header {
        padding: 16px 24px 0
    }
}

@media(max-width:768px) {
    .header {
        padding: 8px 10px 0
    }
}

.header .header__inner {
    background-color: #fff;
    border-radius: 9999px;
    box-shadow: 0 4px 4px #0003;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 16px 40px
}

@media(max-width:1024px) {
    .header .header__inner {
        padding: 16px 24px;
        height: auto;
        min-height: 64px
    }
}

@media(max-width:768px) {
    .header .header__inner {
        padding: 8px 16px;
        height: auto;
        min-height: 64px
    }
}

.header .header__logo {
    flex-shrink: 0
}

@media(max-width:1024px) {
    .header .header__logo {
        padding: 0
    }
}


@media(max-width:768px) {
    .header .header__logo {
        padding: 0
    }
}

.header .header__logo-link {
    line-height: 0
}

@media(max-width:1024px) {
    .header .header__logo-link {
        width: 140px
    }
}

@media(max-width:768px) {
    .header .header__logo-link {
        width: 140px
    }
}

.header .header__logo-img {
    height: auto;
    width: 220px;
    display: block
}

@media(max-width:1024px) {
    .header .header__logo-img {
        width: 180px
    }
}

@media(max-width:768px) {
    .header .header__logo-img {
        width: 140px
    }
}

.header .header__nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
    min-width: 0
}

@media(max-width:1024px) {
    .header .header__nav-wrapper {
        justify-content: flex-end
    }
}

@media(max-width:768px) {
    .header .header__nav-wrapper {
        justify-content: flex-end
    }
}

.header .header__nav {
    flex: 1;
    display: flex;
    justify-content: flex-end
}

@media(max-width:1024px) {
    .header .header__nav {
        display: none
    }
}

@media(max-width:768px) {
    .header .header__nav {
        display: none
    }
}

.header .header__nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0
}

.header .header__nav-item {
    margin: 0
}

.header .header__nav-link {
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity .3s ease;
    white-space: nowrap
}

.header .header__nav-link:hover {
    opacity: .7
}

.header .header__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

@media(max-width:1024px) {
    .header .header__buttons {
        display: none
    }
}

.header .header__actions {
    display: none;
    align-items: center;
    gap: 0
}

@media(max-width:1024px) {
    .header .header__actions {
        display: flex
    }
}

.header .header__menu-button {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border: none;
    border-radius: 50%;
    background-color: #ee87b4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity .3s ease;
    padding: 0
}

.header .header__menu-button:hover {
    opacity: .9
}

.header .header__menu-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    width: 24px;
    height: 24px
}

.header .header__menu-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    border-radius: 1px;
    transition: opacity .3s ease
}

.header .header__menu-line:nth-child(1) {
    width: 14px
}

.header .header__menu-line:last-child {
    width: 8px
}

.header .header__overlay {
    position: fixed;
    inset: 0;
    background-color: #0006;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
    z-index: 900
}

.header .header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

@media(min-width:769px) {
    .header .header__overlay {
        display: none
    }
}

.header .header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transform: translate(100%);
    transition: transform .3s ease;
    z-index: 950;
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    box-shadow: -4px 0 24px #00000014
}

.header .header__drawer.is-open {
    transform: translate(0)
}

@media(min-width:1025px) {
    .header .header__drawer {
        display: none
    }
}

.header .header__drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px
}

.header .header__drawer-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.header .header__drawer-logo-img {
    width: 180px;
    height: auto
}

.header .header__drawer-logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #333
}

.header .header__drawer-close {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease
}

.header .header__drawer-close:hover {
    opacity: .8
}

.header .header__drawer-close-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: inherit
}

.header .header__drawer-close-icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.header .header__drawer-nav {
    overflow-y: auto;
    margin-bottom: 40px
}

.header .header__drawer-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px
}

.header .header__drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.header .header__drawer-item {
    border-bottom: 0px solid rgba(5, 18, 70, .1)
}

.header .header__drawer-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    padding: 16px 0;
    transition: opacity .3s ease
}

.header .header__drawer-link:hover {
    opacity: .7
}

.header .header__drawer-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}

.header .header__drawer-link-icon svg {
    width: 100%;
    height: 100%;
    display: block
}

.contact-section {
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 3
}

@media(max-width:1024px) {
    .contact-section {
        padding: 60px 0
    }
}

.contact-section__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2px;
    background: linear-gradient(280.45deg, #5eb7e8 8.81%, #a688bd 44.18%, #ee87b4 80.63%);
    border-radius: 36px;
    box-shadow: 0 2px 8px #0000001f;
    position: relative;
    z-index: 1
}

@media(max-width:1024px) {
    .contact-section__inner {
        margin: 0 16px;
        padding: 2px
    }
}

.contact-section__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    border: 14px solid #fff;
    padding: 0;
    border-radius: 35px;
    margin: 0 auto;
    background: #fff
}

.contact-section__content-inner {
    border-radius: 20px;
    padding: 60px 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(280.45deg, #5eb7e8 8.81%, #a688bd 44.18%, #ee87b4 80.63%)
}

.contact-section__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px
}

@media(max-width:1024px) {
    .contact-section__text {
        gap: 8px;
        margin-bottom: 16px
    }
}

.contact-section__title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.4
}

@media(max-width:1024px) {
    .contact-section__title {
        font-size: 24px;
        line-height: 1.2
    }
}

.contact-section__lead {
    font-family: "M PLUS 2", sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3
}

@media(max-width:1024px) {
    .contact-section__lead {
        font-size: 32px;
        margin-bottom: 16px
    }
}

.contact-section__description {
    font-size: 18px;
    font-weight: 400;
    color: #ffffffe6;
    margin: 0;
    line-height: 1.8
}

@media(max-width:1024px) {
    .contact-section__description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 16px
    }
}

.contact-section__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px
}

@media(max-width:1024px) {
    .contact-section__buttons {
        gap: 16px;
        width: 240px;
        margin: 0 auto
    }
}

.footer {
    width: 100%;
    background: linear-gradient(135deg, #0f172b, #0a0a0a);
    padding: 80px 0 40px;
    position: relative;
    z-index: 3
}

@media(max-width:1024px) {
    .footer {
        padding: 40px 0 24px
    }
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px
}

@media(max-width:1024px) {
    .footer__inner {
        padding: 0 16px
    }
}

.footer__upper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px
}

@media(max-width:1024px) {
    .footer__upper {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 24px
    }
}

.footer__company {
    flex: 1;
    min-width: 0
}

@media(max-width:1024px) {
    .footer__company {
        order: 2
    }
}

.footer__logo {
    margin-bottom: 16px
}

.footer__logo-link {
    display: inline-block;
    line-height: 0
}

.footer__logo-img {
    height: auto;
    max-height: 60px;
    width: auto;
    display: block
}

.footer__description {
    font-size: 16px;
    font-weight: 400;
    color: #ffffffe6;
    margin: 0 0 24px;
    line-height: 1.7
}

@media(max-width:1024px) {
    .footer__description {
        font-size: 13px
    }
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffffe6;
    margin: 0;
    line-height: 1.5
}

.footer__contact-item a {
    color: inherit;
    text-decoration: none
}

.footer__contact-item a:hover {
    opacity: .8
}

@media(max-width:1024px) {
    .footer__contact-item {
        font-size: 13px
    }
}

.footer__contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    object-fit: contain
}

.footer__nav-group {
    flex-shrink: 0
}

@media(max-width:1024px) {
    .footer__nav-group {
        width: 100%
    }
}

.footer__nav-heading {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.4
}

@media(max-width:1024px) {
    .footer__nav-heading {
        font-size: 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgb(255, 255, 255);
        margin-bottom: 24px
    }
}

.footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer__nav-item {
    margin: 0
}

.footer__nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #ffffffe6;
    text-decoration: none;
    transition: opacity .3s ease
}

.footer__nav-link:hover {
    opacity: .7
}

@media(max-width:1024px) {
    .footer__nav-link {
        display: block;
        width: 100%;
        font-size: 14px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .2)
    }
}

.footer__separator {
    width: 100%;
    height: 1px;
    background-color: #fff3;
    margin: 0 0 24px
}

.footer__lower {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

@media(max-width:1024px) {
    .footer__lower {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.footer__copyright-text {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    line-height: 1.5
}

@media(max-width:1024px) {
    .footer__copyright-text {
        font-size: 12px;
        order: 1
    }
}

.footer__policy-links {
    display: flex;
    align-items: center;
    gap: 16px
}

.footer__policy-link {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: opacity .3s ease
}

.footer__policy-link:hover {
    opacity: .8
}

@media(max-width:1024px) {
    .footer__policy-link {
        font-size: 12px
    }
}

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

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    line-height: 1.6;
    font-family: Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
    color: #333;
    background-color: #fff
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity .3s ease
}

a:hover {
    opacity: .7
}

ul,
ol {
    list-style: none
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit
}

.content {
    width: 100%
}

.content .content__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

@media(max-width:768px) {
    .content .content__inner {
        padding: 0 16px;
        max-width: 100%
    }
}

.section {
    padding: 80px 0
}

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

.pc {
    display: block
}

@media(max-width:768px) {
    .pc {
        display: none
    }
}

.sp {
    display: none
}

@media(max-width:768px) {
    .sp {
        display: block
    }
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 160px
}

body {
    font-family: Inter, sans-serif;
    font-weight: 500;
    overflow-x: hidden
}

.main {
    min-height: 100vh
}

.section__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #333;
    position: relative;
    z-index: 2
}

@media(max-width:768px) {
    .section__header {
        gap: 0px
    }
}

.section__header .section-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto
}

@media(max-width:768px) {
    .section__header .section-title {
        font-size: 20px
    }
}

.section__header .section-subtitle {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 24px
}

@media(max-width:768px) {
    .section__header .section-subtitle {
        font-size: 12px
    }
}

.section__header .section-text {
    font-size: 18px;
    margin: 0 auto;
    line-height: 1.8
}

@media(max-width:768px) {
    .section__header .section-text {
        font-size: 12px;
        text-align: left
    }
}

.section__content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1510px;
    margin: 0 auto;
    z-index: 2
}

@media(max-width:1024px) {
    .section__content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media(max-width:768px) {
    .section__content-grid {
        grid-template-columns: 1fr
    }
}

.grid__2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    max-width: 1510px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    justify-content: center
}

@media(max-width:768px) {
    .grid__2col {
        grid-template-columns: 1fr
    }
}

.grid__2col.grid_md {
    gap: 24px
}

@media(max-width:1024px) {
    .grid__2col.grid_md {
        grid-template-columns: 1fr
    }
}

.grid__3col {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1510px;
    margin: 0 auto;
    z-index: 2;
    position: relative
}

@media(max-width:768px) {
    .grid__3col {
        grid-template-columns: 1fr
    }
}

@media(max-width:768px) {
    .grid__3col-sp {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 10px !important
    }
}

@media(max-width:768px) {
    .grid__2col-sp {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important
    }
}

@media(max-width:768px) {
    .grid__2col-2row-sp {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important
    }

    .grid__2col-2row-sp>*:nth-child(3) {
        grid-column: span 2 !important
    }

    .grid__2col-2row-sp>*:nth-child(3) .box03__image {
        height: auto;
        max-height: 70px
    }

    .grid__2col-2row-sp>*:nth-child(3) .box03__image img {
        width: 50%;
        margin: 0 auto
    }
}

.grid__4col {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    max-width: 1510px;
    margin: 0 auto;
    z-index: 2;
    position: relative
}

.grid__4col.gap-md {
    gap: 24px
}

@media(max-width:768px) {
    .grid__4col {
        grid-template-columns: 1fr
    }
}

.business-section .content__inner .section__header {
    margin-bottom: 60px
}

@media(max-width:768px) {
    .business-section .content__inner .section__header {
        margin-bottom: 20px
    }
}