@charset "UTF-8";

*{
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-feature-settings: 'palt';
    margin: 0;
    padding: 0;
}

div{
    height:fit-content;
    
}

img{
    margin:0;
    padding:0;
    display: block;
    width: 100%;
    height: auto;
}

a{
    text-decoration:none;
    transition:0.2s;
}

a:hover{
    opacity:0.7;
}

.all-content{
    width:100%;
    overflow: hidden;
}

.inline-b{
    display:inline-block;
}

.sp, .tb, .tb-only{
    display:none
}

@media screen and (max-width:768px){
    .tb, .tb-only{
        display:inherit;
    }

    .pc{
        display:none;
    }
}

@media screen and (max-width:480px){
    .tb-only{
        display:none;
    }

    .sp{
        display:inherit;
    }
}


/* fonts */
.yu{
    font-family: "yu-gothic-pr6n", sans-serif;
}

.miller {
    font-family: "miller-display", serif;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #f56e96;
    background: #f56e96;
}

body {
    overflow: hidden;
    
}

.lp-layout {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    width: 100%;
    height: 100%;
    background-image: url(img/body-back.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.lp-side {
    height: 100%;
    overflow: hidden;
}

.lp-side-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-side-left h1{
    width:68%;
}

.lp-side-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-side-right .right-cta{
    width:83%;
    position:relative;
}

.lp-side-right .right-cta .right-cta-btn{
    position:absolute;
    top:51%;
    left:50%;
    transform: translateX(-50%);
    width:85%;
}

.lp-main {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position:relative;
    container-type: inline-size;
}

.lp-main::-webkit-scrollbar {
    display: none;
}

.lp-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
}

.mid-none{
    max-width:400px;
}

@media screen and (max-width:1200px){
    .mid-none{
        display:none;
    }
}

@media screen and (max-width: 600px) {

    html,
    body {
        height: auto;
    }

    body {
        overflow: auto;
    }

    .lp-layout {
        position: static;
        display: block;
        width: 100%;
        height: auto;
    }

    .lp-side {
        display: none;
    }

    .lp-main {
        height: auto;
        overflow: visible;
    }

    .lp-content {
        width: 100%;
        max-width: none;
    }
}

/* mv */

.mv-btm{
    position:relative;
}

.mv-btm-btn{
    position:absolute;
    top:43%;
    width:76%;
    left: 50%;
    transform: translateX(-50%);
}

.cta01{
    border-radius:1000px;
    overflow: hidden;
}
/* スライド */

.sec01{
    position:relative;
    background-image:url(img/sec01.jpg);
    background-size:100%;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top:37cqw;
}
.sec-slide {
    width: 100%;

}


.sec-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.sec02{
    margin-top:-6%;
    position:relative;
}

.sec02 .btm-img{
    position:absolute;
    bottom:0;
    transform: translateY(54%);
    z-index:5;
}

.sec02-02{
    position:relative;
    z-index:0;
}

.sec02-02 .sec02-btn{
    position:absolute;
    width:76%;
    left:50%;
    transform: translateX(-50%);
    bottom:31%;
}

.sec03{
    position:relative;
    margin-bottom:-11.3%;
    z-index:5;
}

.sec03 .int-btn{
    position:absolute;
    top:63.6%;
    right:7.5%;
    width:35%;
    cursor: pointer;
}

/* モーダル */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;

    /* 追加 */
    pointer-events: none;
}

.modal.is-open {
    display: block;
}

.modal,
.modal__overlay {
    display: none;
}

.modal.is-open,
.modal__overlay.is-open {
    display: block;
}

.modal__overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    width: min(100%, 600px);
    height: 100dvh;
    left: 50%;
    transform: translateX(-50%);
    background: #a7a8a8;
    mix-blend-mode: multiply;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;

    /* ここ大事：modal本体はクリックを邪魔しない */
    pointer-events: none;
}

.modal__overlay.is-open,
.modal.is-open {
    display: block;
}

.modal__content {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 10000;
    width: min(90%, 540px);
    height: 100dvh;
    padding: 1% 0;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-50%);
    pointer-events: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.modal__content picture,
.modal__content img {
    display: block;
    width: 100%;
}

.modal__content img {
    height: auto;
}

.modal__close{
border:none;
color:#fff;
background:none;
right:0;
font-size:4cqw;
cursor: pointer;
margin-left:auto;
display:block;
font-weight:100;
}

@media screen and (max-width:600px) {

    .modal__close {
        font-size: 8cqw;
    }
}

.sec04{
    background-image:url(img/sec04-back.jpg);
    background-position: center top;
    background-size: 100% 98%;
    background-repeat: no-repeat;
    position:relative;
    z-index:4;
}

.sec05{
    background-image:url(img/sec05-back.jpg);
    padding-top:17.7%;
    padding-bottom:20%;
    margin-top:-14%;
    position:relative;
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat;
    z-index:0;
}

.sec05 .sec05-btn{
    width: 76%;
    left: 50%;
    transform: translateX(-50%);
    position:absolute;
    bottom:40%;
}

.sec06{
    position: relative;
    z-index: 1;
    margin-top: -1px;
    background-image: url("img/sec06-back.jpg");
    background-size: cover;
    background-position: center top;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
    padding-top: 14%;
    margin-top:-17%;
    padding-bottom:66%;
    container-type: inline-size;
    position: relative;
    overflow: visible;
    z-index:6;
}

/* キャリアたぶ */


.sec06-tabs {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    padding: 5cqw 0 0;
    gap: 0;
    border-bottom: 1px solid #f56e96;
}

.sec06-tab {
    width: 50%;
    padding: 2.5cqw 1cqw 1.75cqw;
    border: none;
    border-radius: 2.5cqw 2.5cqw 0 0;
    background: transparent;
    color: #787878;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sec06-tab.is-active {
    background: #f56e96;
    color: #fff;
}

.sec06-tab__en {
    display: block;
    font-size: 3.5cqw;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.02em;
}

.sec06-tab__ja {
    display: block;
    margin-top: 1.7cqw;
    font-size: 3.5cqw;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.sec06-tab__en.miller {
    font-weight: 300;
}

.sec06-tab__ja.yu {
    font-weight: 600;
}
.sec06-panels {
    position: relative;
}

.sec06-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.sec06-panel.is-active {
    display: block;
    opacity: 1;
}

.sec06-panel picture,
.sec06-panel img {
    display: block;
    width: 100%;
}

.sec06-panel img {
    height: auto;
}

.sec06-btm{
    position:absolute;
    top:0;
    transform: translateY(-46%);
    left:2%;
    z-index:10;
}


.sec07{
    position:relative;
    margin-top:-11%;
    padding-bottom:6%;
}

.sec08{
    background-image: url(img/sec08-back.jpg);
    background-size: cover;
    background-position: center top;
    clip-path: polygon(0 10cqw, 100% 0, 100% 100%, 0 100%);
    padding-top: 14%;
    margin-top: -17.2cqw;
    padding-bottom:10%;
}

.sec09{
    position:relative;
    container-type: inline-size;
}

.sec09 .gmap{
    width:90%;
    height: 47.5cqw;
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    top:15%;
}

.sec09 .gmap iframe{
    width:100%;
    height:100%;
}

.sec10{
    position:relative;
}

.sec10 .sec10-btn{
    width: 76%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 37%;

}

.floating{
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:1000;
    background:#f56e96;
}

@media screen and (max-width:600px){
.floating {
        display: block;
    }

    .sec11 {
        padding-bottom:15%;
    }
}