/* top-fv-container */
#top-fv-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	z-index: 10000;
	animation: fadeOut 7s ease 0s 1 normal;
	opacity: 0;
	/* background-image: url(../images/common/bg_01.jpg); */
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: var(--white);
	visibility: hidden;
}

#top-fv-container .logo {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	animation: fadeInOut 4s ease 2s 1 normal;
	animation-fill-mode: forwards;
	font-family: serif;
	font-size: 3.4rem;
	letter-spacing: 0.04em;
}

#top-fv-container .logo img {
	width: 280px;
	height: 56px;
}

/* home-mv */
#home-mv {
	position: relative;
}

#home-mv::before,
#home-mv::after {
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	display: inline-block;
	z-index: -1;
}

#home-mv::before {
	background-image: url(../images/common/thread_01.svg);
	top: -435px;
	left: -325px;
	width: 940px;
	height: 980px;
}

#home-mv::after {
	background-image: url(../images/common/thread_04.svg);
	top: -60px;
	right: -800px;
	width: 1432px;
	height: 1476px;
}

#home-mv .mv-inner {
	padding-top: 95px;
}

#home-mv .catchcopy {
	font-size: 5.4rem;
	letter-spacing: 0.05em;
	font-family: var(--shippori);
}

#home-mv .slider-wrapper {
	position: relative;
	width: 100%;
	height: 648px;
	display: flex;
	justify-content: center;
	column-gap: 30px;
	margin-top: -50px;
}

#home-mv .slider {
	position: relative;
	width: 400px;
	height: 500px;
}

#home-mv .slider:nth-child(1) {
	margin-top: 150px;
}

#home-mv .slider:nth-child(2) {
	margin-top: 75px;
}

#home-mv .slider:nth-child(3) {
	margin-top: 0px;
}

/* シャッター */
#home-mv .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	transition: 1s ease;
	transition: 0.7s cubic-bezier(0.65, 0.05, 0.36, 1);
}

#home-mv .slide.isNow {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: 2;
}

/* #home-mv .slide.isNext {
	transition: 1.4s cubic-bezier(0.95, 0.1, 0.795, 0.05);
} */

#home-mv .slide.isOld {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	z-index: 1;
}

/* 画像 */
#home-mv .slide {
	height: 100%;
}

#home-mv .slide .imgBox {
	position: relative;
	animation-duration: 6s;
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	height: 100%;
	/* width: 120%;
	left: -10%; */
}

#home-mv .slide .imgBox img {
	transform: scale(1);
	height: 100%;
	object-fit: cover;
}

/* #home-mv .slide.isNext .imgBox {
	animation-name: imgMovingNext;
	transform: translate(-15%, 0%);
}

#home-mv .slide.isNow .imgBox {
	animation-name: imgMovingNow;
	transform: translate(-5%, 0%);
}

#home-mv .slide.isOld .imgBox {
	animation-name: imgMovingOld;
	transform: translate(5%, 0%);
} */

@keyframes imgMovingNext {
	0% {
		transform: translate(-15%, 0%);
	}

	100% {
		transform: translate(-5%, 0%);
	}
}

@keyframes imgMovingNow {
	0% {
		transform: translate(-5%, 0%);
	}

	100% {
		transform: translate(5%, 0%);
	}
}

@keyframes imgMovingOld {
	0% {
		transform: translate(5%, 0%);
	}

	100% {
		transform: translate(15%, 0%);
	}
}

@media screen and (max-width: 767px) {
	#home-mv {
		position: relative;
		max-width: 1000px;
		width: 100%;
		margin: 0 auto;
	}

	#home-mv::after {
		content: none;
	}

	#home-mv .mv-inner {
		padding-top: 50px;
	}

	#home-mv .catchcopy {
		font-size: 3rem;
	}

	#home-mv .slider-wrapper {
		margin-top: -50px;
		height: auto;
		width: 120vw;
		left: 50%;
		column-gap: 15px;
		transform: translateX(-50%);
	}

	#home-mv .slider {
		width: 100%;
		margin: 0 auto;
		height: 300px;
		overflow: hidden;
	}
}

#home-about {
	position: relative;
}

#home-about::before {
	content: '';
	background-image: url(../images/common/thread_02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -340px;
	left: -430px;
	display: inline-block;
	width: 950px;
	height: 1243px;
	z-index: -1;
}

#home-about .sec-inner {
	padding-top: 120px;
}

#home-about .sec-ttl {
	font-size: 1.5rem;
}

#home-about .sec-sub-ttl {
	font-size: 2.9rem;
	line-height: 1.7;
}

#home-about .m-img-txt-box {
	justify-content: start;
}

#home-about .m-img-txt-box .img-area {
	width: 35.8%;
}

#home-about .m-img-txt-box .txt-area {
	padding-left: 67px;
	flex: 1;
}

#home-about .m-img-txt-box .txt-area .txt {
	width: 490px;
	margin-top: 15px;
}

@media screen and (max-width: 767px) {
	#home-about .sec-inner {
		padding-top: 60px;
	}

	#home-about .m-img-txt-box .img-area {
		width: 100%;
	}

	#home-about .m-img-txt-box .img-area img {
		width: 100%;
		height: 100vw;
		object-fit: cover;
	}

	#home-about .m-img-txt-box .txt-area {
		margin-top: 30px;
		padding-left: 0;
		width: 100%;
	}

	#home-about .m-img-txt-box .txt-area .sec-sub-ttl {
		font-size: 2rem;
	}

	#home-about .m-img-txt-box .txt-area .txt {
		width: 100%;
		margin-top: 10px;
	}
}

#home-business {
	position: relative;
}

#home-business::before {
	content: '';
	background-image: url(../images/common/bg_01.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
	display: inline-block;
	width: 100vw;
	height: 570px;
}

#home-business .sec-ttl-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#home-business .m-business-container {
	margin-top: 50px;
}

@media screen and (max-width: 767px) {
	#home-business .sec-ttl-wrapper .sec-ttl-box {
		width: 100%;
	}

	#home-business .sec-ttl-wrapper .txt-box {
		width: 100%;
		margin-top: 20px;
	}
}

#home-brand {
	position: relative;
}

#home-brand::before {
	content: '';
	background-image: url(../images/common/thread_06.svg);
	background-repeat: no-repeat;
	position: absolute;
	top: -430px;
	left: -400px;
	display: inline-block;
	width: 930px;
	height: 955px;
	z-index: -1;
}

#home-brand .m-example-container {
	margin-top: 50px;
}

#home-brand .m-example-container .item-box .ttl {
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#home-brand .m-example-container .item-box .btn-box {
	margin-top: 25px;
}

@media screen and (max-width: 767px) {
	#home-brand::before {
		left: -580px;
	}

	#home-brand .m-example-container {
		margin-top: 30px;
	}

	#home-brand .m-example-container .item-box .ttl {
		height: unset;
		padding: 30px 0;
	}
}

#home-store .sec-ttl-box {
	margin-bottom: 30px;
}

#home-store .img-area {
	width: 460px;
}

#home-store .txt-area {
	margin-top: 30px;
	padding-left: 80px;
}

#home-store .m-dl-box {
	padding-top: 35px;
	margin-top: 30px;
}

#home-store .bnr-box {
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	#home-store .img-area img {
		width: 100%;
		height: 100vw;
		object-fit: cover;
	}

	#home-store .txt-area {
		padding-left: 0;
		margin-top: 40px;
	}

	#home-store .txt-area .logo {
		text-align: center;
	}

	#home-store .txt-area .logo img {
		width: 80%;
	}

	#home-store .bnr-box {
		margin-top: 60px;
	}
}

#home-information {
	position: relative;
}

#home-information::before {
	content: '';
	background-image: url(../images/common/thread_02.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -400px;
	left: -350px;
	display: inline-block;
	width: 540px;
	height: 1042px;
	transform: rotate(-15deg);
}

#home-information .btn-box {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	#home-information::before {
		content: none;
	}
}