*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p,
img{
    display: block;
}
img{
    width: 100%;
    object-fit: contain;
}
ul{
    list-style: none;
}
h2{
    font-family: "Noto Serif JP", serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 38px;
}
h3{
    font-family: "Noto Serif JP", serif;
}

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

header{
    background-color: #fff;
    padding: 7px 10px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    position: fixed;
    width: 700px;
    margin: 0 auto;
    z-index: 100;
}
.sp{
    display: none;
}
.pc{
    display: block;
}
.header_cta{
    width: 40%;
}
@media screen and (max-width:640px){
    header{
    width: 100%;
}
.sp{
    display: block;
}
.sp img{
    margin-top: 3px;
}
.pc{
    display: none;
}
}

.header_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_inner>img,
.header_inner>a{
    display: block;
    width: 40%;
}

.products{
    background-image: url('../img/products_bg.jpg');
    background-size: cover;
    position: relative;
    padding: 50px 2%;
}
.products .pbl{
    position: absolute;
    left: 0;
    right: 0;
}
.products .pbl.start{
    top: 0;
}
.products .pbl.end{
    bottom: 0;
    transform: rotate(180deg);
}
.products h2{
    color: #c00f02;
}
.products_box{
    background-color: #b69455;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    padding: 5px;
    margin-bottom: 15px;
}
.products_box h3{
    color: #c00f02;
    font-size: 24px;
    margin-bottom: 10px;
}
.products_box h3 img{
    width: 34px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 2px;
}
.products_box h3 span{
    font-size: 0.7em;
}
.products_box .pb_inner{
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    padding: 15px;
    border: 2px solid #eacc94;
}
.products_box .pb_flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.products_box .pb_flex .pb_thumb{
    width: 49%;
    margin-bottom: 5px;
}
.products_box .pb_flex .pb_thumb.p_full{
    width: 100%;
}
.products .anno{
    font-size: 10px;
    text-align: right;
}
.modal_wrapper{
    width:100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.8;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}
.modal_wrapper.active{
    display: block;
    z-index: 3;
}
.modal_wrapper .close{
    display: none;
}
.modal_wrapper.active .close{
    position: fixed;
    top: 24vh;
    right: 5vw;
    display: block;
    width: 25px;
}
.pb_content{
    position: fixed;
    width: 90vw;
    top: 28vh;
    right: 5vw;
    z-index: 5;
    display: none;
}
.pb_content.active{
    display: block;
}

.cta{
    background-image: url('../img/cta_bg.jpg');
    background-size: cover;
    padding: 10px 5% 7% 0.8%;
}
.cta_base{
    position: relative;
}
.cta_base a{
    position: absolute;
    display: block;
    width: 90%;
    left: 8%;
}
.cta_base a.tel{
    bottom: 29%;
}
.cta_base a.mail{
    bottom: 4%;
}

.voice_slider_wrapper{
    background-color: #c00f02;
    padding: 20px 0 50px;
    position: relative;
}
.voice_slider{
    padding: 0 10px;
}
.voice_slider .swiper-pagination-bullet{
    opacity: 0.2;
    background: #fff;
}
.voice_slider .swiper-pagination-bullet-active{
    opacity: 1;
    background: #fff;
}



.flow{
    background-color: #fbf5ea;
    padding: 50px 2%;
}
.flow h2{
    color: #c00f02;
}
.flow01{
    position: relative;
}
.flow01 a{
    position: absolute;
    display: block;
    width: 74%;
    right: 5%;
}
.flow01 a.tel{
    bottom: 21%;
}
.flow01 a.mail{
    bottom: 5%;
}

.cta .colona{
    width: 95%;
    margin: 15px 0 10px 5%;
}

.faq{
    padding: 40px 4%;
}
.faq h2{
    color: #c00f02;
}
.faq h3{
    text-align: center;
    color: #c00f02;
    font-size: 26px;
    margin-bottom: 15px;
}
.faq h3 img{
    display: inline-block;
    height: 26px;
    width: auto;
    margin-inline: 2px;
    vertical-align: middle;
}
.faq dl+h3{
    margin-top: 40px;
}
.faq dt{
    background-color: #675952;
    color: #fff;
    border-radius: 5px;
    padding: 10px 35px 10px 40px;
    transition: all 0.3s;
    position: relative;
    font-size: 15px;
    cursor: pointer;
}
.faq dt::before{
    content: 'Q.';
    color: #fff;
    position: absolute;
    left: 12px;
    top: 30%;
    line-height: 1;
}
.faq dt::after{
    content: '▼';
    color: #fff;
    position: absolute;
    right: 12px;
    top: 33%;
    line-height: 1;
    transform: rotate(0deg);
}
.faq dt.active{
    border-radius: 5px 5px 0 0;
}
.faq dt.active::after{
    transform: rotate(180deg);
}
.faq dd+dt{
    margin-top: 10px;
}
.faq dd{
    background-color: #fcf7e3;
    border-radius: 0 0 5px 5px;
    padding: 15px;
    display: none;
}
.faq dd p{
    display: inline-block;
    text-align: justify;
    vertical-align: top;
    font-size: 14px;
}
.faq dd p:first-child{
    width: 5%;
}
.faq dd p:last-child{
    width: 93%;
}
.faq_cta{
    position: relative;
    margin: 30px 0;
}
.faq_cta a{
    position: absolute;
    width: 90%;
    left: 5%;
    top: 46%;
}

.form{
    background-image: url(../img/form_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 60px;
}
.form_title{
    padding: 60px 0 0;
}
.form_inner{
    border-radius: 10px;
    padding: 20px 30px 20px;
    width: 90%;
    margin: 50px auto;
    background-color: #fff;
}
.form_inner p{
    font-size: 23px;
    line-height: 1.5;
    font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    margin: 10px auto;
}
.form_inner_title{
    display: flex;
    align-items: end;
    border-bottom: 1px solid #c7221c;
    margin-bottom: 16px;
}
.form_inner_title p:first-child{
    color: #c7221c;
    font-size: 35px;
    margin: 0 10px 0 0;
}
.form_inner_title p:last-child{
    padding: 1px 5px;
    margin: 0 0 12px;
    border-radius: 50px;
    font-size: 15px;
    background-color: #39150c;
    width: fit-content;
    color: #fff;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
.form_inner_content{
    display: flex;
    align-items: center;
}

.form_inner_content p{
    font-size: 28px;
    width: 110px;
    margin: 13px;
    color: #39150c;
}
select{
    padding: 10px;
    font-size: 23px;
    width: 100%;
    border-radius: 5px;
    background-color: #f6f6f6;
    border: 1px solid #bdbdbd;
}

.mt30{
    margin-top: 30px;
}
input{
    padding: 10px;
    font-size: 23px;
    width: 100%;
    border-radius: 5px;
    background-color: #f6f6f6;
    border: 1px solid #bdbdbd;
    margin-top: 8px;
}
textarea{
    padding: 10px;
    font-size: 23px;
    width: 100%;
    border-radius: 5px;
    background-color: #f6f6f6;
    border: 1px solid #bdbdbd;
    margin-top: 8px;
    line-height: 1.4;
}
.form_inner_title02{
    display: flex;
    align-items: end;
    border-bottom: 1px solid #c7221c;
    margin-bottom: 16px;
}
.form_inner_title02 p{
    color: #c7221c;
    font-size: 35px;
    margin: 0 10px 0 0;
}
.privacy_box {
    height: 150px;
    border: 1px solid #979797;
    overflow-y: scroll;
    max-width: 698px;
    margin: 40px auto 0;
    text-align: left;
}
.privacy_box_inner {
    padding: 0px 10px;
}
.privacy_box_inner h2,
.privacy_box_inner h3,
.privacy_box_inner p{
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}
.privacy_box_inner p{
    font-size: 15px;
}
.submitbtn input[type="submit"] {
    display: block;
    background-color: #c7221c;
    width: 40%;
    font-size: 30px;
    letter-spacing: 2px;
    color: #fff;
    transition: 0.3s;
    padding: 25px 0;
    margin: 60px auto 50px;
    border-radius: 5px;
}
.form_page .form{
    padding-top: 90px;
}
.form_page h2{
    color: #fff;
}
.form_page .submitbtn{
    display: flex;
    justify-content: space-between;
    margin: 30px auto 40px;
}
.form_page .submitbtn input[type="submit"]{
    width: 48%;
    margin: 0;
}
.form_page .backbtn{
    text-align: center;
}
@media screen and (max-width:640px){
    .form_inner {
        padding: 15px 15px 20px;
    }
    .form_inner p {
        font-size: 17px;
        line-height: 1.4;
    }
    .form_inner_title p:first-child {
        font-size: 21px;
    }
    .form_inner_title p:last-child {
        margin: 0px 0 9px;
        font-size: 11px;
    }
    .form_inner_content p {
        font-size: 19px;
        width: 94px;
        margin: 5px;
    }
    select {
        padding: 5px;
        font-size: 17px;
        width: 100%;
    }
    input {
        font-size: 17px;
        margin-top: 0px;
    }
    .form_inner_title02 p{
        font-size: 21px;
    }
    textarea {
        font-size: 15px;
    }
    .privacy_box_inner h2{
        font-size: 21px;
    }
    .privacy_box_inner h3{
        font-size: 17px;
    }
    .privacy_box_inner p{
        font-size: 14px;
    }
    .submitbtn input[type="submit"] {
        font-size: 20px;
        padding: 20px 0;
        width: 100%;
        margin: 30px auto 40px;
        border-radius: 5px;
    }
    .privacy_box {
        margin: 20px auto 0;
    }
    .form_h2 {
        font-size: 30px;
    }
    .form_inner {
        margin: 25px auto;
    }
}

.area{
    background-image: url('../img/area_bg.jpg');
    background-size: cover;
    padding: 40px 2%;
}
.area h2{
    color: #c00f02;
}
.area dt{
    background-color: #c00f02;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    cursor: pointer;
}
.area dt::after,
.area dt::before{
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    position: absolute;
    right: 15px;
    top: 45%;
    background-color: #fff;
    transition: all 0.3s;
}
.area dt.active{
    border-radius: 5px 5px 0 0;
}
.area dt::before{
    transform: rotate(90deg);
}
.area dt.active::before{
    transform: rotate(0);
}
.area dd+dt{
    margin-top: 10px;
}
.area dd{
    background-color: #fff;
    border-radius: 0 0 5px 5px;
    padding: 15px;
    font-size: 15px;
    display: none;
}

footer{
    background-color: #3c1d18;
    padding: 30px 0;
}
footer p{
    display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
}
footer p+p{
    margin-top: 15px;
}


 /* 追従ボタン */
/* デザインに関する記述 */
.cta_follow_content{
	padding: 3%;
}
.foloow_flex{
	display: flex;
	justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.foloow_flex a{
	width: 49%;
	padding: 1% 0 0;
}

/* 動きに関する記述 */
.ScrollTop {
    opacity: 0;
    transition: all 0.65s;
    width: 100%;
    max-width: 500px;
    position: fixed;
    z-index: 10;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 0px 30px 25px;
}
.ScrollTop.isActive {
    opacity: 1;
    transition: all 0.65s;
	visibility: visible;
}

@media screen and (max-width: 740px) {
    .ScrollTop {
        width: 100%;
        max-width: 460px;
        bottom: 0;
        padding: 0px 7px 20px !important;
    }

    footer{
        padding: 30px 0 200px 0;
    }
}