*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
img{
    display: block;
    width: 100%;
    object-fit: contain;
}
.wrapper{
    overflow: hidden;
}
.wrapper.fixed{
    max-height: 100vh;
}


header{
    width: 94%;
    max-width: 1000px;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}
header .header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 94%;
    margin-inline: auto;
}
header .header_inner .logo{
    width: 34%;
}
header .header_inner .header_btn{
    display: flex;
    width: 35%;
}
header .header_inner .header_btn a,
header .header_inner .header_btn .modal-open{
    display: block;
}
header .header_inner .header_text{
    line-height: 14px;
    font-size: 12px;
    padding: 0 10px 0 10px;
    text-align:center;
    font-family:serif;
}
.colon-pc{
    display:none;
}

.fv{
    margin-top: -50px;
    position: relative;
}
.fv .cta01{
    position: absolute;
    bottom: 2%;
    width: 96%;
    left: 2%;
}

.monitor{
    position: relative;
}
.monitor .cta01{
    position: absolute;
    display: block;
    width: 96%;
    left: 2%;
    bottom: 20%;
}
.menu{
    position: relative;
}
.menu .menu_btn{
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 96%;
    left: 2%;
    bottom: 6%;
}
.menu .menu_btn a{
    display: block;
    width: 50%;
}

.insta{
    position: relative;
}
.insta video{
    position: absolute;
    z-index: 0;
    width: 67%;
    top: 17.5%;
    right: 3%;
}
.insta img{
    position: relative;
    z-index: 1;
}

.case{
    position: relative;
}
.case .cta01{
    position: absolute;
    display: block;
    width: 96%;
    left: 2%;
    bottom: 8%;
}

.method01{
    position: relative;
    background-color: #ff4883;
}
.tabs{
    position: absolute;
    width: 96%;
    left: 2%;
    top: 31.5%;
    z-index: 1;
}
.tab_item{
    width: calc(100%/3);
    display: block;
    float: left;
    transition: all 0.2s ease;
    position: relative;
    top: 10px;
    z-index: 0;
    position: relative;
}
input[name="tab_item"]{
    display: none;
}
.tab_content{
    display: none;
    padding: 10px;
    border: 2px solid #ff4883;
    border-top: none;
    border-radius: 0 0 10px 10px;
    background-color: #fff;
    clear: both;
    overflow: hidden;
    z-index: 1;
    position: relative;
}
#order01:checked ~ #order01_content,
#order02:checked ~ #order02_content,
#order03:checked ~ #order03_content {
    display: block;
}
input[name="tab_item"]:checked+label{
    top: 0;
}
.tab_content .ttl{
    border-left: 8px solid #ff4883;
    padding-left: 10px;
    margin-top: 5px;
}
.tab_content .ttl p{
    font-weight: 700;
}
.tab_content .ttl p:first-child{
    font-size: 11px;
}
.tab_content .ttl p:last-child{
    color: #ff4883;
    font-size: 20px;
}
.tab_content .lead{
    margin: 10px auto;
}
.tab_content .lead img{
    margin-bottom: 5px;
}
.tab_content .lead p{
    font-size: 14px;
    text-align: justify;
    line-height: 1.5;
}
.order02_content,
.order02_content .ttl{
    border-color: #60b3d3;
}
.order02_content .ttl p:last-child{
    color: #60b3d3;
}
.order03_content,
.order03_content .ttl{
    border-color: #89e361;
}
.order03_content .ttl p:last-child{
    color: #89e361;
}

.method02{
    position: relative;
    z-index: 2;
}
.method02 .bar{
    position: absolute;
    top: -15%;
    left: 0;
    right: 0;
}
.method02 .cta02{
    position: absolute;
    display: block;
    width: 96%;
    left: 2%;
    bottom: 6%;
}

.access{
    position: relative;
}
.access iframe{
    position: absolute;
    display: block;
    width: 84%;
    left: 8%;
    bottom: 6%;
    height: 21%;
}

.modal{
    display: none;
}
.modal.open{
    display: block;
    position: fixed;
    z-index: 5;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.modal .modal__bg{
    background-color: #000;
    opacity: 0.6;
    width: 100%;
    height: 100%;
}
.modal .modal_content{
    width: 90%;
    position: absolute;
    top: 22%;
    left: 5%;
}
.modal .modal_content .modal_content_inner{
    position: relative;
}
.modal .modal_content .modal_content_inner .modal_cta,
.modal .modal_content .modal_content_inner .close-btn{
    position: absolute;
}
.modal .modal_content .modal_content_inner .modal_cta{
    width: 96%;
    left: 2%;
    bottom: 3%;
    display: none;
}
.modal .modal_content .modal_content_inner .modal_cta.active{
    display: block;
}
.modal .modal_content .modal_content_inner .close-btn{
    top: -10%;
    right: 0;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

.follow{
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 5;
    width: 96%;
}

@media screen and (min-width: 769px){
    header .header_inner .logo{
        width: 20%;
    }
    header .header_inner .header_btn{
        width: 23%;
    }
    header .header_inner .logo {
        width: 20%
    }
    header .header_inner .header_text{
       font-size: calc(0.25vw + 0.8rem);
        margin-left: 22%;
        margin-top: -0.5%;
    }
    .colon-pc{
        display:inline-block;
    }


    .monitor .cta01{
        width: 40%;
        left: 30%;
        bottom: 22%;
    }
    .fv .cta01{
        width: 40%;
        left: 30%;
        bottom: 3%;
    }

    .menu .menu_btn{
        width: 60%;
        left: 20%;
        bottom: 15%;
        flex-wrap: nowrap;
    }
    .menu .menu_btn a{
        width: 25%;
    }

    .insta video{
        width: 26%;
        right: 30.8%;
        top: 18%;
    }

    .case .cta01{
        width: 40%;
        left: 30%;
        bottom: 12%;
    }

    .tabs{
        width: 50%;
        left: 25%;
        top: 28%;
    }
    .tab_item{
        top: 15px;
    }
    .tab_content{
        padding: 20px;
    }
    .tab_content .ttl p:first-child{
        font-size: 15px;
    }
    .tab_content .ttl p:last-child{
        font-size: 30px;
    }
    .tab_content .lead{
        display: flex;
        flex-direction: row-reverse;
    }
    .tab_content .lead{
        margin: 15px auto;
    }
    .tab_content .lead p{
        font-size: 14px;
    }
    .tab_content .lead img{
        margin: 0;
        width: 50%;
        margin-left: 3%;
    }
    .method02 .cta02{
        width: 44%;
        left: 28%;
        bottom: 6%;
    }

    .access iframe{
        width: 20%;
        height: 32%;
        left: 49.5%;
        bottom: 9%;
    }
    
    .modal .modal_content{
        width: 30%;
        left: 35%;
        top: 15%;
    }
    .follow{
        width: 50%;
        right: 25%;
        bottom: 10px;
    }
}
@media screen and (min-width: 1400px){
    .fv{
        margin-top: -60px;
    }

    .tab_item{
        top: 20px;
    }
}



/*タブ切り替え箇所　調整*/
@media screen and (min-width: 1201px){
    .method01{
        padding-bottom: 0;
    }
}
@media screen and (min-width: 841px) and (max-width: 1200px){
    .method01{
        padding-bottom: 8%;
    }
}
@media screen and (min-width: 769px) and (max-width: 860px){
    .tabs{
        top: 25%;
    }
    .tab_item{
        top: 10px;
    }
    .method01{
        padding-bottom: 15%;
    }
    .tab_content .ttl p:first-child{
        font-size: 12px;
    }
}
@media screen and (min-width: 601px) and (max-width: 768px){
    .tabs{
        top: 38%;
    }
    .tab_item{
        top: 20px;
    }
    .method01{
        padding-bottom: 0;
    }
}
@media screen and (max-width: 600px){
    .method01{
        padding-bottom: 10%;
    }
}
@media screen and (max-width: 350px){
    .method01{
        padding-bottom: 30%;
    }
}


/*　光るボタン */

@media (min-width: 1310px) {
    .shiny {
        display: block;
        position: relative;
        overflow: hidden;
        transition: 300ms;
        border-radius: 80px;
        box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.23);
      }
      .shiny::before {
        position: absolute;
        content: '';
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
        transform: skewX(-25deg);
        animation: shine 2.5s infinite;
    }

    @keyframes shine {
        100% {
            left: 125%;
        }
    }
    
    .cta_inner {
        position: absolute;
        top: 69%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 30px;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
    
    .case .cta_inner {
        position: absolute;
        top: 61%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 30px;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
}

@media (min-width: 769px) and (max-width: 1309px){
    .shiny {
        display: block;
        position: relative;
        overflow: hidden;
        transition: 300ms;
        border-radius: 80px;
        box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.23);
      }
      .shiny::before {
        position: absolute;
        content: '';
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
        transform: skewX(-25deg);
        animation: shine 2.5s infinite;
    }

    @keyframes shine {
        100% {
            left: 125%;
        }
    }
    
    .cta_inner {
        position: absolute;
        top: 68%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 20px;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
    
    .case .cta_inner {
        position: absolute;
        top: 61%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 20px;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
}

@media (max-width: 768px) and (min-width: 401px)  {
    .shiny {
        display: block;
        position: relative;
        overflow: hidden;
        transition: 300ms;
        border-radius: 80px;
        box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.23);
      }
      .shiny::before {
        position: absolute;
        content: '';
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
        transform: skewX(-25deg);
        animation: shine 2.5s infinite;
    }

    @keyframes shine {
        100% {
            left: 125%;
        }
    }

    .cta_inner {
        position: absolute;
        top: 72%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 1.5em;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }

    .case .cta_inner {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 1.5em;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
}

@media (max-width: 400px) {
    .shiny {
        display: block;
        position: relative;
        overflow: hidden;
        transition: 300ms;
        border-radius: 80px;
        box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.23);
      }
      .shiny::before {
        position: absolute;
        content: '';
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 100%);
        transform: skewX(-25deg);
        animation: shine 2.5s infinite;
    }

    @keyframes shine {
        100% {
            left: 125%;
        }
    }

    .cta_inner {
        position: absolute;
        top: 72%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 1.2em;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }

    .case .cta_inner {
        position: absolute;
        top: 74%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #222222;
        font-size: 1.2em;
        white-space: nowrap;
        font-weight: bold;
        text-align: center;
        font-family: 'しっぽり明朝';
    }
}

/* 離脱ポップアップ */
#backGuide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    max-width: 80%;
    max-height: 80%;
}

.popup-content img {
    max-width: 450px;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

#closeButton {
    position: fixed;
    top: 7px;
    right: 24px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}
.min{
    font-size: 0.7rem;
    color: #6e6e6e;
}
.sp{
    display: none;
}
.pc{
    display: block;
}
@media screen and (max-width:768px) {
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    
}