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

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500;600;700&display=swap');
html, body, header, nav, ul, li, p, a, div, img, dd, dt, dl, h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}
body {
	overflow-x: hidden;
}
.clearfix:before, .clearfix:after {
	content: ' ';
	display: table;
	clear: both;
}
#denim {
	width: 100vw;
	margin: 0 auto;
	padding: 0;
	font-size: 16px;
	font-weight: normal;
	font-family: 'Roboto' , 'Noto Sans JP', sans-serif;
	overflow: hidden;
	text-align: left;
	background: #FFF;
	color: #000;
}
#denim img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}
#denim p {
	font-size: 0.95em!important;
	margin-top: 0!important;
	line-height: 180%;
}
#denim .prostaff_wrap {
	width: 100%!important;
	max-width: 800px;
	margin: 0 auto;
	padding: 0;
}
#denim h1, #denim h2, #denim h4, #denim h5 {
	color: #000;
	text-align: center;
	font-weight: bold;
	background: none;
	border: none;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

#denim h3{
	color: #417dc1;
	text-align: center;
	font-weight: bold;
	background: none;
	border: none;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

#denim h1 {
	font-size: 3.5em;
	line-height: 160%;
	letter-spacing: 0.5px;
}

#denim h1.underline{
	font-weight: bold;
	color: white;
	background: linear-gradient(transparent 0%, #000 0%);
}


#denim h1 span{
	font-size: 0.5em;
	line-height: 160%;

}
#denim h2 {
	font-size: 1.65em;
	line-height: 180%;
	margin: 0 auto 10px;
	text-align: center;
}
#denim h2 span {
	font-size: 1.1em;
}
#denim .flex {
	display: -webkit-flex;
	/* Safari */
	display: flex;
	-webkit-flex-wrap: wrap;
	/* Safari */
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	justify-content:center; 
}
#denim p.main_text, 
#denim p.stylingtext {
	width: 90%!important;
	margin: 20px auto!important;
	text-align: center;
	line-height: 180%;
	display: block!important;
}
#denim section {
	width: 100%;
	max-width: 800px;
}
#denim section.main,
#denim section.member{
	width: 100%;
	position: relative;
	text-align: center;
	margin: 100px auto;
}
#denim p.itemname {
	width: 100%;
	line-height: 200%;
}
#denim p.price {
	width: 100%;
	display: block;
	font-size: 0.8em!important;
}
#denim p.price span {
	color: #C52F32;
	font-size: 1.3em!important;
	font-weight: bold;
}
#denim section.member .team{
	max-width: 800px;
	margin: 100px auto;
}
#denim section.member .team {
	width: 100%;
}
#denim section.member .team div {
	flex-basis: 33%;
	padding: 1%;
}
#denim section.member .team img{
	width: 100%;
	max-width: 300px;
}
#denim section.main .itembox {
	width: 80%;
	max-width: 800px;
	margin: 10px auto 25px;
}
#denim section.main.itembox p {
	text-align: center;
}
#denim section.main p.itemtext {
	margin: 20px auto 20px!important;
	font-size: 0.85em!important;
}
#denim section.main p.itemname {
	font-size: 0.90em!important;
}


#denim section.item{
	width: 100%;
	max-width: 800px;
	margin: 50px auto;
	text-align: center;
}
#denim section.item img{
	width: 100%;
}
#denim section.item .flex div {
	flex-basis: 33%;
	padding: 2%;
}

#denim p.itemname {
	font-size: 0.95em!important;
	margin: 20px auto 10px!important;
	font-weight: 600;
}
#denim p.price {
	font-size: 0.85em!important;
	margin: 10px auto!important;
}



















#denim .box {
	width: 100%;
	max-width: 600px;
	margin: 0 auto 50px;
}
#denim section.main .doubleimage {
	width: 100%;
	max-width: 800px;
	margin: 10px 0px 45px 0px;
}
#denim .style .slide {
	margin: 0 auto;
}
#denim .style .slide ul {
	width: 100%;
	max-width: 800px;
}
#denim .style .slide ul li img {
	width: 100%;
	max-width: 800px;
}
#denim section.main .doubleimage div {
	flex-basis: 50%;
}


#denim .mask {
	width: 100%;
	height: 100%;
	position: absolute;	/* 絶対位置指定 */
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	background-color: rgba(0,0,0,0.4);	/* マスクは半透明 */
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

#denim .mask:hover {
	opacity: 1;	/* マスクを表示する */
}


#denim .caption{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-53%);
	-ms-transform: translateY(-53%);
	transform: translateY(-53%);
	font-size: 3em;
	letter-spacing: 5px;
	color:#fff;
	line-height: 1.5;
	left: 0;
	right: 0;
	width: 85%;
	margin: auto;
	text-align: center;
	-webkit-transition: opacity 250ms;
	transition: opacity 250ms;
	mix-blend-mode: lighten;
	font-family: 'futura-pt-condensed', sans-serif;
	font-weight: bold;
}


.box26 {
    position: relative;
    margin: 2em 0;
    padding: 2em 1em;
    border: solid 2px #417dc1;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 22px;
    background: #FFF;
    color: #417dc1;
    font-weight: bold;
}
.box26 p {
    margin: 0; 
    padding: 0;
	}



/* 購入ボタン */

#denim .buy a,
#denim .coming {
	display: block;
	width: 100%;
	max-width: 150px;
	padding: 8px 0;
	text-align: center;
	border: 1px solid #000;
	background: #000;
	color: #FFF;
	/*-webkit-transition: 5s;
	-moz-transition: 5s;
	-o-transition: 5s;
	-ms-transition: 5s;*/
	transition: 0.6s;
	margin: 0 auto;
	font-size: 1em!important;
}
#denim .buy a:hover {
	background: #FFF;
	text-align: center;
	border: 1px solid #000;
	color: #000;
}

#denim a.coming {
	background: #fff;
	text-align: center;
	border: 1px solid #000;
	color: #000;
	font-weight: bold;
}


#denim .buy2 {
	display: block;
	width: 100%;
	max-width: 150px;
	padding: 6px 0;
	text-align: center;
	border: 1px solid #000;
	background: #000;
	color: #fff;
	/*-webkit-transition: 5s;
	-moz-transition: 5s;
	-o-transition: 5s;
	-ms-transition: 5s;*/
	transition: 0.6s;
	margin: 0 auto;
}
#denim .buy2:hover {
	background: #fff;
	text-align: center;
	border: 1px solid #000;
	color: #000;
}





#denim p.other a {
	display: block;
	width: 100%;
	max-width: 400px;
	padding: 10px 0;
	text-align: center;
	border: 1px solid white;
	background: #417dc1;
	color: white;
	/*-webkit-transition: 5s;
	-moz-transition: 5s;
	-o-transition: 5s;
	-ms-transition: 5s;*/
	transition: 0.6s;
	margin: 60px auto;
}

#denim p.other a:hover{
	background: white;
	text-align: center;
	border: 1px solid #417dc1;
	color: #417dc1;
}

#denim .styling{
	width: 90%!important;
	margin: 40px auto;
}
#denim .itemlist {
 text-align: left;
 display: -webkit-flex; /* Safari */
 display: flex;
 -webkit-flex-wrap: wrap; /* Safari */
 flex-wrap: wrap;
 width: 100%;
 max-width: 600px;
 margin: auto;
 padding: 10px 0;
}
#denim .itemlist div:first-child {
	width: 75%;
	padding: 3px 1% 3px 0;
}
#denim .itemlist div:last-child {
	width: 25%;
	display: flex;
	align-items: center;
	padding-right: 1%;
	justify-content: space-around;
}


/* 回遊リンク */

#denim .Banner4 {
	text-align: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 30px;
}
#denim .Banner4 h3 {
	font-size: 25px !important;
	margin: 30px auto;
	padding: 20px 0;
	border-top: double #000;
	border-bottom: 1px solid #000;
	color: #000;
	letter-spacing: 3px;
}
#denim .Banner4 ul {
	display: inline;
}
#denim .Banner4 ul li {
	display: inline-block;
	width: 47% !important;
	margin: 1% 1% 2% 1%;
}
@media only screen and (min-width:749px) {
	.pc_none {
		display: none!important;
	}
	/* ヘッダー・フッターの崩れを直す */
	#news_detail .detail {
		width: 100%!important;
	}
	#news_detail .detail .head {
		width: 1000px!important;
		margin: 0 auto 50px!important;
	}
	#news_detail .detail .content p:first-child {
		margin: 0 auto;
		max-width: 1000px!important;
	}
	#topicpath {
		width: 1168px;
		margin: 0 auto;
	}
	.paging {
		width: 1000px;
		margin: 0 auto;
	}
	.item_category_links {
		width: 1168px;
		margin: 100px auto 0;
	}
}
@media screen and (max-width:748px) {
	.sp_none {
		display: none;
	}
	#denim h1 {
		font-size: 6.5vw;
	}
	
	#denim h1.underline{
	font-weight: bold;
	color: white;
	background: linear-gradient(transparent 0%, #000 0%);
}
		
	#denim h1 span {
		font-size: 3.5vw;
	}
	#denim h2 {
		font-size: 5vw;
		text-align: center;
	}
	#denim h3 {
		font-size: 3.8vw;
		color: #417dc1;
	}
	#denim p, #denim div {
		font-size: 3.2vw!important;
		line-height: 180%;
	}
	#denim p.main_text {
		display: block!important;
		margin: 2.5vw auto 8.25vw!important;
		text-align: left;
	}
	#denim p.stylingtext {
		margin: 0vw auto 7.25vw!important;
		text-align: left;
	}
	#denim section {
		margin: 8.375vw auto;
	}
	#denim section.main,
	#denim section.member{
		margin: 12.375vw auto;
	}	
	#denim .itemlist div {
		font-size: 3.2vw!important;
		line-height: 150%!important;
	}
	#denim p.price {
		font-size: 3.5vw!important;
		line-height: 110%;
	}
	#denim .itemlist div:first-child {
		width: 82%;
		padding: 1vw 1% 1vw 0;
	}
	#denim .itemlist div:last-child {
		width: 18%;
	}
	#denim .styling {
        margin: 5.375vw auto;
    }
	#denim section.recommend p.small {
		font-size: 2.6vw!important;
	}
	#denim .back {
		height: 45vw;
	}
	#denim section.member .team {
        margin: 0vw auto;
    }
	
	#denim section.item
	 {
		margin: 15vw auto 10.125vw;
	}
	
	
	
	/* 100%表示用 */
	#news_detail .detail {
		margin: 0 auto;
	}
	/* 回遊リンク */
	#denim .Banner4 {
		text-align: center;
		width: 100%;
	}
	#denim .Banner4 ul {
		margin: 0 auto;
		width: 95%;
	}
	#denim .Banner4 ul li {
		width: 95% !important;
		margin: 0 0 5% 0 !important;
	}
	
	.box26 {
    position: relative;
    margin: 3em 2em;
    padding: 1em;
    border: solid 2px #417dc1;
    border-radius: 8px;
}


.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 100%;
    font-size: 3.5vw;
    background: #FFF;
    color: #417dc1;
    font-weight: bold;
}

.box26 p {
   text-align: left;
	}	
	
	/* ヘッダー */
	#news_detail .detail .content p:first-child img {
		display: none;
	}
	#denim .header {
		position: relative;
		height: 110vw;
	}
	#denim .header .fv1 {
		position: absolute;
		top: 40vw;
		left: 0vw;
		right: 0vw;
		width: 100%;
		margin: auto;
	}
	
}