@charset "utf-8";
/* CSS Document */

/*-----------------------------------------

　初めての方へ　beginners

-----------------------------------------*/

/*------------------------------------------------------
　h要素
------------------------------------------------------*/
.h-standard {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px 20px 0;
    border-top: 10px solid;
}

.h-standard span {
    font-weight: bold;
    font-size: clamp(14px, 3vw, 21px);
    border: 4px solid #343434;
    border-radius: 100px;
    display: block;
    width: fit-content;
    margin: 0 auto clamp(10px, 3vw, 18px);
    background: #FFF;
    padding: 7px clamp(5%, 3vw, 40px);
    line-height: 1.2;
}

.h-standard em {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: bold;
    letter-spacing: .1em;
}


/*----items----*/
#items .h-standard { border-color: #fe8d13; }
#items .h-standard span {
    border-color: #fe8d13;
    color: #fe8d13;
}

/*----size----*/
#kiji-size .h-standard { border-color: #4cc464; }
#kiji-size .h-standard span {
    border-color: #4cc464;
    color: #4cc464;
}

/*----other----*/
#other .h-standard { border-color: #4566cb; }
#other .h-standard span {
    border-color: #4566cb;
    color: #4566cb;
}


/*------------------------------------------------------
　共通
------------------------------------------------------*/
.detailArea > section {
    margin-bottom: clamp(80px, 3vw, 100px);
}

.detailArea > section > section:not(:last-child) {
    margin-bottom: 50px;
}


/*------------------------------------------------------
　お決め頂きたい内容
------------------------------------------------------*/
.select-point {
    width: 680px;
    background: #f4f4f2;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 50px 60px;
    margin: 40px auto 80px;
    text-align: center;
}

.select-point dt {
    margin-bottom: clamp(10px, 3vw, 20px);
}

.select-point dt span {
    font-weight: bold;
    font-size: clamp(13px, 3vw, 19px);
    border: 3px solid #343434;
    border-radius: 100px;
    display: block;
    width: fit-content;
    margin: 0 auto clamp(10px, 3vw, 15px);
    background: #FFF;
    padding: 7px 30px;
    line-height: 1.2;
}

.select-point dt em {
    font-size: clamp(22px, 4vw, 29px);
    font-weight: bold;
    text-shadow: 
	#FFF 2px 0px,  #FFF -2px 0px,
	#FFF 0px -2px, #FFF 0px 2px,
	#FFF 2px 2px , #FFF -2px 2px,
	#FFF 2px -2px, #FFF -2px -2px,
	#FFF 1px 2px,  #FFF -1px 2px,
	#FFF 1px -2px, #FFF -1px -2px,
	#FFF 2px 1px,  #FFF -2px 1px,
	#FFF 2px -1px, #FFF -2px -1px;
    letter-spacing: .1em;
}

@media screen and (max-width: 786px) {
    .select-point {
        width: 100%;
        padding: 30px 10%;
        border-radius: 0;
    }
    
    .select-point .flex li {
        width: 32%;
    }
}

@media screen and (max-width: 480px) {
    .select-point .flex {
        justify-content: center;
        gap: 0 2%;
    }
    
    .select-point .flex li {
        width: 49%;
    }
}



/*------------------------------------------------------
　本体種類
------------------------------------------------------*/
.items-list.flex {
    align-items: center;
    row-gap: 20px;
}

.items-list .text {
    width: 350px;
}

.items-list .text .recommend-text li {
    border: 1px solid #bfbfc4;
    border-left: 5px solid #5578c6;
    border-radius: 8px;
    box-shadow: 0.788px 0.616px 1.68px 0.32px rgba(7, 6, 6, 0.25);
    padding: 20px 35px;
}
.items-list .text .recommend-text li:not(:last-child) {
    margin-bottom: 10px;
}
.items-list .text .recommend-text li p {
    font-size: 15px;
    font-weight: bold;
    color: #2d294a;
    letter-spacing: .06em;
    line-height: 1.6;
}


.items-list .text .link {
    text-align: center;
    margin-top: 25px;
}

.items-list .text .link a {
    color: #ff1b5b;
    font-size: 15px;
    letter-spacing: .12em;
    text-decoration: underline;
    font-weight: bold;
}

.items-list .text .link span {
    font-size: 17px;
    display: block;
}

.items-list .text .link a:hover {
    text-decoration: none;
    opacity: 1;
}


@media screen and (max-width: 786px) {
    .items-list .img,
    .items-list .text {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .items-list .img,
    .items-list .text {
        width: 100%;
    }
    
    .items-list .text .recommend-text li p {
        font-size: 14px;
    }
    
    .items-list .text .link a {
        font-size: 13px;
    }

    .items-list .text .link span {
        font-size: 15px;
    }
}



/*------------------------------------------------------
　メディアサイズ
------------------------------------------------------*/
.size-cont .text {
    width: 350px;
}

.size-cont .text,
.size-cont .img {
    display: flex;
	align-items: center;
}

.size-cont .text p {
    font-size: 13px;
    line-height: 2.2;
}

@media screen and (max-width: 786px) {
    .size-cont {
        margin: 0 3%;
    }
    
    .size-cont .text,
    .size-cont .img {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .size-cont {
        margin: 0 5%;
    }
    
    .size-cont .text,
    .size-cont .img {
        width: 100%;
    }
    
    .size-cont .text p {
        line-height: 1.8em;
    }
    
    .size-cont .img img {
        max-width: 100%;
        width: auto;
        margin: 20px auto 0;
    }
}


/*------------------------------------------------------
　その他のお見積もり事項について
------------------------------------------------------*/
.other-list li {
    background: #f4f4f2;
    padding: 30px 25px 30px 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 14px -1px;
    position: relative;
}
.other-list li:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 30px 30px 0 0;
    border-color: #fff019 transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 0;
}

.other-list li:not(:last-child) {
    margin-bottom: clamp(20px, 3vw, 25px);
}

.other-list li section {
    width: 310px;
}

.other-list li section,
.other-list li .img {
    display: flex;
	justify-content:center;
	flex-direction: column;
}

.other-list .h-other {
    font-weight: bold;
    text-align: center;
    font-size: clamp(18px, 3vw, 20px);
    letter-spacing: .08em;
    width: fit-content;
    margin: 0 auto clamp(10px, 3vw, 15px);
    color: #2b2c2e;
    position: relative;
    padding-left: clamp(35px, 3vw, 40px);
}
.other-list .h-other:before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: clamp(23px, 3vw, 28px);
    display: block;
    line-height: 1em;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.other-list section p {
    font-size: 13px;
}

.other-list section p mark {
    background: linear-gradient(transparent 50%, #ffdbe7 50%, #ffdbe7 95%, transparent 95% );
}

@media screen and (max-width: 786px) {
    .other-list {
        margin: 0 3%;
    }
    
    .other-list li section,
    .other-list li .img {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .other-list {
        margin: 0 5%;
    }
    
    .other-list li {
        padding: 35px 30px;
    }
    
    .other-list li section,
    .other-list li .img {
        width: 100%;
    }
    
    .other-list li .img {
        margin-top: 15px;
    }
    
    .other-list li .img img {
        max-width: 100%;
        width: auto;
        margin: 0 auto;
        
    }
    
}



/*------------------------------------------------------
　estimate-box
------------------------------------------------------*/

#mainContent .estimate-box {
    margin-bottom: clamp(40px, 3vw, 60px);
}

@media screen and (max-width: 786px) {
    #mainContent .estimate-box p {
        max-width: 90%;
        box-sizing: border-box;
    }
    
    #mainContent .estimate-box p br {
        display: none;
    }
}


/*------------------------------------------------------
　last-text
------------------------------------------------------*/

.last-text {
    margin-bottom: 70px;
}

.last-text p:not(:last-child) {
    margin-bottom: 1rem;
}


@media screen and (max-width: 786px) {
    .last-text {
        margin: 0 3% 60px;
    }
}

@media screen and (max-width: 480px) {
    .last-text {
        margin: 0 5% 50px;
    }
}


