* {
    box-sizing: border-box;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif!important;

    font-weight: 400;
    list-style: none;
    margin: 0;
    padding: 0;
    text-decoration: none;
    line-height: 1.5em;
}
*{
    transition: all .5s;
}

img {
    height: auto;
    max-width: 100%;
}
.container {
    /*
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
     */
}
.main-header {
    background: #FF7579;
    text-align: center;
}
.main-header__inner {
    position: relative;
}
.main-header__inner::before,
.main-header__inner::after {
    content: "";
    position: absolute;
}
.main-header__inner::before {
    border-right: 20vw solid transparent;
    border-top: 12vw solid #FF4449;
    border-left: 0px solid transparent;
    top: 0;
    left: 0;
}
.main-header__inner::after {
    border-right: 0px solid transparent;
    border-bottom: 12vw solid #FF4449;
    border-left: 20vw solid transparent;
    bottom: 0;
    right: 0;
}
.main-header__inner h1 {
    padding: 25px 0 15px;
}

.main-contents {
    background: #fff;
    padding: 20px 10px 80px;
}
.contents-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 15px;
}
.contents-header img {
    display: block;
}
.contents-header p {
    color: #707070;
    font-size: 4vw;
    margin-left: 3%;
}

.contents-status {
    background: #fff;
    border-radius: 11px;
    box-shadow: 0 0 10px rgb(0 0 0 / 16%);
    display: flex;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
    padding: 10px;
    border: 3px solid #27a9ea;
}
.contents-status__item {
    width: 50%;
}
.contents-status__item:first-child {
    border-right: 1px solid #D4D4D4;
}
.contents-status__item p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.status-text__top {
    color: #707070;
    font-size: 3.5vw;
    font-weight: bold;
}
.status-text__icon {
    display: block;
    line-height: 0;
    margin-right: 5px;
}
.status-text__main {
    color: #EE8787;
    font-size: 6vw;
    font-weight: bold;
}
.status-text__bottom {
    color: #707070;
    font-size: 3vw;
}
.contents-quote {
    padding: 25px 0 15px;
    text-align: center;
}
.contents-quote__header {
    display: inline-block;
    margin: 0 0 25px;
    position: relative;
}
.contents-quote__header::before,
.contents-quote__header::after {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: block;
    height: 34px;
    position: absolute;
    top: 0;
    width: 25px;
}
.contents-quote__header::before {
    background-image: url(../img/fukidasi_01.svg);
    left: -30px;
}
.contents-quote__header::after {
    background-image: url(../img/fukidasi_02.svg);
    right: -30px
}
.contents-quote__header p {
    color: #FF7579;
    font-size: 4vw;
    font-weight: bold;
}
.contents-quote__header span {
    font-size: 5.5vw;
    font-weight: bold;
}
.contents-quote__body {
    opacity: 0; /* animationで表示 */
    background: #fff;
    border: 3px solid #ff777a;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 17px;
    padding: 25px 20px;
}

.quote-status {
    background: #f7f7f7;;
    height: 13px;
    margin: 0 0 25px;
    position: relative;
    width: 100%;
}
.quote-status__bar {
    background: #EE8787;
    height: 13px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.quote-question {
    border-bottom: 2px solid #d5d5d5;
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 0 20px;
    padding: 0 0 20px;
    overflow: hidden;
}

.slide_in{
    animation: slideInAnime .5s ease 0s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
}

@keyframes slideInAnime{
    from {
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeUp{
    animation: fadeUpAnime .5s ease .5s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
    opacity:0;
}
.fadeUp2{
     animation: fadeUpAnime .5s ease 1s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
     opacity:0;
 }


@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.bound{
    animation: boundAnime 1s ease 1.5s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
}
.bound2{
    animation: boundAnime 1s ease 0s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
}

.bound3{
    animation: boundAnime 1s ease 0s forwards;/*アニメーションの定義名、アニメーション１回分の時間の長さ、アニメーションの進行具合、アニメーションの開始を遅らせる、アニメーションの開始と終了時の状態を指定をまとめて設定*/
}

@keyframes boundAnime{
    /*
    0% { transform: scale(1);}
    25% { transform: scale(0.9);}
    50% { transform: scale(1);}
    75% { transform: scale(0.9);}
    100% { transform: scale(1);}

     */
    0% { transform: scale(1);}

    50% { transform: scale(1.1);}

    100% { transform: scale(1);}
}

@keyframes boundAnime3{
    /*
    0% { transform: scale(1);}
    25% { transform: scale(0.9);}
    50% { transform: scale(1);}
    75% { transform: scale(0.9);}
    100% { transform: scale(1);}

     */
    0% { transform: scale(1);opacity: 0;}

    50% { transform: scale(1.2);}

    100% { transform: scale(1);opacity: 1;}
}


.question-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
}
.question-text {
    background: #ffe4e4;
    border-radius: 11px;
    color: #646464;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    margin-left: 35px;
    padding: 35px 15px;
    position: relative;
    text-align: left;
    width: calc(100% - 35px);
}
.question-text>p{
    font-weight: bold;
}
.question-text::before {
    border-style: solid;
    border-width: 12.5px 21.7px 12.5px 0;
    border-color: transparent #ffe4e4 transparent transparent;
    content: "";
    margin: auto;
    height: 0;
    position: absolute;
    left: -18.7px;
    top: 0;
    bottom: 0;
    width: 0;
}
.quote-answer__text {
    font-size: 3.5vw;
    font-weight: 500;
    margin: 0 0 20px;
}
.quote-answer__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.quote-answer__list .q-btn {
    background: #71c6e0;
    border-radius: 8px;
    color: #fff;
    font-size: 3.2vw;
    padding: 10px 5px;
    width: 100%;
    max-width: inherit;
    margin-bottom: 15px;
    cursor: pointer;
    border-bottom: 5px solid #2b6788;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
.quote-answer__list .q-btn>div{
    color: #fff;
}

.quote-answer__list .q-btn:active {
    border-bottom: 2px solid #b84c00;
}



.contents-attention {
    color: #707070;
    font-size: 13px;
    margin: 20px auto 15px;
    width: 80%;
    text-align: left;
}

.danger-information {
    background: #EE8787;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 12px 8px;
}
.danger-information::before {
    background: url(../img/attention_icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    display: block;
    height: 20px;
    margin: 0 8px 0 0;
    width: 20px;
}
.danger-information p {
    color: #B50808;
    font-size: 13px;
    width: calc(100% - 28px);
}
.creditcard__info {
    background: #fff;
    line-height: 0;
    margin: 25px 0 0;
    padding: 5px 0 0;
    text-align: center;
}

.company-link {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0 0;
}
.company-link a {
    color: #707070;
    display: block;
    font-size: 14px;
    margin: 0 10px;
}
.company-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 70px;
}
.company-info p {
    font-size: 14px;
}

.tel-contact {
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}
.tel-contact__left,
.tel-contact__right {
    color: #fff;
    padding: 10px;
    width: 50%;
}
.tel-contact__left {
    background: #4b4b4b;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.tel-contact__left::after {
    border-style: solid;
    border-width: 8.5px 0 8.5px 14.7px;
    border-color: transparent transparent transparent #4b4b4b;
    content: "";
    display: block;
    height: 0;
    position: absolute;
    right: -14.7px;
    width: 0;
}
.tel-contact__right {
    background: #FF7579;
    text-align: center;
}
.tel-contact__left p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5vw;
}
.tel-contact__left p::before {
    background: url(../img/contact_icon.svg) no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    display: block;
    height: 40px;
    width: 40px;
}
.tel-contact__right a {
    color: #fff;
    display: block;
    font-size: 5.2vw;
    font-weight: bold;
}
.tel-contact__right p {
    font-size: 3.5vw;
}

.break-down{
    font-size: 12px;
    color: #1c92c7;
    margin-top: 10px;
    padding: 5px;
    border: 2px solid #1c92c7;
}
.break-down .ttl{
    font-weight: bold;
}
#price_taxin{
    color: #999;
    font-size: 13px;
}
.rst-caution-destroy{
margin-top: 10px;
    display: none;
}
.rst-caution-destroy:before{
 content: "＋";
    font-size: 24px;
    color: #2ba9e1;
}
.rst-caution-destroy>.ttl {
    color: #2ba9e1;
    font-size: 16px;
    font-weight: bold;
}
.rst-caution-destroy span{
    font-weight: bold;
    display: block;
    font-size: 13px;
}
.rst-caution-destroy .help {
    padding: 10px;
    background-color: #fff2f2;
    color: #cc4d4d;
    margin-top: 20px;
    font-size: 14px;
}
.rst-caution-destroy .help .ttl{
    font-weight: bold;

}
.rst-caution-destroy .help .txt{
    margin-top: 10px;
    text-align: left;
    font-size: 14px;
}
.max-str{
    font-size: 16px;
    font-style: inherit;
display: none;
}
.free-dial a{
    font-weight: bold;
    font-size: 22px;
    color: #fff;
    background-color: #ff7579;
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
    margin: 10px 0 10px;
}

.send-result{
display: none;
}
.send-result .txt{
    text-align: left;
}
.send-result .s_shot{
    text-align: left;
}
.send-result .number{
    background-color: #fff;
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 600px) {
    .main-header__inner::before {
        border-right: 85px solid transparent;
        border-top: 50px solid #FF4449;
        border-left: 0px solid transparent;
    }
    .main-header__inner::after {
        border-right: 0px solid transparent;
        border-bottom: 50px solid #FF4449;
        border-left: 85px solid transparent;
    }
    .contents-header p {
        font-size: 16px;
    }
    .status-text__top {
        font-size: 18px;
    }
    .status-text__main {
        font-size: 36px;
    }
    .status-text__bottom {
        font-size: 16px;
    }
    .contents-quote__header p {
        font-size: 16px;
    }
    .contents-quote__header span {
        font-size: 24px;
    }
    .question-text {
        font-size: 15px;
    }
    .quote-answer__text {
        font-size: 16px;
    }
    .quote-answer__list .q-btn {
        font-size: 17px;
    }
    .contents-attention {
        font-size: 13px;
    }
    .danger-information p {
        font-size: 13px;
    }
    .tel-contact__left p {
        font-size: 16px;
    }
    .tel-contact__right a {
        font-size: 22px;
    }
    .tel-contact__right p {
        font-size: 16px;
    }
}
.back-btn:hover{
    opacity: 0.5;
}

.back-btn{
    margin-top: 30px;
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.text-left{
    text-align: left;
    margin-top: 20px;
}
.back-btn::before,
.back-btn::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;

}
.back-btn::before{
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #eaeaea;

}
.back-btn::after {
    left: 50%;
    margin-left: -2px;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 10px solid transparent;
    border-right: 14px solid #fff;
}