@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-lxh */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
.min {font-family:"ten-mincho-text",serif;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/* loading */
.loading {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FBF8F3;
	transition: 1000ms;
	z-index: 99999;
}
.loading.hide {
	opacity: 0;
	pointer-events: none;
}
.loading .videoBox {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	overflow: hidden;
}
.loading .videoBox video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.loading .soundBox {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 5rem;
	top: 5rem;
	font-size: 3rem;
	cursor: pointer;
	z-index: 2;
}
.loading .soundBox .lineBox {
	margin-right: 1.5rem;
	position: relative;
	width: 5rem;
	height: 5rem;
	border: 0.1rem solid #000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	gap: 0.5rem;
	padding-bottom: 1.2rem;
    box-sizing: border-box;
}
.loading .soundBox .lineBox .txt {
	font-family: "Jost", sans-serif;
  	font-weight: 300;
}
.loading .soundBox .lineBox .line {
	width: 0.1rem;
	height: 70%;
	background: #000;
	transform: scaley(0.2);
	transform-origin: center bottom;
}
.loading .soundBox .lineBox .line.on {
	animation: move01 1s linear infinite;
}
.loading .soundBox .lineBox .line01.on {
	animation-delay: 0.4s;
}
.loading .soundBox .lineBox .line02.on {
	animation-delay: 0.2s;
}
@keyframes move01 {
	0% {
		transform: scaley(0.2);
	}
	50% {
		transform: scaley(1);
	}
	100% {
		transform: scaley(0.2);
	}
}
.loading .soundBox .txt .off {
	display: none;
}
.loading .soundBox .txt.on .on {
	display: none;
}
.loading .soundBox .txt.on .off {
	display: block;
}
#pointer {
	position: fixed;
	left: -3.8rem;
	top: -1.9rem;
    pointer-events: none;
	transition: opacity 0.3s;
    transform-origin: center center;
	will-change: transform;
	opacity: 0;
	z-index: 9999;
}
#pointer span {
	padding-right: 2.9rem;
	display: block;
	font-size: 2.5rem;
	background: url(../img/common/icon06.png) no-repeat right bottom 0.4rem / 2.4rem;
}
#pointer.hover-hide {
	opacity: 0 !important;
	pointer-events: none;
}
@media (min-width: 1024px) and (hover: hover) {
	.loading .videoBox {
		cursor: none !important;
	}
}
@media all and (max-width: 1023px) {
	.loading .soundBox {
		left: 1.8rem;
		top: 2.5rem;
		font-size: 2.4rem;
	}
	.loading .soundBox .lineBox {
		margin-right: 1rem;
		width: 4rem;
		height: 4rem;
		gap: 0.4rem;
		padding-bottom: 1rem;
	}
	#pointer {
		left: auto;
		right: 1.8rem;
		top: auto;
		bottom: 4rem;
    	pointer-events: auto;
		opacity: 1;
	}
	#pointer span {
		padding-right: 3.5rem;
		font-size: 3rem;
		background-size: 2.8rem;
	}
}

/* fade */
.textAnimation .subSpan {
	display: inline-block;
	vertical-align: top;
}
.textAnimation.ani01 .jsSub {
	display: inline-block;
	overflow: hidden;
	vertical-align: top;
}
.textAnimation.ani01 .subSpan {
	opacity: 0;
    transform: translateY(100%);
	transition: opacity 0.6s, transform 0.6s;
}
.textAnimation.ani01.visible .subSpan {
	opacity: 1;
    transform: none;
}
.textAnimation.ani02 {
	opacity: 0;
	transition: opacity .3s;
}
.textAnimation.ani02 .subSpan {
	transition: transform .5s;
}
.textAnimation.ani02.visible {
	opacity: 1;
}
.textAnimation.ani02.visible .subSpan {
    transform: none !important;
}
.fadeInUp {
	opacity: 0;
	transform: translateY(4rem);
	transition: 1.2s cubic-bezier(.215,.61,.355,1);
}
.fadeInUp.visible {
	opacity: 1;
	transform: none;
}

/* rellax */
.rellax {
	transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* comBtn */
.comBtn a {
	padding: 0 4.1rem 0 3rem;
	width: 19.8rem;
	height: 4rem;
	color: #fff;
	background-color: #F97D63;
	border-radius: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family:"ten-mincho-text",serif;
	position: relative;
	overflow: hidden;
}
.comBtn .inner {
	position: relative;
	z-index: 10;
}
.comBtn a::after {
	margin-top: -0.7rem;
	width: 1.9rem;
	height: 1.4rem;
	position: absolute;
	top: 50%;
	right: 1.8rem;
	background: url("../img/common/icon02.png") no-repeat left top / 100%;
	content: '';
	transition: .3s;
}
.comBtn a::before {
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.2);
	content: "";
	transition: .5s;
	border-radius: 5rem;
}
.comBtn.big {
	margin-top: 8.1rem;
}
.comBtn.big a {
	width: 32rem;
	height: 6rem;
	font-size: 2rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.comBtn.big a::after {
	margin-top: -0.9rem;
	width: 2.2rem;
	height: 1.8rem;
	right: 2.8rem;
	background-image: url("../img/common/icon01.png");
}
.comBtn.center a {
	margin: 0 auto;
}
.comBtn a[target^="_blank"] {
	padding-right: 4.8rem;
}
.comBtn a[target^="_blank"]::after {
	width: 2.7rem;
	height: 2.7rem;
	background-image: url("../img/common/icon05.png");
	background-size: 100% 100%;
	margin-top: -1.6rem;
	right: 3.1rem;
}
@media all and (min-width: 1024px) {
	.comBtn a:hover::before {
		width: 100%;
	}
	.comBtn a:hover::after {
		margin-right: -0.5rem;
	}
}

@media all and (max-width: 1023px) {
	.comBtn.big {
		margin-top: 4.9rem;
	}
	.comBtn.big a {
		width: 25.6rem;
		height: 4.8rem;
		font-size: 1.6rem;
		padding-bottom: 0.4rem;
	}
	.comBtn.big a::after {
		margin-top: -0.7rem;
		width: 1.8rem;
		height: 1.4rem;
		right: 2.3rem;
	}
	.comBtn a[target^="_blank"]::after {
		margin-top: -1.2rem;
		width: 2rem;
		height: 2rem;
	}
}



/* content */
.content {
	margin: 0 auto;
	max-width: 99rem;
}
@media all and (max-width: 1023px) {
	.content {
		margin: 0 3.5rem;
		max-width: inherit;
	}
}


/* headLine01 */
.headLine01 {
	margin-bottom: 3.8rem;
	font-size: 5.8rem;
	line-height: 1.57;
	text-align: center;
	font-weight: 400;
	font-family:"ten-mincho-text",serif;
}
.headLine01 .sub {
	display: inline-block;
	vertical-align: top;
}
@media all and (max-width: 1023px) {
	.headLine01 {
		margin-bottom: 1.5rem;
		font-size: 3.8rem;
	}
	.content .headLine01 {
		margin: 0 -3rem 1.5rem;
	}
}
/* headLine02 */
.headLine02 {
	margin-bottom: 1.8rem;
	font-family:"ten-mincho-text",serif;
	font-size: 4rem;
	line-height: 1.425;
	font-weight: 400;
}
.headLine02 .en {
	margin-bottom: 1.9rem;
	font-family: "Jost", sans-serif;
	font-weight: 300;
	font-size: 3rem;
	display: block;
}
.headLine02 .sub {
	display: inline-block;
	vertical-align: top;
}
.headLine02.center {
	text-align: center;
}
@media all and (min-width: 1024px) {
	.headLine02.small {
		margin-bottom: 3.5rem;
		font-size: 3.5rem;
	}
	.headLine02.small .en {
		margin-bottom: 0.8rem;
		font-size: 2rem;
	}
}
@media all and (max-width: 1023px) {
	.headLine02 {
		font-size: 3rem;
		line-height: 1.5;
	}
	.headLine02 .en {
		font-size: 2.5rem;
		margin-bottom: 0.8rem;
	}
	.headLine02.small {
		margin-bottom: 3.3rem;
		font-size: 2.6rem;
	}
	.headLine02.small .en {
		margin-bottom: 0.3rem;
		font-size: 2rem;
	}
}


/* comList */
.comList li {
	margin-bottom: 3.6rem;
	border-bottom: 0.1rem solid #727272;
}
.comList li:last-child {
	margin-bottom: 0;
}
.comList a {
	width: 100%;
	display: flex;
	font-size: 2rem;
	padding: 0 5rem 2.2rem 0;
	position: relative;
}
.comList a::after {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 0.2rem;
	right: 0.4rem;
	background: url("../img/common/icon03.png") no-repeat left top / 100% 100%;
	content: "";
}
.comList:not(.comList02) .date {
	margin-right: 2rem;
	display: flex;
    align-items: center;
	width: 18.4rem;
}
.comList:not(.comList02) .comLable {
	margin-left: 1rem;
}
.comList .txt {
	flex: 1;
}
@media all and (min-width: 1024px) {
	.comList a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 1023px) {
	.comList .date {
		width: auto;
		display: block;
		margin-bottom: 0.4rem;
	}
	.comList .txt {
		display: block;
	}
	.comList a {
		display: block;
		font-size: 1.8rem;
		padding: 0 5rem 1.7rem 0;
		line-height: 1.77;
	}
	.comList li {
		margin-bottom: 2.1rem;
	}
	.comList a::after {
		width: 2.4rem;
		height: 2.4rem;
		top: 50%;
		right: 0;
		margin-top: -0.2rem;
	}
	.comList:not(.comList02) .date {
		margin-right: 0;
		width: auto;
	}
	.comList:not(.comList02) .comLable {
		margin-left: 1.6rem;
	}
}



/* comContact */
.comContact {
	margin: 14rem auto 0;
	max-width: 118rem;
	position: relative;
	z-index: 10;
}
.comContact a {
	padding: 4.3rem 9.5rem;
	min-height: 28rem;
	color: #fff;
	background-color: #F97D63;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.94;
	border-radius: 2.5rem;
	overflow: hidden;
	display: flex;
	position: relative;
}
.comContact a::before {
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 2.5rem;
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.2);
	content: "";
	z-index: 1;
	transition: .5s;
}
.comContact a::after {
	margin-top: -3rem;
	width: 7.5rem;
	height: 6rem;
	position: absolute;
	top: 50%;
	right: 9.1rem;
	background: url("../img/common/icon04.png") no-repeat left top / 100% 100%;
	content: "";
	transition: .5s;
	z-index: 10;
}
.comContact .headLine02 {
	line-height: 1.5;
	font-size: 3.8rem;
	margin-bottom: 1.3rem;
}
.comContact .headLine02 .en {
	margin-bottom: 0.5rem;
}
.comContact .inner {
	width: 100%;
	padding-right: 8rem;
	position: relative;
	z-index: 10;
}
@media all and (min-width: 1024px) {
	.comContact a:hover:after {
		margin-right: -2rem;
	}
	.comContact a:hover::before {
		width: 100%;
	}
}
@media all and (max-width: 1023px) {
	.comContact {
		margin: 8rem 1.8rem -2rem;
	}
	.comContact a {
		padding: 3.4rem 2.7rem 3.8rem;
		min-height: 0;
		font-size: 1.6rem;
		line-height: 1.68;
		border-radius: 1.5rem;
		position: relative;
	}
	.comContact .inner {
		padding-right: 0;
	}
	.comContact .headLine02 {
		font-size: 3rem;
		line-height: 1.4;
		margin-bottom: 0.5rem;
	}
	.comContact .headLine02 .en {
		margin-bottom: 0.3rem;
	}
	.comContact a::after {
		margin-top: -4.3rem;
		width: 4.3rem;
		height: 3.5rem;
		top: 50%;
		right: 2.5rem;
	}
}


/* pageVisual */
.pageVisual {
	margin-top: -10rem;
	padding-top: 10rem;
	position: relative;
	height: 31rem;
	display: flex;
	align-items: center;
	background-color: #f9f6ed;
	overflow: hidden;
}
.pageVisual::after {
	margin-top: 7rem;
	width: 71.5rem;
	height: 47.8rem;
	position: absolute;
	top: 50%;
	right: -6rem;
	transform: translateY(-50%);
	background: url("../img/common/main_img.png") no-repeat left top / 100% 100%;
	content: "";
}
.pageVisual .content {
	width: 100%;
	max-width: 99rem;
	position: relative;
	z-index: 10;
}
.pageVisual .headLine02 {
	margin-bottom: 0;
	font-size: 3.3rem;
}
.pageVisual .headLine02 .en {
	font-size: 2rem;
	margin-bottom: 0.6rem;
}
@media all and (max-width: 1023px) {
	.pageVisual {
		height: 24rem;
		padding-bottom: 0.8rem;
	}
	.pageVisual::after {
		margin-top: 4.8rem;
		width: 25.1rem;
		height: 22.4rem;
		top: 50%;
		right: -4.6rem;
		background-image: url("../img/common/main_img_sp.png");
	}
	.pageVisual .headLine02 {
		font-size: 2.4rem;
	}
	.pageVisual .headLine02 .en {
		font-size: 1.6rem;
		margin-bottom: 0.4rem;
	}
}

/* pagePath */
#pagePath {
	padding: 1.4rem 0;
	margin-bottom: 6.6rem;
}
#pagePath ul {
	font-size: 1.4rem;
  	font-weight: 500;
}
#pagePath ul a {
	display: inline-block;
	font-weight: 400;
}
#pagePath ul li {
	position: relative;
	display: inline;
	margin-right: 2.6rem;
}
#pagePath ul li::after {
	position: absolute;
	top: 0;
	right: -2.2rem;
	content: "＞";
}
#pagePath ul li:last-child:after {
	display: none;
}
@media all and (min-width: 1024px) {
	#pagePath ul a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 1023px) {
	#pagePath {
		padding: 1.4rem 0;
		margin-bottom: 2.8rem;
	}
}

/* comList02 */
.comList02 li {
	margin-bottom: 4rem;
	border-bottom: none;
}
.comList02 li:last-child {
	margin-bottom: 0;
}
.comList02 a {
	padding: 3.7rem 10rem 3rem 4rem;
	display: block;
	background-color: #f9f6ed;
	min-height: 14rem;
}
.comList02 .date {
	width: auto;
	line-height: 1;
}
.comList02 .flex {
	margin-bottom: 0.9rem;
	align-items: flex-start;
}
.comList02 .comLable {
	margin: 0 0 0 1.9rem;
	flex: 1;
}
.comList02 .txt {
	display: block;
	line-height: 1.8;
}
.comList02 a::after {
	top: 50%;
	right: 4rem;
	transform: translateY(-50%);
}
@media all and (max-width: 1023px) {
	.comList02 a {
		padding: 3.1rem 5rem 1.9rem 3rem;
		min-height: 0;
	}
	.comList02 a::after {
		right: 1.7rem;
		width: 2.8rem;
		height: 2.8rem;
		margin: 0;
	}
	.content .comList02 {
		margin: 0 -1.7rem;
	}
	.comList02 li {
		margin-bottom: 2rem;
	}
}

/* comLable */
.comLable {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	color: #F97D63;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1;
}
.comLable span {
	border-radius: 5rem;
	border: 0.1rem solid #F97D63;
	padding: 0.2rem 1.4rem 0.4rem;
	text-align: center;
}


/* wp-pagenavi */
.wp-pagenavi {
	font-size: 0;
	clear: both;
	text-align: center;
	margin-top: 8rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	min-height: 5.4rem;
	min-width: 5.4rem;
	font-size: 1.3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: 0.1rem solid #F97D63;
	color: #F97D63;
	font-size: 2rem;
	padding: 0.1rem 0.5rem;
	font-family: "Jost", sans-serif;
	font-weight: 300;
	border-radius: 50%;
	box-sizing: border-box;
}
.wp-pagenavi span.current {
	background-color: #F97D63;
	color: #fff;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi .extend {
	font-weight: 500;
	letter-spacing: -0.13em;
	border: none;
}
@media all and (min-width: 1024px) {
	.wp-pagenavi a:hover {
		background-color: rgba(249,125,99,0.2);
		color: #F97D63;
	}
}
@media all and (max-width: 1023px) {
	.wp-pagenavi {
		gap: 0.6rem;
		margin-top: 5rem;
	}
	.wp-pagenavi a, .wp-pagenavi span {
		min-height: 4.2rem;
  		min-width: 4.2rem;
		font-size: 1.5rem;
	}
}