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

:root {
    --main-color: #002fb6;
}

.mainContents > section > section {
    margin-bottom: clamp(50px, 5vw, 90px);
}


/*----------------------------------------------------------------
  サイズ調整可能なバックパネル
------*/

.main-img {
    margin-bottom: clamp(40px, 3vw, 60px);
}

.main-img dt {
    margin-bottom: clamp(20px, 3vw, 30px);
}


/*----------------------------------------------------------------
    h要素
------*/
.h-main {
    font-size: clamp(20px, 3vw, 27px);
    font-weight: bold;
    text-align: center;
    padding: 25px 30px;
    margin-bottom: 25px;
    border-top: 5px solid var(--main-color);
    color: #212121;
    background: #f5f5f5;
    letter-spacing: .1em;
}


/**/
.h-standard {
    text-align: center;
    margin-bottom: clamp(25px, 3vw, 45px);
}
.h-standard span {
    margin: 0 auto clamp(5px, 3vw, 10px);
    color: var(--main-color);
    font-size: clamp(15px, 3vw, 20px);
    font-weight: bold;
    align-items: center;
    display: flex;
    gap: 0 15px;
}
.h-standard span:before,
.h-standard span:after {
    content: "";
    display: block;
    height: 2px;
    background: var(--main-color);
    flex-grow: 1;
    min-width: 30px;
}

.h-standard em {
    font-weight: bold;
    font-size: clamp(20px, 3vw, 28px);
}


/*----------------------------------------------------------------
  about-cont
------*/
.mainContents > section > section.about-cont {
    margin-bottom: 40px;
}

.about-cont .h-about {
    background: var(--main-color);
    text-align: center;
    font-weight: bold;
    font-size: clamp(19px, 3vw, 26px);
    color: #FFF;
    padding: 20px;
    margin-bottom: 25px;
    box-sizing: border-box;
}

@media screen and (max-width: 786px) {
    .about-cont {
        padding: 0 3%;
    }

    .about-cont .h-about {
        width: calc(100% + 6%);
        margin: 0 -3% 20px;
    }
    
}

@media screen and (max-width: 480px) {
    .about-cont {
        padding: 0 20px;
    }

    .about-cont .h-about {
        width: calc(100% + 40px);
        margin: 0 -20px 20px;
    }
}


/*--about-lead--*/
.about-cont .about-lead {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    margin-bottom: 20px;
}

.about-cont .about-lead .text {
    display: flex;
	align-items: center;
    width: 325px;
    text-align: center;
    padding-left: clamp(10px, 3vw, 35px);
    box-sizing: border-box;
}

.about-cont .about-lead .text p {
    font-weight: bold;
    font-size: clamp(16px, 3vw, 22px);
    line-height: 2;
    color: #212121;
}

.about-cont .about-lead .text p span {
    background:linear-gradient(transparent 60%, #f0ff00 60%, #f0ff00 95%, transparent 95% );
}

.about-cont .about-lead .text p em {
    color: #ff0080;
    font-weight: bold;
}



@media screen and (max-width: 786px) {
    .about-cont .about-lead .text {
        width: 45%;
    }
    .about-cont .about-lead .img {
        width: 50%;
    }

    .about-cont .about-lead .text p br {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .about-cont .about-lead .text,
    .about-cont .about-lead .img {
        width: 100%;
    }

    .about-cont .about-lead .text {
        padding: 0 0 10px;
    }

    .about-cont .about-lead .text p {
        line-height: 1.8;
    }
}


/*--about-hikaku--*/
.about-cont .about-hikaku {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    gap: 20px 0;
    margin-bottom: 30px;
}

.about-cont .about-hikaku dl {
    width: 385px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 3px 5px 7px 0.12px rgba(4, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}

.about-cont .about-hikaku dl dt {
    text-align: center;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: bold;
    padding: 13px 20px;
    flex: 1 auto;
    display:flex;
	justify-content: center;
	align-items: center;
}

.about-cont .about-hikaku dl:first-child dt { background: #e1e9ff; }
.about-cont .about-hikaku dl:last-child dt { background: #ffecd4; }

@media screen and (max-width: 786px) {
    .about-cont .about-hikaku dl {
        width: 48%;
    }
}

@media screen and (max-width: 480px) {
    .about-cont .about-hikaku dl {
        width: 100%;
    }
}


/*----------------------------------------------------------------
  pick-cont
------*/

/*--pick-list--*/
.pick-cont .pick-list {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    gap: 30px;
}

.pick-cont .pick-list .box {
    background: #f1f3f7;
    border-radius: 5px;
    border: 2px solid #bfcae2;
    box-sizing: border-box;
}

.pick-cont .pick-list li:not(:first-child) {
    width: 385px;
}

@media screen and (max-width: 786px) {
    .pick-cont .pick-list {
        padding: 0 3%;
    }

    .pick-cont .pick-list {
        gap: 20px;
    }

    .pick-cont .pick-list li:not(:first-child) {
        width: calc(50% - 10px);
    }
}

@media screen and (max-width: 480px) {
     .pick-cont .pick-list {
        padding: 0 20px;
    }
    .pick-cont .pick-list li:not(:first-child) {
        width: 100%;
    }
}


/*--box--*/
.pick-cont .pick-list .box section {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pick-cont .pick-list .h-list {
    padding: clamp(20px, 3vw, 25px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 25px) 80px;
    border-bottom: 2px solid #bfcae2;
    color: var(--main-color);
    font-weight: bold;
    font-size: clamp(17px, 3vw, 21px);
    position: relative;

    flex: 1 auto;
    display: flex;
    align-items: center;
}
.pick-cont .pick-list .h-list:before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 25px;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
.pick-cont .pick-list li:nth-child(1) .h-list:before {
    background: url(../../../_images/feature/shadow-fabric/pick1-number.webp);
}
.pick-cont .pick-list li:nth-child(2) .h-list:before {
    background: url(../../../_images/feature/shadow-fabric/pick2-number.webp);
}
.pick-cont .pick-list li:nth-child(3) .h-list:before {
    background: url(../../../_images/feature/shadow-fabric/pick3-number.webp);
}

.pick-cont .pick-list .inner p:first-child {
    margin-bottom: 20px;
}

.pick-cont .pick-list .inner {
    padding: clamp(20px, 3vw, 25px) clamp(20px, 3vw, 40px);
}

@media screen and (max-width: 786px) {

    
}

@media screen and (max-width: 480px) {

}


/*--type-test--*/
.pick-cont .pick-list .type-test {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    gap: clamp(10px, 3vw, 25px);
}

.pick-cont .pick-list .type-test:not(:last-child) {
    margin-bottom: 20px;
}

.pick-cont .pick-list .type-test dt {
    width: 190px;
    display: flex;
	align-items: center;
    font-weight: bold;
    font-size: clamp(16px, 3vw, 18px);
    position: relative;
    line-height: 1.7;
    padding-right: 35px;
    box-sizing: border-box;
}

.pick-cont .pick-list .type-test dt:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 33px;
    height: 33px;
    background: #bfcae2;
    border-radius: 50%;
}

.pick-cont .pick-list .type-test dt:after {
    content: "";
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 786px) {
    .pick-cont .pick-list .type-test dt:before,
    .pick-cont .pick-list .type-test dt:after {
        display: none;
    }
    
}

@media screen and (max-width: 480px) {

}

.pick-cont .pick-list .type-test dd {
    width: calc(100% - 220px);
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
}

.pick-cont .pick-list .type-test dd figure {
    width: 48%;
    background: #FFF;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.pick-cont .pick-list .type-test dd figcaption {
    font-weight: bold;
    font-size: 14px;
    padding: 8px 20px;
    line-height: 1.4;
    flex: 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pick-cont .pick-list .type-test dd figure:first-child figcaption { background: #d5e2ff; }
.pick-cont .pick-list .type-test dd figure:last-child figcaption { background: #ffe9cd; }

.pick-cont .pick-list .type-test dd img {
    padding: 10px;
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
    width: 180px;
    height: 180px;
}


@media screen and (max-width: 786px) {
    .pick-cont .pick-list .type-test dt,
    .pick-cont .pick-list .type-test dd {
        width: 100%;
    }

    .pick-cont .pick-list .type-test dt br {
        display: none;
    }

    .pick-cont .pick-list .type-test dd img {
        max-width: 100%;
        height: auto;

    }

}

@media screen and (max-width: 480px) {

}


/*----------------------------------------------------------------
  scene-cont
------*/
.scene-cont .box {
    display:flex;
	flex-flow: row wrap;
	justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    gap: 15px 0;
}

.scene-cont .box:not(:last-child) {
    margin-bottom: clamp(30px, 3vw, 50px);
}

.scene-cont .box .img {
    width: 425px;
}

.scene-cont .box .text {
    width: 345px;
}

.scene-cont .box .text .h-box {
    font-size: clamp(18px, 3vw, 23px);
    font-weight: bold;
    margin-bottom: 10px;
}

.scene-cont .box .text dt {
    font-weight: bold;
    font-size: clamp(15px, 3vw, 17px);
    color: var(--main-color);
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--main-color);
}

.scene-cont .box .text dd {
    font-size: 13px;
}

@media screen and (max-width: 786px) {
    .scene-cont .box {
        padding: 0 3%;
    }

    .scene-cont .box .img,
    .scene-cont .box .text {
        width: 48%;
    }
    
}

@media screen and (max-width: 480px) {
    .scene-cont .box {
        padding: 0 20px;
    }

    .scene-cont .box .img,
    .scene-cont .box .text {
        width: 100%;
    }
}

/*----------------------------------------------------------------
  link-banner
------*/
.link-banner {
    margin: 0 auto clamp(50px, 5vw, 75px);
    text-align: center;
}

@media screen and (max-width: 786px) {
    .link-banner {
        padding: 0 5%;
    }
    
}

@media screen and (max-width: 480px) {
    .link-banner {
        padding: 0 25px;
    }
}



/*----------------------------------------------------------------
  link-btn-item
------*/
.link-btn-item {
    width: 80%;
    margin: 0 auto clamp(50px, 8vw, 85px);
}

.link-btn-item a {
    display: block;
    border-radius: 150px;
    border: 3px solid #ffffff;
    box-shadow: 0px 4px 5.74px 1.26px rgba(5, 5, 5, 0.2);
    background: #ff0080;
    padding: 20px 30px 12px;
    text-align: center;
    font-size: clamp(19px, 3vw, 24px);
    color: #FFF;
    font-weight: bold;
}
.link-btn-item a:after {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 8.5px 0 8.5px;
    border-color: #FFFFFF transparent transparent transparent;
    transform: rotate(0deg);
    margin: 15px auto 0;
}



/*----------------------------------------------------------------
  link
------*/
.itemlist-link {
    width: 90%;
    margin: 0 auto clamp(30px, 3vw, 50px);
}

.itemlist-link img {
    width: 100%;
    height: auto;
}


.itemlist-link + .linkBtn a {
    background: #46ca7e;
    border-color: #30ab64;
}
