@charset "utf-8";

body{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: #000000;
}

a{
    text-decoration: none;
    color: #000000;
    font-style: normal;
}

img{
    max-width: 100%;
}

.bold{
    font-weight: 700;
}

h2{
    padding: 3.4% 0 4.4% 0;
    font-size: 35px;
    letter-spacing: 2.7px;
    line-height: 1.5;
    text-align: center;
}

@media(max-width:950px){
    h2{
        font-size: 27px;
    }
}

@media (max-width: 750px) {
    h2 {
        font-size: 19px;
        padding: 36px 0 0 0;
        line-height: 1.9;
    }
}

@media (max-width: 390px) {
    h2 {
        font-size: 16px;
    }
}

h3{
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: center;
    letter-spacing: 4.7px;
    padding: 0 0 52px 0;
    z-index: 10;
    position: sticky;
    font-size: 46px;
}

@media(max-width:950px){
    h3{
        font-size: 35px;
    }
}

@media (max-width: 750px) {
    h3 {
        font-size: 23px;
        letter-spacing: 2.9px;
        padding: 0 0 28px 0;
    }
}

.h3-small{
    font-size: 37px;
    padding: 0 0 29px 0;
    letter-spacing: 1px;
}

@media(max-width:950px){
    .h3-small{
        font-size: 29px;
    }
}

@media (max-width: 750px) {
    .h3-small {
        font-size: 25px;
        line-height: 1;
    }
}

@media(max-width:390px){
    .h3-small{
        font-size: 20px;
    }
}


h4{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 11px;
    margin: 0 0 0 -7%;
}

@media(max-width:950px){
    h4{
        font-size: 25px;
    }
}

@media (max-width: 750px) {
    h4 {
        font-size: 20px;
        gap: 9px;
        margin: 15px 0 0px -7%;
    }
}

@media (max-width: 390px) {
    h4 {
        font-size: 16px;
        gap: 5px;
    }
}

h4 span{
    font-size: 72px;
    margin: 0 20px 0 0;
}

@media(max-width:950px){
    h4 span{
        font-size: 67px;
    }
    
}

@media (max-width: 750px) {
    h4 span {
        font-size: 55px;
        margin: 0 8px 0 0;
    }
}

@media (max-width: 390px) {
    h4 span {
        font-size: 40px;
    }
}


p{
    line-height: 1.9;
}

@media(max-width:750px){
    p{
        line-height: 1.9;
        font-size: 13px;
    }
    
}

@media (max-width: 390px) {
    p {
        line-height: 1.9;
        font-size: 13px;
    }
}

.btn:hover{
    -webkit-transform: scale(1.1,1.1);
        -ms-transform: scale(1.1,1.1);
            transform: scale(1.1,1.1);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; /* 滑らかにする設定 */
}

@media (max-width: 750px) {
    .btn:hover{
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }
}

.section-title{
    position: absolute;
    top: 3.5%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center;
    font-size: 160px;
    font-weight: 400;
}

.section-subtitle{
    text-align: center;
    padding: 0 0 57px 0;
}

.font-big{
    font-size: 22px;
}

.font-big2{
    font-size: 18px;
}

@media(max-width:750px){
    .section-subtitle {
        padding: 0 0 35px 0;
    }
    .font-big{
        font-size: 14px;
    }
    .font-big2{
        font-size: 14px;
    }
}

@media screen and (max-width: 750px) {
    .anchor-adjust::before {
    content: "";
    display: block;
      height: 50px; /* ← ロゴ・ヘッダー分の高さ */
      margin-top: -50px; /* 同じ高さのマイナス */
    visibility: hidden;
    }
}

/* フェードイン */
.fade-in {
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}

.fade-in.show {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

  /* 遅延クラス */
.delay-0 { -webkit-transition-delay: 0s; -o-transition-delay: 0s; transition-delay: 0s; }
.delay-1 { -webkit-transition-delay: 0.3s; -o-transition-delay: 0.3s; transition-delay: 0.3s; }
.delay-2 { -webkit-transition-delay: 0.6s; -o-transition-delay: 0.6s; transition-delay: 0.6s; }
.delay-3 { -webkit-transition-delay: 0.9s; -o-transition-delay: 0.9s; transition-delay: 0.9s; }
.delay-4 { -webkit-transition-delay: 1.2s; -o-transition-delay: 1.2s; transition-delay: 1.2s; }








/*///////////////////////////////////////

color

///////////////////////////////////////*/
.white{
    color: #fff;
}

.orange{
    color: #F8804B;
}

.blue{
    color: #12B0C4;
}

.blue2{
    color: #4295DC;
}

.bg-blue-grade{
    background: -webkit-gradient(linear, left top, right top, from(#67D8E0), to(#94CDFC));
    background: -o-linear-gradient(left, #67D8E0, #94CDFC);
    background: linear-gradient(to right, #67D8E0, #94CDFC);
}

.bg-white{
    background-color: #fff;
}

.bg-blue{
    background-color: #EDF4FC;
}

.bg-orange{
    background-color: #FBF5EB;
}

.bg-orange-grade{
    background: -webkit-gradient(linear, left top, right top, from(#F57F53), to(#F4C04B));
    background: -o-linear-gradient(left, #F57F53, #F4C04B);
    background: linear-gradient(to right, #F57F53, #F4C04B);
}

/*//////////////////////////////////////

layout

//////////////////////////////////////*/
.l-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.l-wrapper{
    max-width: 1000px;
    margin: 0 auto;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-bg-wrapper{
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 80px;
}

@media(max-width:750px){
    .l-bg-wrapper{
        border-radius: 30px;
    }
}


/*//////////////////////////////////////

header

//////////////////////////////////////*/
header{
    z-index: 999;
    position: fixed;
    width: 100%;
}

.header__wrapper{
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.header-logo{
    margin: 16px 0 0 0;
    position: absolute;
    top: 0;
    left: 29px;
}

.header-logo:hover{
    opacity: 0.5;
}

@media(max-width:750px){
    .header-logo {
        left: 20px;
    }
}

@media(max-width:950px){
    .header-logo img{
        width: 226px;
    }
}

.header-button1{
    background: -webkit-gradient(linear, left top, right top, from(#F57753), to(#FFC115));
    background: -o-linear-gradient(left, #F57753, #FFC115);
    background: linear-gradient(to right, #F57753, #FFC115);
    width: 257px;
    height: 62px;
    justify-content: center;
    letter-spacing: 1.7px;
}

.header-button1 img {
    margin-right: 8px;
}


.header-button2{
    background: -webkit-gradient(linear, left top, right top, from(#FFFA76), to(#FFFFFF));
    background: -o-linear-gradient(left, #FFFA76, #FFFFFF);
    background: linear-gradient(to right, #FFFA76, #FFFFFF);
    width: 257px;
    justify-content: center;
    height: 62px;
    letter-spacing: 1.7px;
}

.header-button2 img {
    margin-right: 8px;
}

@media(max-width:950px){
    .header-button1,.header-button2{
        width: 230px;
        font-size: 15px;
        height: 55px ;
    }
}


/*//////////////////////////////////////

side-banner

//////////////////////////////////////*/

.side-banner {
    position: fixed;
    right: 0;
    z-index: 1000;
    cursor: pointer;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 13px;
}  


.side-banner img{
    max-width: 27px;
}

@media(max-width:390px){
    .side-banner img {
        max-width: 25px;
    }
}

.side-banner .header-button1,.side-banner .header-button2 {
    width: 50%;
    font-size: 12px;
    height: 47px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media(max-width:390px){
    .side-banner .header-button1,.side-banner .header-button2 {
        width: 50%;
        font-size: 11px;
        height: 47px;
    }
}

.side-banner a:hover {
    opacity: 0.85;
}

  /* 追従ボタン */
.tracking{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    visibility: hidden;
    width: 100%;
    z-index: 100;
}

.tracking.is-active {
    opacity: 1;
    visibility: visible;
}





/*//////////////////////////////////////

main

//////////////////////////////////////*/
main{
    position: relative;
}

.main-bg{
    background-image: url(../img/main-bg.png);
    background-size: cover;
}

.swiper {
    position: relative;
    width: 100%;
    aspect-ratio: 17 / 7;
    margin: 0 auto;
    overflow: hidden;
}

@media(max-width:750px){
    .swiper {
        aspect-ratio: 390 / 710;
    }
}

.swiper-slide {
    opacity: 0;
    -webkit-transition: opacity 1s ease;
    -o-transition: opacity 1s ease;
    transition: opacity 1s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.swiper-slide-active {
    opacity: 1 !important;
    position: relative;
    z-index: 2;
}

.swiper-slide img {
    width: 100%;
}

/* ドットを線状にカスタマイズ */
.swiper-pagination {
    position: absolute;
    bottom: 0 !important;
    left: 45% !important;
    /*transform: translateX(-50%);*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
    z-index: 10;
}

@media(max-width:750px){
    .swiper-pagination{
        left: 40% !important;
    }
}

@media(max-width:550px){
    .swiper-pagination{
        left: 35% !important;
    }
}

@media(max-width:390px){
    .swiper-pagination{
        left: 29% !important;
    }
}

    .swiper-pagination-bullet {
    width: 26px;
    height: 3px;
    background-color: #D8E5E8;
    opacity: 1;
    border-radius: 3px;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: -webkit-gradient(linear, left top, right top, from(#19CBE2), to(#4295DC));
    background: -o-linear-gradient(left, #19CBE2, #4295DC);
    background: linear-gradient(to right, #19CBE2, #4295DC);
}

.main-item{
    display: block;
    margin: 0 auto;
    padding: 0 20px;
}

.main-item2{
    margin: 20px auto 0;
}



@media(max-width:750px){
    .main-item2 {
        max-width: 305px;
    }
}

.main-item-sp__wrapper{
    margin: 28px auto 0;
    max-width: 317px;
    position: relative;
    height: 193px;
}

.main-item-sp1{
    position: absolute;
    right: 0;
}

.main-item-sp2{
    position: absolute;
    left: 0;
    top: 68px;
}

.main-item-sp3{
    position: absolute;
    right: 0;
    top: 135px;
}




/*//////////////////////////////////////

jjs

//////////////////////////////////////*/
.jjs{
    position: relative;
    padding: 0 0 250px 0;
}
@media(max-width:750px){
    .jjs{
        position: relative;
        padding: 0 0 400px 0;
    }
}

@media (max-width: 390px) {
    .jjs {
        position: relative;
        padding: 0 0 300px 0;
    }
}

.jjs-bg{
    max-width: 1400px;
    margin: -0.3% auto 0;
    padding: 74px 0 170px 0;
    background-image: url(../img/jjs-bg.webp);
    background-size: auto;
    background-position: center;
    position: relative;
}

@media(max-width:1100px){
    .jjs-bg{
        background-size: cover;
    }
}

@media (max-width: 750px) {
    .jjs-bg {
        background-image: url(../img/jjc-bg-sp.webp);
        margin: 38px 0 0 0;
        padding: 43px 0 300px 0;
        background-position: top;
    }
}

.jjs-bg-item{
    margin: 0 auto;
    display: block;
    position: absolute;
    top: -3px;
    left: 36%;
    right: 36%;
}

@media(max-width:950px){
    .jjs-bg-item{
        left: 30%;
    }
}

@media (max-width: 750px) {
    .jjs-bg-item {
        width:120px ;
    }
}

/*.jjs-bg-center{
    background-image: url(../img/jjs-bg.webp);
    background-size: cover;
    background-position: center;
    max-width: 1400px;
    margin: -5px auto 0 !important;
}*/

/*.jjs-bg-bottom{
    max-width: 1400px;
    margin: 0 auto;
    padding: 5% 0 1.5% 0;
    background-image: url(../img/jjs-bg.webp);
    background-size: cover;
    background-position-y: 115%;
}

@media(max-width:750px){
    .jjs-bg-bottom{
        background-image: url(../img/jjc-bg-sp.webp);
    }
    
}*/

.point-box{
    max-width: 316px;
    padding: 0 2.4% 3%;
    -webkit-box-shadow: 0 0 16px rgba(18, 141, 196, 0.16);
            box-shadow: 0 0 16px rgba(18, 141, 196, 0.16);
    border-radius: 55px;
    width: 100%;
}

@media(max-width:750px){
    .point-box{
        border-radius: 30px;
        max-width: 350px;
        padding: 0 11.4% 8%;
    }
}

.point-box__wrapper{
    padding: 5% 0 7% 0;
}

@media(max-width:1100px){
    .point-box__wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
    }
}

@media(max-width:750px){
    .point-box__wrapper{
        padding: 40px 0 1% 0;
    }
}

.point-box img:first-of-type{
    margin: 14% 0 13% 0;
}

.point-box img:nth-of-type(2){
    margin: 9% 0 9% 0;
}

.point{
    text-align: center;
    max-width: 150px;
    margin: 0 auto;
    font-size: 20px;
}

/*@media(max-width:750px){
    .point{
        margin: 0 auto 25px;
    }
}*/

.point-item-sp3{
    margin: 23px -13px 18px 23px !important;
}

/* LINK */
.link-btn__wrapper{
    max-width: 875px;
    padding: 0 10px;
    /* margin: -0.5% auto 0; */
    position: absolute;
    width: 100%;
    /*bottom: -224px;*/
    bottom: -390px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

@media(max-width:750px){
    .link-btn__wrapper{
        /*bottom: -500px;*/
        bottom: -820px;
    }
}

@media (max-width: 390px) {
    .link-btn__wrapper {
        /*bottom: -400px;*/
        bottom: -720px;
    }
}

.link-btn__wrapper a img{
    max-width: 156px;
}

@media(max-width:950px){
    .link-btn__wrapper a img{
        max-width: 95%;
    }
}

@media(max-width:750px){
    .link-btn__wrapper a img{
        max-width: 350px;
    }
    .link-btn__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 11px;
        margin: 5px auto 0;
    }
}

@media (max-width: 390px) {
    .link-btn__wrapper a img {
        max-width: 300px;
    }
}





/*//////////////////////////////////////

contact-btn

//////////////////////////////////////*/
.contact{
    max-width: 1110px;
    margin: 0 auto;
    padding: 0 10px;
}

@media(max-width:1100px){
    .contact{
        padding: 0 10px 30px;
    }
}

@media(max-width:750px){
    .contact{
        padding: 0;
    }
}


.contact-title{
    text-align: center;
    font-size: 24px;
    font-weight: 400;
}

@media(max-width:1100px){
    .contact-title{
        padding: 0 0 25px 0;
    }
}

@media(max-width:750px){
    .contact-title{
        padding: 0;
    }
    .contact-title-sp img{
        margin: 21px auto 10px;
        display: block;
    }
}

@media (max-width: 390px) {
    .contact-title-sp img {
        max-width: 290px;
    }
}


.contact-btn__wrapper{
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.contact-btn-box{
    position: relative;
    max-width: 536px;
    height: 209px;
    width: 100%;
    background-image: url(../img/contact-btn-bg1.png);
    background-size: cover;
    margin: -1% 0 0 0;
}

#voice .contact-btn-box{
    background-image: url(../img/contact-btn-bg-pink1.png);
}

@media(max-width:750px){
    .contact-btn-box{
        background-image: url(../img/contact-btn-bg-sp.png) !important;
        background-size: cover;
        height: 240px;
        width: 390px;
    }
}

.contact-btn-box2{
    background-image: url(../img/contact-btn-bg2.png);
    position: relative;
    width: 100%;
    margin: -3% 0 0 0;
    height: 217px;
}

#voice .contact-btn-box2{
    background-image: url(../img/contact-btn-bg-pink2.png);
}

@media(max-width:750px){
    .contact-btn-box2{
        background-image: url(../img/contact-btn-bg-sp2.png) !important;
        background-size: cover;
        height: 255px;
        margin: 0 0 0 0;
        width: 390px;
    }
}

@media(max-width:390px){
    .contact-btn-box,.contact-btn-box2{
        background-size: contain;
        max-width: 315px;
    }
    .contact-btn-box2{
        margin: -13% 0 0 0;
        height: 205px;
    }
}

.contact-text{
    position: absolute;
    font-size: 20px;
    top: 23%;
    right: 7%;
}

@media(max-width:750px){
    .contact-text {
        top: 40.5%;
        right: 13%;
    }
}

@media (max-width: 390px) {
    .contact-text {
        top: 35.5%;
        right: 13%;
        font-size: 16px;
    }
}

.contact-text2{
    position: absolute;
    font-size: 20px;
    top: 28%;
    right: 26%;
}

@media(max-width:750px){
    .contact-text2{
        top: 37%;
    }
    
}

@media (max-width: 390px) {
    .contact-text2 {
        top: 33%;
        font-size: 16px;
    }
}

.contact-btn{
    position: absolute;
    bottom: 17%;
    right: 8%;
}

@media(max-width:750px){
    .contact-btn {
        position: absolute;
        bottom: 9%;
        right: 13%;
    }
}

@media (max-width: 390px) {
    .contact-btn {
        position: absolute;
        bottom: 23%;
        right: 13%;
    }
}

.contact-btn2{
    position: absolute;
    bottom: 13%;
    right: 15%;
}

@media(max-width:750px){
    .contact-btn2 {
        bottom: 14%;
        right: 13%;
    }
}

@media (max-width: 390px) {
    .contact-btn2 {
        bottom: 17%;
        right: 13%;
    }
}

.contact-btn img,.contact-btn2 img{
    max-width: 288px;
}

@media(max-width:390px){
    .contact-btn img, .contact-btn2 img {
        max-width: 235px;
    }
}




/*//////////////////////////////////////

cose

//////////////////////////////////////*/
.cose{
    padding: 0 0 75px 0;
    position: relative;
}

@media(max-width:750px){
    .cose {
        padding: 0 0 15px 0;
        position: relative;
    }
    .cose .l-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 11px;
    }
}

.cose-bg{
    background-image: url(../img/cose-bg.webp);
    background-size: cover;
    width: 100%;
    display: block;
    background-position: center;
}

/*@media (max-width: 750px) {
    .cose-bg{
        background-image: url(../img/cose-bg-sp.png);
        padding: 30px 0 10px 0;
        position: relative;
    }
}*/

.cose-bg-item{
    position: absolute;
    top: -25px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

@media (max-width: 750px) {
    .cose-bg-item{
        position: absolute;
        max-width: 282px;
        top: 17px;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}

.cose-box__wrapper{
    padding: 0 10px 20px;
}

.open-overlay img{
    max-width: 317px;
}

@media(max-width:1100px){
    .open-overlay img{
        max-width: 300px;
    }
}

@media (max-width: 950px) {
    .open-overlay img {
        max-width: 95%;
    }
}

@media (max-width: 750px) {
    .open-overlay img {
        max-width: 320px;
    }
}

@media (max-width: 390px) {
    .open-overlay img {
        max-width: 290px;
    }
}

/* popup */
.popup{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 70px 70px 65px 70px;
}

@media(max-width:750px){
    .popup{
        max-width: 350px;
        padding: 39px 17px 50px 17px;
    }
}

.popup-bg1{
    background-image: url(../img/popup-bg1.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg2{
    background-image: url(../img/popup-bg2.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg3{
    background-image: url(../img/popup-bg3.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg4{
    background-image: url(../img/popup-bg4.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg5{
    background-image: url(../img/popup-bg5.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg6 {
    background-image: url(../img/popup-bg6.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg7{
    background-image: url(../img/popup-bg7.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg8{
    background-image: url(../img/popup-bg8.webp);
    background-position-y: -1px;
    background-size: cover;
}

.popup-bg9{
    background-image: url(../img/popup-bg9.webp);
    background-position-y: -1px;
    background-size: cover;
}

.open-overlay{
    display: block;
}


.overlay{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* 半透明黒 */
    z-index: 9999;
    /*overflow-y: scroll;*/
}

.overlay-content{
    position: relative;
    max-width: 860px;
    width: 90%;
    margin: 0 auto;
    margin-top: 5vh;
}

/*@media(max-width:1440px){
    .overlay-content {
        position: relative;
        max-width: 43%;
    }
}*/

@media(max-width:750px){
    .overlay-content{
        max-width: 370px;
    }
    .overlay{
        overflow-y: scroll;
    }
}

/*.popup__wrapper{
    max-width: 862px;
    width: 100%;
    margin: 0 auto;
}*/

.popup__wrapper p{
    max-width: 753px;
    margin: 0 auto;
    padding: 23px 0 35px;
}

@media(max-width:750px){
    .popup__wrapper p {
        margin: 0 auto;
        padding: 31px 0 27px;
    }
}

.popup img{
    max-width: 860px;
}

@media(max-width:750px){
    .popup img{
        max-width: 100%;
    }
}

.popup-item{
    margin: 0 0 47px 0;
}

@media(max-width:750px){
    .popup-item{
        margin: 0;
    }
}

.popup__wrapper {
    position: relative; /* 必須：基準にする */
    display: inline-block; /* ←画像と同じ幅にする */
     height: 90vh;       /* 高さを画面サイズに合わせる */
    overflow: scroll;
    overflow-y: scroll;
    overflow-x: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

.popup__wrapper::-webkit-scrollbar{
  display: none;
}


  @media(max-width:750px){
    .popup__wrapper {
         height: auto;
      }
}


.popup-img{
    width: unset;
    display: block;
}

@media(max-width:900px){
    .popup-img{
        -o-object-fit: cover;
           object-fit: cover;
    }
}

  .close-overlay.pc {
    position: absolute;
    width: 6%;
    aspect-ratio: 1 / 1;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    top: 0;
    right: 0;
  }

.close-overlay{
    position: absolute;
    top: 0;
    right: 0;
}

.close-overlay img{
    display: block;
    max-width: 69px;
}

@media(max-width:750px){
    .close-overlay img {
        display: block;
        max-width: 35px;
    }
    
}




/*//////////////////////////////////////

job

//////////////////////////////////////*/
@media(max-width:1100px){
    .job .l-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}

.job{
    margin: 0 0 25px 0;
}

@media (max-width: 750px) {
    .job{
        margin: 0;
    }
    
}

.job-bg{
    background-image: url(../img/job-bg.webp);
    position: relative;
    padding: 75px 0 95px 0;
    background-size: cover;
}

@media (max-width: 750px) {
    .job-bg{
        padding: 45px 0 20px 0;
    }
}

/*.job-bg-bottom{
    background-image: url(../img/job-bg.webp);
    background-position: bottom;
    padding: 0 0 100px 0;
}*/

.job-bg-item{
    position: absolute;
    top: -75px;
    left: 39%;
    right: 40%;
}

@media(max-width:1100px){
    .job-bg-item{
        left: 35%;
        max-width: 500px;
        top: -52px;
    }
}

@media (max-width: 950px) {
    .job-bg-item {
        max-width: 400px;
        left: 35%;
    }
}

@media (max-width: 750px) {
    .job-bg-item {
        max-width: 250px;
        left: 60%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        top: -32px;
    }
}

.job-title{
    position: absolute;
    top: 135px;
    left: 28.5%;
    right: 30%;
}
@media(max-width:1100px){
    .job-title{
        left: 23.5%;
    }
}

@media (max-width: 950px) {
    .job-title {
        left: 13.5%;
    }
}

@media (max-width: 750px) {
    .job-title {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        top: 102px;
        max-width: 350px;
    }
}

@media (max-width: 390px) {
    .job-title {
        max-width: 320px;
    }
}

.job-box{
    border-radius: 80px;
    -webkit-box-shadow: 0 0 16px rgba(18, 141, 196, 0.16);
            box-shadow: 0 0 16px rgba(18, 141, 196, 0.16);
    margin: 0 0 30px 0;
    padding: 0 4% 45px;
}

.job-box-first{
    margin: 58px 0 30px 0;
}

.job-box-last{
    position: relative;
    margin: 0 0 95px 0;
}

.job-box-last p{
    max-width: 636px;
    margin: 0 auto;
}

.job-box-last img{
    max-width: 439px;
    margin: 33px 0 0 0;
}

@media(max-width:1100px){
    .job-box,.job-box2{
        max-width: 500px;
        margin: 0 auto 30px;
    }
    .job-box-first{
        margin: 58px auto 30px auto;
    }
    .job-box-last {
        margin: 0 auto 95px auto;
    }
}

@media (max-width: 750px) {
    .job-box, .job-box2 {
        max-width: 350px;
        margin: 0 auto 16px;
        border-radius: 30px;
        width: 100%;
    }
    .job-box3{
        padding: 0 4% 22px;
    }
    .job-box-first {
        margin: 50px auto 18px auto;
        border-radius: 30px;
        height: auto;
    }
    .job-box-last img {
        max-width: 100%;
        margin: 24px 0 0 0;
    }
    .job-box-last {
        margin: 0 auto 37px auto !important;
    }
}

.border{
    width: 55%;
    height: 9px;
    display: block;
    margin: 0 auto;
}

.job-content{
    max-width: 439px;
    padding: 23px;
    margin: 13px 0 0 0;
    border-radius: 30px;
    height: 443px;
    border-radius: 30px;
}

@media(max-width:750px){
    .job-content{
        height: 610px;
        margin: 5px 0 0 0;
    }
}

@media(max-width:390px){
    .job-content{
        height: 600px;
        margin: 5px 0 0 0;
    }
}

.job-content img{
    max-width: 393px;
}

@media(max-width:750px){
    .job-content img {
        max-width: 270px;
        margin: 0 auto;
    }
}

.job-content p{
    padding: 14px 0 0 0;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
}

@media(max-width:750px){
    .job-content p {
        padding: 14px 0 0 0;
        line-height: 1.8;
        letter-spacing: -0.1px;
    }
    
}

.job-btn{
    margin: 40px auto 0;
    display: block;
}

@media(max-width:750px){
    .job-btn {
        margin: 27px auto 0;
        display: block;
    }
}

.job-item1 {
    max-width: 409px;
    margin: 41px 0 14px 0;
}

@media(max-width:750px){
    .job-item1 {
        max-width: 100%;
        margin: 22px 0 40px 0;
    }
}

.job-item2{
    max-width: 390px;
    margin: 24px 0 -16px 0;
}

@media(max-width:750px){
    .job-item2 {
        max-width: 100%;
        margin: 5px 0 0 22px;
    }
}

.job-item3{
    position: absolute;
    display: block;
    bottom: -24px;
    right: -31px;
}

@media(max-width:750px){
    .job-item3 {
        bottom: 8px;
        right: -12px;
        max-width: 150px !important;
    }
}

.swiper2 {
    position: relative;
    width: 100%;

    margin: 0 auto 0;
    overflow: hidden;
}

.swiper2 .swiper-slide {
    padding-bottom: 24px;
}


.swiper2 .swiper-pagination{
    left: 39% !important;
}






/*//////////////////////////////////////

support

//////////////////////////////////////*/
.support{
    margin: 0 0 100px 0;
    position: relative;
}

@media(max-width:1100px){
    .support{
        margin: 0 0 70px 0;
    }
    .support .l-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
    }
}

.support-bg{
    background-image: url(../img/support-bg.png);
    background-size: cover;
    padding: 78px 0 0 0;
    background-position: center;
}

@media(max-width:1100px){
    .support-bg{
        background-size: contain;
    }
}

@media (max-width: 750px) {
    .support-bg {
        background-image: url(../img/support-bg-sp.webp);
        position: relative;
    }
}

.support-bg-item{
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 756px;
    top: 36px;
}

@media (max-width: 750px) {
    .support-bg-item{
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        top: 58px;
        width: auto;
        max-width: 240px;
    }
}

.support h3{
    padding: 0 0 17px 0;
}

@media (max-width: 750px) {
    .support h3{
        padding: 0 0 28px 0;
    }
}

.support-box{
    max-width: 316px;
    border-radius: 30px;
    padding: 0 3%;
    height: 509px;
    position: relative;
}

@media (max-width: 750px) {
    .support-box{
        max-width: 316px;
        border-radius: 20px;
        padding: 0 30px;
        height: auto;
        position: relative;
    }
}

@media (max-width: 390px) {
    .support-box{
        padding: 0 15px;
    }
}

.support-box img{
    max-width: 256px;
    margin: 0 auto;
}

.support-box-title{
    text-align: center;
    font-size: 20px;
    padding: 20px 0;
}

@media (max-width: 750px) {
    .support-box-title {
        text-align: center;
        font-size: 20px;
        padding: 13px 0;
    }
} 

.support-box-title span{
    font-size: 14px;
    display: block;
    margin: -12px 0 -9px 0;
}

.support-box-text{
    padding: 14px 0 26px 0;
    font-weight: 400;
}

@media (max-width: 750px) {
    .support-box-text{
        padding: 14px 0 0 0;
        font-weight: 500;
    }
} 


.support-item{
    position: absolute;
    bottom: -42px;
    right: -41px;
}

@media (max-width: 750px) {
    .support-item{
        position: absolute;
        bottom: -49px;
        right: -17px;
        max-width: 78px !important;
    }
} 

.support-photo-sp {
    margin: -14px 0 -24px 0 !important;
}

.support-box-item{
    display: block;
}

@media (max-width: 750px) {
    .support-photo2{
        height: 197px;
    }
    .support-box-text2{
        padding: 8px 0 22px 0;
    }
} 






/*//////////////////////////////////////

voice

//////////////////////////////////////*/
.voice{
    margin: 0 0 17px 0;
}

.voice-bg{
    background-image: url(../img/voice-bg.webp);
    background-size: cover;
    border-radius: 95px;
    position: relative;
    padding: 55px 0 100px 0;
}

@media(max-width:750px){
    .voice-bg{
        border-radius: 30px;
        padding: 34px 0 ;
    }
}

@media(max-width:390px){
    .voice-bg{
        border-radius: 30px;
        padding: 34px 0  15px;
    }
}

.voice-bg-item{
    position: absolute;
    top: -45px;
    left: 33.5%;
}

@media(max-width:1100px){
    .voice-bg-item{
        left: 27.5%;
        width: 70%;
        top: -36px;
    }
}

@media(max-width:750px){
    .voice-bg-item{
        top: 38px;
        width: 291px;
        left: 61%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}

@media (max-width: 390px) {
    .voice-bg-item {
        top: 33px;
        width: 250px;
        left: 61%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}

.voice-title{
    padding: 0 0 14px 0;
}

@media(max-width:750px){
    .voice-title {
        padding: 0 0 22px 0;
    }
}

.voice-subtitle{
    font-size: 27px;
}

@media(max-width:750px){
    .voice-subtitle{
        font-size: 14px;
        letter-spacing: 0.7px;
    }
}

.voice-subtitle2{
    padding: 0 0 10px 0;
}

@media(max-width:750px){
    .voice-subtitle2 {
        padding: 0 0 41px 0;
    }
}

.voice-box2{
    margin: 55px 0 94px 0;
}

@media(max-width:1100px){
    .voice-box ,.voice-box2 {
        max-width: 90%;
        margin: 0 auto 94px;
    }
    .voice-box img,.voice-box2 img{
        max-width: 60%;
    }
}

@media (max-width: 750px) {
    .voice-box, .voice-box2 {
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin: 0 auto 17px;
    }
    .voice-box img, .voice-box2 img {
        max-width: 100% ;
    }
    .voice-box2{
        gap: 50px;
        margin: 0 auto 45px;
    }

}




/*//////////////////////////////////////

event

//////////////////////////////////////*/
.event-bg{
    background-image: url(../img/event-bg.webp);
    background-size: cover;
    padding: 67px 0 100px 0;
    background-position: center;
}

@media(max-width:1100px){
    .event-bg{
        background-size: contain;
    }
    .event .l-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 20px;
    }
}

.event-bg-item{
    position: absolute;
    /* top: 34px; */
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 500px;
}

@media(max-width:750px){
    /*.event-bg{
        background-image: none;
        position: relative;
        padding: 58px 0 47px 0;
    }*/
    .event-bg-item{
        position: absolute;
        /*top: 34px;
        left: 59%;*/
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: auto;
        max-width: 250px;
    }
}

@media (max-width: 390px) {
    .event-bg-item {
        position: absolute;
        left: 52%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
    }
}

.event-title{
    padding: 50px 0 25px 0;
}

@media(max-width:750px){
    .event-title {
        padding: 30px 0 39px 0;
    }
}

.event-box{
    border-radius: 80px;
    padding: 0 5% 45px;
}

@media(max-width:750px){
    .event-box{
        border-radius: 30px;
        max-width: 350px !important;
        margin: 0 auto;
    }
}

.event-box-title{
    text-align: center;
    max-width: 548px;
    margin: 0 auto 37px;
    padding: 22px 0;
    border-radius: 0 0 20px 20px;
}

@media(max-width:750px){
    .event-box-title {
        padding: 14px 0;
        max-width: 298px;
        margin: 0 auto 31px;
    }
}

.event-merit{
    margin: 0 auto;
    display: block;
}

@media(max-width:750px){
    .event-merit{
        display: none !important;
    }
    .event-merit-sp{
        margin: 0 auto;
    }
}

.event-content__wrapper{
    margin: 45px 0 0 0;
}

.event-content{
    max-width: 439px;
    height: 757px;
    padding: 0 30px;
    position: relative;
    border-radius: 60px;
    -webkit-box-shadow: 0 0 16px rgba(196, 100, 18, 0.16);
            box-shadow: 0 0 16px rgba(196, 100, 18, 0.16);
}

@media(max-width:750px){
    .event-content{
        width: 318px;
        height: auto;
        padding: 0 20px;
        position: relative;
        border-radius: 30px;
    }
    
}

@media (max-width: 390px) {
    .event-content {
        width:300px;
    }
}

.event-content-text{
    margin: 0 0 23px 0;
    font-weight: 400;
}

@media(max-width:750px){
    .event-content-text{
        margin: 0 0 14px 0;
        font-weight: 400;
    }
}

.event-btn img{
    max-width: 271px;
}

@media(max-width:750px){
    .event-btn img{
        max-width: 250px;
    }
    
}

@media (max-width: 390px) {
    .event-btn img {
        max-width: 200px;
    }
}

.event-content-title{
    padding: 20px 0 28px;
    font-weight: 300;
}

@media(max-width:750px){
    .event-content-title {
        padding: 5px 0 16px;
        font-weight: 300;
    }
}

.event-btn{
    position: absolute;
    bottom: 52px;
    left: 90px;
}

@media(max-width:750px){
    .event-btn{
        right: 0;
        left: 0;
        width: fit-content;
        margin: auto;
        bottom: 20px;
    }
}

.event-content1{
    margin: 0 0 128px 0;
}

.event-content2{
    margin: 50px 0 33px 0 !important;
}

@media(max-width:750px){
    .event-content1{
        margin: 0 0 100px 0;
    }
    .event-content2 {
        margin: 14px 0 16px 0 !important;
    }
}

.event-content3{
    margin: 0 0 124px 0;
}

@media(max-width:750px){
    .event-content3{
        margin: 0 0 100px 0;
    }
}


.event-item{
    display: block;
    margin: 38px 20% 42px 48%;
}

@media(max-width:750px){
    .event-item {
        display: block;
        margin: 33px 0 28px 46%;
    }
}

@media (max-width: 390px) {
    .event-item {
        display: block;
        margin: 33px 0 28px 27%;
    }
}

.event-box2{
    max-width: 907px;
    margin: 0 auto;
    position: relative;
    height: 318px;
}

.event-box-text{
    text-align: center;
    max-width: 495px;
    margin: 0 auto;
    font-weight: 400;
}

@media(max-width:750px){
    .event-box2{
        height: 300px ;
    }
    .event-box-text {
        text-align: left;
        max-width: 472px;
        margin: -12px 0 0 0;
        font-weight: 500;
        letter-spacing: -1.2px;
    }
}

@media (max-width: 390px) {
    .event-box2 {
        height: 252px;
    }
}

.event-btn2{
    left: 34%;
}

@media(max-width:750px){
    .event-btn2{
        left: 35px;
    }
}

.event-btn2 img{
    max-width: 271px;
}

.event-item2{
    position: absolute;
    bottom: 0;
    left: 20%;
}

.event-item3{
    position: absolute;
    bottom: 0;
    right: 22%;
}

@media(max-width:750px){
    .event-item2{
        position: absolute;
        bottom: 0;
        left: -13px;
        max-width: 90px;
    }
    .event-item3 {
        position: absolute;
        bottom: 0;
        right: -10px;
        max-width: 73px;
    }
    .event-btn2-sp img{
        max-width: 288px;
    }
}


@media(max-width:390px){
    .event-btn2-sp{
        left: 16%;
    }
    .event-btn2-sp img{
        max-width: 220px;
    }
}





/*//////////////////////////////////////

footer

//////////////////////////////////////*/
footer{
    background-color: #F4F4F4;
    padding: 70px 0 90px 0;
}

@media(max-width:750px){
    footer{
        padding: 60px 0 90px 0;
    }
}

.footer-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 11%
}

@media(max-width:750px){
    .footer-flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 11%;
        margin: 0 auto;
        max-width: 340px;
    }
}

.footer-right{
    max-width: 408px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

address{
    padding: 22px 0 0 0;
}

@media(max-width:750px){
    address{
        padding: 16px 0 0 0;
    }
}

address p{
    font-style: normal;
}

@media(max-width:750px){
    address p {
        font-style: normal;
        font-size: 16px;
    }
}

.footer-item{
    margin: -80px 0 -64px 0;
}

@media(max-width:750px){
    .footer-item {
        margin: 45px 0 15px 0;
        max-width: 308px;
    }
}

.footer-icon{
    margin: 0 0 16px 0;
    gap: 20px;
}

@media(max-width:750px){
    .footer-icon img{
        max-width: 60px;
    }
    .footer-icon{
        margin: 0 0 16px 0;
        gap: 13px;
    }
}

.footer-btn img{
    max-width: 295px;
}



.sp{
    display: none;
}

@media(max-width:750px){
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
}

