@charset "utf-8";

/*-------------------------------
	基本設定
-------------------------------*/

*,
*::before,
*::after{
	letter-spacing: .05em;
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
	font-feature-settings: "palt";
	text-align: justify;
}
html{
	font-size: var(--root-font-size);
	margin-top: 0 !important;
}
body{
	opacity: 0;
	width: 100%;
	font-size: var(--font-size);
	letter-spacing: .05em;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	color: var(--blackcolor);
	/* font-family: '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
	font-family: var(--jp);
	overflow-x: hidden;
}

/*----- 画像関連 */
img{
	height: auto;
	vertical-align: bottom;
}

/* SVG表示されないとき */
.svg{
	line-height: 1;
	display: block;
}
.svg img{
	display: block;
	width: 100%;
	height: auto;
	line-height: 1;
}

/*----- ホバー系 */
a,
.a{
	transition: var(--transition1);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-top);
	padding-bottom: var(--padding-bottom);
}
.sec:first-child{
	padding-top: 0;
}
.sec:last-child{
	padding-bottom: 0;
}
.sec.-gray{
	background: var(--graybg);
}
.main{
	padding-bottom: 20rem;
	display: block;
}

@media screen and (min-width:769px) , print{

	a[href^="tel:"]{
		pointer-events: none;
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.maxwidth{
		width: 100%;
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.widewidth{
		width: 100%;
		max-width: var(--widewidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
		margin-left: auto;
		margin-right: auto;
	}
	.main{
		padding-bottom: 15rem;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	html{
		font-size: var(--root-font-size);
	}
	body{
		min-width: 100%;
		font-size: var(--font-size);
	}

	/*----- コンテンツ */
	.fullwidth{
		width: 100%;
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.sp_maxwidth{
		width: 100%;
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

	.main{
		padding-bottom: var(--padding-bottom);
	}
	.sec{
		padding-top: var(--padding-top);
		padding-bottom: var(--padding-bottom);
	}

}



/*-------------------------------
	パーツ
-------------------------------*/

/*----- 見出し */
/* 大見出し */
.C-Title{
	line-height: 1;
	display: block;
	overflow: hidden;
}
.C-Title__jp{
	transition: .6s transform var(--transition-easing1);
	font-size: 1.8rem;
	margin-bottom: 2.7rem;
	font-weight: 500;
	line-height: 1;
	display: block;
	opacity: 0;
}
.C-Title__en{
	transition: .6s transform var(--transition-easing1);
	font-family: var(--en);
	font-size: 9rem;
	font-weight: 700;
	line-height: .7;
    padding-bottom: 2rem;
	display: block;
	white-space: nowrap;
	transform: translateY(1em);
}
.C-Title.on .C-Title__jp{
	opacity: 1;
}
.C-Title.on .C-Title__en{
	transform: translateY(0);
}
.C-Title-obj{
	width: 100%;
	/* height: 100%; */
	transform: translateY(-11rem);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: -1;
}
.C-Title-obj__itemWrap{
	transition-timing-function: linear;
}
.C-Title-obj__item{
	font-family: var(--en);
	width: fit-content;
	font-size: 24rem;
	font-weight: 700;
	line-height: .69;
	padding-bottom: 1rem;
	-webkit-text-stroke: 2px rgba(255,255,255,.25);
    text-stroke: 2px rgba(255,255,255,.25);
	paint-order: stroke;
	white-space: nowrap;
	color: transparent;
}

/* 見出し */
.C-SecTitle{
	border-top: 1px solid var(--graycolor);
	width: 100%;
	font-size: 3.2rem;
	padding-top: 4rem;
	margin-bottom: 3.4rem;
	line-height: calc(4.8 / 3.2);
	font-weight: 700;
	position: relative;
	z-index: 5000;
}
.C-SecTitle::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 5rem;
	height: .4rem;
	transform: translateY(-1px);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 6000;
}

/*----- ボタン */
:root{
	--common-c-button_left: 2.5rem;
	--common-c-button_left-large: 3.5rem;
}
.C-Button{
	width: 24rem;
	height: 6rem;
}
.C-Button > a,
.C-Button > .a{
	color: var(--blackcolor);
	width: 100%;
	height: 100%;
	font-weight: 500;
	display: block;
	background: #fff;
	position: relative;
	opacity: 1 !important;
}
.C-Button > a:hover,
.C-Button > .a:hover{
	color: var(--maincolor);
}
.C-Button__text{
	padding-right: var(--common-c-button-c-arrow_right);
	padding-left: var(--common-c-button_left);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Button > a[target="_blank"] > .C-Button__text::after{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 1.2rem;
	height: .9rem;
	margin-left: .4rem;
	background-image: url(../images/common/icon_blank-black.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Button > a[target="_blank"]:hover > .C-Button__text::after{
	background-image: url(../images/common/icon_blank.svg);
}
/* 枠あり */
.C-Button.-border > a,
.C-Button.-border > .a{
	border: 1px solid var(--graycolor);
}
/* 反転 */
.C-Button.-back > a,
.C-Button.-back > .a{
	transform: scale(-1,1);
}
.C-Button.-back .C-Button__text{
	padding-left: var(--common-c-button-c-arrow_right);
	padding-right: var(--common-c-button_left);
	transform: scale(-1,1);
	text-align: right;
	justify-content: flex-end;
}
/* 大サイズ */
.C-Button.-large{
	width: 36rem;
	height: 8rem;
}
.C-Button.-large .C-Button__text{
	padding-right: var(--common-c-button-c-arrow_right-large);
	padding-left: var(--common-c-button_left-large);
	font-size: 2.1rem;
}
/* 大サイズ（反転） */
.C-Button.-large.-back .C-Button__text{
	padding-left: var(--common-c-button-c-arrow_right-large);
	padding-right: var(--common-c-button_left-large);
}

/*----- 矢印 */
:root{
	--common-c-arrow_width: 1.6rem;
	--common-c-arrow_width-large: 2.1rem;
}
.C-Arrow{
	transition: var(--transition1);
	width: var(--common-c-arrow_width);
	height: 1.1rem;
	display: block;
	position: relative;
	background: #fff;
}
.C-Arrow::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/common/icon_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Arrow:hover::after,
.a:hover .C-Arrow::after,
a:hover .C-Arrow::after{
	animation: c-arrow .5s ease-in-out forwards;
}
@keyframes c-arrow{
	0%{
		transform: translateX(0);
		opacity: 1;
	}
	40%{
		transform: translateX(60%);
		opacity: 0;
	}
	60%{
		transform: translateX(-60%);
		opacity: 0;
	}
	100%{
		transform: translateX(0);
		opacity: 1;
	}
}
/* .C-Button内の場合 */
:root{
	--common-c-button-c-arrow_right: 1rem;
	--common-c-button-c-arrow_width: 4rem;
	--common-c-button-c-arrow_height: 4rem;
	--common-c-button-c-arrow_right-large: 1.4rem;
	--common-c-button-c-arrow_width-large: 5rem;
	--common-c-button-c-arrow_height-large: 5rem;
}
.C-Button .C-Arrow{
	border: 1px solid var(--maincolor);
	width: var(--common-c-button-c-arrow_width);
	height: var(--common-c-button-c-arrow_height);
	right: var(--common-c-button-c-arrow_right);
	background: var(--maincolor);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	overflow: hidden;
	top: 50%;
	transform: translateY(-50%);
}
.C-Button .C-Arrow::after{
	width: var(--common-c-arrow_width);
	background-image: url(../images/common/icon_arrow-white.svg);
}
/* 大サイズ */
.C-Button.-large .C-Arrow{
	width: var(--common-c-button-c-arrow_width-large);
	height: var(--common-c-button-c-arrow_height-large);
	right: var(--common-c-button-c-arrow_right-large);
}
.C-Button.-large .C-Arrow::after{
	width: var(--common-c-arrow_width-large);
}
/* 矢印正方形ver */
.C-ArrowBox{
	width: var(--common-c-button-c-arrow_width);
	height: var(--common-c-button-c-arrow_height);
	border: 1px solid var(--graycolor);
	transition: var(--transition1);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	background: #fff;
	cursor: pointer;
}
.C-ArrowBox::after{
	content: "";
	display: block;
	width: 1rem;
	height: 100%;
	background-image: url(../images/common/icon_arrow2.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
a:has(.C-ArrowBox),
.a:has(.C-ArrowBox){
	opacity: 1 !important;
}
a:hover .C-ArrowBox,
.a:hover .C-ArrowBox{
	background: var(--maincolor);
	border-color: var(--maincolor);
}
a:hover .C-ArrowBox::after,
.a:hover .C-ArrowBox::after{
	background-image: url(../images/common/icon_arrow2-white.svg);
	animation: c-arrow .5s ease-in-out forwards;
}
.C-ArrowBox.-prev,
*.-prev .C-ArrowBox{
	transform: scale(-1,1);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

	/*----- 見出し */
	/* 大見出し */
	.C-Title{
		margin-bottom: 4.5rem;
	}
	.C-Title__jp{
		font-size: 3rem;
		margin-bottom: 2rem;
	}
	.C-Title__en{
		font-size: 10rem;
		padding-bottom: .5rem;
		line-height: 1;
		text-align: left;
		white-space: normal;
	}
	.C-Title-obj{
		transform: translateY(-14rem);
	}
	.C-Title-obj__item{
		padding-bottom: 1.2rem;
		-webkit-text-stroke: 2px rgba(255,255,255,.25);
		text-stroke: 2px rgba(255,255,255,.25);
	}

	/* 見出し */
	.C-SecTitle{
		font-size: 4.4rem;
		padding-top: 3.5rem;
		margin-bottom: 4.5rem;
		line-height: calc(6.6 / 4.4);
	}
	.C-SecTitle::before{
		width: 10rem;
	}

	/*----- ボタン */
	:root{
		--common-c-button_left: 5rem;
		--common-c-button_left-large: 3.5rem;
	}
	.C-Button{
		width: 50rem;
		height: 12rem;
	}
	.C-Button__text{
		font-size: 3rem;
	}
	.C-Button > a[target="_blank"] > .C-Button__text::after{
		width: 3rem;
		height: 2rem;
		margin-left: 1.5rem;
	}
	/* 大サイズ */
	.C-Button.-large{
		width: 50rem;
		height: 12rem;
	}
	.C-Button.-large .C-Button__text{
		font-size: 3rem;
	}

	/*----- 矢印 */
	:root{
		--common-c-arrow_width: 3.5rem;
		--common-c-arrow_width-large: 3.5rem;
	}
	.C-Arrow{
		height: 2.3rem;
	}
	/* .C-Button内の場合 */
	:root{
		--common-c-button-c-arrow_right: 2rem;
		--common-c-button-c-arrow_width: 8rem;
		--common-c-button-c-arrow_height: 8rem;
		--common-c-button-c-arrow_right-large: 2rem;
		--common-c-button-c-arrow_width-large: 8rem;
		--common-c-button-c-arrow_height-large: 8rem;
	}
	/* 矢印正方形ver */
	.C-ArrowBox::after{
		width: 2.6rem;
		background-image: url(../images/common/icon_arrow.svg);
	}
	a:hover .C-ArrowBox::after,
	.a:hover .C-ArrowBox::after{
		background-image: url(../images/common/icon_arrow-white.svg);
	}

}



/*-------------------------------
	ヘッダー
-------------------------------*/

.header{
	background: var(--blackcolor);
	transition: var(--transition1);
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9900;
}
.header__inner{
	height: var(--header-height);
	padding-right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 22rem;
}
.header-logo a{
	display: block;
	position: relative;
}
.header-logo a::before{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/common/logo.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 6000;
	opacity: 0;
}
.header-logo img{
	width: 100%;
	position: relative;
	z-index: 4000;
}
.header-nav{
	width: calc(100% - 22rem);
	padding-left: 5rem;
}
.header-nav__inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-nav__item{
	position: relative;
}
.header-nav__item:not(:first-child){
	margin-left: 3.5rem;
}
.header-nav__itemText{
	height: var(--header-height);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.header-nav__item > a:hover,
.header-nav__item > .a:hover,
.header-nav__item.-current > a,
.header-nav__item.-current > .a{
	color: var(--maincolor);
}
.header-nav__item > a[target="_blank"]::after,
.header-nav__item > .a[target="_blank"]::after{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 1.2rem;
	height: .9rem;
	margin-left: .4rem;
	background-image: url(../images/common/icon_blank-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header-nav__item > a[target="_blank"]:hover::after,
.header-nav__item > .a[target="_blank"]:hover::after{
	background-image: url(../images/common/icon_blank.svg);
}
.header-nav__item-button{
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 6000;
	transform: translate(0,-50%);
}
.header-nav__item-button::before,
.header-nav__item-button::after{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	background: #fff;
}
.header-nav__item-button::before{
	transform: rotate(90deg);
}
.header-nav__item > a:hover + .header-nav__item-button::before,
.header-nav__item > a:hover + .header-nav__item-button::after,
.header-nav__item > .a:hover + .header-nav__item-button::before,
.header-nav__item > .a:hover + .header-nav__item-button::after,
.header-nav__item.-current .header-nav__item-button::before,
.header-nav__item.-current .header-nav__item-button::after,
.header-nav__item.-current .header-nav__item-button::before,
.header-nav__item.-current .header-nav__item-button::after{
	background: var(--maincolor);
}

.header-nav-child{
	transition: var(--transition1);
	width: 27rem;
	padding: 2.5rem;
	transform: translate(-50%,1rem);
	position: absolute;
	left: 50%;
	top: 100%;
	background: #fff;
	visibility: hidden;
	opacity: 0;
}
.header-nav-child__item{
	border-bottom: 1px solid var(--graycolor);
}
.header-nav-child__item > a{
	width: 100%;
	height: 4.2rem;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: .025em;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	opacity: 1 !important;
}
.header-nav-child__item > a::before{
	transition: transform .3s var(--transition-easing1);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	position: absolute;
	left: 0;
	bottom: -1px;
}
.header-nav-child__itemText{
	line-height: 1;
	display: block;
}
.header-nav-child__item .C-Arrow{
	width: 1.3rem;
	height: 1rem;
}
.header-nav-child__item > a:hover::before{
	transform: scaleX(1);
	transform-origin: left;
}
.header-nav__item:has(.header-nav-child){
	padding-right: 1.4rem;
}
.header-nav__item > a:hover + .header-nav__item-button::before{
	transform: rotate(0);
}
.header-nav__item:hover .header-nav-child{
	opacity: 1;
	transform: translate(-50%,0);
	visibility: visible;
}

.header-nav__contact{
	height: var(--header-height);
	width: 20rem;
	margin-left: 4rem;
}
.header-nav__contact a{
	background: var(--maincolor);
	width: 100%;
	height: 100%;
	line-height: 1;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.header-nav__contact a::after{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	background: #fff;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .3s cubic-bezier(0.1, 0.7, 0.4, 1);
}
.header-nav__contact a::before{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.1rem;
	background-image: url(../images/common/icon_mail-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: relative;
	z-index: 6000;
}
.header-nav__contact span{
	max-width: calc(100% - 1.6rem);
	padding-left: .8rem;
	line-height: 1;
	display: block;
	position: relative;
	z-index: 6000;
}

.header-nav__contact a:hover{
	color: var(--maincolor);
}
.header-nav__contact a:hover::before{
	background-image: url(../images/common/icon_mail.svg);
}
.header-nav__contact a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
}

/*----- 上部固定色変更var */
.header.on{
	background: #fff;
}
.header.on .header-logo a::before{
	opacity: 1;
}
.header.on .header-nav__itemText{
	color: var(--blackcolor);
}
.header.on .header-nav__item.-current > a,
.header.on .header-nav__item.-current > .a,
.header.on .header-nav__item > a:hover,
.header.on .header-nav__item > .a:hover{
	color: var(--maincolor);
}
.header.on .header-nav__item > a[target="_blank"]::after,
.header.on .header-nav__item > .a[target="_blank"]::after{
	background-image: url(../images/common/icon_blank-black.svg);
}
.header.on .header-nav__item > a[target="_blank"]:hover::after,
.header.on .header-nav__item > .a[target="_blank"]:hover::after{
	background-image: url(../images/common/icon_blank.svg);
}
.header.on .header-nav__item .header-nav__item-button::before,
.header.on .header-nav__item .header-nav__item-button::after{
	background: var(--blackcolor);
}
.header.on .header-nav__item.-current .header-nav__item-button::before,
.header.on .header-nav__item.-current .header-nav__item-button::after,
.header.on .header-nav__item.-current .header-nav__item-button::before,
.header.on .header-nav__item.-current .header-nav__item-button::after,
.header.on .header-nav__item > a:hover + .header-nav__item-button::before,
.header.on .header-nav__item > a:hover + .header-nav__item-button::after,
.header.on .header-nav__item > .a:hover + .header-nav__item-button::before,
.header.on .header-nav__item > .a:hover + .header-nav__item-button::after{
	background: var(--maincolor);
}
.header.on .header-nav__contact a::after{
	background: var(--blackcolor);
}
.header.on .header-nav__contact a:hover{
	color: #fff;
}
.header.on .header-nav__contact a:hover::before{
	background-image: url(../images/common/icon_mail-white.svg);
}


@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.header-nav__item:not(:first-child){
		margin-left: 2.5rem;
	}
	.header-nav__contact{
		width: 17.5rem;
		margin-left: 2.5rem;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){
	
	.header-nav__itemText {
		width: 2.8em;
		line-height: 1.35;
		text-align: center;
	}
	.header-nav__contact{
		width: 9rem;
	}
	.header-nav__contact a::before{
		width: 2.9rem;
		height: 2rem;
	}
	.header-nav__contact span{
		display: none;
	}

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

	.header-logo{
		width: calc(100% - (12rem + 12rem));
	}
	.header-logo a{
		width: 25rem;
	}
	.header-nav{
		background: var(--blackcolor);
		height: calc(100svh - var(--header-height));
		padding-bottom: var(--padding-leftright);
		width: 100%;
		padding-left: 0;
		/* display: none; */
		position: fixed;
		left: 0;
		top: var(--header-height);
		right: 0;
		bottom: 0;
		z-index: 9900;
		overflow: auto;
		display: none;
	}
	.header-nav__inner{
		flex-direction: column;
	}
	.header-nav__item{
		width: 100%;
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
		border-bottom: 1px solid #333;
	}
	.header-nav__item:not(:first-child){
		margin-left: 0;
	}
	.header-nav__itemText{
		font-size: 3rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		line-height: 1;
		height: auto;
		justify-content: flex-start;
	}
	.header-nav__item.-current > a,
	.header-nav__item.-current > .a,
	.header-nav__item > a:hover,
	.header-nav__item > .a:hover{
		color: #fff;
	}
	.header-nav__item > a[target="_blank"]::after,
	.header-nav__item > .a[target="_blank"]::after{
		width: 3rem;
		height: 2rem;
		margin-left: 1.5rem;
	}
	.header-nav__item > a[target="_blank"]:hover::after,
	.header-nav__item > .a[target="_blank"]:hover::after{
		background-image: url(../images/common/icon_blank-white.svg);
	}
	.header-nav__item-button{
		width: 4rem;
		height: 4rem;
		transform: translate(0,0%);
		top: calc(4rem);
	}
	.header-nav__item-button::before,
	.header-nav__item-button::after{
		height: 2px;
	}
	.header-nav__item.-current .header-nav__item-button::before,
	.header-nav__item.-current .header-nav__item-button::after,
	.header-nav__item > a:hover + .header-nav__item-button::before,
	.header-nav__item > a:hover + .header-nav__item-button::after,
	.header-nav__item > .a:hover + .header-nav__item-button::before,
	.header-nav__item > .a:hover + .header-nav__item-button::after{
		background: #fff;
	}
	.header-nav__item.on .header-nav__item-button::before{
		transform: rotate(0deg);
	}

	.header-nav-child{
		width: 100%;
		padding: 0;
		position: static;
		transform: translate(0,0);
		display: none;
		background: none;
		visibility: visible;
		opacity: 1;
	}
	.header-nav-child__item{
		width: 100%;
		line-height: 1;
		border-bottom: none;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header-nav-child__item::before{
		content: "-";
		line-height: 1;
		color: #fff;
	}
	.header-nav-child__item > a{
		width: calc(100% - 1em);
		padding-left: 2rem;
		height: auto;
		padding-top: 2.5rem;
		padding-bottom: 2rem;
		font-size: 3rem;
		color: #fff;
	}
	.header-nav-child__item > a::before{
		display: none;
	}
	.header-nav-child__item .C-Arrow{
		display: none;
	}
	.header-nav__item:has(.header-nav-child){
		padding-right: 0;
	}
	.header-nav__item:hover .header-nav-child{
		transform: translate(0,0);
	}

	.header-nav__contact{
		width: 100%;
		height: 13rem;
		margin-left: 0;
		margin-top: 6.8rem;
	}
	.header-nav__contact a::before{
		width: 3.7rem;
		height: 2.6rem;
	}
	.header-nav__contact span{
		max-width: calc(100% - 1.6rem);
		padding-left: 2rem;
	}

	.header.on{
		background: var(--blackcolor);
	}
	.header.on .header-logo a::before{
		display: none;
	}
	.header.on .header-nav__itemText{
		color: #fff;
	}
	.header.on .header-nav__item.-current > a,
	.header.on .header-nav__item.-current > .a,
	.header.on .header-nav__item > a:hover,
	.header.on .header-nav__item > .a:hover{
		color: #fff;
	}
	.header.on .header-nav__item > a[target="_blank"]::after,
	.header.on .header-nav__item > .a[target="_blank"]::after,
	.header.on .header-nav__item > a[target="_blank"]:hover::after,
	.header.on .header-nav__item > .a[target="_blank"]:hover::after{
		background-image: url(../images/common/icon_blank-white.svg);
	}
	.header.on .header-nav__item .header-nav__item-button::before,
	.header.on .header-nav__item .header-nav__item-button::after,
	.header.on .header-nav__item.-current .header-nav__item-button::before,
	.header.on .header-nav__item.-current .header-nav__item-button::after,
	.header.on .header-nav__item > a:hover + .header-nav__item-button::before,
	.header.on .header-nav__item > .a:hover + .header-nav__item-button::before,
	.header.on .header-nav__item > a:hover + .header-nav__item-button::after,
	.header.on .header-nav__item > .a:hover + .header-nav__item-button::after{
		background: #fff;
	}

	.header-contact{
		height: var(--header-height);
		width: 12rem;
	}
	.header-contact a{
		background: var(--maincolor);
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.header-contact a::before{
		content: "";
		display: block;
		width: 3.7rem;
		height: 2.6rem;
		background-image: url(../images/common/icon_mail-white.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}

	/*----- ハンバーガー */
	.menu-button {
		height: var(--header-height);
		background: var(--blackcolor);
		width: 12rem;
		padding: 4rem 3.5rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9900;
		cursor: pointer;
	}
	.menu-button i{
		display: block;
		width: 100%;
		height: 2px;
		background: transparent;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: calc(1rem - 1px);
	}
	.menu-button i:before,
	.menu-button i:after{
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		background: #fff;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: all 0.3s !important;
		transition: all 0.3s !important;
	}
	.menu-button i:before{
		-webkit-transform: translateY(calc(1rem - 1px));
		-ms-transform: translateY(calc(1rem - 1px));
		transform: translateY(calc(1rem - 1px));
	}
	.menu-button i:after{
		-webkit-transform: translateY(calc(-1rem + 1px));
		-ms-transform: translateY(calc(-1rem + 1px));
		transform: translateY(calc(-1rem + 1px));
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-30deg);
	}
	.is_open i:before{
		transform:translateY(0px) rotate(30deg);
	}

}



/*-------------------------------
	フッター
-------------------------------*/

.footer__top{
	background: var(--blackcolor);
	padding-top: 9.6rem;
	padding-bottom: 10rem;
	color: #fff;
}
.footer__top-content1{
	width: 100%;
	margin-bottom: 6.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-catchcopy{
	font-size: 7rem;
	font-weight: 700;
	line-height: calc(10 / 7);
	transform: translateY(-.25em);
}
.footer-nav{
	width: 59rem;
	padding-left: 5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-nav__item:not(:last-child){
	margin-bottom: 2.8rem;
}
.footer-nav__item > a,
.footer-nav__item > .a{
	font-size: 2rem;
	line-height: 1;
	position: relative;
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-nav__item > a[target="_blank"]::after,
.footer-nav__item > .a[target="_blank"]::after{
	transition: var(--transition1);
	content: "";
	display: block;
	width: 1.2rem;
	height: .9rem;
	margin-left: .4rem;
	background-image: url(../images/common/icon_blank-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.footer-nav__item > .a{
	opacity: 1 !important;
}

.footer-nav-child{
	margin-top: 2.8rem;
}
.footer-nav-child__item{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-nav-child__item:not(:last-child){
	margin-bottom: 2.8rem;
}
.footer-nav-child__item::before{
	content: "";
	display: block;
	width: .5rem;
	height: 1px;
	background: #fff;
}
.footer-nav-child__item > a{
	width: calc(100% - .5rem);
	padding-left: 1.2rem;
	font-size: 2rem;
	line-height: 1;
	display: block;
}
.footer__top-content2{
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.footer-logo{
	width: 31.5rem;
}
.footer-logo img{
	width: 100%;
}
.footer-line{
	color: var(--blackcolor);
	width: calc(100% - 31.5rem);
	padding-left: 5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footer-line__inner{
	width: 100%;
	max-width: 54rem;
	padding: 2.5rem 3.2rem 2.2rem 3.4rem;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-line__text{
	width: calc(100% - 14.5rem);
    max-width: 32rem;
    padding-right: 2.5rem;
	font-size: 1.2rem;
	line-height: calc(1.8 / 1.2);
	letter-spacing: 0;
}
.footer-line__image{
	width: 14.5rem;
}
.footer-line__image img{
	width: 100%;
}

.footer__bottom{
	padding-top: 4.5rem;
	padding-bottom: 4rem;
	background: #333;
	color: #fff;
}
.footer__bottom-inner{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.footer-address{
	max-width: calc(100% - 24.5rem);
	gap: 4.8rem;
	width: fit-content;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-address__item-title{
	font-size: 1.5rem;
	margin-bottom: .8rem;
	font-weight: 500;
	line-height: 1;
}
.footer-address__item-text{
	font-size: 1.3rem;
	line-height: calc(2.1 / 1.3);
}
.footer-copyright{
	width: 24.5rem;
	font-size: 1rem;
	line-height: 1;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.footer-catchcopy{
		font-size: 6rem;
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.footer-nav{
		width: 50rem;
	}
	.footer-line__inner{
		max-width: 45rem;
	}

	.footer__bottom-inner{
		flex-direction: column;
	}
	.footer-address{
		width: 100%;
		max-width: 100%;
		margin-bottom: 3.5rem;
	}
	.footer-copyright{
		width: 100%;
		text-align: center;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.footer__top-content1{
		flex-direction: column;
	}
	.footer-catchcopy{
		width: 100%;
		margin-bottom: 2.5rem;
	}
	.footer-nav{
		width: 100%;
		padding-left: 0;
	}
	.footer-nav__inner{
		width: 50%;
	}
	.footer__top-content2{
		flex-direction: column-reverse;
		align-items: center;
	}
	.footer-line{
		width: 100%;
		margin-bottom: 5rem;
		padding-left: 0;
	}
	.footer-line__inner{
		max-width: 100%;
	}
	.footer-line__text{
		max-width: calc(100% - 14.5rem);
		padding-right: 6.5rem;
	}

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

	.footer__top{
		padding-top: 8rem;
	}
	.footer__top-content1{
		margin-bottom: 10rem;
		flex-direction: column;
	}
	.footer-catchcopy{
		font-size: 8rem;
		line-height: calc(12 / 8);
		margin-bottom: 7.5rem;
		transform: translateY(0);
	}
	.footer-nav{
		width: 100%;
		padding-left: 0;
	}
	.footer-nav__inner{
		width: 50%;
	}
	.footer-nav__item:not(:last-child){
		margin-bottom: 6rem;
	}
	.footer-nav__item > a,
	.footer-nav__item > .a{
		font-size: 3rem;
	}
	.footer-nav__item > a[target="_blank"]::after,
	.footer-nav__item > .a[target="_blank"]::after{
        width: 3rem;
        height: 2rem;
        margin-left: 1.5rem;
	}

	.footer-nav-child{
		margin-top: 6rem;
	}
	.footer-nav-child__item:not(:last-child){
		margin-bottom: 6rem;
	}
	.footer-nav-child__item::before{
		width: .8rem;
	}
	.footer-nav-child__item > a{
		width: calc(100% - .8rem);
		padding-left: 1.8rem;
		font-size: 3rem;
	}
	.footer__top-content2{
		flex-direction: column-reverse;
		align-items: flex-start;
	}
	.footer-logo{
		width: 43.7rem;
	}
	.footer-line{
		width: 100%;
		margin-bottom: 10rem;
		padding-left: 0;
	}
	.footer-line__inner{
		max-width: 100%;
		padding: 3.5rem 3.8rem 3.2rem 4.2rem;
	}
	.footer-line__text{
		width: calc(100% - 26.5rem);
		padding-right: 4.8rem;
		max-width: 100%;
		font-size: 2.4rem;
		line-height: calc(3.6 / 2.4);
	}
	.footer-line__image{
		width: 26.5rem;
	}
	.footer-line__image img{
		width: 100%;
	}

	.footer__bottom{
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.footer__bottom-inner{
		flex-direction: column;
	}
	.footer-address{
		width: 100%;
		max-width: 100%;
		margin-bottom: 10rem;
		gap: 5.8rem;
		flex-direction: column;
		align-items: flex-start;
	}
	.footer-address__item-title{
		font-size: 2.7rem;
		margin-bottom: 2.2rem;
	}
	.footer-address__item-text{
		font-size: 2.6rem;
		line-height: calc(3.9 / 2.6);
	}
	.footer-copyright{
		width: 100%;
		font-size: 2rem;
	}

}



/*-------------------------------
	キービジュアル
-------------------------------*/

.Keyvisual{
	margin-top: var(--header-height);
	background: var(--blackcolor);
	margin-bottom: 1.2rem;
	padding-top: 16.5rem;
	position: relative;
	z-index: 5000;
}
.Keyvisual__inner{
	padding-left: var(--padding-leftright);
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.Keyvisual__inner::before{
	content: "";
	display: block;
	width: calc((100% - 38rem) * 2);
	height: 50%;
	background: #fff;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
.Keyvisual__image{
	width: calc(((100% + var(--padding-leftright)) / 2) + 38rem);
	max-width: calc(100% - (19rem + 7.2rem));
	height: 40rem;
	position: relative;
	z-index: 4000;
}
.Keyvisual__image::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 6000;
	opacity: .15;
	mix-blend-mode: multiply;
}
.Keyvisual__image picture{
	width: 100%;
	height: 100%;
	display: block;
}
.Keyvisual__image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
	z-index: 4000;
}
.Keyvisual__body{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 6000;
}
.Keyvisual-title{
	width: 100%;
	transform: translateY(-7.8rem);
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	color: #fff;
	overflow: hidden;
}

/*----- ぱんくず */
.Breadclumb{
	margin-bottom: 16.5rem;
}
.Breadclumb__inner{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.Breadclumb__item-wrap{
	line-height: 1;
	width: fit-content;
}
.Breadclumb__item{
	font-size: 1.2rem;
	line-height: 1;
	list-style: none;
	display: inline;
	position: relative;
}
.Breadclumb__item:not(:last-child){
	margin-right: 1.3rem;
	padding-right: 1.3rem;
}
.Breadclumb__item:not(:last-child)::after{
	content: "-";
	line-height: 1;
	position: absolute;
	right: 0;
	top: 50%;
	display: block;
	transform: translateY(-50%);
}
.Breadclumb__item a{
	color: var(--blackcolor);
	padding-bottom: .5rem;
	line-height: 1;
	display: inline-block;
	position: relative;
}
.Breadclumb__item a::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.Keyvisual__image{
		max-width: calc(100% - (17rem + 5rem));
	}

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

	.Keyvisual{
		margin-bottom: 2rem;
		padding-top: 17.5rem;
	}
	.Keyvisual__inner::before{
		width: 100%;
	}
	.Keyvisual__image{
		width: calc(100% - 11rem);
		max-width: calc(100% - 11rem);
		height: 37.5rem;
	}
	.Keyvisual-title{
		transform: translateY(-10rem);
	}

	/*----- ぱんくず */
	.Breadclumb{
		margin-bottom: 9.5rem;
	}
	.Breadclumb__item{
		font-size: 2.2rem;
	}
	.Breadclumb__item:not(:last-child){
		margin-right: 2.6rem;
		padding-right: 2.6rem;
	}
	.Breadclumb__item a{
		padding-bottom: 1rem;
	}

}



/*-------------------------------
	お問い合わせ
-------------------------------*/

.C-Contact{
	background: var(--maincolor);
	padding-top: 6.2rem;
	padding-bottom: 7.2rem;
	color: #fff;
}
.C-Contact__inner{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.C-Contact__title{
	width: 61rem;
}
.C-Contact__body{
	width: calc(100% - 61rem);
}
.C-Contact__text{
	font-size: 2rem;
	margin-bottom: 3.8rem;
	line-height: calc(3 / 2);
}
.C-Contact-tel{
	margin-bottom: 4rem;
}
.C-Contact-tel__number{
	font-family: var(--en);
	font-size: 5rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
	line-height: .7;
    padding-bottom: .2rem;
    overflow: hidden;
}
.C-Contact-tel__time{
	font-size: 1.2rem;
	line-height: 1;
	display: block;
}
.C-Contact__button{
	width: 30rem;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

	.C-Contact__title{
		width: 50rem;
	}
	.C-Contact__body{
		width: calc(100% - 50rem);
	}

}
@media screen and (max-width:1100px) and (min-width: 769px){

	.C-Contact__title{
		width: 42.5rem;
	}
	.C-Contact__body{
		width: calc(100% - 42.5rem);
	}
	.C-Contact-tel__number{
		letter-spacing: .02em;
	}

}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-Contact{
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.C-Contact__inner{
		flex-direction: column;
	}
	.C-Contact__title{
		width: 100%;
	}
	.C-Contact__body{
		width: 100%;
	}
}
@media screen and (max-width:768px){

	.C-Contact{
		padding-top: 10rem;
		padding-bottom: 10.5rem;
	}
	.C-Contact__inner{
		flex-direction: column;
	}
	.C-Contact__title{
		width: 100%;
	}
	.C-Contact__body{
		width: 100%;
	}
	.C-Contact__text{
		font-size: 3.2rem;
		margin-bottom: 4rem;
		line-height: calc(4.8 / 3.2);
	}
	.C-Contact-tel{
		margin-bottom: 8rem;
	}
	.C-Contact-tel__number{
		font-size: 7rem;
		margin-bottom: 2.8rem;
	}
	.C-Contact-tel__time{
		font-size: 2.4rem;
	}
	.C-Contact__button{
		width: 50rem;
		margin-left: auto;
		margin-right: auto;
	}

}



/*-------------------------------
	2カラムレイアウト
-------------------------------*/

.C-Layout{
	/* padding-left: var(--padding-leftright);
	padding-right: var(--padding-leftright);
	width: 100%;
	max-width: 136.6rem;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start; */
	position: relative;
}
.C-Layout-sidebar{
	/* top: calc(var(--header-height) + 5rem); */
	width: 19rem;
	/* position: sticky; */
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(calc(-128.6rem / 2));
	z-index: 6000;
}
.C-Layout-sidebar__list-item:not(:last-child){
	margin-bottom: 1.7rem;
}
.C-Layout-sidebar__list-item a{
	width: 100%;
	line-height: calc(2.4 / 1.6);
	font-weight: 700;
	color: #999;
	position: relative;
	display: block;
	opacity: 1 !important;
}
.C-Layout-sidebar__list-item a::after{
	transition: transform .3s var(--transition-easing1);
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	margin-top: .6rem;
	transform: scaleX(0);
	transform-origin: right;
}
.C-Layout-sidebar__list-item.-current a,
.C-Layout-sidebar__list-item a:hover{
	color: var(--blackcolor);
}
.C-Layout-sidebar__list-item.-current a::after,
.C-Layout-sidebar__list-item a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
}
/* .C-Layout__body{
	width: calc(100% - 19rem);
	padding-left: 7.2rem;
}
.C-Layout__body-inner{
	max-width: var(--maxwidth-number);
	width: 100%;
} */
.C-Layout-block__innerWrap{
	padding-left: var(--padding-leftright);
	padding-right: var(--padding-leftright);
	width: 100%;
	max-width: 136.6rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	margin-left: auto;
	margin-right: auto;
}
.C-Layout-block__inner{
	width: calc(100% - 19rem);
	padding-left: 7.2rem;
}
.C-Layout-block__inner2{
	max-width: var(--maxwidth-number);
	width: 100%;
}
.C-Layout-block{
	padding-top: 0;
	position: relative;
}
.C-Layout-block.-gray{
	padding-top: var(--padding-top);
}
/* .C-Layout-block.-gray::before{
    background: var(--graybg);
    content: "";
    display: block;
    width: 200vw;
    height: 100%;
    left: 50%;
    top: 0;
    right: 0;
    bottom: 0;
    transform: translateX(-50%)
    z-index: -1;
}; */
.C-Layout-block.-gray + .C-Layout-block{
	padding-top: var(--padding-top);
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1366px) and (min-width: 769px){

	.C-Layout-sidebar{
		left: var(--padding-leftright);
		transform: translateX(0) !important;
	}

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	/* .C-Layout-sidebar{
		width: 17rem;
	}
	.C-Layout__body{
		width: calc(100% - 17rem);
		padding-left: 5rem;
	} */

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

	.C-Layout{
		padding-left: 0;
		padding-right: 0;
		flex-direction: column;
	}
	.C-Layout-sidebar{
		display: none;
	}
	.C-Layout-block__innerWrap{
		width: 100%;
	}
	.C-Layout-block__inner{
		max-width: 100%;
		width: 100%;
		padding-left: 0;
	}
	.C-Layout-block.-gray{
		background: var(--graybg);
	}
	.C-Layout-block.-gray::before{
		display: none;
	}

}



/*-------------------------------
	お知らせ
-------------------------------*/

/*----- カテゴリ */
.C-Category__item{
	width: fit-content;

}
.C-Category__item:not(:last-child){
	margin-bottom: .8rem;
}
.C-Category__item a,
.C-Category__item .a{
	border: 1px solid var(--graycolor);
	width: 100%;
	height: 2.8rem;
	font-size: 1.4rem;
	padding: .2rem 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
}
.C-Category__item.-current a,
.C-Category__item a:hover,
.C-Category__item.-current .a,
.C-Category__item .a:hover{
	border-color: var(--blackcolor);
	background: var(--blackcolor);
	color: #fff;
	cursor: pointer;
}

/*----- 記事 */
.C-News-list__item:not(:first-child) a{
	padding-top: 2.8rem;
}
.C-News-list__item a{
	border-bottom: 1px solid var(--graycolor);
	width: 100%;
	padding-bottom: 3rem;
	padding-right: 3rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	opacity: 1 !important;
}
.C-News-list__item a::after{
	transition: transform .3s var(--transition-easing1);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: -1px;
	right: 0;
	transform-origin: right;
	transform: scaleX(0);
}
.C-News-list__itemCategory{
	background: var(--blackcolor);
	width: 12.6rem;
	font-size: 1.4rem;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.C-News-list__itemBody{
	width: calc(100% - 12.6rem);
	padding-left: 4rem;
	padding-right: 4rem;
	position: relative;
}
.C-News-list__itemTime{
	font-family: var(--en2);
	font-size: 1.4rem;
	margin-bottom: .6rem;
	font-weight: 700;
	line-height: 1;
	display: block;
}
.C-News-list__itemCategory + .C-News-list__itemTime{
	display: none;
}
.C-News-list__itemBody .C-News-list__itemTime{
	display: block;
}
.C-News-list__itemTitle{
	transition: var(--transition-easing1);
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(2.8 / 1.8);
}
.C-News-list__itemBody .C-Arrow{
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.C-News-list__itemBody .C-Arrow::after{
	transform: translateX(0);
}

.C-News-list__item a:hover .C-News-list__itemTitle{
	color: var(--maincolor);
}
.C-News-list__item a:hover::after{
	transform: scaleX(1);
	transform-origin: left;
}
.C-News-list__item a:hover .C-Arrow::after{
	animation: c-news-list-item-arrow .5s ease-in-out forwards;
}
@keyframes c-news-list-item-arrow{
	0%{
		transform: translateX(0);
	}
	100%{
		transform: translateX(1em);
	}
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-News-list__item a{
		padding-bottom: 2.8rem;
		flex-wrap: wrap;
	}
	.C-News-list__itemBody{
		width: 100%;
		padding-left: 0;
		margin-top: 1rem;
	}
	.C-News-list__itemCategory + .C-News-list__itemTime{
		margin-bottom: 0;
		margin-left: 1.5rem;
		display: block;
	}
	.C-News-list__itemBody .C-News-list__itemTime{
		display: none;
	}

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

	/*----- カテゴリ */
	.News-Category{
		width: 100%;
		margin-bottom: 10.5rem;
		position: static !important;
		transform: translate(0,0) !important;
		display: flex;
	}
	.C-Category{
		gap: 4rem 4.5rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.C-Category__item:not(:last-child){
		margin-bottom: 0;
	}
	.C-Category__item a,
	.C-Category__item .a{
		height: 5.6rem;
		font-size: 2.8rem;
		padding: .5rem 2.8rem .5rem 2.2rem;
	}

	/*----- 記事 */
	.C-News-list__item:not(:first-child) a{
		padding-top: 5rem;
	}
	.C-News-list__item a{
		width: 100%;
		padding-bottom: 3.5rem;
		padding-right: 0;
		flex-wrap: wrap;
	}
	.C-News-list__itemCategory{
		width: 22rem;
		font-size: 2.6rem;
		height: 5.4rem;
	}
	.C-News-list__itemBody{
		width: 100%;
		padding-left: 0;
		margin-top: 1.8rem;
		padding-right: 8.5rem;
	}
	.C-News-list__itemTime{
		font-size: 2.6rem;
		margin-bottom: 0;
		padding-left: 2.5rem;
	}
	.C-News-list__itemCategory + .C-News-list__itemTime{
		display: block;
	}
	.C-News-list__itemBody .C-News-list__itemTime{
		display: none;
	}
	.C-News-list__itemTitle{
		font-size: 3.6rem;
		line-height: calc(5.6 / 3.6);
	}
	.C-News-list__itemBody .C-Arrow{
		width: 3.1rem;
		transform: translateY(0);
		top: 1em;
	}
	.C-News-list__itemBody + .C-Arrow{
		width: 3.1rem;
		transform: translateY(-50%);
		position: absolute;
		top: 50%;
		right: 0;
	}

}