@font-face {
	font-family: "brandon";
	src: url("../fonts/BrandonGrotesque-Medium.eot"); /* IE9 Compat Modes */
	src: url("../fonts/BrandonGrotesque-Medium.eot?#iefix") format("embedded-opentype"),
		/* IE6-IE8 */ url("../fonts/BrandonGrotesque-Medium.woff2") format("woff2"),
		/* Super Modern Browsers */ url("../fonts/BrandonGrotesque-Medium.woff") format("woff"),
		/* Pretty Modern Browsers */ url("../fonts/BrandonGrotesque-Medium.ttf") format("truetype"),
		/* Safari, Android, iOS */ url("../fonts/BrandonGrotesque-Medium.svg#svgFontName") format("svg"); /* Legacy iOS */
}

.brandon {
	font-family: "brandon";
}

.lato {
	font-family: "Lato", sans-serif;
	font-style: normal;
}

html {
	font-size: 62.5%;
	overflow-x: hidden;
}

body {
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	overflow-x: hidden;
}

.noto-san {
	font-family: "Noto Sans JP", sans-serif;
}

.pos_rel {
	position: relative;
}

.d-inline-block {
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}

.stretchL,
.stretchR,
.stretchT {
	overflow: hidden;
	position: relative;
	opacity: 0;
}

.stretchL.on {
	animation: stretchL 1.5s ease 0s forwards;
}

@keyframes stretchL {
	0% {
		clip-path: inset(0 100% 0 0);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.stretchR.on {
	animation: stretchR 1.5s ease 0s forwards;
}

@keyframes stretchR {
	0% {
		clip-path: inset(0 0 0 100%);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.stretchT.on {
	animation: stretchT 1.5s ease 0s forwards;
}

@keyframes stretchT {
	0% {
		clip-path: inset(0 0 100% 0);
		opacity: 0;
	}

	100% {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}

.inner {
	max-width: 1140px;
	padding: 0 15px;
	margin: 0 auto;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

img {
	width: 100%;
	max-width: 100%;
}

/* fade_up */
.fadeup {
	opacity: 0;
	transform: translateY(20px);
	transition-duration: 1s;
}

.fadeup.on {
	opacity: 1;
	transform: translateY(0);
}

/* fade_in */
.fadein {
	opacity: 0;
	transition-duration: 2s;
}

.fadein.on {
	opacity: 1;
}

/* fade_out */
.fadeout {
	opacity: 1;
	transition-duration: 2s;
}

.fadeout.on {
	opacity: 0;
}

/* fadeleft */
.fadeleft.on {
	transform: translateX(0);
	opacity: 1;
}

.fadeleft {
	transform: translateX(-20px);
	transition: 1s;
	opacity: 0;
}

/* fadeleft */
.faderight.on {
	transform: translateX(0);
	opacity: 1;
}

.faderight {
	transform: translateX(20px);
	transition: 1s;
	opacity: 0;
}

.fadesplit {
	display: block;
	overflow: hidden;
}

.fadesplit > span {
	transform: translateY(120%);
	display: inline-block;
	opacity: 0;
}

/* .on .fadesplit > span, */
.on.fadesplit > span {
	-webkit-animation: text-split 0.74s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
	animation: text-split 0.74s cubic-bezier(0.54, 0, 0, 0.99) 0s forwards;
}

@-webkit-keyframes text-split {
	0% {
		transform: translateY(120%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes text-split {
	0% {
		transform: translateY(120%);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

/*==================================================================
	Header setting
===================================================================*/
#header {
	/* background: #592D37; */
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	/* align-items: center; */
	justify-content: space-between;
	position: fixed;
	width: 100%;
	padding: 20px 2% 20px 7.8%;
	z-index: 99;
}

#header.scroll {
	background: #592d37;
}

#logo {
	width: 40%;
}

#logo img {
	width: 100px;
}

#header .wrap {
	display: flex;
	width: 60%;
}

#header .wrap .cont_menu {
	display: flex;
	width: 100%;
}

#gnav {
	padding-top: 10px;
	width: 90%;
}

#gnav > ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
}

#gnav > ul > li > a {
	color: #fff;
	display: inline-block;
	font-size: 1.4rem;
	font-family: "brandon";
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
	padding: 0 30px;
	position: relative;
	text-transform: uppercase;
	text-align: center;
}

#gnav > ul > li > a > span {
	display: block;
	position: relative;
}

#gnav > ul > li > a > span::after {
	background: #fff;
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: 0;
	will-change: width;
	transition: all 0.3s;
}

#gnav > ul > li.active > a > span::after,
#gnav > ul > li > a:hover > span::after {
	width: 100%;
}

#icon-head {
	display: flex;
	justify-content: center;
	width: 10%;
}

#icon-head a {
	display: inline-block;
}

#icon-head img {
	max-width: 33px;
}

@media screen and (max-width: 1280px) {
	#header {
		padding: 20px 2%;
	}

	#logo {
		width: 30%;
	}

	#header .wrap {
		width: 70%;
	}

	#gnav > ul > li > a {
		padding: 0 20px;
	}
}

@media screen and (max-width: 767px) {
	#logo {
		margin-bottom: 15px;
	}

	#logo img {
		width: 70px;
	}

	#logo02 img {
		height: 20px;
	}

	#header {
		padding: 15px 15px 0;
	}

	#header .wrap {
		background: #592d37;
		display: none;
		width: calc(100% + 30px);
		margin-left: -15px;
		margin-right: -15px;
		height: calc(100vh - 65px);
	}

	#header .cont_menu {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		padding-bottom: 65px;
	}

	#gnav {
		width: 100%;
		padding-top: 0;
		padding-bottom: 40px;
	}

	#gnav > ul {
		flex-direction: column;
		align-items: center;
	}

	#gnav > ul li {
		padding: 15px 0;
	}

	#icon-head {
		background: #ff85bd;
		width: 100%;
	}

	#icon-head a {
		color: #592d37;
		display: flex;
		align-items: center;
		padding: 15px;
	}

	#icon-head a span {
		font-size: 1.4rem;
		font-weight: 500;
		margin-left: 15px;
	}

	#gnav-sp {
		background: #27262b;
		display: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-overflow-scrolling: auto;
		padding: 50px 20px;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		z-index: 1;
	}

	#gnav-sp > ul {
		padding: 0 10px;
	}

	#gnav-sp > ul > li {
		margin-top: 50px;
		width: 100%;
	}

	#gnav-sp > ul > li > a,
	#gnav-sp > ul > li > span {
		display: block;
		color: #fff;
		font-size: 1.6rem;
		font-weight: 500;
		margin-top: 10px;
	}

	#gnav-sp > ul > li > ul > li > a,
	#gnav-sp > ul > li > ul > li > span {
		display: block;
		color: #8c8c8d;
		font-size: 1.4rem;
		font-weight: 500;
		margin-top: 15px;
	}

	#menu {
		display: block;
		height: 19px;
		width: 35px;
		position: absolute;
		right: 16px;
		top: 22px;
		z-index: 99;
	}

	#menu > span {
		background-color: #fff;
		display: block;
		height: 1px;
		width: 100%;
		position: absolute;
		left: 0;
		text-indent: -999em;
		-webkit-transition: all ease-in-out 0.3s;
		-o-transition: all ease-in-out 0.3s;
		transition: all ease-in-out 0.3s;
	}

	#menu.active > span {
		background-color: #fff;
	}

	#menu > span:nth-child(1) {
		top: 0;
	}

	#menu.active > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	#menu > span:nth-child(2) {
		top: 9px;
	}

	#menu.active > span:nth-child(2) {
		opacity: 0;
	}

	#menu > span:nth-child(3) {
		bottom: 0;
	}

	#menu.active > span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
}

/*==================================================================
	Footer setting
===================================================================*/
#footer .wrap {
	display: flex;
	width: 60%;
}

#footer #logo img {
	width: 120px;
}

#footer .f-section {
	background: #592d37;
	color: #fff;
	display: flex;
	align-items: center;
	padding: 35px 2% 35px 7.8%;
}

.copyright {
	background: #ff808e;
	color: #592d37;
	font-size: 1.2rem;
	font-weight: 500;
	font-family: "brandon";
	padding: 10px 0;
	text-align: center;
}

@media screen and (max-width: 1280px) {
	#footer .wrap {
		width: 70%;
	}

	#footer .f-section {
		padding: 20px 2%;
	}

	#footer #logo img {
		width: 100px;
	}
}

@media screen and (max-width: 767px) {
	#footer .wrap {
		display: none;
	}

	#footer .f-section {
		justify-content: center;
	}

	#footer #logo {
		margin-bottom: 0;
	}
}

.pageTop {
	position: fixed;
	right: 20px;
	bottom: 20px;
}

.pageTop a {
	background: #592d37;
	border-radius: 999px;
	border: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
}

.pageTop span {
	display: block;
	width: 12px;
	height: 12px;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	margin-top: 6px;
	transform: rotate(45deg);
}

@media only screen and (max-width: 1000px) {
	.pageTop {
		width: 40px;
	}
}

/*==================================================================
	mv loading setting
===================================================================*/
#mv-loading {
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
	z-index: 999;
}

.hide_mvloading #mv-loading {
	display: none;
}

#mv-loading.done {
	transition: all 3s;
	transition-delay: 0.5s;
	opacity: 0;
	z-index: -1;
}

#mv-loading .item {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#mv-loading img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#mv-loading .img,
#mv-loading .slick-list,
#mv-loading .slick-track {
	height: 100%;
}

#mv-loading .item .cont {
	height: 100%;
}

#mv-loading .item .cont .bg {
	background: #592d37;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
	position: relative;
	bottom: 0;
	transition: all 0.5s;
}

#mv-loading .item.slick-active .bg {
	transform: translateY(0);
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
}

#mv-loading .item .logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	overflow: hidden;
	width: 200px;
}

#mv-loading .item .logo img {
	transform: translateY(101%);
	transition: all 0.5s;
	transition-delay: 0.6s;
}

#mv-loading .item.slick-active .logo img {
	transform: translateY(0);
}

#mv-loading .item10 .cont .bg01 {
	background: #ff85bd;
}

#mv-loading .item10 .cont .bg02 {
	background: #fff;
	transition-delay: 0.3s;
	z-index: 1;
}

#mv-loading .item10.slick-active .cont .bg02 {
	transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
	#mv-loading .item .logo {
		max-width: 150px;
	}
}

.loading {
	background: #592d37;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
	z-index: 9999;
}

.loadtext {
	font-size: 2em;
	color: #eee;
	letter-spacing: 0.1em;
}

.loadtext .loadtext-word {
	display: inline-block;
	margin: 0 2px;
	filter: blur(0px);
	animation: blur-word 0.8s infinite linear alternate;
}

.loadtext .loadtext-word:nth-child(1) {
	animation-delay: 0s;
}

.loadtext .loadtext-word:nth-child(2) {
	animation-delay: 0.1s;
}

.loadtext .loadtext-word:nth-child(3) {
	animation-delay: 0.2s;
}

.loadtext .loadtext-word:nth-child(4) {
	animation-delay: 0.3s;
}

.loadtext .loadtext-word:nth-child(5) {
	animation-delay: 0.4s;
}

.loadtext .loadtext-word:nth-child(6) {
	animation-delay: 0.5s;
}

.loadtext .loadtext-word:nth-child(7) {
	animation-delay: 0.6s;
}

@-webkit-keyframes blur-word {
	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}

	100% {
		-webkit-filter: blur(2px);
		filter: blur(2px);
	}
}

@keyframes blur-word {
	0% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
	}

	100% {
		-webkit-filter: blur(2px);
		filter: blur(2px);
	}
}

@-webkit-keyframes load5 {
	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}

	12.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}

	25% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	37.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7),
			1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	50% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	62.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	75% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7),
			-2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	87.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
}

@keyframes load5 {
	0%,
	100% {
		box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.5), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7);
	}

	12.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5);
	}

	25% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.5), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.7), 2.5em 0em 0 0em #ffffff,
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	37.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.5), 2.5em 0em 0 0em rgba(255, 255, 255, 0.7),
			1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	50% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.5),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.2),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	62.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.5), 0em 2.5em 0 0em rgba(255, 255, 255, 0.7), -1.8em 1.8em 0 0em #ffffff,
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.2), -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	75% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.5), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.7),
			-2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2);
	}

	87.5% {
		box-shadow: 0em -2.6em 0em 0em rgba(255, 255, 255, 0.2), 1.8em -1.8em 0 0em rgba(255, 255, 255, 0.2), 2.5em 0em 0 0em rgba(255, 255, 255, 0.2),
			1.75em 1.75em 0 0em rgba(255, 255, 255, 0.2), 0em 2.5em 0 0em rgba(255, 255, 255, 0.2), -1.8em 1.8em 0 0em rgba(255, 255, 255, 0.5),
			-2.6em 0em 0 0em rgba(255, 255, 255, 0.7), -1.8em -1.8em 0 0em #ffffff;
	}
}

.completed {
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}

/*==================================================================
	Main Visual setting
===================================================================*/
.main-visual {
	background: #592d37;
	color: #fff;
	padding: 190px 0 0;
}

.main-visual h2 {
	font-size: 5rem;
	letter-spacing: 0;
	font-weight: 500;
	font-family: "brandon";
	line-height: 1.25;
	text-align: center;
}

.main-visual .text-roatge {
	max-width: 160px;
	margin-left: auto;
	margin-top: -35px;
	position: relative;
	z-index: 1;
}

.main-visual .text-roatge img {
	max-width: 100%;
}

.main-visual .text-roatge .text {
	animation: rotage 20s infinite linear;
}

.main-visual .text-roatge .arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 28px;
}

.main-visual .img-main {
	padding-left: 7.8%;
	margin-top: -55px;
	animation-delay: 6s;
}

.hide_mvloading .main-visual .img-main {
	animation-delay: 1s;
}

/* .loaded .main-visual .img-main.stretchR {
	animation-delay: 1s;
	animation: stretchR 1.5s ease 0s forwards;
} */
@keyframes rotage {
	100% {
		transform: rotate(-360deg);
	}
}

@media screen and (max-width: 1280px) {
	.main-visual .img-main {
		padding-left: 2%;
		margin-top: -40px;
	}

	.main-visual .text-roatge {
		max-width: 135px;
	}
}

@media screen and (max-width: 991px) {
	.main-visual h2 {
		font-size: 4rem;
	}

	.main-visual .img-main {
		padding-left: 15px;
	}
}

@media screen and (max-width: 767px) {
	.main-visual {
		padding: 130px 0 0;
	}

	.main-visual h2 {
		font-size: 2.4rem;
	}

	.main-visual .text-roatge {
		display: none;
	}

	.main-visual .img-main {
		margin-top: 40px;
	}
}

/*==================================================================
	Content setting
===================================================================*/
.section {
	overflow: hidden;
	padding: 100px 0;
}

.section h3 {
	color: #592d37;
	display: flex;
	justify-content: center;
	font-size: 2.8rem;
	letter-spacing: 0.075em;
	font-weight: 500;
}

.section h3 span {
	position: relative;
	display: inline-block;
	margin-left: 35px;
	padding: 7px 0px;
}

.section h3 span:first-child::after {
	content: "";
	position: absolute;
	top: 0;
	left: -15px;
	height: 100%;
	width: 1px;
	background: #000000;
}

.section h3 .small {
	color: #000000;
	font-size: 1.2rem;
	font-weight: 500;
	vertical-align: middle;
}

.section h4 {
	font-size: 2.4rem;
	font-weight: bold;
}

.section h5 {
	font-size: 1.8rem;
	line-height: 1.4;
	font-weight: bold;
}

.txt {
	font-size: 1.4rem;
	line-height: 1.71;
	font-weight: 500;
}

.txt-s {
	font-size: 1.2rem;
	font-weight: 500;
}

.note {
	font-size: 1rem;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.section {
		padding: 50px 0 40px !important;
	}

	.section h3 {
		align-items: center;
		font-size: 2.2rem;
		margin-bottom: 30px !important;
	}

	.section h3 span {
		margin-left: 30px;
	}

	.section h4 {
		font-size: 2.2rem;
	}
}

/* #about */
#about {
	background: url("../imgs/bg_about.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -15%;
	padding-top: 20%;
	padding-bottom: 80px;
}

#about .inner {
	max-width: 910px;
}

#about .block {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto 80px;
}

#about .block .col {
	background: #fff;
	padding: 55px 30px 55px 55px;
}

#about .block .col.left {
	width: 44%;
}

#about .block .col.right {
	width: 56%;
}

#about .block .col.right p {
	font-weight: 500;
	line-height: 2;
	margin-bottom: 18px;
}

#about .block .col.right p:last-child {
	margin-bottom: 0;
}

#about .block h3 {
	display: block;
	margin-bottom: 50px;
	position: relative;
}

#about .block h3::after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 3px;
	width: 0;
	height: 1px;
	background: #000;
	transition: all 0.5s;
}

#about .block h3.on::after {
	width: 26px;
}

#about .block h4 {
	line-height: 1.75;
}

#about .block .left .txt-s {
	margin-bottom: 40px;
	font-weight: 500;
}

#about .block01 {
	position: relative;
	margin-left: auto;
	max-width: 787px;
	max-height: 185px;
}

#about .block01 img {
	height: 100%;
	object-fit: cover;
}

#about .block01 .circle {
	display: block;
	position: absolute;
	left: -90px;
	top: 0;
	width: 190px;
	height: 190px;
	background: #ff85bd;
	border-radius: 9999px;
	z-index: 1;
}

#about .block01 .line {
	position: absolute;
	right: 0;
	top: 0;
	width: 46px;
	height: 100%;
	background: #ff85bd;
	z-index: 1;
}

@media screen and (max-width: 991px) {
	#about .block01 {
		max-width: 670px;
		height: 150px;
	}

	#about .block01 .circle {
		width: 150px;
		height: 150px;
		left: -65px;
	}
}

@media screen and (max-width: 767px) {
	#about {
		/* margin-top: -30%;
		padding-top: 40% !important; */
		margin-top: -100px;
		padding-top: 140px !important;
	}

	#about .block h3 {
		margin-bottom: 50px !important;
	}

	#about .block h3::after {
		bottom: -23px;
	}

	#about .block {
		margin: 0 auto 40px;
	}

	#about .block .col.left {
		padding-bottom: 25px;
		width: 100%;
	}

	#about .block .col.right {
		padding-top: 0;
		width: 100%;
	}

	#about .block .col {
		padding: 50px 30px 50px 30px;
	}

	#about .block01 {
		max-width: 110px;
		height: 80px;
		margin: 0 auto;
	}

	#about .block01 .circle {
		width: 80px;
		height: 80px;
		left: -40px;
	}

	#about .block01 .line {
		width: 20px;
	}
}

/* #service */
#service {
	padding: 170px 0 100px;
}

#service h3 {
	margin-bottom: 80px;
	text-align: center;
}

#service .data {
	background: #ffa6b0;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

#service .data.reverse {
	flex-direction: row-reverse;
}

#service .data .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4%;
	width: 28.5%;
}

#service .data .image {
	width: 71.5%;
}

#service .data .image figure {
	width: 100%;
	height: 100%;
}

#service .data .image img {
	height: 100%;
	object-fit: cover;
}

#service .data h5 {
	margin-bottom: 10px;
}

#service .data .txt {
	line-height: 1.7;
	letter-spacing: 0.1em;
	transition-delay: 1s;
}

.block-slider .wrap {
	margin-bottom: 40px;
	padding-left: calc((100% - 1140px) / 2);
}

.block-slider .wrap .item {
	margin: 0 15px;
	width: 350px;
}

.block-slider .wrap .item .txt {
	letter-spacing: 0.1em;
	line-height: 1.71;
	margin-bottom: 10px;
}

.block-slider .wrap .item h5 {
	margin: 10px 0;
}

@media screen and (max-width: 1280px) {
	#service {
		padding: 100px 0;
	}

	.block-slider {
		padding: 0 15px;
	}

	.block-slider .wrap .item {
		width: 320px;
	}
}

@media screen and (max-width: 991px) {
	#service .data .image {
		width: 65%;
	}

	#service .data .text {
		width: 35%;
		padding: 3%;
	}

	.block-slider .wrap .item {
		width: 250px;
	}
}

@media screen and (max-width: 767px) {
	#service .data {
		background: none;
		margin-bottom: 50px;
		padding: 0 15px;
	}

	#service .data .image {
		width: 100%;
	}

	#service .data .text {
		background: #ffa6b0;
		margin: -40px -15px 0 15px;
		position: relative;
		padding: 9% 7%;
		width: 100%;
	}

	#service h3 {
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 480px) {
	.block-slider .wrap .item {
		margin: 0;
	}
}

/**
 *  control slider
 */
.control-slider {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 450px;
	margin: 0 auto;
}

.progress {
	display: block;
	width: 57%;
	max-width: 255px;
	height: 5px;
	border-radius: 10px;
	overflow: hidden;
	background-color: #ffe6e9;
	background-image: linear-gradient(to right, #ff808e, #ff808e);
	background-repeat: no-repeat;
	background-size: 0 100%;
	transition: background-size 0.4s ease-in-out;
}

.block-slider {
	margin: 30px auto 0;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.control-slider .btn-wrap {
	display: flex;
	justify-content: space-around;
	width: 40%;
}

.control-slider .btn-wrap button {
	background: #592d37;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	border: none;
	outline: none;
	border-radius: 999px;
	transition: all 0.3s;
}

.control-slider .btn-wrap button:hover {
	background: #ff85bd;
}

.control-slider .btn-wrap button img {
	display: block;
	max-width: 16px;
}

@media screen and (max-width: 1280px) {
	.control-slider .btn-wrap button {
		width: 55px;
		height: 55px;
	}
}

@media screen and (max-width: 767px) {
	.progress {
		width: 65%;
	}

	.control-slider .btn-wrap {
		width: 30%;
	}

	.control-slider .btn-wrap button {
		width: 44px;
		height: 44px;
	}

	.control-slider .btn-wrap button img {
		max-width: 11px;
	}
}
/* #event */
#event {
	background: #592d37;
	color: #fff;
	padding: 80px 0 50px;
}
.section#event h3, 
.section#event h3 .small {
	color: #fff;
}

#event h3{
	margin-bottom: 40px;
}

.section#event h3 span:first-child::after {
	background: #fff;
}

#event .txt{
	margin-bottom: 30px;
	text-align: center;
}

#event .txt small{
	font-size: 85%;
}
@media screen and (max-width: 767px) {
#event .txt small {
    display: block;
    line-height: 1.25;
    margin-top: 10px;
}
}

/* #instagram */
#instagram {
	background: #ff85bd;
	padding: 80px 0 50px;
}

#instagram h3 {
	margin-bottom: 75px;
	text-align: center;
}

#instagram .btn-follow {
	margin-top: 60px;
}

#instagram .btn-follow a {
	/* border-bottom: 1px solid #592D37; */
	color: #592d37;
	display: flex;
	align-items: center;
	font-size: 2rem;
	font-weight: 500;
	margin: 0 auto 0;
	max-width: 185px;
	padding: 0 5px 6px;
	position: relative;
}

#instagram .btn-follow a::after {
	background: #592d37;
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	right: 0;
	bottom: 0;
	transition: all 0.3s;
	will-change: width;
}

#instagram .btn-follow a:hover::after {
	width: 0;
}

#instagram .btn-follow a img {
	max-width: 33px;
}

#instagram .btn-follow a span:first-child {
	margin-right: 20px;
}

@media screen and (max-width: 991px) {
	#instagram h3 {
		margin-bottom: 50px;
	}
}

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

/* #access */
#access {
	padding: 120px 0;
	text-align: center;
}

#access h3 {
	margin-bottom: 30px;
}

#access .txt {
	margin-bottom: 30px;
}

#access .note {
	margin-bottom: 55px;
}

#access .time {
	margin-bottom: 10px;
	line-height: 1.7;
}

#access .box-map {
	overflow: hidden;
}
#access .box-map iframe{
filter:hue-rotate(140deg);-webkit-filter:hue-rotate(140deg);
}

@media screen and (max-width: 1280px) {
	#access {
		padding: 100px 0;
	}
}

/*@media screen and (max-width: 767px) {
	#access {
		text-align: left;
	}
}*/

/* contact */
#contact {
	background: url("../imgs/bg_contact.jpg") no-repeat center center / cover;
	color: #fff;
	text-align: center;
	padding: 80px 0;
}

#contact h3 {
	color: #fff;
	margin-bottom: 40px;
}

#contact h3 .small {
	color: #fff;
}

#contact h3 span:first-child::after {
	background: #fff;
}

.btn-email {
	margin-top: 25px;
}

.btn-email a {
	background: #ff85bd;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	letter-spacing: 0.1em;
	padding: 22px 0;
	max-width: 350px;
	margin: 0 auto;
	position: relative;
	transition: all 0.3s;
	overflow: hidden;
}

.btn-email a::after {
	content: "";
	position: absolute;
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
	-webkit-animation: shine 1.5s ease-in-out infinite;
	animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.btn-email a:hover {
	background: #592d37;
}

.btn-email a img {
	max-width: 36px;
}

.btn-email a span:first-child {
	margin-right: 16px;
}

@media screen and (max-width: 1280px) {
	.btn-email a {
		font-size: 1.6rem;
		padding: 12px 0;
		max-width: 280px;
	}
}

@media screen and (max-width: 767px) {
	.btn-email a {
		max-width: 100%;
	}
}
