@import "https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap";
@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap";
@media screen and (min-width: 768px) {
	.sc-l-Main {
		width: 100%;
	}
	.st-BreadCrumb {
		width: 1200px;
	}
	.sc-l-Body {
		width: 100%;
	}
}

@-webkit-keyframes colorChanger {
	0% {
		fill: #b7b685;
	}
	50% {
		fill: #916f6f;
	}
	100% {
		fill: #a0b7b8;
	}
}

@keyframes colorChanger {
	0% {
		fill: #b7b685;
	}
	50% {
		fill: #916f6f;
	}
	100% {
		fill: #a0b7b8;
	}
}

.loading {
	display: none;
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100vw;
	height: 100vh;
	background: #f3f1ef;
}

.loading-logo {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 180px;
	height: 28px;
}

@media screen and (min-width: 1200px) {
	.loading-logo {
		width: 260px;
		height: 41px;
	}
}

.loading-logo svg {
	width: 100%;
	display: block;
}

.loading-logo svg path {
	animation: colorChanger 1s ease 0s infinite alternate-reverse backwards;
}

@media screen and (min-width: 768px) {
	.sc-l-Main {
		width: 100%;
	}
	.st-BreadCrumb {
		width: 1200px;
	}
	.sc-l-Body {
		width: 100%;
	}
}

.common_f_bnr {
	width: 100%;
	padding: 0 5%;
	margin: 0 0 2.9rem 0;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr {
		width: 958px;
		padding: 0;
		margin: 60px auto 124px;
	}
}

.common_f_bnr ul {
	display: block;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr ul {
		display: flex;
		justify-content: space-between;
	}
}

.common_f_bnr li:first-child {
	margin: 0 0 5% 0;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr li {
		flex-basis: 49%;
		margin: 0;
	}
	.common_f_bnr li:first-child {
		margin: 0;
	}
}

.common_f_bnr li a {
	display: block;
	font-family: 'Lato', 'Noto Sans JP';
	width: 100%;
	padding: 20px 0 22px 0;
	border: 1px solid #916f6f;
	background: url(../img/arrow.svg) #916f6f calc(100% - 20px) 50%/10px auto no-repeat;
	text-align: center;
	color: #fff;
	transition: all .3s;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr li a {
		padding: 26px 0;
	}
}

.common_f_bnr li a:hover {
	background-color: #f3f1ef;
	color: #916f6f;
}

.common_f_bnr li a span {
	display: block;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.2em;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr li a span {
		font-size: 1.6rem;
	}
}

.common_f_bnr li a em {
	display: block;
	font-size: 1.7rem;
	font-weight: 300;
	letter-spacing: 0.08em;
}

@media screen and (min-width: 1200px) {
	.common_f_bnr li a em {
		font-size: 2.2rem;
	}
}

.common_f_sns {
	max-width: 1118px;
	width: unset;
	margin: 0 5% 87px;
	padding: 25px 0 20px 0;
	border-top: 2px solid #916f6f;
	border-bottom: 2px solid #916f6f;
	text-align: center;
	color: #916f6f;
}

@media screen and (min-width: 1200px) {
	.common_f_sns {
		width: 100%;
		margin: 0 auto 87px;
		padding: 36px 0 32px 0;
	}
}

.common_f_sns h5 {
	margin-bottom: 28px;
	font-family: 'Lato', sans-serif;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.2em;
}

.common_f_sns .logo {
	display: block;
	width: 204px;
	margin: 0 auto 27px auto;
}

.common_f_sns a img {
	transition: all .3s;
}

.common_f_sns a:hover img {
	opacity: 0.7;
}

.common_f_sns .icon_ig {
	width: 28px;
}

.common_f_sns .icon_tw {
	width: 30px;
	margin: 2px 0 0 25px;
}

@-webkit-keyframes modal_fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@keyframes modal_fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0px);
	}
}

@-webkit-keyframes modal_fadeOut {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes modal_fadeOut {
	0% {
		opacity: 1;
		transform: translateY(0px);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

.modal-list {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 21;
	width: 100%;
	height: 100vh;
	background: #ffffff;
}

.modal-list.modal-switch {
	-webkit-animation: modal_fadeIn .5s ease forwards;
	animation: modal_fadeIn .5s ease forwards;
}

.modal-list.modal-out {
	-webkit-animation: modal_fadeOut .5s ease forwards;
	animation: modal_fadeOut .5s ease forwards;
}

.modal-outer {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 100%;
	max-width: 1000px;
	overflow: unset;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 5%;
}

@media screen and (min-width: 1200px) {
	.modal-outer {
		height: 100vh;
		padding: 0;
		overflow: auto;
	}
}

.modal-outer.modal-switch {
	-webkit-animation: modal_fadeIn .5s ease forwards;
	animation: modal_fadeIn .5s ease forwards;
}

.modal-outer.modal-out {
	-webkit-animation: modal_fadeOut .5s ease forwards;
	animation: modal_fadeOut .5s ease forwards;
}

.modal-logo {
	display: none;
	width: 230px;
	position: relative;
	margin: 7.0rem auto 6.2rem;
}

@media screen and (min-width: 1200px) {
	.modal-logo {
		display: block;
	}
}

.modal-content {
	display: block;
	max-height: 630px;
	overflow-y: scroll;
	padding-bottom: 2.8rem;
}

@media screen and (min-width: 1200px) {
	.modal-content {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		max-height: initial;
		overflow: initial;
		padding-bottom: 0;
	}
}

.modal-thumb {
	flex-basis: 50%;
	margin: 0 0 1.8rem 0;
	padding: 0;
}

@media screen and (min-width: 1200px) {
	.modal-thumb {
		margin: 0 4.0rem 0 0;
		padding: 0 0 0 46px;
	}
}

.modal-thumb img {
	width: 100%;
	display: block;
}

.modal-detail {
	flex-basis: 369px;
	-ms-grid-row-align: center;
	align-self: center;
}

.modal-detail_list {
	margin: 0 0 1.8rem 0;
}

.modal-detail_list a {
	display: block;
}

.modal-detail_list a.no-active {
	pointer-events: none;
	opacity: 0.4;
}

@media screen and (min-width: 1200px) {
	.modal-detail_list {
		margin: 0 0 3.0rem 0;
	}
}

.modal-detail_list:last-child {
	margin: 0 0 0 0;
}

.modal-detail_number {
	display: inline-block;
	border: 1px solid #333333;
	margin: 0 0 2.4rem 0;
	padding: 6px 14px;
	font-size: 1.2rem;
	letter-spacing: 0.2ex;
}

@media screen and (min-width: 1200px) {
	.modal-detail_number {
		margin: 0 0 4.8rem 0;
	}
}

.modal-detail_brand {
	color: #333333;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 0 0.6rem 0;
	letter-spacing: 0.1ex;
}

.modal-detail_name {
	color: #333333;
	font-size: 1.4rem;
	letter-spacing: 0.1ex;
	text-decoration: underline;
}

.modal-back_btn {
	display: block;
	width: 100%;
	background: #916f6f;
	margin: 4.0rem 0 0 0;
	padding: 1.8rem;
	font-size: 1.8rem;
	text-align: center;
	color: #f3f1ef;
}

@media screen and (min-width: 1200px) {
	.modal-back_btn {
		padding: 3.6rem;
	}
}

.modal-close_btn {
	cursor: pointer;
	position: absolute;
	z-index: 3;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	background: #916f6f;
}

@media screen and (min-width: 1200px) {
	.modal-close_btn {
		width: 100px;
		height: 100px;
	}
}

.close_line-01 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 40px;
	height: 2px;
	background: #f3f1ef;
	transform: rotate(45deg);
}

@media screen and (min-width: 1200px) {
	.close_line-01 {
		width: 80px;
	}
}

.close_line-02 {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 40px;
	height: 2px;
	background: #f3f1ef;
	transform: rotate(-45deg);
}

@media screen and (min-width: 1200px) {
	.close_line-02 {
		width: 80px;
	}
}

#no-04 .modal-thumb, #no-12 .modal-thumb {
	margin: 0 0 10.8rem 0;
}

@media screen and (min-width: 1200px) {
	#no-01 .modal-content, #no-11 .modal-content, #no-15 .modal-content {
		margin: 9.6rem 0 0 0;
	}
	#no-04 .modal-content, #no-12 .modal-content {
		position: absolute;
		height: 100%;
		top: 0;
		bottom: 0;
		margin: auto;
		align-items: center;
	}
	#no-04 .modal-thumb, #no-12 .modal-thumb {
		margin: 0 4.0rem 0 0;
	}
}

body.sc-locked {
	height: 100vh;
	overflow-y: hidden;
}

.laato-look {
	display: none;
	position: relative;
	min-height: 100%;
	background-color: #f3f1ef;
	font-size: 62.5%;
	letter-spacing: 0.2ex;
	font-family: "Noto Sans JP", sans-serif;
}

@-webkit-keyframes scMove {
	from {
		top: -42px;
	}
	to {
		top: 82px;
	}
}

@keyframes scMove {
	from {
		top: -42px;
	}
	to {
		top: 82px;
	}
}

.main {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	transform: scale(1);
	transition: opacity 1.5s ease, transform 0.5s ease-in-out, -webkit-filter 1s ease-in;
	transition: opacity 1.5s ease, filter 1s ease-in, transform 0.5s ease-in-out;
	transition: opacity 1.5s ease, filter 1s ease-in, transform 0.5s ease-in-out, -webkit-filter 1s ease-in;
}

.main.is-filter {
	opacity: 0;
	-webkit-filter: blur(0.3px);
	filter: blur(0.3px);
	transform: scale(0.9);
}

.main-logo {
	position: absolute;
	z-index: 3;
	left: 0;
	right: 0;
	top: -47px;
	width: 230px;
	margin: auto;
}

.main-logo svg {
	width: 100%;
}

.main-visual {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 664px;
	height: 586px;
}

.main-visual img {
	width: 100%;
	display: block;
	position: relative;
	z-index: 2;
}

.main::after {
	content: "";
	z-index: -1;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 64px;
	margin: auto;
	width: 1201px;
	height: 444px;
	background-image: url(../img/main_bg.png);
	background-size: cover;
}

.main-scroll {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 60px;
}

.main-scroll_text {
	display: block;
	font-size: 1.2rem;
	color: #916f6f;
	text-align: center;
	padding: 0 0 10px 0;
}

.main-scroll_border {
	position: relative;
	display: block;
	height: 42px;
	width: 1px;
	background: #916f6f;
	margin: 0 auto;
	overflow: hidden;
}

.main-scroll_border::before {
	content: "";
	display: block;
	position: absolute;
	top: -42px;
	height: 42px;
	width: 1px;
	width: 1px;
	background: #f3f1ef;
	-webkit-animation: scMove 1.5s ease-in-out 0s infinite backwards running;
	animation: scMove 1.5s ease-in-out 0s infinite backwards running;
}

.bg {
	position: -webkit-sticky;
	position: sticky;
	background-color: #f3f1ef;
	padding: 3.2rem 0;
}

@media screen and (min-width: 1200px) {
	.bg {
		padding: 6.2rem 0;
	}
}

.contents {
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	max-width: 1118px;
	background-color: #f3f1ef;
}

.contents-title {
	margin: 82px 0 40px 0;
}

.contents-cregit {
	margin: 0 0 6.2rem 0;
	font-size: 1.2rem;
	color: #916f6f;
}

.contents-cregit p {
	margin: 0 0 0.6rem 0;
}

.contents-cregit p:last-child {
	margin: 0;
}

.column-flex {
	display: flex;
	justify-content: space-between;
}

.column-left {
	flex-basis: 500px;
}

.column-right {
	flex-basis: 518px;
}

.column-center {
	display: flex;
	justify-content: center;
}

.look-list {
	position: relative;
	top: 0;
	z-index: 5;
}

.look-list a {
	display: block;
	cursor: pointer;
}

.look-list a:hover .look-list_thumb img {
	opacity: 0.8;
	transform: scale(1.2);
}

.look-list_thumb {
	overflow: hidden;
	background-color: #f3f1ef;
}

.look-list_thumb img {
	width: 100%;
	display: block;
	transform: scale(1);
	transition: opacity 1.5s ease, transform 1.5s ease;
}

.look-list_num {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 52px;
	height: 40px;
	font-size: 2.7rem;
	font-family: "Roboto", sans-serif;
	color: #916f6f;
	border-bottom: 2px solid #916f6f;
}

.look-list_num.right {
	right: -1.4rem;
}

.look-list_num.left {
	left: -1.4rem;
}

.look-list_splash-01 {
	display: block;
	position: absolute;
	z-index: -9;
	top: 0;
	top: -110px;
	left: 140px;
}

.look-list_splash-04 {
	display: block;
	position: absolute;
	z-index: -9;
	top: -220px;
	left: -100px;
}

.look-list_splash-05 {
	display: block;
	position: absolute;
	z-index: -9;
	top: -100px;
	left: -25px;
}

.look-list_splash-06 {
	display: block;
	position: absolute;
	z-index: -9;
	bottom: -100px;
	left: -200px;
}

.look-list_splash-07 {
	display: block;
	position: absolute;
	z-index: -9;
	bottom: -150px;
	left: -80px;
}

.look-list_splash-07-02 {
	display: block;
	position: absolute;
	z-index: -9;
	bottom: -220px;
	right: -220px;
}

.look-list_splash-10 {
	display: block;
	position: absolute;
	z-index: -9;
	top: 60px;
	bottom: 0px;
	left: -200px;
}

.look-list_splash-13 {
	display: block;
	position: absolute;
	z-index: -9;
	top: 0;
	left: 400px;
}

.look-list_splash-15 {
	display: block;
	position: absolute;
	z-index: -9;
	top: 0;
	left: 400px;
}

.look-list_splash-16 {
	display: block;
	position: absolute;
	z-index: -9;
	top: -250px;
	left: -70px;
}

.look-list_splash-17 {
	display: block;
	position: absolute;
	z-index: -9;
	top: -180px;
	right: -100px;
}

.num-01 {
	margin: 0 0 148px 0;
}

.num-03 {
	margin: 0 0 166px 0;
}

.num-05 {
	width: 317px;
	margin: 0 auto;
}

.num-02 {
	margin: 148px 0 302px 0;
}

.num-04 {
	width: 517px;
	margin: 0 0 150px -20px;
}

.num-06 {
	margin: 0 0 150px 0;
}

.num-07 {
	width: 563px;
	margin: 0 0 150px 0;
}

.num-07 .look-list_num {
	left: -2.7rem;
}

.num-09 {
	margin: 136px 0 360px 0;
}

.num-11 {
	margin: 0 -30px 360px 30px;
}

.num-13 {
	margin: 0 0 200px 0;
}

.num-13 .look-list_num {
	left: 2rem;
}

.num-15 {
	margin: 0 0 200px 0;
}

.num-16 {
	width: 388px;
	margin: 0 30px 200px 0;
}

.num-16 .look-list_num {
	left: -2.7rem;
}

.num-17 {
	width: 500px;
	margin: 0 -30px 200px 30px;
}

.num-08 {
	width: 370px;
	margin: 0 auto 200px;
}

.num-10 {
	margin: 0 0 352px 0;
}

.num-12 {
	margin: 0 0 200px 0;
}

.num-14 {
	margin: 0 0 250px 0;
}

.num-14 .look-list_num {
	left: -2.7rem;
}

.sc-trigger {
	display: block;
	opacity: 0;
	transform: translateY(10%);
	transition: opacity 1s ease-in, transform 2s ease-in;
}

.sc-trigger.is-active {
	opacity: 1;
	transform: translateY(0%);
}

.sc-splash {
	opacity: 0;
	-webkit-filter: blur(0.5px);
	filter: blur(0.5px);
	transition: opacity 0.5s ease-in, -webkit-filter 1s ease-in;
	transition: opacity 0.5s ease-in, filter 1s ease-in;
	transition: opacity 0.5s ease-in, filter 1s ease-in, -webkit-filter 1s ease-in;
}

.sc-splash.is-active {
	opacity: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
}
