@charset "UTF-8";

/* -------------------------初期設定------------------------- */
* {
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
}

body {
    font: 17px/1.5 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    letter-spacing: 0.05em;
    background-color: #F7F7F7;
}

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

.wrapper {
    width: 100%;
    max-width: 699px;
    margin: 0 auto;
    overflow: hidden;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

p {
    vertical-align: baseline;
}

.red {
    color: #DA0301;
}

.yellow {
    color: #FFF24D;
}

@media screen and (max-width:699px) {
    .wrapper {
        width: 100%;
    }

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .wrapper {
        display: block;
        position: relative;
        max-width: 700px;
        margin-right: auto;
        margin-left: auto;
        background-color: #fff;
        overflow: hidden;
    }
}

/* -------------------------ヘッダー・フッター------------------------- */
header,
footer {
    width: 100%;
    max-width: 699px;
    margin: 0 auto;
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    background-color: #fff;
}

@media screen and (max-width:699px) {
    header {
        padding: 8px;
    }
}

header .logo {
    width: 42%;
    margin-left: 5px;
}

@media screen and (max-width:699px) {
    header .logo {
        width: 44%;
        margin-left: 3px;
    }
}

header .btn {
    width: 40%;
}

header .btn:hover {
    opacity: 0.7;
}

footer {
    background-color: #FFAD00;
    padding: 60px 30px;
}

@media screen and (max-width:699px) {
    footer {
        background-color: #FFAD00;
        padding: 35px 20px;
    }
}

footer .logo {
    width: 60%;
    margin: 0 auto;
}

@media screen and (max-width:699px) {
    footer .logo {
        width: 65%;
    }
}

footer p {
    color: #fff;
    font-size: 22px;
    margin-top: 10px;
}

@media screen and (max-width:699px) {
    footer p {
        font-size: 11px;
        margin-top: 8px;
    }
}

footer .midashi {
    border-bottom: #fff 2px solid;
    font-size: 28px;
    margin-top: 20px;
}

@media screen and (max-width:699px) {
    footer .midashi {
        font-size: 18px;
        margin-top: 15px;
    }
}

footer a {
    text-align: center;
    margin: 0 auto;
    display: block;
    color: #fff;
    margin-top: 15px;
}

@media screen and (max-width:699px) {
    footer a {
        font-size: 12px;
        margin-top: 10px;
    }
}

.footer_cta {
    box-shadow: 10px 10px 10px #DE9901;
    display: block;
    margin: 20px 0 30px;
}

.footer_cta:hover {
    opacity: 0.7;
}

footer ul {
    display: flex;
    gap: 20%;
    flex-wrap: wrap;
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

@media screen and (max-width:699px) {
    footer ul {
        gap: 17%;
        font-size: 11px;
        margin-top: 8px;
    }
}

footer li {
    width: 22%;
    display: block;
}

/* -------------------------CTAエリア------------------------- */
.cta {
    position: relative;
}

.btn_box {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    width: 82%;
    margin: 0 auto;
}

.btn_box a {
    border-radius: 10px;
    box-shadow: 10px 10px 10px #dfdfdf;
}

.btn_box a:last-child {
    margin-top: 10px;
}

.btn_box a:hover {
    transform: translateY(-6px);
    transition: all 0.3s 0s ease;
}

/* 光るアニメーション */
.shiny_btn {
    overflow: hidden;
    position: relative;
    display: block;
}

.shiny_btn::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0)10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);

    /*アニメーション*/
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 1;
    }

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

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

/* -------------------------about us------------------------- */
.about {
    position: relative;
}

.about .ttl {
    position: absolute;
    left: 0;
    right: 0;
    width: 25%;
    margin: 0 auto;
    margin-top: 70px;
}

@media screen and (max-width:699px) {
    .about .ttl {
        margin-top: 40px;
    }
}

.achieve {
    margin-top: -25px;
    z-index: 2;
}

/* -------------------------料金------------------------- */
.price {
    background-color: #FFDA0F;
    margin-top: -25px;
}

.price .ttl {
    padding: 60px 30px;
}

@media screen and (max-width:699px) {
    .price .ttl {
        padding: 40px 20px 20px;
    }
}

.price .inner_ttl {
    background-color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    padding: 10px;
}

@media screen and (max-width:699px) {
    .price .inner_ttl {
        font-size: 26px;
        padding: 4px;
    }
}

.price_inner {
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media screen and (max-width:699px) {
    .price_inner {
        padding: 20px;
    }
}

.price_box {
    width: 48%;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 25px;
}

@media screen and (max-width:699px) {
    .price_box {
        border-radius: 10px;
        margin-bottom: 15px;
    }
}

.kinds {
    background-color: #FF5601;
    border-radius: 20px 20px 0 0;
    color: #fff;
    text-align: center;
    font-size: 36px;
    padding: 10px;
    height: 70px;
}

@media screen and (max-width:699px) {
    .kinds {
        border-radius: 10px 10px 0 0;
        text-align: center;
        font-size: 20px;
        padding: 6px;
        height: 40px;
    }
}

.kinds.fsS {
    font-size: 24px;
    padding: 20px;
}

@media screen and (max-width:699px) {
    .kinds.fsS {
        font-size: 13px;
        padding: 0;
        padding-top: 12px;
    }
}

.kinds_price {
    height: 70px;
    margin: 12px auto 0;
    transform: translateX(5px);
}

.price_box:first-child .kinds_price {
    margin: 8px auto 4px;
}

.price_box:nth-child(9) .kinds_price,
.price_box:last-child .kinds_price {
    margin: 10px auto 2px;
}

@media screen and (max-width:699px) {
    .kinds_price {
        height: 40px;
        margin: 9px auto 0;
    }

    .price_box:nth-child(9) .kinds_price,
    .price_box:last-child .kinds_price {
        margin: 7px auto 2px;
    }
}

/* 火災保険 */
.kasai_ttl {
    background-color: #FE3C00;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    padding: 20px;
    position: relative;
}

@media screen and (max-width:699px) {
    .kasai_ttl {
        font-size: 19px;
        padding: 15px;
    }

    .kasai_ttl>p {
        margin-top: -10px;
    }
}

.kasai_ttl::before {
    content: '';
    border-top: 30px solid #FE3C00 !important;
    border: 40px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -24%;
    right: 50%;
    transform: translateX(50%);
}

@media screen and (max-width:699px) {
    .kasai_ttl::before {
        border-top: 15px solid #FE3C00 !important;
        border: 20px solid transparent;
        bottom: -24%;
    }
}

.kasai_ttl .yellow {
    color: #FFDA0F;
}

.kasai_ttl .fsL {
    font-size: 42px;
}

@media screen and (max-width:699px) {
    .kasai_ttl .fsL {
        font-size: 24px;
    }
}

.kasai_ttl .din {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 64px;
    vertical-align: -3%;
}

@media screen and (max-width:699px) {
    .kasai_ttl .din {
        font-size: 38px;
    }
}

.kasai_ttl .mt {
    display: inline-block;
    margin-top: -10px;
}

.kasai_contents {
    padding: 30px;
}

@media screen and (max-width:699px) {
    .kasai_contents {
        padding: 20px;
    }
}


/* 注意喚起 */
.attention {
    padding: 60px 30px 30px;
}

@media screen and (max-width:699px) {
    .attention {
        padding: 50px 20px 20px;
    }
}

.attention .yellow {
    color: #FFDA11;
}

.attention_inner {
    background-color: #D9D9D9;
    border: #000 4px solid;
}

@media screen and (max-width:699px) {
    .attention_inner {
        background-color: #D9D9D9;
        border: #000 3px solid;
    }
}

.attention_ttl {
    background-color: #000;
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 20px;
    border-radius: 20px;
    margin-top: -30px;
    position: relative;
}

@media screen and (max-width:699px) {
    .attention_ttl {
        gap: 5px;
        padding: 10px;
        border-radius: 10px;
        margin-top: -30px;
    }
}

.attention_ttl::before {
    content: '';
    border-top: 30px solid #000 !important;
    border: 35px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -38%;
    right: 50%;
    transform: translateX(50%);
}

@media screen and (max-width:699px) {
    .attention_ttl::before {
        border-top: 15px solid #000 !important;
        border: 20px solid transparent;
        bottom: -40%;
    }
}

.attention_ttl>img {
    width: 20%;
}

.attention_ttl>p {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width:699px) {
    .attention_ttl>p {
        font-size: 18px;
    }
}

.attention_txt {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    margin-top: 40px;
}

@media screen and (max-width:699px) {
    .attention_txt {
        font-size: 15px;
        margin-top: 25px;
    }
}

.attention_graph {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 30px;
    border-radius: 20px;
}

@media screen and (max-width:699px) {
    .attention_graph {
        margin-top: 15px;
        border-radius: 10px;
    }
}

.attention_graph_inner {
    padding: 40px 30px;
}

@media screen and (max-width:699px) {
    .attention_graph_inner {
        padding: 20px 15px;
    }
}

.attention_graph>p {
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 30px;
    line-height: 1.3;
    font-weight: bold;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

@media screen and (max-width:699px) {
    .attention_graph>p {
        font-size: 18px;
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }

}

.promise {
    margin-top: 20px;
}

/* -------------------------流れ------------------------- */
.flow {
    background-color: #FFE665;
    padding: 70px 30px;
}

@media screen and (max-width:699px) {
    .flow {
        padding: 40px 20px;
    }
}

.flow .ttl {
    width: 72%;
    margin: 0 auto;
}

@media screen and (max-width:699px) {
    .flow .ttl {
        width: 78%;
    }
}

.step_box {
    margin-top: 40px;
    background-color: #fff;
    border: #FF6100 3px solid;
    position: relative;
}

@media screen and (max-width:699px) {
    .step_box {
        margin-top: 25px;
    }
}

.step_box::before {
    content: '';
    border-top: 25px solid #FF6100 !important;
    border: 35px solid transparent;
    margin: 0 auto;
    position: absolute;
    bottom: -60px;
    right: 50%;
    transform: translateX(50%);
}

@media screen and (max-width:699px) {
    .step_box::before {
        border-top: 12px solid #FF6100 !important;
        border: 18px solid transparent;
        bottom: -32px;
    }
}

.step_box:last-child::before {
    display: none;
}

.step_ttl {
    display: flex;
    background-color: #FF6100;
    color: #fff;
    font-size: 40px;
}

@media screen and (max-width:699px) {
    .step_ttl {
        font-size: 20px;
    }
}

.step_ttl>p {
    padding: 10px 20px;
}

@media screen and (max-width:699px) {
    .step_ttl>p {
        padding: 6px 14px 0;
    }
}

.step_ttl .din {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-style: normal;
    border-right: 1px solid #fff;
    font-size: 44px;
}

@media screen and (max-width:699px) {
    .step_ttl .din {
        border-right: 1px solid #fff;
        font-size: 22px;
        padding: 4px 14px;
    }
}

.step_contents {
    display: flex;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

@media screen and (max-width:699px) {
    .step_contents {
        display: flex;
        gap: 10px;
        padding: 10px;
    }
}

.step_contents>img {
    width: 36%;
}

@media screen and (max-width:699px) {
    .step_contents>img {
        width: 33%;
    }
}

.step_contents>p {
    font-size: 21px;
}

@media screen and (max-width:699px) {
    .step_contents>p {
        font-size: 14px;
    }
}

.step_contents>p>.anno {
    font-size: 15px;
    line-height: 1.2 !important;
    display: inline-block;
}

@media screen and (max-width:699px) {
    .step_contents>p>.anno {
        font-size: 10px;
    }
}

.anno.mt {
    margin-top: 10px;
}

@media screen and (max-width:699px) {
    .anno.mt {
        margin-top: 2px;
    }
}

.step_point {
    text-align: center;
    padding: 20px;
    padding-top: 0;
}

@media screen and (max-width:699px) {
    .step_point {
        padding: 10px;
    }
}

.step_point_inner {
    background-color: #177FE2;
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

@media screen and (max-width:699px) {
    .step_point_inner {
        font-size: 13px;
        padding: 8px;
        border-radius: 6px;
    }
}

.step_point img {
    width: 5%;
    position: absolute;
    top: -5px;
    left: 2.5%;
}

@media screen and (max-width:699px) {
    .step_point img {
        width: 6%;
        position: absolute;
        top: -4px;
        left: 2.5%;
    }
}


.step_point.first p {
    padding-left: 45px;
}

@media screen and (max-width:699px) {
    .step_point.first p {
        padding-left: 23px;
    }
}

.step_point p>.yellow {
    color: #FDDA0F;
}



/* -------------------------想い------------------------- */
.message {
    background-color: #177FE2;
}

.message .ttl {
    width: 20%;
    margin: 60px auto;
}

@media screen and (max-width:699px) {
    .message .ttl {
        width: 22%;
        margin: 40px auto 30px;
    }
}

.message_inner {
    padding: 30px 30px 0;
}

@media screen and (max-width:699px) {
    .message_inner {
        padding: 20px 20px 0;
    }
}

.message_inner p {
    color: #fff;
    margin-top: 20px;
    font-size: 24px;
    padding: 5px;
}

@media screen and (max-width:699px) {
    .message_inner p {
        margin-top: 15px;
        font-size: 14px;
        padding: 4px;
    }
}

.message_inner .yellow {
    color: #ffda0f;
}

.message_inner img {
    margin: 40px auto;
}

@media screen and (max-width:699px) {
    .message_inner img {
        margin: 25px auto;
    }

}

/* -------------------------FAQ------------------------- */
.faq {
    background-color: #FEF1A2;
    padding: 30px;
}

@media screen and (max-width:699px) {
    .faq {
        padding: 20px;
    }
}

.faq .ttl {
    width: 55%;
    margin: 0 auto 40px;
}

@media screen and (max-width:699px) {
    .faq .ttl {
        width: 60%;
        margin: 0 auto 25px;
    }
}

.acc_box {
    background-color: #FF6100;
    border-radius: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width:699px) {
    .acc_box {
        border-radius: 10px;
        margin-bottom: 15px;
    }
}

.acc_ttl {
    background-color: #FF6100;
    position: relative;
    height: 120px;
    color: #fff;
    font-size: 27px;
    line-height: 1.3;
    font-weight: bold;
    padding: 20px;
    padding-left: 140px;
    padding-top: 25px;
    border-radius: 20px;
    cursor: pointer;
}

@media screen and (max-width:699px) {
    .acc_ttl {
        height: 70px;
        font-size: 16px;
        padding: 10px;
        padding-left: 70px;
        padding-top: 15px;
        border-radius: 10px;
    }
}

.q {
    width: 12%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4%;
}

.arrow {
    width: 4%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6%;
}

.acc_ttl.open>.arrow {
    transform: rotate(180deg) translateY(10px);
}

.acc_content {
    padding: 20px;
    padding-top: 10px;
    position: relative;
    display: none;
}

.acc_content>p {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    padding-left: 120px;
    font-size: 23px;
}

@media screen and (max-width:699px) {
    .acc_content>p {
        border-radius: 10px;
        padding: 10px;
        padding-left: 60px;
        font-size: 14px;
    }
}

.a {
    width: 10%;
    position: absolute;
    top: 35px;
    left: 45px;
}

@media screen and (max-width:699px) {
    .a {
        width: 10%;
        position: absolute;
        top: 22px;
        left: 32px;
    }
}

.acc_content>p>.anno {
    font-size: 14px;
    line-height: 1.2 !important;
    display: inline-block;
}

.payment {
    margin-top: 5px;
}

/* -------------------------理由------------------------- */
.reason {
    background-color: #FEF1A2;
    padding: 70px 30px;
}

@media screen and (max-width:699px) {
    .reason {
        padding: 40px 20px;
    }
}

.reason_box {
    margin-top: 40px;
    background-color: #fff;
    border-radius: 30px;
}

@media screen and (max-width:699px) {
    .reason_box {
        margin-top: 25px;
        border-radius: 15px;
    }

    .reason_box:first-child {
        margin-top: 30px;
    }
}

.reason_box_inner {
    padding: 30px;
}

@media screen and (max-width:699px) {
    .reason_box_inner {
        padding: 10px 20px;
    }

    .reason_box_inner:nth-child(2) {
        padding: 20px;
    }

    .reason_box_inner:last-child {
        padding-bottom: 20px;
    }
}

.reason_box .midashi {
    display: flex;
    gap: 10px;
    border-bottom: #FF6100 3px solid;
    padding-bottom: 10px;
}

@media screen and (max-width:699px) {
    .reason_box .midashi {
        gap: 8px;
        border-bottom: #FF6100 2px solid;
        padding-bottom: 6px;
    }

    .reason_box .midashi.one {
        padding-bottom: 0;
    }
}

.reason_box .midashi .orange {
    color: #FF6100;
}

.num {
    color: #FF6100;
    font-size: 32px;
    transform: translateY(-4px);
}

@media screen and (max-width:699px) {
    .num {
        font-size: 20px;
    }
}

.midashi_txt {
    font-weight: bold;
    line-height: 1.4;
    font-size: 28px;
}

@media screen and (max-width:699px) {
    .midashi_txt {
        font-size: 16px;
    }
}

.reason_txt {
    margin-top: 20px;
    font-size: 21px;
}

@media screen and (max-width:699px) {
    .reason_txt {
        margin-top: 15px;
        font-size: 14px;
    }
}

.reason_txt .marker {
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #FFDA0F 50%, #FFDA0F 100%);
}

.reason_box_inner .anno {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
}

@media screen and (max-width:699px) {
    .reason_box_inner .anno {
        font-size: 8px;
    }
}

.reason_img {
    margin: 20px 0;
}

@media screen and (max-width:699px) {
    .reason_img {
        margin: 12px 0;
    }
}

.mb0 {
    margin-bottom: 0;
}

/* 安心 */
.ansin {
    background: linear-gradient(160deg, #FFDE77 0%, #FEF1A2 70%);
}

.ansin .ttl {
    width: 76%;
    margin: 40px auto;
}

@media screen and (max-width:699px) {
    .ansin .ttl {
        margin: 30px auto 0;
    }
}

.ansin_inner {
    padding: 30px;
}

@media screen and (max-width:699px) {
    .ansin_inner {
        padding: 20px;
    }
}

.ansin_box {
    background-color: #fff;
    margin-bottom: 30px;
}

@media screen and (max-width:699px) {
    .ansin_box {
        margin-bottom: 15px;
    }
}

.ansin_box .midashi {
    background-color: #FF6100;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width:699px) {
    .ansin_box .midashi {
        padding: 8px;
        font-size: 16px;
    }

}

.ansin_box .midashi .emp {
    color: #FEF1A1;
    /* border-bottom: 2px solid #FEF1A1; */
    background: linear-gradient(to bottom, #FF6100 0%, #FF6100 88%, #FEF1A1 88%, #FEF1A1 92%, #FF6100 92%, #FF6100 100%);
}

.ansin_txt {
    font-size: 22px;
    padding: 30px;
    padding-top: 25px;
}

@media screen and (max-width:699px) {
    .ansin_txt {
        font-size: 14px;
        padding: 15px;
        padding-top: 10px;
    }
}

/* -------------------------比較------------------------- */
.hikaku {
    background-image: url(../img/hikaku_bg.jpg);
    background-size: 5%;
    padding: 30px 0 50px;
}

@media screen and (max-width:699px) {
    .hikaku {
        padding: 20px 0 30px;
    }
}

.hikaku .ttl {
    padding: 30px;
}

@media screen and (max-width:699px) {
    .hikaku .ttl {
        padding: 20px;
    }
}

.scroll_txt {
    color: #787878;
    text-align: center;
    font-size: 22px;
}

@media screen and (max-width:699px) {
    .scroll_txt {
        font-size: 17px;
    }
}

.scroll {
    overflow: auto;
}

.scroll img {
    width: 1050px !important;
    padding: 10px 30px 20px;
}

@media screen and (max-width:699px) {
    .scroll img {
        width: 560px !important;
        padding: 10px 20px 5px;
    }
}

.hikaku_txt {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin-top: 40px;
}

@media screen and (max-width:699px) {
    .hikaku_txt {
        font-size: 15px;
        margin-top: 25px;
    }
}

.hikaku .anno {
    font-size: 15px;
    line-height: 1.2 !important;
    text-align: right;
    margin-top: 20px;
    padding-right: 20px;
}

@media screen and (max-width:699px) {
    .hikaku .anno {
        font-size: 10px;
        margin-top: 10px;
        padding-right: 20px;
    }
}

/* -------------------------クーポン------------------------- */
.coupon {
    background-image: url(../img/coupon_bg_sp.jpg);
    padding: 30px;
}

@media screen and (max-width:699px) {
    .coupon {
        padding: 20px;
    }
}

/* -------------------------お客様の声------------------------- */
.voice {
    background-color: #fff;
    padding: 70px 50px;
}

.voice-img {
    display: block;
    margin: 0 auto;
    width: 70%;
    height: auto;
}

@media screen and (max-width:699px) {
    .voice {
        padding: 35px 25px;
    }
}

@media screen and (max-width:699px) {
    .voice .ttl {
        width: 74%;
        margin: 0 auto 25px;
    }

}

.voice_box {
    background-color: #fff;
    padding: 35px;
    width: 600px;
    margin: 0 20px;
}

@media screen and (max-width:699px) {
    .voice_box {
        border-radius: 15px;
        width: 400px;
    }
}

.voice_box .midashi {
    font-size: 40px;
    font-weight: bold;
    color: #FF6100;
    margin-top: 20px;
}

@media screen and (max-width:699px) {
    .voice_box .midashi {
        font-size: 28px;
        margin-top: 10px;
    }
}

.voice_flx {
    display: flex;
    gap: 8px;
    font-size: 24px;
}

@media screen and (max-width:699px) {
    .voice_flx {
        display: flex;
        gap: 4px;
        font-size: 13px;
    }
}

.voice_flx .label {
    background-color: #FEF1A2;
    padding: 2px 6px;
    border-radius: 4px;
}

.voice_flx .label:nth-child(3) {
    margin-left: 8px;
}

@media screen and (max-width:699px) {
    .voice_flx .label:nth-child(3) {
        margin-left: 4px;
    }
}

.voice_txt {
    font-size: 22px;
    margin-top: 20px;
}

@media screen and (max-width:699px) {
    .voice_txt {
        font-size: 14px;
        margin-top: 10px;
    }
}

.voice_txt02{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
}
.top20{
    margin-top: -50px;
}
.top10{
    margin-top: -1px;
}
@media screen and (max-width:699px) {
    .voice_txt02{
        font-size: 18px;
    }
}

/* -------------------------対応エリア------------------------- */
.area {
    background-color: #fff;
    padding: 70px 30px;
}

@media screen and (max-width:699px) {
    .area {
        padding: 35px 20px;
    }
}

.area .ttl {
    width: 68%;
    margin: 0 auto 40px;
}

/* 基本設定 */
.area_box {
    text-align: center;
    font-size: 26px;
    margin-bottom: 20px;
    border: #999 2px solid;
    border-radius: 10px;
}

@media screen and (max-width:699px) {
    .area_box {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.area_box>p {
    padding: 8px;
}

@media screen and (max-width:699px) {
    .area_box>p {
        padding: 6px;
    }
}

.area_box>p:first-child {
    background-color: #999;
    color: #fff;
    border-radius: 4px 4px 0 0;
    font-weight: bold;
    font-size: 28px;
}

@media screen and (max-width:699px) {
    .area_box>p:first-child {
        font-size: 19px;
    }
}

/* 地域別 */
.hokkaido {
    border: #00A5D3 4px solid;
}

.hokkaido>p:first-child {
    background-color: #00A5D3;
}

@media screen and (max-width:699px) {
    .hokkaido {
        border: #00A5D3 2px solid;
    }
}

.kanto {
    border: #7DC15C 4px solid;
}

.kanto>p:first-child {
    background-color: #7DC15C;
}

@media screen and (max-width:699px) {
    .kanto {
        border: #7DC15C 2px solid;
    }
}

.chubu {
    border: #BDCB04 4px solid;
}

.chubu>p:first-child {
    background-color: #BDCB04;
}

@media screen and (max-width:699px) {
    .chubu {
        border: #BDCB04 2px solid;
    }
}

.kansai {
    border: #F1B600 4px solid;
}

.kansai>p:first-child {
    background-color: #F1B600;
}

@media screen and (max-width:699px) {
    .kansai {
        border: #F1B600 2px solid;
    }
}

.shikoku {
    border: #E86E87 4px solid;
    width: 67%;
}

.shikoku>p:first-child {
    background-color: #E86E87;
}

@media screen and (max-width:699px) {
    .shikoku {
        border: #E86E87 2px solid;
    }
}

.kyusyu {
    border: #E75957 4px solid;
    width: 67%;
}

.kyusyu>p:first-child {
    background-color: #E75957;
}

@media screen and (max-width:699px) {
    .kyusyu {
        border: #E75957 2px solid;
    }
}

/* 地図 */
.map {
    margin-top: -322px;
}

@media screen and (max-width:699px) {
    .map {
        margin-top: -200px;
    }
}

/* テキスト */
.area_txt {
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
}

@media screen and (max-width:699px) {
    .area_txt {
        font-size: 15px;
        margin-top: 30px;
    }
}

.area_txt .emp {
    font-size: 32px;
    font-weight: bold;
}

@media screen and (max-width:699px) {
    .area_txt .emp {
        font-size: 22px;
    }
}

.area_txt .marker {
    background: linear-gradient(to bottom, transparent 0%, transparent 50%, #FFDA0F 50%, #FFDA0F 100%);
}

/* -------------------------プライバシーポリシー------------------------- */
#privacy h2 {
    background-color: #FF6100;
    color: #fff;
    padding: 30px;
    text-align: center;
    font-size: 44px;
}

@media screen and (max-width:699px) {
    #privacy h2 {
        padding: 20px;
        font-size: 28px;
    }
}

#privacy .inner {
    padding: 30px;
}

#privacy .inner dl {
    margin-bottom: 20px;
}

#privacy .inner dt {
    font-weight: bold;
}

/* 追加250327 */
hr{
    border: none; /* デフォルトの線を消す */
    border-top: 2px solid rgb(255, 218, 183); /* 赤色の線 */
    width: 90%;
    margin: 0 auto;
}
.flex {
    display: flex;
}

.flex p {
    width: 65%; /* 3/4 に固定 */
}

.flex img {
    width: 45%; /* 1/4 に固定 */
    max-width: none; /* 画像の最大幅制限を解除 */
    height: auto;
    margin: 0;
}

.maright{
    padding-right: 20px;
}