/*---------------------------
common
---------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
}
html, body {
    overflow-x: hidden;
}
body{
    max-width: 600px;
    width: 100%; 
    margin: 0 auto;
    background: #f5fcff;
}
.wrapper {
    margin-inline: auto;
    overflow-x: hidden;
    background: #fff;
}
img {
    display: block;
    width: 100%;
    object-fit: contain;
}
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}

@media screen and (max-width:767px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}


/*---------------------------
Header+MV
---------------------------*/
section.FV{
    margin: 0;
}
header {
    width: 100%;
    background: #fff;
    padding: 3% 2% 1%;
    display: flex;
    justify-content: space-between;
}
a img.hlogo{
    width: 80%;
    margin-top: 3%;
}
div.Btn_htel a:hover img{
    opacity: 0.7;
}

/*---------------------------
CTA
---------------------------*/
section.CTA{
    padding: 3% 2%;
    border: 10px solid #cdeaf6;
    margin: 2%;
}
section.CTA .cta-toptxt{
    width: 90%;
    margin: 0 auto 3%;
}
section.CTA a img{
    transition: opacity 0.2s;
}
section.CTA a:hover img {
    opacity: 0.7;
}
section.CTA .btn_sub{
    display: flex;
}

/* 一時的な記述  260611*/
section.CTA .btn_sub{
    display: block;
    margin: 0 auto;
}

/* MV下限定 CTA余白 */
section.MV_under{
    padding: 0 4% 5%; 
}
/* アニメーション */
.tel.light-run {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.tel.light-run::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.6) 50%, 
        rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite ease-in-out;
}
/* 光が左から右へ動くアニメーション */
@keyframes shine {
    0% {
        left: -150%;
    }
    50% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}


/*---------------------------
Price
---------------------------*/
section.Price .price-content{
    padding: 0 0 8%;
    background: #3dbbe4;
}

/*---------------------------
Flow
---------------------------*/
section.Flow{
    background: #004b8a;
    padding: 2% 0 0;
}
section.Flow .flow-content{
    margin-top: -3%;
}

/*---------------------------
Voice
---------------------------*/
section.Voice{
    background: #3dbbe4;
    padding: 12% 0 4%;
}
section.Voice .voice_slider{
    padding: 4% 0 0;
}
/* Voice slider 微調整 */
.voice_slider picture img {
    width: 88%;
    height: auto;
    margin: 0 auto; 
    display: block;
}
.voice_slider_wrapper {
    margin: 2% auto 6%;
}
.voice_slider picture {
    margin-inline: 0px;
}
.voice_slider .slick-prev,
.voice_slider .slick-next {
    z-index: 3;
    width: 40px;
    height: 40px;
    background-image: url("../img/voice_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.voice_slider .slick-prev {
    left: 8px;
}
.voice_slider .slick-next {
    right: 8px;
}
.voice_slider .slick-prev:before,
.voice_slider .slick-next:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../img/voice_arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
}
/* 右矢印だけ反転 */
.voice_slider .slick-next:before {
    transform: rotate(180deg);
}

/*---------------------------
FAQ
---------------------------*/
section.FAQ{
    padding: 4% 0 10%;
}
section.FAQ .accordion {
    width: 90%;
    margin: -3% auto 0;
}
section.FAQ .accordion dt {
    color: #fff;
    background-color: #3dbbe4;
    padding: 5%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.5s;
    position: relative;
}
section.FAQ .accordion dt::after {
    content: '▼';
    position: absolute;
    right: 5%;
    top: 34%;
    font-size: 20px;
    transition: all 0.5s;
}
section.FAQ .accordion dt.active {
    border-radius: 10px 10px 0 0;
}

section.FAQ .accordion dt.active::after {
    transform: rotate(-180deg);
}
section.FAQ .accordion dt p{
    font-size: 1.2em;
}

section.FAQ .accordion dd {
    padding: 2% 4% 5%;
    display: none;
}
section.FAQ .accordion dd p{
    line-height: 1.7;
}
section.FAQ .accordion dd img{
    margin-top: 4%;
}
section.FAQ .accordion dt>div{
    display: flex;
    gap: 10px;
}
section.FAQ .accordion dt>div {
    align-items: center;
}
section.FAQ .accordion dt>div img{
    width: 10%;
    margin-top: -3%;
}
section.FAQ .accordion dd+dt {
    margin-top: 2%;
}
@media screen and (max-width: 767px) {
    section.FAQ .accordion dt {
        padding: 10px 15px 13px;
    }
    section.FAQ .accordion dt p{
        font-size: 1.1em;
        margin-left: -1%;
    }
    section.FAQ .accordion dt>div img{
        width: 14%;
        margin-top: -3%;
    }
    section.FAQ .accordion dd+dt {
        margin-top: 4%;
    }
}


/*---------------------------
footer
---------------------------*/
footer {
    background-color: #004b8a;
    color: #fff;
    padding: 7% 0;
    font-size: 14px;
    margin: 0;  
}
footer .logo {
    max-width: 500px;
    width: 40%;
    margin-inline: auto;
    margin-bottom: 10px;
}
footer .privacy {
    display: block;
    text-align: center;
    margin-top: 5%;
}
footer .privacy a {
    color: #fff;
    font-size: 16px;
}
footer table {
    border-collapse: collapse;
    width: 90%;
    margin: 10px auto;
    font-size: 14px;
}

footer table th {
    text-align: right;
    width: 30%;
}

footer table td {
    padding: 5px 0 5px 10px;
}
@media screen and (max-width: 767px) {
    footer {
        padding: 10% 0;
    }
    footer .logo {
        max-width: 500px;
        width: 60%;
    }
    footer .privacy {
        margin-top: 8%;
    }
    footer table {
        margin: 10px 2px 10px 0;
        font-size: 12px;
    }
}

/*---------------------------
Privacy
---------------------------*/
.privacy_page {
    background: #06a4d9;
    padding: 0 0 10%;
}
.ptxt-inner{
    background: #fff;
    width: 90%;
    margin: 0 auto;
    padding: 8% 5%;
    border-radius: 10px;
}
.privacy_page h2 img{
    padding: 10% 0 5%;
    width: 80%;
    margin: 0 auto;
}
.privacy_page h3 {
    font-size: 18px;
    margin-top: 20px;
}
.privacy_page p {
    font-size: 14px;
    line-height: 1.5;
}


/**/
.cta_txt_area {
    text-align: center;
    margin: 5px 5px 10px;
    font-size: 20px;
    font-weight: bold;
}
.cta_txt_area span {
    color:red;
    font-size: 155%;
}
/*追従*/
.floating {
        display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0 auto;
    width: 100%;
    max-height: 145px;
    padding: 10px 5px 0;
    text-align: center;
    background-color: #004b8ab5;
    color: #fff;
    font-weight: bold;
}
span#realtime {
    font-size: 150%;
    color: #f9f806;
}