@charset "utf-8";
* {
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',"游ゴシック体","YuGothic","游ゴシック","Yu Gothic",'Meiryo','メイリオ', sans-serif;
}
body{
    margin: 0;
    padding: 0;
}
.abs {
    position: absolute;
}
.rel {
    position: relative;
}
.mt10 {
    margin-top: 10px;
}
.fcr {
    color: #ff0000;
}
.fcp {
    color: #FA57CC;
}
.fcb {
    color: #0047b2;
}
.fcsb {
    color: #0497FF;
}
.fsm {
    font-size: 19px;
}
.fsl {
    font-size: 21px;
}
.fsll {
    font-size: 23px;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}
.tac {
    text-align: center;
}
.bold {
    font-weight: bold;
}
.mark {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%,#ffff00 0%) repeat scroll 0 0;
}
#wrapper{
    margin: auto;
}
img,video {
    width: 100%;
    vertical-align: middle;
    margin-bottom: 10px;
}
.anno {
    font-size: 10px;
    color: gray;
    text-align: right;
    margin-top: -10px;
}

@media only screen and (max-width: 767px){
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
}
@media only screen and (min-width: 767px){
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
    #wrapper{
        width: 600px;
        margin: auto;
    }
}



/* ------------------------------ ヘッダー ------------------------------ */
.header{
    background: #ffffff;
}
.header_inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2% 3% 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo{
    width: 35%;
}
.header_tell{
    width: 55%;
}


/* ------------------------------ MV ------------------------------ */
.mv h1{
    margin: 0;
}
.mv img{
    margin: 0;
}

/* ------------------------------ エリア ------------------------------ */
.area img {
    margin: 0;
}

/* ------------------------------ CTA01 ------------------------------ */
.cta_area01{
    padding: 11% 0;
    background: #1d5db4;
    position: relative;
}
.cta_area01 img{
    margin: 0;
}
.status-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d40927;
    width: 90%;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 36%;
    left: 51%;
    transform: translate(-50%, -50%);
}
#current-time {
    color: #d40927; /* 時刻の部分を強調 */
    font-size: 1.5rem;
}
.cta_area01_btn{
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
}

    /* きらんと光る */
    .cta_area01_btn a {
        position: relative;
        display: inline-block;
        overflow: hidden; /* はみ出た光を隠す */
        line-height: 0;
        text-decoration: none;
    }

    .cta_area01_btn a::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%; /* スタート位置（左側の外） */
        width: 200%;
        height: 100%;
        
        /* 光のグラデーション */
        background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0) 60%
        );
        transform: skewX(-25deg); /* 斜めにする */

        /* --- 自動アニメーションの設定 --- */
        /* shine: アニメーション名 */
        /* 3s: 3秒おきに実行（光る速度ではなく全体のサイクル） */
        /* infinite: 無限に繰り返す */
        animation: shine 4.5s infinite;
    }

    /* 光が走る動きの定義 */
    @keyframes shine {
        0% {
            left: -100%;
        }
        35% {
            left: 125%;
        }
        100% {
            left: 125%;
        }
    }

@media only screen and (max-width: 766px){
    .status-message {
        font-size: 3.7vw;
    }
    #current-time {
        font-size: 3.7vw;
    }
}

/* ------------------------------ お悩み ------------------------------ */
.trouble img{
    margin: 0;
}

/* ------------------------------ 作業一覧 ------------------------------ */
.price {
    background-image: url(../img/price_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 5%;
}
.price_inner{
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

.price_list {
    display: grid;
    /* 横幅を2等分にする（1frを2回繰り返す） */
    grid-template-columns: repeat(2, 1fr);
    /* 画像同士の隙間（適宜調整してください） */
    gap: 10px;
    /* 中央寄せにしたい場合 */
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.price_list img {
    width: 100%;
    height: auto;
    display: block; /* 画像の下にできる謎の隙間を消す */
}

/* ------------------------------ お支払方法 ------------------------------ */
.payment {
    background-image: url(../img/pay_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 5%;
}

/* ------------------------------ CTA02 ------------------------------ */
.cta_area02 {
    padding: 11% 0;
    background: #1d5db4;
    position: relative;
}
.cta_area02 img{
    margin: 0;
}
.cta_area02_btn{
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
}
.cta_area02_btn a{
    margin: 0;
}
.cta_area02_btn a img{
    margin: 0;
}
.cta_area02 .status-message {
    top: 37%;
}
#current-time0202 {
    color: #d40927; /* 時刻の部分を強調 */
    font-size: 1.5rem;
}

.shine {
    position: relative;
    display: inline-block;
    overflow: hidden;    /* これで光を自分の枠内に閉じ込める */
    line-height: 0;
    vertical-align: middle;
}
.shine::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 60%
    );
    transform: skewX(-25deg);
    animation: common-shine 4s infinite;
    pointer-events: none; 
}
@keyframes common-shine {
    0% { left: -100%; }
    40% { left: 125%; }
    100% { left: 125%; }
}



/* ------------------------------ 選ばれる理由------------------------------ */
.reason {
    background-image: url(../img/reason_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 0;
}
.reason_inner h2 {
    padding: 0 5%;
}
.reason_list_item img {
    margin: 4% 0;
}


/* ------------------------------ 比較 ------------------------------ */
.hikaku {
    background-image: url(../img/hikaku_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 5%;
}
.hikaku_inner h2 {
    width: 80%;
    margin: 0 auto;
}


/* ------------------------------ 悪徳業者 ------------------------------ */
.akutoku img {
    margin: 0;
}

/* ------------------------------ お客様の声 ------------------------------ */
.voice {
    background-image: url(../img/voice_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 5%;
}
.voice_inner h2 {
    width:55%;
    margin: 0 auto;
}
.voice_slider {
    margin-top: 4%;
}
.voice_slider_item img {
    margin: 0;
}
.voice_slider_item img {
    width: 100%; /* 画像をスライド幅に合わせる */
    height: auto;
}

.slick-dots li button:before{
    font-size: 8px !important;
    color: #ffffff !important;
}


/* ------------------------------ 流れ ------------------------------ */
.flow {
    background-image: url(../img/flow_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7% 5%;
}
.flow_inner h2 {
    width: 65%;
    margin: 0 auto;
}
.flow img {
    margin: 4% auto;
}


/* ------------------------------ エリア02 ------------------------------ */
.area02 {
    background-image: url(../img/area02_bg_sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6% 5%;
}
.area02_inner h2 {
    width: 60%;
    margin: 0 auto;
}
.area02 img {
    margin: 4% auto;
}


/* ------------------------------ よくある質問 ------------------------------ */
.faq {
    background: #1d5db4;
    padding: 7% 5%;
}
.faq_inner h2 {
    width: 60%;
    margin: 0 auto 5%;
}

.qa {
    max-width: 600px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}
.qa summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #434343;
    font-weight: 600;
    cursor: pointer;
}
.qa summary::before,
.qa p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}
.qa summary::before {
    color: #1d5db4;
    content: "Q";
}
.qa summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #434343b3;
    border-right: 3px solid #434343b3;
    content: '';
    transition: transform .5s;
}
.qa[open] summary::after {
    transform: rotate(225deg);
}
.qa p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}
.qa[open] p {
    transform: none;
    opacity: 1;
}
.qa p::before {
    color: #f3860f;
    line-height: 1.2;
    content: "A";
}


/* ------------------------------ フッター ------------------------------ */
footer {
    padding: 10% 5%;
    text-align: center;
    background-color: #e2f3fb;
}
.footer_content img {
    width: 50%;
}
.footer_content p {
    font-size: 14px;
    margin: 0 auto;
}

@media only screen and (min-width: 767px){
    .footer_flex {
        display: flex;
        justify-content: center;
        text-align: left;
    }
    .footer_content img {
        width: 70%;
    }
}


/* ------------------------------ 追従 ------------------------------ */
.follow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease; /* ふわっと表示 */
  opacity: 0;
  visibility: hidden;
}

/* 表示クラス */
.follow.is-show {
  opacity: 1;
  visibility: visible;
}

.follow img {
    max-width: 560px;
    display: block;
    height: auto;
    margin: 0 auto;
    padding: 0 0% 0 1%;
}