.l-main * {
    font-family: "Noto Sans JP", sans-serif;
}
.l-main {
    padding: 0;
    margin: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
}

/*///////////////// MV ///////////////////*/
.mv__wrap {
    width: 100%;
}
    .swiper_content-mv .swiper-slide {
        width: 100%;
        height: 920px;
    }
        .swiper_content-mv .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    .mv__wrap .swiper_content-mv .swiper-pagination {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        z-index: 1;
        margin: 15px auto 0;
    }
        .mv__wrap .swiper_content-mv .swiper-pagination .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #D9D9D9;
            opacity: 1;
            margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 15px);
        }
        .mv__wrap .swiper_content-mv .swiper-pagination .swiper-pagination-bullet-active {
            background: #016CDA;
        }

.mv__img {
    width: 100%;
    height: 920px;
}
    .mv__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*///////////////// コンテンツ共通 ///////////////////*/
[class*="cnt__wrap"] {
    padding-block: 100px;
}
    [class*="cnt__inner"] {
        width: 1140px;
        margin: 0 auto;
    }
        [class*="cnt__headline"] {
            font-size: 14px;
            font-weight: 500;
            line-height: 1;
            color: #000000;
        }
            [class*="cnt__headline"] span {
                display: block;
                font-family: "Heebo", sans-serif;
                font-size: 80px;
                font-weight: 800;
                line-height: 1;
                letter-spacing: 0.06em;
                color: transparent;
                background: linear-gradient(180deg, #3CA3F8 0%, #0058CC 100%);
                background-clip: text;
                -webkit-background-clip: text;
                margin-top: 15px;
            }
        [class*="cnt__link"] {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 300px;
            height: 67px;
            border-radius: 9999px;
            background: #016CDA;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.7;
            color: #FFFFFF;
            position: relative;
        }
            [class*="cnt__link"]::after {
                content: "";
                width: 18px;
                height: 8px;
                background: url(/images/top/cnt_bt-arrow.svg) no-repeat center / cover;
                position: absolute;
                top: 0;
                bottom: 0;
                margin: auto;
                right: 19px;
            }

/*///////////////// お知らせ ///////////////////*/
.cnt__wrap--topic {
    background: url(/images/top/news_bg.webp) no-repeat top center / auto 515px;
}
    .topic__ttl-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .topics__list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }
        .topics__item {
            display: flex;
            gap: 21px;
            padding-bottom: 30px;
            border-bottom: 1px solid #E3E3E3;
        }
            .topics__date {
                font-size: 18px;
                font-weight: 500;
                line-height: 1.6;
                color: #5E5D5D;
            }
            .topics__txtbox {
                display: flex;
                flex-direction: column;
                gap: 11px;
            }
                .topics__ttl {
                    font-size: 18px;
                    font-weight: 500;
                    color: #016CDA;
                }

/*///////////////// 弊社について ///////////////////*/
.cnt__wrap--about {
    padding-top: 114px;
}
    .about__box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
    }
        .about__img {
            width: 537px;
            height: 485px;
            border-radius: 10px;
            overflow: hidden;
        }
            .about__img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .about__txtbox {
            width: 543px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            padding-top: 5px;
        }
            .about__txt {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }
                .about__txt p {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 2;
                    color: #000000;
                }
            .about__name-txt {
                font-size: 16px;
                font-weight: 500;
                color: #000000;
                text-align: right;
            }
                .about__name-txt span {
                    font-size: 24px;
                    font-weight: 600;
                    color: #000000;
                    margin-left: 15px;
                }

/*///////////////// 事業内容 ///////////////////*/
.cnt__inner--service {
    width: 100%;
}
    .cnt__headline--service,
    .cnt__headline--service span {
        text-align: center;
    }
        .service__list {
            display: flex;
            flex-direction: column;
            gap: 50px;
            margin-top: 50px;
        }
            .service__item {
                display: flex;
                align-items: center;
                height: 650px;
                border-radius: 180px 0 0 0;
                background: #E7F6FF;
                padding-block: 100px;
                position: relative;
                z-index: 0;
            }
            .service__item::before {
                content: "";
                width: 100%;
                height: 520px;
                background: url(/images/top/service_bg-odd.webp) no-repeat bottom left / auto 520px;
                position: absolute;
                bottom: 0;
                left: 0;
                z-index: 1;
            }
            .service__item:nth-child(even) {
                border-radius: 0 180px 0 0;
            }
            .service__item:nth-child(even)::before {
                background: url(/images/top/service_bg-even.webp) no-repeat bottom right / auto 515px;
            }
                .service__item-inner {
                    display: flex;
                    align-items: center;
                    justify-content: flex-start;
                    width: 1140px;
                    margin: 0 auto;
                    padding-inline: 102px;
                    position: relative;
                }
                .service__item:nth-child(even) .service__item-inner {
                    justify-content: flex-end;
                }
                    .service__txtbox {
                        width: 510px;
                        position: relative;
                        z-index: 2;
                    }
                        .service__num {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            width: 131px;
                            height: 33px;
                            border-radius: 9999px;
                            border: 1px solid #016CDA;
                            background: #FFFFFF;
                            font-size: 20px;
                            font-weight: 600;
                            color: #016CDA;
                            margin-bottom: 7px;
                        }
                        .service__ttl {
                            font-size: 30px;
                            font-weight: 700;
                            color: #016CDA;
                            margin-bottom: 22px;
                        }
                        .service__txt {
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 2;
                            color: #000000;
                        }
                        .cnt__bt--service {
                            margin-top: 62px;
                        }
                        .cnt__bt--service-bottom {
                            margin-top: 20px;
                        }
                            .cnt__bt--service-bottom .cnt__link--service {
                                background: #00278E;
                            }
                    .service__img {
                        width: 858px;
                        height: 450px;
                        border-radius: 10px 0 0 10px;
                        overflow: hidden;
                        position: absolute;
                        top: 50%;
                        transform: translateY(-50%);
                        right: -390px;
                        z-index: 2;
                    }
                    .service__item:nth-child(even) .service__img {
                        border-radius: 0 10px 10px 0;
                        right: auto;
                        left: -390px;
                    }
                        .service__img img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                        }

/*///////////////// 目的から選ぶ ///////////////////*/
.cnt__wrap--menu {
    background: url(/images/top/menu_bg.webp) no-repeat top center / auto 515px;
}
    .cnt__headline--menu,
    .cnt__headline--menu span {
        text-align: center;
    }
    .org-menu__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px 20px;
        margin-top: 50px;
    }
        .org-menu__item {
            width: 270px;
        }
            .org-menu__link {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 5px;
            }
                .org-menu__img {
                    width: 270px;
                    height: 170px;
                    border-radius: 5px;
                    overflow: hidden;
                }
                    .org-menu__img img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                .org-menu__txt {
                    display: flex;
                    align-items: center;
                    flex-direction: column;
                    gap: 5px;
                    font-size: 20px;
                    font-weight: 700;
                    color: #016CDA;
                    text-align: center;
                }
                .org-menu__txt::after {
                    content: "";
                    display: block;
                    width: 50px;
                    height: 1px;
                    background: #016CDA;
                }

/*///////////////// お役立ち情報 ///////////////////*/
.cnt__wrap--information {
    padding-bottom: 104px;
    background: url(/images/top/information_bg.webp) no-repeat top 284px center / 1920px 515px;
}
    .cnt__headline--information,
    .cnt__headline--information span {
        text-align: center;
    }
    .information__list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 50px;
    }
        .information__link {
            display: block;
            min-width: 366px;
            height: 200px;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
            z-index: 0;
        }
        .information__link::after {
            content: "";
            width: 100%;
            height: 100%;
            background: url(/images/top/information_gd.webp) no-repeat center / cover;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
        }
        .information__link-wide::after {
            background: url(/images/top/information_gd-wide.webp) no-repeat center / cover;
        }
            .information__txtbox {
                position: absolute;
                top: 28px;
                left: 29px;
                z-index: 1;
                pointer-events: none;
            }
                .information__txt {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    font-size: 24px;
                    font-weight: 800;
                    line-height: 1.4;
                    color: #FFF;
                }
                .information__txt span {
                    font-family: "Heebo", sans-serif;
                    font-size: 12px;
                    font-weight: 600;
                    line-height: 1; 
                    color: #FFF;
                }
            .information__img {
                width: 100%;
                height: 100%;
            }
                .information__img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

/*///////////////// お問い合わせ ///////////////////*/
.cnt__wrap--contact {
    padding-block: 76px 80px;
    background: url(/images/top/contact_bg.webp) no-repeat center / cover;
}
    .contact__tel-list {
        display: flex;
        justify-content: center;
        gap: 80px;
        border-radius: 10px;
        border: 1px solid #D2ECFF;
        background: rgba(255, 255, 255, 0.60);
        backdrop-filter: blur(10px);
        margin-top: 50px;
        padding-block: 42px 49px;
        position: relative;
    }
    .contact__tel-list::before {
        content: "";
        width: 1px;
        height: 110px;
        background: #D2ECFF;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
        .contact__tel-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 50px;
            font-weight: 500;
            line-height: 1;
            color: #00278E;
            text-align: center;
        }
        .contact__tel-item:last-of-type {
            color: #016CDA;
        }
        .contact__tel-item span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: calc(321px / 2);
            height: 50px;
            background: rgba(0, 70, 198, 0.15);
            font-size: 24px;
            font-weight: 600;
            line-height: 1.25;
            color: #00278E;
            margin-top: 7px;
        }
        .contact__tel-item:last-of-type span {
            background: rgba(1, 108, 218, 0.15);
            color: #016CDA;
        }
    .contact__bt-list {
        display: flex;
        justify-content: center;
        gap: 21px;
        margin-top: 40px;
    }
        [class*="contact__bt-link"] {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 366px;
            height: 100px;
            border-radius: 9999px;
            padding-left: 43px;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.3;
            color: #FFF;
            text-align: center;
            position: relative;
        }
        [class*="contact__bt-link"]::before {
            content: "";
            width: 35px;
            height: 35px;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
        }
        [class*="contact__bt-link"]::after {
            content: "";
            width: 18px;
            height: 12px;
            background: url(/images/top/contact_arrow.svg) no-repeat center / cover;
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            right: 28px;
        }
        .contact__bt-link--reservation {
            background: #016CDA;
        }
        .contact__bt-link--reservation::before {
            background: url(/images/top/reservation_icn.svg) no-repeat center / cover;
            left: 81px;
        }
        .contact__bt-link--mail {
            background: #009FEE;
        }
        .contact__bt-link--mail::before {
            background: url(/images/top/mail_icn.svg) no-repeat center / cover;
            left: 62px;
        }
        .contact__bt-link--line {
            background: #06C755;
        }
        .contact__bt-link--line::before {
            background: url(/images/top/line_icn.svg) no-repeat center / cover;
            left: 59px;
        }

.comingsoon__bt {
    display: none;
    position: relative;
}
    .comingsoon__bt::before {
        content: "COMING SOON...";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .7);
        font-size: 16px;
        color: #FFF;
        font-weight: 400;
        letter-spacing: 0.07em;
        line-height: 1.3;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        pointer-events: none;
        cursor: unset;
    }
    .cnt__wrap--service .comingsoon__bt::before {
        width: 300px;
        height: 67px;
        border-radius: 9999px;
        top: -1px;
        left: -1px;
    }
    .cnt__wrap--menu .comingsoon__bt::before {
        font-size: 20px;
        border-radius: 5px;
    }
    .cnt__wrap--information .comingsoon__bt::before {
        font-size: 24px;
    }