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

	material 素材　/　共通

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

.main-contents > h2{
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.5em;
}

.main-contents > h2 + p{
	margin: 3rem auto 5rem;
}


/*------------------------------
	catch-cont
------------------------------*/
.catch-cont {
    width: 790px;
    margin: 0 auto 3rem;
    position: relative;
}

.catch-cont p {
    color: #FFF;
    font-weight: bold;
    font-size: 2.7rem;
    line-height: 2.3;
    letter-spacing: .06em;
    position: absolute;
    right: 0;
    top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
    width: fit-content;
}

.catch-cont p span {
    padding: .7rem 2.5rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}


/*blue*/
.catch-cont p.blue {
    text-shadow: 3px 3px 2px rgba(0, 128, 194, 0.3);
}
.catch-cont p.blue span {
    background-image: -moz-linear-gradient( 0deg, rgb(0,180,255) 0%, rgb(0,207,251) 36%, rgb(0,233,247) 92%);
    background-image: -webkit-linear-gradient( 0deg, rgb(0,180,255) 0%, rgb(0,207,251) 36%, rgb(0,233,247) 92%);
    background-image: -ms-linear-gradient( 0deg, rgb(0,180,255) 0%, rgb(0,207,251) 36%, rgb(0,233,247) 92%);
}

/*orange*/
.catch-cont p.orange {
    text-shadow: 3px 3px 2px rgba(202, 55, 0, 0.3);
}
.catch-cont p.orange span {
    background-image: -moz-linear-gradient( 0deg, rgb(255,101,88) 0%, rgb(255,125,72) 36%, rgb(255,149,55) 92%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255,101,88) 0%, rgb(255,125,72) 36%, rgb(255,149,55) 92%);
    background-image: -ms-linear-gradient( 0deg, rgb(255,101,88) 0%, rgb(255,125,72) 36%, rgb(255,149,55) 92%);
}


@media screen and (max-width: 810px) {
    .catch-cont {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .catch-cont p {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        -webkit-transform: none;
        text-align: center;
        font-size: 2.3rem;
        margin: 0 auto -1rem;
    }
}



/*------------------------------
	scene-cont
------------------------------*/
.scene-cont {
    background: #f3f1ed;
    border-radius: 1rem;
    text-align: center;
    padding: 3rem 3.5rem;
    box-shadow: 0px 3px 8.46px 0.54px rgba(0, 0, 0, 0.25);
}

.scene-cont .h-scene {
    font-weight: bold;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.scene-cont .h-scene span {
    display: block;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}

.scene-cont .h-scene em {
    font-size: 2.5rem;
}


/*blue*/
.scene-cont .h-scene.blue span {
    color: #00cffb;
}
/*orange*/
.scene-cont .h-scene.orange span {
    color: #ff4914;
}

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

@media screen and (max-width: 480px) {
    .scene-cont .h-scene {
        margin-bottom: 2rem;
    }
    
    .scene-cont .h-scene em {
        font-size: 2.1rem;
    }
}

/**/
.scene-cont ul {
    display:flex;
	justify-content: center;
    gap: 2.5rem;
    flex-flow: row wrap;
}

.scene-cont ul li {
    border-radius: 1rem;
    overflow: hidden;
}

.scene-cont ul li figure {
    position: relative;
}

.scene-cont ul li figcaption {
    color: #FFF;
    position: absolute;
    bottom: 0;
    right: auto;
    left: auto;
    background:rgba(0,0,0,0.6);
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1.3rem 1rem;
    width: 100%;
}

@media screen and (max-width: 810px) {
    .scene-cont ul {
        gap: 2.5rem 3.5%;
    }
    
	.scene-cont ul li {
        width: 31%;
    }
}

@media screen and (max-width: 480px) {
    .scene-cont ul {
        gap: 2rem 4%;
    }
    
	.scene-cont ul li {
        width: 48%;
    }
    
    .scene-cont ul li figcaption {
        font-size: 13px;
    }

}



/*------------------------------
	おすすめ商品
------------------------------*/
/*----アニメーション----*/
/*フェードイン*/
@keyframes fade-in {
    0% { }
    100% { opacity: 1; }
}

/**/
.recommend-box .tab-box {
    display: flex;
	justify-content: center;
    flex-wrap: wrap;
    gap: 0 15px;
	margin: 30px auto;
}

.recommend-box .tab-box > label {
	display: flex;
	flex-wrap: wrap;
    flex: 1 1 1;
    order: -1;
	justify-content: center;
	align-items: center;
    width: calc((100% - 60px) / 5);
	background-color: #c8c8c8;
    color: #fff;
    padding: 70px 20px 20px;
    font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.3em;
    text-align: center;
    border-radius: 15px 15px 0 0;
	transition: all .3s ease;
    cursor: pointer;
	position: relative;
}
.recommend-box .tab-box > label:before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-size: 100% auto;
	mix-blend-mode: screen;
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	margin: auto;
}
.recommend-box .tab-box > label.trainer:before {
	background-image: url(../../../_images/common/icon-trainer.webp);
}
.recommend-box .tab-box > label.pull:before {
	background-image: url(../../../_images/common/icon-pull.webp);
}
.recommend-box .tab-box > label.zip:before {
	background-image: url(../../../_images/common/icon-zip.webp);
}
.recommend-box .tab-box > label.pants:before {
	background-image: url("../../../_images/common/icon-pants.webp");
}
.recommend-box .tab-box > label.short-pants:before {
	background-image: url("../../../_images/common/icon-short-pants.webp");
}

.recommend-box .tab-box > label:hover {
    background-color: var(--main-color);
    opacity: .8;
}
.recommend-box .tab-box > label > span{
	display: block;
	margin-bottom: 5px;
	font-size: 1.7rem;
	line-height: 1.3em;
}
.recommend-box .tab-box input {
    display: none;
}

.recommend-box .tab-box > section {
    display: none;
    width: 100%;
	margin: 0;
    padding: 50px 0;
    background-color: #fff;
	border-top: 5px solid var(--main-color);
}

.recommend-box .tab-box > section > *{
	opacity: 0;
}

.recommend-box .tab-box label:has(:checked) {
    background-color: var(--main-color);
}

.recommend-box .tab-box label:has(:checked) + section {
    display: block;
}
.recommend-box .tab-box label:has(:checked) + section > * {
	animation: fade-in .2s ease forwards;
	animation-delay: .1s;
}

/**/
.recommend-box section{
	margin: 50px auto 80px;
}
/**/
.recommend-box section .h-line{
	display: block;
	width: fit-content;
	background-image: repeating-linear-gradient(90deg, #666, #666 6px, transparent 6px, transparent 12px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 2px;
	margin: 0 auto 30px;
	padding: 0 10px 10px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	position: relative;
}
.recommend-box section .h-line:after{
	content: "\f303";
	display: block;
	color: #666;
	font: var(--fa-font-solid);
	font-size: 2em;
	position: absolute;
	right: -1em;
	bottom: 0;
}
/**/
.recommend-box section .h-orange{
	display: block;
	background-color: #ffebd8;
	color: #333;
	margin: 0 auto 30px;
	padding: 5px 10px;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	border-bottom: 2px solid #555;
	position: relative;
}

/**/
.recommend-box .recommend-item{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.recommend-box .recommend-item > .img{
	width: 420px;
	position: relative;
}
.recommend-box .recommend-item > .img img{
	width: 100%;
	height: auto;
}
.recommend-box .recommend-item > .img:before{
	content: "";
	display: block;
	width: 100px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	position: absolute;
	right: 10px;
	top: 5px;
}

/**/
.recommend-box .recommend-item > .detail{
	width: 430px;
}
.recommend-box .recommend-item > .detail > .feature{
	background-color: #f1f1f1;
	margin-bottom: 20px;
	padding: 20px 30px;
	border-radius: 20px;
}
.recommend-box .recommend-item > .detail > .feature > p{
	display: block;
	width: fit-content;
	background-color: var(--main-color);
	color: #fff;
	margin: 0 auto 10px;
	padding: 0 15px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
	border-radius: 20px;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box{
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 5px 0;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div{
	display: flex;
	gap: 5px;
	position: relative;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box:not(:last-child),
.recommend-box .recommend-item > .detail > .feature dl.main-box > div:not(:last-child){
	background-image: radial-gradient(circle, #6d6d6d 1px, transparent 1px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 6px 2px;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt{
	flex-shrink: 0;
	width: 160px;
	padding: 10px 0;
	padding-left: 50px;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.5em;
	position: relative;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt:before{
	content: "";
	display: block;
	width: fit-content;
	height: fit-content;
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt.price:before{
	content: "\f1ec";
	font: var(--fa-font-solid);
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt.time:before{
	content: "\f1da";
	font: var(--fa-font-solid);
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt.color:before{
	content: "\f53f";
	font: var(--fa-font-solid);
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt.kiji:before{
	content: "\f70e";
	font: var(--fa-font-solid);
	transform: rotate(-45deg);
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt.size:before{
	content: "\f4db";
	font: var(--fa-font-solid);
}

.recommend-box .recommend-item > .detail > .feature dl.main-box > div dd{
	flex: 1;
	padding: 10px 5px;
	font-size: 1.7rem;
	line-height: 1.5em;
	text-align: center;
}
.recommend-box .recommend-item > .detail > .feature dl.main-box > div dd.on{
	background-image: url(../../../_images/common/icon-maru.webp);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	color: #fc3f3f;
	font-weight: 700;
	text-shadow: 
	2px  2px 1px #ffffff,
   -2px  2px 1px #ffffff,
	2px -2px 1px #ffffff,
   -2px -2px 1px #ffffff,
	2px  0px 1px #ffffff,
	0px  2px 1px #ffffff,
   -2px  0px 1px #ffffff,
	0px -2px 1px #ffffff;
}

/**/
.recommend-box .recommend-item > .detail > .feature dl.sub-box{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 70%;
	margin: 10px auto 0;
}
.recommend-box .recommend-item > .detail > .feature dl.sub-box > div{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
}
.recommend-box .recommend-item > .detail > .feature dl.sub-box dt{
	width: 100%;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
}
.recommend-box .recommend-item > .detail > .feature dl.sub-box dd{
	background-color: #c8c8c8;
	color: #fff;
	padding: 3px 8px;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: 5px;
}
.recommend-box .recommend-item > .detail > .feature dl.sub-box dd.on{
	background-color: #fc3f3f;
}

.recommend-box .recommend-item > .detail > .feature dl.sub-box.print dd{
	background-color: transparent;
	padding: 0;
	text-align: center;
}


.recommend-box .recommend-item > .detail > .feature dl.cloth-box{
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 90%;
	margin: 10px auto 0;
}
.recommend-box .recommend-item > .detail > .feature dl.cloth-box > dt{
	width: 100%;
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.5em;
	text-align: center;
}
.recommend-box .recommend-item > .detail > .feature dl.cloth-box > dd{
	width: 100%;
	background-color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
	border-radius: 5px;
	border: 1px solid #969696;
}
.recommend-box .recommend-item > .detail > .feature dl.cloth-box > dd ul{
	display: flex;
	width: 100%;
}
.recommend-box .recommend-item > .detail > .feature dl.cloth-box > dd li:nth-of-type(odd){
	border-right: 1px solid #969696;
}
.recommend-box .recommend-item > .detail > .feature dl.cloth-box > dd li{
	width: 50%;
	padding: 5px 10px;
	text-align: center;
}


/**/
.recommend-box .recommend-item > .detail ul.spec{
	background-image: radial-gradient(circle, #000000 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 9px 3px;
    margin: 10px 0;
    padding-bottom: 10px;
	line-height: 1.5;
	position: relative;
}
.recommend-box .recommend-item > .detail ul.spec > li.number{
	font-size: 1.4rem;
}
.recommend-box .recommend-item > .detail ul.spec > li.name{
	font-size: 1.8rem;
	font-weight: 700;
}
.recommend-box .recommend-item > .detail ul.spec > li.color-size dl{
	display: flex;
	gap: 10px;
	margin: 5px 0;
	font-size: 1.4em;
}
.recommend-box .recommend-item > .detail ul.spec > li.color-size dl dt{
	padding: 2px 5px;
	line-height: 1em;
	border: 1px solid #666;
	border-radius: 3px;
}
.recommend-box .recommend-item > .detail ul.spec > li.price{
	font-size: 1.4em;
}
.recommend-box .recommend-item > .detail ul.spec > li.price em{
	color: #ff0000;
	font-size: 2.2em;
	font-weight: 700;
}


@media screen and (max-width: 810px) {
	/**/
	.recommend-box .tab-box {
		gap: 0 calc(5% / 4);
		margin: 30px auto;
	}
	
	.recommend-box .tab-box > label {
		width: 19%;
		padding: 60px 15px 10px;
		font-size: 1.6rem;
	}
	.recommend-box .tab-box > label:before {
		width: 40px;
		height: 40px;
	}
	
	/**/
	.recommend-box section .h-line:after{
		font-size: 1.6em;
	}
	
	/**/
	.recommend-box .recommend-item{
		gap: 20px 0;
	}
	.recommend-box .recommend-item > .img{
		width: 45%;
	}
	.recommend-box .recommend-item > .img:before{
		width: 80px;
		height: 30px;
	}
	
	/**/
	.recommend-box .recommend-item > .detail{
		width: 52%;
	}
	.recommend-box .recommend-item > .detail > .feature{
		padding: 15px 10px;
	}
	.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt{
		padding: 10px 0;
		padding-left: 35px;
	}
	.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt:before{
		left: 10px;
	}
	.recommend-box .recommend-item > .detail > .feature dl.main-box > div dd{
		padding: 10px 10px;
	}
	/**/
	.recommend-box .recommend-item > .detail > .feature dl.sub-box{
		width: 80%;
	}
	
}

@media screen and (max-width: 600px) {
	.recommend-box .recommend-item{
		flex-direction: column;
		gap: 20px 0;
		max-width: 500px;
		margin: auto;
	}
	.recommend-box .recommend-item > .img{
		width: 100%;
	}
	/**/
	.recommend-box .recommend-item > .detail{
		width: 100%;
	}

}

@media screen and (max-width: 480px) {
	/**/
	.recommend-box .tab-box {
		gap: 10px 3.5%;
	}
	.recommend-box .tab-box > label {
		width: 31%;
        border-radius: 15px;
        padding: 55px 15px 10px;
	}
    .recommend-box .tab-box > label:before {
        width: 35px;
        height: 35px;
    }

	/**/
	.recommend-box section .h-line{
		width: 85%;
		text-align: center;
	}
	.recommend-box section .h-line:after{
		font-size: 1.5em;
	}
	
	/**/
	.recommend-box .recommend-item{
		flex-direction: column;
		gap: 20px 0;
	}
	.recommend-box .recommend-item > .img{
		width: 100%;
	}
	.recommend-box .recommend-item > .img:before{
		width: 80px;
		height: 30px;
	}
	
	/**/
	.recommend-box .recommend-item > .detail{
		width: 100%;
	}
	.recommend-box .recommend-item > .detail dl.feature{
		padding: 3% 2%;
	}
	.recommend-box .recommend-item > .detail > .feature dl.main-box > div dt{
		width: 110px;
		padding-left: 35px;
	}

}



/*------------------------------
	選び方
------------------------------*/


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

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



/*------------------------------
	選び方
------------------------------*/


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

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









/*------------------------------
	選び方
------------------------------*/


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

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

