@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 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;
}
/* fonts */
.noto {
	font-family: "Noto Sans JP", sans-serif;
}
.jost {
	font-family: "Jost", sans-serif;
}
.roboCon {
	font-family: "Roboto Condensed", sans-serif;
}
/*------------------------------------------------------------
	fade
------------------------------------------------------------*/
.fadeImg,
.fadeWrap .fadeItem,
.wp-block-image {
	position: relative;
	transform: scaleX(0);
	transform-origin: right;
	will-change: transform;
}
.fadeImg::before,
.fadeWrap .fadeItem::before,
.wp-block-image::before {
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: #005EAC;
	transform-origin: left;
	will-change: transform;
	content: "";
	z-index: 2;
}
.wp-block-image::before {
	background: #2CA6E0;
}
.fadeImg.visible,
.fadeWrap.visible .fadeItem,
.wp-block-image.visible {
	transform: scaleX(1);
	transition: transform 0.5s cubic-bezier(.165, .84, .44, 1);
}
.fadeImg.visible::before,
.fadeWrap.visible .fadeItem::before,
.wp-block-image.visible::before {
	transform: scaleX(0);
	transition: transform 0.5s cubic-bezier(.165, .84, .44, 1) 0.5s;
}
.fadeImg.visible {
	transition-delay: var(--delay);
}
.fadeImg.visible::before {
	transition-delay: calc(0.5s + var(--delay));
}
@media all and (max-width: 896px) {
	.fadeSp {
		position: relative;
		transform: scaleX(0);
		transform-origin: right;
		will-change: transform;
	}
	.fadeSp::before {
		width: 100%;
		height: 100%;
		position: absolute;
		right: 0;
		top: 0;
		background: #E7364A;
		transform-origin: left;
		will-change: transform;
		content: "";
		z-index: 2;
	}
	.fadeSp.visible {
		transform: scaleX(1);
		transition: transform 0.5s cubic-bezier(.165, .84, .44, 1);
	}
	.fadeSp.visible::before {
		transform: scaleX(0);
		transition: transform 0.5s cubic-bezier(.165, .84, .44, 1) 0.5s;
	}
}
/*------------------------------------------------------------
	content
------------------------------------------------------------*/
.content {
	margin: 0 auto;
	width: 104rem;
}
@media all and (max-width: 896px) {
	.content {
		margin: 0 2rem;
		width: auto !important;
	}
}
/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	margin: 0 auto 13.5rem;
	width: 116rem;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.05em;
}
.headLine01 .en {
	margin-bottom: 2.3rem;
	width: fit-content;
	display: block;
	font-size: 9.7rem;
	font-family: "Jost", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
	background: linear-gradient(#000, #000) no-repeat left bottom 0.13em / 100% 0.3rem;
}
.headLine01 .jp {
	padding-left: 2.5rem;
	display: block;
	position: relative;
}
.headLine01 .jp::before {
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 0.2rem;
	top: 0.56em;
	background: #EC6C00;
	content: '';
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin: 0 1.5rem 6rem;
		width: auto;
		font-size: 1.6rem;
	}
	.headLine01 .en {
		margin-bottom: 0.5rem;
		font-size: 5rem;
		background-size: 100% 0.2rem;
	}
	.headLine01 .jp {
		padding-left: 2rem;
	}
}
/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 4.3rem;
	font-size: 3.1rem;
	font-weight: 700;
	letter-spacing: 0.095em;
	color: #EC6C00;
}
@media all and (max-width: 896px) {
	.headLine02 {
		margin-bottom: 2.5rem;
		font-size: 2rem;
	}
}
/*------------------------------------------------------------
	headLine03
------------------------------------------------------------*/
.headLine03 {
	margin-bottom: 6.8rem;
	color: #000;
}
.headLine03 .en {
	display: block;
	font-size: 4.6rem;
	font-family: "Jost", sans-serif;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.15;
}
.headLine03 .jp {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 2.4rem;
	letter-spacing: 0.06em;
	color: #FCCF00;
}
@media all and (max-width: 896px) {
	.headLine03 {
		margin-bottom: 3rem;
	}
	.headLine03 .en {
		font-size: 2.4rem;
	}
	.headLine03 .jp {
		font-size: 1.7rem;
	}
}
/*------------------------------------------------------------
	headLine04
------------------------------------------------------------*/
.headLine04 {
	margin-bottom: 8.5rem;
	width: fit-content;
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 2rem;
	letter-spacing: 0.05em;
}
.headLine04 .en {
	margin-bottom: 1.6rem;
	width: fit-content;
	display: block;
	font-size: 7.2rem;
	font-family: "Jost", sans-serif;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
	background: linear-gradient(currentColor, currentColor) no-repeat left bottom 0.13em / 100% 0.3rem;
}
.headLine04 .jp {
	padding-left: 2.5rem;
	display: block;
	position: relative;
}
.headLine04 .jp::before {
	width: 1rem;
	height: 1rem;
	position: absolute;
	left: 0.2rem;
	top: 0.56em;
	background: #EC6C00;
	content: '';
}
@media all and (max-width: 896px) {
	.headLine04 {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
	.headLine04 .en {
		margin-bottom: 0.5rem;
		font-size: 4.5rem;
		background-size: 100% 0.2rem;
	}
	.headLine04 .jp {
		padding-left: 2rem;
	}
}
/*------------------------------------------------------------
	headLine05
------------------------------------------------------------*/
.headLine05 {
	margin-bottom: 8.2rem;
	padding-left: 4.2rem;
	position: relative;
	font-size: 4.5rem;
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.075em;
}
.headLine05::before {
	width: 2rem;
	height: 2rem;
	position: absolute;
	left: 0;
	top: 0.63em;
	background: #E7364A;
	content: '';
}
@media all and (max-width: 896px) {
	.headLine05 {
		margin-bottom: 4rem;
		padding-left: 3rem;
		font-size: 3rem;
	}
	.headLine05::before {
		width: 1.6rem;
		height: 1.6rem;
		top: 0.5em;
	}
}
/*------------------------------------------------------------
	headLine06
------------------------------------------------------------*/
.headLine06 {
	margin-bottom: 5.4rem;
	font-size: 4.5rem;
	font-weight: 700;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.075em;
	line-height: 1.42;
}
@media all and (max-width: 896px) {
	.headLine06 {
		margin-bottom: 2.5rem;
		font-size: 2.6rem;
	}
}
/*------------------------------------------------------------
	comBtn01
------------------------------------------------------------*/
.comBtn01 a {
	padding: 1.2rem 6rem 1.3rem 2.3rem;
	width: 20rem;
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.9rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	text-decoration: none !important;
	letter-spacing: 0.09em;
	background: #6FB92C url(../img/common/icon04.png) no-repeat right 1.7rem center / 1.9rem;
}
.comBtn01 a::after {
	width: 0.1rem;
	position: absolute;
	right: 5.3rem;
	top: 0.7rem;
	bottom: 0.7rem;
	background: #fff;
	content: '';
}
.comBtn01 a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.comBtn01 a {
		padding: 1rem 5rem 1rem 2rem;
		width: 18rem;
		font-size: 1.6rem;
	}
}
/*------------------------------------------------------------
	comBtn02
------------------------------------------------------------*/
.comBtn02 {
	margin: 0 auto;
	width: 25rem;
}
.comBtn02 a {
	padding: 1.8rem 2rem 1.7rem;
	display: block;
	text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-size: 2.3rem;
	font-weight: 700;
	color: #fff;
	background: #EC6C00;
}
.comBtn02 a .txt {
	padding-left: 6rem;
	padding-bottom: 0.2rem;
	display: inline-block;
	letter-spacing: 0.04em;
	background: url(../img/common/icon01.png) no-repeat left 0.3rem center / 4.3rem;
}
.comBtn02 a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	.comBtn02 {
		width: 20rem;
	}
	.comBtn02 a {
		padding: 1rem 2rem;
		font-size: 2rem;
	}
	.comBtn02 a .txt {
		padding-left: 3.8rem;
		padding-bottom: 0;
		background-size: 2.4rem;
	}
}
/*------------------------------------------------------------
	wp-pagenavi
------------------------------------------------------------*/
.wp-pagenavi {
	margin-top: 8.6rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1.9rem;
	font-size: 0;
	clear: both;
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	margin: 0;
	padding: 0.2rem 0 0;
	width: 4rem;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 2.6rem;
	font-weight: 700;
	line-height: 1;
	font-family: "Roboto Condensed", sans-serif;
	text-decoration: none;
	white-space: nowrap;
	border: none;
}
.wp-pagenavi span.current {
	color: #fff;
	background: #2CA6E0;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	background: transparent;
	position: relative;
	font-size: 0;
}
.wp-pagenavi .previouspostslink::after,
.wp-pagenavi .nextpostslink::after {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/common/icon05.png) no-repeat center center / 1.3rem;
	content: '';
}
.wp-pagenavi .previouspostslink::after {
	transform: rotate(180deg);
}
.wp-pagenavi .extend {}
@media all and (min-width: 897px) {
	.wp-pagenavi a:hover {
		color: #fff;
		background: #2CA6E0;
	}
	.wp-pagenavi .previouspostslink:hover::after,
	.wp-pagenavi .nextpostslink:hover::after {
		filter: brightness(0) invert(1);
	}
}
@media all and (max-width: 896px) {
	.wp-pagenavi {
		margin-top: 6rem;
		gap: 1.5rem;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		font-size: 2.4rem;
	}
}
/*------------------------------------------------------------
	comStickyBox
------------------------------------------------------------*/
.comStickyBox {
	margin: 0 auto 14.7rem;
	width: 114rem;
	display: flex;
}
.comStickyBox .sideBar {
	padding-top: 0.8rem;
	width: 37rem;
	flex-shrink: 0;
	position: relative;
}
.comStickyBox .cateList {
	max-height: 100vh;
	position: sticky;
	left: 0;
	top: calc(50% - var(--height)/2);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.comStickyBox .cateList li a {
	padding: 0.8rem 0;
	width: fit-content;
	display: block;
	color: #c1c2c8;
	font-weight: 500;
	line-height: 1.52;
}
.comStickyBox .cateList li a:hover {
	opacity: 0.7;
}
.comStickyBox .cateList .current a,
.comStickyBox .cateList .current-cat a {
	color: #000;
}
.comStickyBox .conts {
	padding: 1.6rem 2rem 0;
	width: calc(100% - 37rem);
}
.comStickyBox .conts .item {
	margin-bottom: 22.5rem;
	position: relative;
}
.comStickyBox .conts .item::after {
	width: 5rem;
	height: 0.1rem;
	position: absolute;
	left: 0;
	bottom: -10.6rem;
	background: #000;
	content: '';
}
.comStickyBox .conts .item:last-child {
	margin-bottom: 0 !important;
}
.comStickyBox .conts .item:last-child::after {
	display: none;
}
.comStickyBox .conts .item a {
	text-decoration: underline;
}
@media all and (min-width: 897px) {
	.comStickyBox .conts .item a:hover {
		text-decoration: none;
	}
	.comStickyBox .conts .item a:hover img {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	.comStickyBox {
		margin: 0 2rem 6rem;
		display: block;
		width: auto;
	}
	.comStickyBox .sideBar {
		display: none;
	}
	.comStickyBox .conts {
		padding: 0;
		width: auto;
	}
	.comStickyBox .conts .item {
		margin-bottom: 9rem;
	}
	.comStickyBox .conts .item::after {
		width: 3.5rem;
		bottom: -4.5rem;
	}
}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
.comTopBox {
	margin-bottom: 13.5rem;
	padding-bottom: 15.6rem;
	position: relative;
}
.comTopBox::after {
	width: 100%;
	height: calc(50% + 10.8rem);
	height: calc(100% - 19.8rem);
	position: absolute;
	left: 0;
	bottom: 0;
	background: #000;
	content: '';
}
.comTopBox .imgBox {
	margin: 0 auto;
	width: 106rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}
.comTopBox .photoBox {
	margin: 0 0 3.5rem 3.5rem;
	width: 36rem;
	position: relative;
}
.comTopBox .photoBox::before {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 3.5rem;
	top: 3.5rem;
	background: #FCCF00;
	content: '';
}
.comTopBox .photoBox img {
	width: 100%;
	position: relative;
	z-index: 1;
}
.comTopBox .textBox {
	padding-top: 3.7rem;
	width: 52.2rem;
}
.comTopBox .textBox h2 {
	margin: 0 0 8.2rem -0.1em;
	color: #000;
	font-size: 4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.55;
}
.comTopBox .textBox p {
	margin-bottom: 3.1rem;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.9375;
}
.comTopBox .textBox p:last-child {
	margin-bottom: 0 !important;
}
@media all and (max-width: 896px) {
	.comTopBox {
		margin-bottom: 5rem;
		padding-bottom: 0;
	}
	.comTopBox::after {
		display: none;
	}
	.comTopBox .imgBox {
		width: auto;
		display: block;
	}
	.comTopBox .photoBox {
		margin: 0 4rem 5rem 2rem;
		width: auto;
	}
	.comTopBox .photoBox::before {
		left: 2rem;
		top: 2rem;
	}
	.comTopBox .textBox {
		padding: 3rem 2.5rem;
		width: auto;
		background: #000;
	}
	.comTopBox .textBox h2 {
		margin-bottom: 2.5rem;
		font-size: 2.4rem;
		color: #fff;
	}
	.comTopBox .textBox p {
		margin-bottom: 2rem;
		line-height: 1.75;
	}
}
/*------------------------------------------------------------
	comCta
------------------------------------------------------------*/
.comCta {
	padding: 13.7rem 0 17.8rem;
	color: #fff;
	background: url(../img/common/cta_bg.jpg) no-repeat center center / cover;
}
.comCta .headLine04 {
	margin-left: auto;
	margin-right: auto;
	color: #fff;
}
.comCta .cTxt {
	margin-bottom: 9.6rem;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.9;
	letter-spacing: 0.05em;
}
@media all and (max-width: 896px) {
	.comCta {
		padding: 10rem 0;
	}
	.comCta .cTxt {
		margin-bottom: 4rem;
		font-size: 1.6rem;
	}
}
.fadeTxt {
	opacity: 0;
}
.fadeTxt.visible {
	opacity: 1;
}
.fadeTxt .fadeSpan {
	display: inline-block;
	opacity: 0;
	transform: translateX(3rem);
	transition: transform 0.3s cubic-bezier(.41, 0, .43, 1), opacity 0.3s cubic-bezier(.41, 0, .43, 1);
}
.fadeTxt.visible .fadeSpan {
	opacity: 1;
	transform: translateX(0);
}