* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", sans-serif;
}

.wrapper {
    max-width: 700px;
    margin-inline: auto;
    /* overflow-x: hidden; */
}

img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.hide {
    display: none !important;
}

.mv {
    position: relative;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}

header .btn_wrapper {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 68%;
    top: 10%;
    right: 2%;
    gap: 5px;
}

.note {
    font-size: 0.8em; /* 通常の80%のサイズ */
  }

.red {
    color: #ff0000;
    font-weight: bold;
}

.cta {
    position: relative;
}

.cta .content_wrapper {
    position: absolute;
    width: 90%;
    bottom: 11%;
    left: 5%;
    text-align: center;
}

.cta .content_wrapper .time {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    white-space: nowrap;
    font-size: 35px;
    text-align: center;
}

.cta .content_wrapper a {
    display: block;
}

.cta .content_wrapper a.tel {
    margin-bottom: 10px;
}

.comparison {
    position: relative;
}

.comparison .table_wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 5%;
    overflow-x: scroll;
    padding-bottom: 10px;
}

.comparison .table_wrapper img {
    width: 600px;
    margin-inline: 20px;
}

.voice {
    background: url(../img/05_voice_haikei.jpg);
    padding-bottom: 5px;
}

.voice_ttl {
    padding: 44px 20px 11px 20px;
}

.voice .voice_slider_wrapper {
    margin: 20px auto;
}

.voice .voice_slider .slick-track {
    padding-bottom: 40px;
}

.voice .voice_slider img {
    margin-inline: 20px;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

.voice .voice_slider .slick-dots {
    bottom: 9px;
}

.voice .voice_slider .slick-dots li {
    margin-inline: 2px;
}

.voice .voice_slider .slick-dots li button:before,
.voice .voice_slider .slick-dots li.slick-active button:before {
    color: #282828;
    font-size: 10px;
}

.voice .voice_slider .slick-prev,
.voice .voice_slider .slick-next {
    z-index: 3;
}

.voice .voice_slider .slick-prev {
    left: 20px;
    margin-top: -7%;
}

.voice .voice_slider .slick-next {
    right: 20px;
    margin-top: -7%;
}

.voice .voice_slider .slick-prev:before,
.voice .voice_slider .slick-next:before {
    font-family: "Noto Sans JP", sans-serif;
    color: #ffffff;
    opacity: 1;
}

.voice .voice_slider .slick-prev:before {
    content: '<';
    background: url(../img/arrow_haikei.png);
    padding: 4px;
}

.voice .voice_slider .slick-next:before {
    content: '>';
    background: url(../img/arrow_haikei.png);
    padding: 4px;
}

.faq {
    background-color: #ffae00;
}

.faq_wrapper {
    background-color: #ffae00;
    padding-bottom: 18px
}

.faq .accordion {
    width: 90%;
    margin: 30px auto;
}

.faq_ttl {
    padding: 30px 20px 0px 20px;
    margin-bottom: -3%;
}

.faq .accordion dt {
    color: #000000;
    background-color: #ffffff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.5s;
    position: relative;
}

.faq .accordion dt::after {
    content: '＋';
    position: absolute;
    right: 5%;
    top: 30%;
    font-size: 16px;
    transition: all 0.5s;
}

.faq .accordion dt.active {
    border-radius: 10px 10px 0 0;
}

.faq .accordion dt.active::after {
    content: '－';
    /* ← 追加 */
    transform: rotate(0);
    /* 既存の回転は不要なら削除 */
}

.faq .accordion dd {
    padding: 15px;
    display: none;
    background-color: #ffe09d;
    border-radius: 0 0 10px 10px;
}

.faq .accordion dt>div,
.faq .accordion dd>div {
    display: flex;
    gap: 10px;
}

.faq .accordion dt>div {
    align-items: center;
}

.faq .accordion dd>div {
    align-items: center;
}

.faq .accordion dt>div img,
.faq .accordion dd>div img {
    width: 12%;
}

.faq .accordion dd+dt {
    margin-top: 15px;
}

footer {
    background-color: #282828;
    color: #fff;
    padding: 30px 0;
    font-size: 14px;
    padding: 7% 0 43% 0;
}

footer .logo {
    width: 50%;
    max-width: 300px;
    margin-inline: auto;
    margin-bottom: 10px;
}

footer .privacy {
    display: block;
    text-align: center;
}

footer .privacy a {
    color: #fff;

}

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;
}

.follow {
    position: sticky;
    bottom: 0;
    padding: 10px;
    background-color: #ffffff;
}

.follow .inner p {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-align: center;
    margin-bottom: 8px;
}

.follow .inner .flex {
    display: flex;
    align-items: center;
    gap: 5px;
}

.confirm_ttl {
    background-color: #06a4d9;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
}

.thanks h2 {
    margin-bottom: 10px;
}

.thanks p {
    display: block;
    padding: 15px;
}

.thanks footer {
    margin-top: 50px;
}


.privacy_page {
    width: 90%;
    margin: 90px auto 20px;
}

.privacy_page h1 {
    font-size: 22px;
}

.privacy_page h2 {
    font-size: 18px;
    margin-top: 20px;
}

.privacy_page p {
    font-size: 14px;
    line-height: 1.5;
}


.blink {
    animation: blinking 1s ease-in-out infinite alternate;
}

.overview {
    text-align: center;
    line-height: 1.6;
}




/*追従*/
.tui {
    position: fixed;
    bottom: 0;
    text-align: center;
    z-index: 99;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 55px 0 0px;
    width: 100%;
    transition: opacity 0.5s ease;
    max-width: 700px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.tui.show {
    opacity: 1;
    pointer-events: auto;
}

.tui div {
    max-width: 450px;
    width: 90%;
    margin: 0 auto;
}

.btn-tui {
    margin-top: 50px;
}

.po_r {
    position: relative;
}

.po_a {
    position: absolute;
    bottom: 98%;
    right: 0;
    left: 0;
}

.po_a img {
    max-width: 470px;
    width: 30%;
    margin: -67px 0px -41px 11px;
    ;
}

.tui img {
    vertical-align: bottom;
}

.pagetop.DownMove {
    animation: DownAnime 0.5s forwards;
}

.pagetop.UpMove {
    animation: UpAnime 0.5s forwards;
}

.footer {
    transition: 0.5s;
}

.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}

.tui_link {
    display: flex;
    justify-content: space-between;
}

.tui_link a {
    width: 48%;
}

.tui div {
    padding: 1px 3px 0px 3px;
    width: 99%;
}

.po_a {
    bottom: 80%;
}

.tui_link a {
    width: 49%;
}


.po_a .sp_dis {
    position: relative;
    margin-right: 10px;
}

.archive {
    width: 100%;
}

.archive01 {
    width: 100%;
    padding-top: 5%;
}

.archive02 {
    width: 30%;
    margin: auto;
    display: block;
    padding-bottom: 5%;
}

.follow_top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
    flex-wrap: wrap;
}

#Realtime03 {
    margin: -28% -11% -11% 31%;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    font-size: 15px;
}

@media screen and (max-width:640px) {
    .archive02 {
        padding: 20px 0 20px;
        width: 40%;
    }

    .cta .content_wrapper .time{
        font-size: 21px;
    }
}


.shine {
    display: block;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
}

.shine::before {
    content: "";
    position: absolute;
    display: block;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
    width: 50px;
    height: 50px;
    top: -60px;
    left: -60px;
    animation-name: shine-run;
    animation-delay: 0s;
    animation-duration: 3s;
    animation-timing-function: ease-in;
    animation-iteration-count: infinite;
    z-index: 2;
}

@keyframes shine-run {
    0% {
        transform: scale(0) rotate(50deg);
        opacity: 0;
    }

    40% {
        transform: scale(1) rotate(50deg);
        opacity: 1;
    }

    100% {
        transform: scale(250) rotate(50deg);
        opacity: 0;
    }
}


.form_ttl {
    padding: 10px 10px 10px 10px;
    margin-bottom: -8%;
    margin-top: -3%;
}


/* 点滅 */
.blinking {
    animation: flash 1.5s linear infinite;
}

@keyframes flash {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }


    100% {
        opacity: 1;
    }
}

/* --- PCサイズ用スタイル（幅641px以上） --- */
@media screen and (min-width: 641px) {
    .tui {
        position: fixed;
        bottom: 0;
        text-align: center;
        z-index: 99;
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 97px 0 0px;
        width: 100%;
        transition: opacity 0.5s ease;
        max-width: 700px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    
.tui.show {
    opacity: 1;
    pointer-events: auto;
}

.tui div {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
}
.btn-tui {
    margin-top: 50px;
}

.po_r {
    position: relative;
}

.po_a {
    position: absolute;
    bottom: 98%;
    right: 0;
    left: 0;
}

.po_a img {
    max-width: 470px;
    width: 30%;
    margin: -67px 0px -87px 11px;
    ;
}
#Realtime03 {
    margin: -24% -11% -6% 30%;
    text-align: center;
    line-height: 1.5;
    font-weight: bold;
    font-size: 26px;
}
}