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


/*************
共通
*************/
:root {
	--diy-primary: #FF8E3C;
	--diy-light: #FFF5EF;
	--diy-border: #8F8F8F;
}
.bodyBg02 {
	background-image: url(../img/bodyBg02.png);
	background-repeat: repeat;
	background-size: 21px 21px;
	color: #000;
	font-size: 16px;
}
#diy_top .content_wrapper {
	padding-top: 0;
	gap: 64px;
}
#pvcFloorTile .content_wrapper,
#longSheet .content_wrapper,
#carpet .content_wrapper {
	padding-top: 48px;
	gap: 40px;
}
@media(max-width:768px) {
#pvcFloorTile .content_wrapper,
#longSheet .content_wrapper,
#carpet .content_wrapper {
	padding-top: 32px;
	gap: 32px;
}
#pvcFloorTile,
#longSheet,
#carpet {
	padding-top: 90px;
	margin-top: -90px;
}
}
/*************
MV
*************/
.diy_mv {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	padding: 48px 20px 20px;
	column-gap: 50px;
}
.diy_mv .mv_text {
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 1;
	padding-bottom: 70px;
}
.mv1 {
	margin: 0px -32px;
}
.mv3 {
	padding: 0 20px;
	overflow: hidden;
}
.mv4 {
	width: 39.5%;
}
.mv1 img {
	opacity: 0;
}
.mv3 img {
	opacity: 0;
}
.mv4 img {
	opacity: 0;
}
.mv1.isPlay img {
	animation: mv1anime 0.5s ease 0.2s forwards;
}
.mv3.isPlay img {
	animation: mv3anime 0.7s ease 0.5s forwards;
}
.mv4.isPlay img {
	animation: mv4anime 0.8s ease 0.8s forwards;
}
@keyframes mv1anime {
	0% {
		transform: translateY(40px) scale(0.8);
		opacity: 0;
	  }
	  100% {
		transform: translateY(0) scale(1.0);
	  }
	  80%, 100% {
		opacity: 1;
	  }
}
@keyframes mv3anime {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100%{
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes mv4anime {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100%{
		opacity: 1;
		transform: translateX(0);
	}
}
@media(max-width:768px) {
	.diy_mv .mv_text {
		gap: 16px;
		padding-bottom: 0;
	}
	.diy_mv {
		flex-direction: column;
	}
	.mv1 {
		margin: 0;
	}
	.mv3 {
		padding: 0;
	}
	.mv4 {
		width: 50%;
		padding-top: 10%;
	}
	@keyframes mv4anime {
		0% {
			opacity: 0;
			transform: translateY(30px);
		}
		100%{
			opacity: 1;
			transform: translateY(0);
		}
	}
}
/*************
TOP
*************/
.diy_anchor {
	display: flex;
	gap: 18px;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
}
.diy_anchor li {
	width: 33%;
	height: 0;
	padding-top: 13.7%;
	position: relative;
}
.diy_anchor a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border-radius: 24px;
	background-size: 100%;
	background-position: center;
	transition: all 0.3s;
	overflow: hidden;
}
.diy_anchor li:nth-child(1) a {
	background-image: url(../img/diy_anc01.jpg);
}
.diy_anchor li:nth-child(2) a {
	background-image: url(../img/diy_anc02.jpg);
}
.diy_anchor li:nth-child(3) a {
	background-image: url(../img/diy_anc03.jpg);
}
.diy_anchor a::before {
	content: "";
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #000;
	opacity: 0;
	transition: all 0.3s;

}
.diy_anchor a:hover {
	background-size: 110%;
}
.diy_anchor a:hover::before {
	opacity: 0.3;
}
.diy_anc_text {
	position: absolute;
	bottom: 24px;
	left: 24px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.01em;
	color: #FFF;
}
@media(max-width:1024px) {
	.diy_anc_text {
		bottom: 16px;
		left: 16px;
		font-size: 18px;
	}
	.diy_anchor a {
		border-radius: 16px;
	}
}
@media(max-width:768px) {
	.diy_anchor {
		flex-direction: column;
	}
	.diy_anchor li {
		width: 100%;
		height: 100px;
	}

	}

/*************
職人のアドバイス枠
*************/
.advice_box {
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	border: 1px solid var(--diy-primary);
	border-radius: 16px;
	padding: 48px;
	background-color: #FFF;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.advice_hd_sub {
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	position: relative;
	width: fit-content;
	margin: 0 auto 4px;
}
.advice_hd_sub::before,
.advice_hd_sub::after {
	content: "";
	width: 28px;
	height: 1px;
	position: absolute;
	background-color: #000;
	top: 50%;
}

.advice_hd_sub::before {
	left: -40px;
	transform: translateY(-50%) rotate(45deg);
}
.advice_hd_sub::after {
	transform: translateY(-50%) rotate(-45deg);
	right: -40px;
}

.advice_hd {
	font-size: 24px;
	text-align: center;
	color: var(--diy-primary);
	font-weight: bold;
}
.advice_hd_wrap .advice_hd {
	font-size: 28px;
	line-height: 1.3;
}
.sato_box {
	display: flex;
	gap: 48px;
	align-items: center;
}
.sato_text {
	flex: 1;
	line-height: 2;
	font-weight: 400;
}
.sato_pic {
	width: 128px;
}
.sato_pic img {
	border-radius: 8px;
}
.point_box {
	display: flex;
	flex-direction: column;
	gap: 24px;
	border: 1px solid var(--diy-primary);
	background-color: var(--diy-light);
	padding: 32px;
	border-radius: 8px;
}
.points_list {
	display: flex;
	flex-direction: column;
}
ul.points_list {
	gap: 24px;
}
.points_list li {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}
.points_list dl {
	flex: 1;
}
.points_list dt {
	font-size: 18px;
	margin-bottom: 8px;
}
.points_num {
	background-color: var(--diy-primary);
	border-radius: 8px;
	padding: 6px 16px;
	color: #FFF;
	font-weight: bold;
	font-size: 15px;
}
@media(max-width:768px) {
	.advice_box {
		padding: 16px;
	}
	.sato_box {
		flex-direction: column-reverse;
		gap: 16px;
	}
	ul.points_list li {
		gap: 8px;
		flex-direction: column;
	}
	.point_box {
		padding: 16px;
	}
	.advice_hd_sub {
		font-size: 16px;
	}
	.advice_hd {
		font-size: 20px;
	}
}
/*************
btn
*************/
.diy_btn {
	display: block;
	border-radius: 8px;
	background-color: var(--diy-primary);
	color: #FFF;
	padding: 24px 0;
	max-width: 320px;
	width: 100%;
	margin: 8px auto 0;
	position: relative;
	font-weight: bold;
	text-align: center;
	font-size: 16px;
	background: linear-gradient(90deg, #E50113 0%, var(--diy-primary) 50%, var(--diy-primary) 100%);
	text-decoration: none;
	background-position: 99% 50%;
	background-size: 200% auto;
	/*アニメーションの指定*/
	transition: all 0.3s ease-out;
}
.diy_btn::after {
	content: "";
	position: absolute;
	background-image: url(../img/diy_btn_arrow.svg);
	width: 14px;
	height: 14px;
	background-repeat: no-repeat;
	background-size: cover;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	transition: all 0.3s ease-in-out;

}

.diy_btn:hover {
	background-position: 1% 50%;
}
.diy_btn:hover::after {
	animation: diyBtnArrowShake 1s ease-in-out infinite;
}

@keyframes diyBtnArrowShake {
	0% {
		transform: translate(0,-50%);
	}

	15% {
		transform: translate(5px,-50%);
	}

	30% {
		transform: translate(0,-50%);
	}

	45% {
		transform: translate(5px,-50%);
	}

	60% {
		transform: translate(0,-50%);
	}
}




/*************
h2
*************/
.diy_h2_wrap {
	width: 100%;
	height: 320px;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
#pvcFloorTile .diy_h2_wrap {
	background-image: url(../img/diy_h2_bg01.jpg);
}
#longSheet .diy_h2_wrap {
	background-image: url(../img/diy_h2_bg02.jpg);
}
#carpet .diy_h2_wrap {
	background-image: url(../img/diy_h2_bg03.jpg);
}
.diy_h2_sub {
	font-size: 24px;
	line-height: 1;
	font-weight: bold;
	text-align: center;
	margin-bottom: 12px;
	position: relative;
	margin: 0 auto 12px;
}
.diy_h2_sub::before,
.diy_h2_sub::after {
	content: "";
	width: 28px;
	height: 1px;
	position: absolute;
	background-color: #000;
	top: 50%;
}
.diy_h2_sub::before {
	left: -40px;
	transform: translateY(-50%) rotate(45deg);
}
.diy_h2_sub::after {
	transform: translateY(-50%) rotate(-45deg);
	right: -40px;
}

h2 {
	font-size: 32px;
	line-height: 1.1;
	font-weight: bold;
	text-align: center;
}

@media(max-width:768px) {
	.diy_h2_sub {
		font-size: 18px;
		line-height: 1.3;
	}

	h2 {
		font-size: 26px;
	}
	.diy_h2_wrap {
		height: 180px;
	}

}
/*************
素材の種類
*************/
.material_list {
	display: flex;
	max-width: 1140px;
	width: 100%;
	margin: 0 auto;
	gap: 40px;
}
.material_item {
	width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	gap: 12px;
	border-radius: 8px;
	border: 1px solid var(--diy-border);
	padding: 24px;
	background-color: #FFF;
}
.material_list_hd {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
.material_item_hd {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
.material_item_price span {
	font-weight: bold;
	font-size: 18px;
}
.material_inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.material_item_text {
	font-size: 15px;
}
@media(max-width:1024px) {
	.material_list {
		flex-direction: column;
	}
	.material_item {
		width: 100%;
		padding: 16px;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;

	}
	.material_item_hd {
		width: 100%;
	}
	.material_item figure {
		width: 30%;
	}
	.material_inner {
		width: calc(70% - 12px);
	}

}
@media(max-width:768px) {
	.material_list {
		gap: 24px;
	}
	.material_list_hd {
		font-size: 20px;
	}
	.material_item {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.material_item figure {
		width: 100%;
		max-width: 320px;
	}
	.material_inner {
		width: 100%;
	}

}
/*************
メディアクエリ
*************/


/*************
*************/
@media(max-width:1024px) {}
@media(max-width:768px) {}
/*************

*************/
@media(max-width:768px) {}
/*************
*************/
@media(max-width:1024px) {}
@media(max-width:768px) {}
@media all and (max-width: 480px) {}
/*************
*************/
@media(max-width:1024px) {}
@media(max-width:768px) {}