@charset "utf-8";

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

*,
*::before,
*::after{
	box-sizing: border-box;
	line-height: var(--line-height);
	word-wrap: break-word;
	font-feature-settings: "palt";
}
html{
	font-size: var(--root-font-size);
}
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(--transition);
	color: var(--maincolor);
}
*:not(.not-a) > a:hover,
*:not(.not-a) > .a:hover{
	opacity: var(--opacity);
}

/*----- コンテンツ */
.sec{
	padding-top: var(--padding-topbottom);
	padding-bottom: var(--padding-topbottom);
}
.main{
	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;
	}

}
@media screen and (max-width:1240px) 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{
		max-width: var(--maxwidth);
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}

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

}



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

/*----- 見出し */
/* 大見出し */

/* 中見出し */

/*----- ボタン */
.C-Button{
	width: 100%;
	max-width: 28.5rem;
}
.C-Button + .C-Button{
	margin-top: 2.5rem;
}
.C-Button a,
.C-Button .a{
	border: 2px solid var(--blackcolor);
	background: var(--blackcolor);
	width: 100%;
	height: 4.8rem;
	border-radius: 2.4rem;
	font-size: 1.8rem;
	letter-spacing: .06em;
	font-weight: 700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 0 .6rem rgba(0,0,.6,.18);
	opacity: 1 !important;
}
.C-Button a::after,
.C-Button .a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.9rem;
	background-image: url(../images/common/icon_arrow-white-naked.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 3rem;
	top: 50%;
	transform: translateY(-50%);
}
.C-Button a:hover,
.C-Button .a:hover{
	color: var(--blackcolor);
	background: #fff;
}
.C-Button a:hover::after,
.C-Button .a:hover::after{
	background-image: url(../images/common/icon_arrow-black-naked.svg);
	transform: translate(.5rem, -50%);
}
/* 白色 */
.C-Button.-white a,
.C-Button.-white .a{
	color: var(--blackcolor);
	background: #fff;
	border-color: #fff;
}
.C-Button.-white a::after,
.C-Button.-white .a::after{
	background-image: url(../images/common/icon_arrow-black-naked.svg);
}
.C-Button.-white a:hover,
.C-Button.-white .a:hover{
	background: var(--blackcolor);
	border-color: var(--blackcolor);
	color: #fff;
}
.C-Button.-white a:hover::after,
.C-Button.-white .a:hover::after{
	background-image: url(../images/common/icon_arrow-white-naked.svg);
}
.C-Button.-white.-border a,
.C-Button.-white.-border .a{
	border: 1px solid var(--blackcolor);
}
/* 青ボタン */
.C-Button.-blue a,
.C-Button.-blue .a{
	background: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff;
}
.C-Button.-blue a::after,
.C-Button.-blue .a::after{
	background-image: url(../images/common/icon_arrow-white-naked.svg);
}
.C-Button.-blue a:hover,
.C-Button.-blue .a:hover{
	color: var(--maincolor);
	background: #fff;
}
.C-Button.-blue a:hover::after,
.C-Button.-blue .a:hover::after{
	background-image: url(../images/common/icon_arrow-blue-naked.svg);
}

/*----- テキスト */
.C-Text{
	letter-spacing: .01em;
	text-align: justify;
}

/*----- lity */
.lity{
	background: rgba(0,0,0,.34) !important;
}

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

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

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

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

	/*----- 見出し */
	/* 大見出し */

	/* 中見出し */

	/*----- ボタン */
	.C-Button{
		max-width: 51rem;
		margin-left: auto;
		margin-right: auto;
	}
	.C-Button a,
	.C-Button .a{
		height: 8.8rem;
		border-radius: 4.4rem;
		font-size: 3rem;
	}
	.C-Button a::after,
	.C-Button .a::after{
		width: 2.9rem;
		height: 3rem;
		right: 7.4rem;
	}

}



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

.header{
	transition: none;
	width: 100%;
	height: 11rem;
	position: fixed;
	/* transition: var(--transition); */
	/* position: absolute; */
	left: 0;
	top: 0;
	right: 0;
	z-index: 9900;
	transform: translateY(0);
	opacity: 1;
}
.header::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: rgba(0,0,0,.5);
	visibility: hidden;
	opacity: 0;
}

.header__inner{
	transition: var(--transition);
	/* padding-top: 1rem; */
	padding-top: .5rem;
	background: #fff;
}
.header-top{
	padding-left: calc(var(--padding-leftright) + 1.5rem);
	padding-right: calc(var(--padding-leftright) + 1.5rem);
	border-bottom: 1px solid var(--blackcolor);
	transition: var(--transition);
	width: 100%;
	/* padding-bottom: 1.2rem; */
	padding-bottom: .5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 20rem;
	display: inline-block;
}
.header-logo a{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-image: url(../images/common/logo.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 1 !important;
}
.header-logo img{
	width: 100%;
	opacity: 0;
}
/* .header-logo a::before{
	content: "";
	display: block;
	width: 4.8rem;
	height: 4.8rem;
	background-image: url(../images/common/logo.png);
	background-image: image-set(url(../images/common/logo.png) 1x, url(../images/common/logo@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header-logo__text{
	transition: var(--transition);
	color: var(--mainkcolor);
	font-size: 2.4rem;
	padding-left: .8rem;
	line-height: 1;
	display: block;
} */

.header-top__nav{
	width: calc(100% - 25rem);
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-top__nav-item a{
	color: var(--blackcolor);
	line-height: 1;
	padding-left: 2.2rem;
	padding-top: .2rem;
	padding-bottom: .2rem;
	font-size: 1.4rem;
	font-weight: 700;
	position: relative;
	display: block;
	overflow: hidden;
	opacity: 1 !important;
}
.header-top__nav-item a::before{
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background-image: url(../images/common/icon_arrow-black-border.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(calc(-50%));
}
.header-top__nav-item a::after{
	transition: var(--transition);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(calc(-100% - 1px));
}
.header-top__nav-item a:hover{
	color: var(--maincolor);
}
.header-top__nav-item a:hover::before{
	background-image: url(../images/common/icon_arrow-circle1.svg);
}
.header-top__nav-item a:hover::after{
	transform: translateX(0%);
}
.header-top__nav-item:not(:first-child){
	margin-left: 2.6rem;
}
.header-top__nav-youtube{
	border: 1px solid var(--blackcolor);
	width: 2.8rem;
	margin-left: 4rem;
	border-radius: 50%;
}
.header-top__nav-youtube a{
	line-height: 1;
	display: block;
}
.header-top__nav-youtube img{
	width: 100%;
}

.header-bottom{
	padding-left: calc(var(--padding-leftright) + 1.5rem);
	padding-right: calc(var(--padding-leftright) + 1.5rem);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-bottom__nav{
	width: calc(100% - 35.2rem);
	padding-right: 5.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-bottom__nav-item{
	width: 25%;
	height: 6rem;
	overflow: hidden;
}
.header-bottom__nav-item > a,
.header-bottom__nav-item > .a{
	transition: var(--transition);
	color: var(--blackcolor);
	width: 100%;
	height: 100%;
	padding-top: .8rem;
	padding-bottom: .8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
	position: relative;
	opacity: 1 !important;
}
.header-bottom__nav-item:hover > a,
.header-bottom__nav-item:hover > .a{
	color: #B0BAC4 !important;
}
.header-bottom__nav-item > a::before,
.header-bottom__nav-item > .a::before{
	transition: var(--transition);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	left: -100%;
	bottom: 0;
	right: 0;
}
.header-bottom__nav-item:has(.nav__child:hover) > a::before,
.header-bottom__nav-item:has(.nav__child:hover) > .a::before,
.header-bottom__nav-item > a:hover::before,
.header-bottom__nav-item > .a:hover::before{
	left: 0;
}
.header-bottom__nav-item > a > span,
.header-bottom__nav-item > .a > span{
	width: 100%;
    height: 100%;
	/* line-height: calc(2.1 / 1.6); */
	line-height: 1.25;
	letter-spacing: .06em;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}
.header-bottom__nav-item > a > span::before,
.header-bottom__nav-item > .a > span::before,
.header-bottom__nav-item:last-child > a > span::after,
.header-bottom__nav-item:last-child > .a > span::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}
.header-bottom__nav-item:last-child > a > span::after,
.header-bottom__nav-item:last-child > .a > span::after{
	left: unset;
	right: 0;
}
.header-bottom__nav-button-wrap{
	width: 30rem;
	height: 4.5rem;
	border-radius: 4.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	box-shadow: 0 0 .6rem rgba(0,0,0,.09);
}
.header-bottom__nav-button{
	width: 50%;
	height: 100%;
	position: relative;
}
.header-bottom__nav-button:not(:last-child)::after{
	content: "";
	display: block;
	width: 1px;
	height:  calc(100% - 2.8rem);
	background: #fff;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.header-bottom__nav-button a{
	border: 1px solid var(--maincolor);
	background: var(--maincolor);
	width: 100%;
	height: 100%;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 1 !important;
}
.header-bottom__nav-button a::before{
	content: "";
	display: block;
	margin-right: 1rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.header-bottom__nav-button.-mail a{
	border-top-left-radius: 4.3rem;
	border-bottom-left-radius: 4.3rem;
	border-right: none;
}
.header-bottom__nav-button.-mail a::before{
	width: 1.7rem;
	height: 1.3rem;
	background-image: url(../images/common/icon_mail-white.svg);
}
.header-bottom__nav-button.-req a{
	border-top-right-radius: 4.3rem;
	border-bottom-right-radius: 4.3rem;
	border-left: none;
}
.header-bottom__nav-button.-req a::before{
	width: 1.8rem;
	height: 2.1rem;
	background-image: url(../images/common/icon_req-white.svg);
}
.header-bottom__nav-button a:hover{
	color: var(--maincolor);
	background: #fff;
}
.header-bottom__nav-button.-mail a:hover::before{
	background-image: url(../images/common/icon_mail.svg);
}
.header-bottom__nav-button.-req a:hover::before{
	background-image: url(../images/common/icon_req.svg);
}

.nav__child{
	transition: var(--transition);
	width: 100%;
	height: 0;
	position: absolute;
	top: 100%;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	overflow: hidden;	
	background: #ECF2F7;
}
.nav__child__inner {
	width: 100%;
	/* padding-top: 6.2rem;
	padding-bottom: 6.2rem; */
	padding-top: 2rem;
	padding-bottom: 2rem;
	min-height: 8rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.nav__child-title{
	width: 22rem;
}
.nav__child-title a{
	color: var(--maincolor);
	font-size: 2rem;
	font-weight: 700;
	line-height: calc(3 / 2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: left;
	position: relative;
	overflow: hidden;
	opacity: 1 !important;
}
.nav__child-title a::before{
	transition: var(--transition);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	position: absolute;
	left: -100%;
	bottom: 0;
}
.nav__child-title a:hover::before{
	left: 0%;
}
.nav__child-title a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 2.8rem;
	height: 2.8rem;
	background-image: url(../images/common/icon_arrow-circle2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.nav__child-title span{
	width: calc(100% - 2.8rem);
	line-height: calc(3 / 2);
	letter-spacing: 0;
	display: block;
}
.nav__child-item-wrap{
	width: calc(100% - 22rem);
	padding-left: 9.5rem;
	gap: 4.4rem 4rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.nav__child-item {
	width: calc((100% - (4rem * 2)) / 3);
	position: relative;
}
.nav__child-item a{
	width: 100%;
	padding-bottom: .5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
    position: relative;
	overflow: hidden;
	opacity: 1 !important;
}
.nav__child-item a::before {
	flex-shrink: 0;
	transition: var(--transition);
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.6rem;
    background-image: url(../images/common/icon_arrow-black-border.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.nav__child-item a::after{
	transition: var(--transition);
	background: linear-gradient(90deg, var(--maincolor) 0%, var(--maincolor) 50%, var(--blackcolor) 50%, var(--blackcolor) 100%);
	content: "";
	display: block;
	width: 200%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: -100%;
	bottom: 0;
	transform-origin: left;
}
.nav__child-item-text {
	color: var(--blackcolor);
	width: calc(100% - 1.6rem);
	padding-right: 1rem;
	font-size: 1.6rem;
	line-height: 1.5;
	letter-spacing: 0;
	font-weight: 700;
	display: block;
	text-align: left;
}
.nav__child-button{
	width: calc((100% - (4rem * 2)) / 3);
	transform: translateY(-.9rem);
}
.nav__child-button a{
	border: 1px solid var(--blackcolor);
	color: var(--blackcolor);
	width: 100%;
	height: 4.8rem;
	padding: .8rem 2rem .6rem;
	border-radius: 2.4rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 1 !important;
}
.nav__child-button a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background-image: url(../images/common/icon_arrow-black-border.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.nav__child-button a:hover{
	background: var(--maincolor);
	border-color: var(--maincolor);
	color: #fff;
}
.nav__child-button a:hover::after{
	background-image: url(../images/common/icon_arrow-white-border.svg);
}

.nav__child-item a:hover .nav__child-item-text{
	color: var(--maincolor);
}
.nav__child-item a:hover::before{
    background-image: url(../images/common/icon_arrow-border.svg);
}
.nav__child-item a:hover::after{
	left: 0%;
}

/* メニューをhoverした時のスタイル（子ナビ） */
.header:has(.nav__child:hover)::before,
.header:has(.header-bottom__nav-item .a:hover)::before{
	visibility: visible;
	opacity: 1;
}
.header-bottom__nav-item:hover .nav__child {
	height: 21rem;
}

.sp-nav{
	display: none;
}


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

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

	.header-top{
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.header-top__nav-item:not(:first-child){
		margin-left: 1.5rem;
	}
	.header-top__nav-youtube{
		margin-left: 2rem;
	}
	.header-bottom{
		padding-left: var(--padding-leftright);
		padding-right: var(--padding-leftright);
	}
	.header-bottom__nav{
		width: calc(100% - 30rem);
		padding-right: 2.5rem;
	}
	.header-bottom__nav-item a{
		letter-spacing: 0;
	}
	.header-bottom__nav-button-wrap{
		width: 30rem;
	}

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

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

	.header{
		height: auto;
	}
	.header__inner{
		padding-top: 2.4rem;
		padding-bottom: 2.8rem;
	}
	.header-top{
		height: 8.8rem;
		padding-left: 3rem;
		padding-bottom: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	.header-logo{
		width: 35.6rem;
	}
	.header-logo a{
		width: 100%;
	}
	/* .header-logo a::before{
		width: 7rem;
		height: 7rem;
	}
	.header-logo__text{
		font-size: 3.4rem;
		padding-left: 1.2rem;
	} */
	/* ナビオープン時 */
	.menu-button.is_open + .header .header-logo a::before{
		background-image: url(../images/common/logo.png);
		background-image: image-set(url(../images/common/logo.png) 1x, url(../images/common/logo@2x.png) 2x);
	}
	/* .menu-button.is_open + .header .header-logo__text{
		color: var(--maincolor);
	} */

	/*----- ナビ */
	.header-nav{
		display: none;
	}
	.header-top__nav{
		display: none;
	}
	.header-bottom{
		display: none;
	}

	.sp-nav{
		display: none;
		position: fixed;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 9000;
		background: #fff;
		overflow: scroll;
	}
	.sp-nav__inner{
		padding-top: 16.5rem;
		padding-bottom: 10rem;
	}
	.sp-nav__item{
		border-bottom: 1px solid var(--graycolor);
		padding-top: 1rem;
		padding-bottom: 1rem;
		position: relative;
	}
	.sp-nav__item:first-child{
		border-top: 1px solid var(--graycolor);
	}
	.sp-nav__item > a,
	.sp-nav__item-parent{
		color: var(--blackcolor);
		width: 100%;
		font-size: 3rem;
		font-weight: 700;
		letter-spacing: .06em;
		padding-left: 3rem;
		padding-right: 3rem;
		border-radius: 1.8rem;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.sp-nav__item:not(.-small) > a,
	.sp-nav__item-parent{
		height: 14rem;
	}
	.sp-nav__item-parent{
		color: var(--blackcolor);
		transition: var(--transition);
		width: 100%;
	}
	.sp-nav__item-parent > a{
		color: var(--blackcolor);
		width: 100%;
		display: block;
	}
	.sp-nav__item:not(.-small):not(:has(.sp-nav__child)) > a::after{
		content: "";
		display: block;
		width: 6.6rem;
		height: 6.6rem;
		background-image: url(../images/common/icon_arrow-circle1.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.sp-nav__item-parent.-current{
		background: rgba(176,186,196,.21);
	}
	.sp-nav__item-text{
		width: calc(100% - 6.6rem);
		height: 100%;
		line-height: calc(6 / 4);
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	/* 小さいナビ */
	.sp-nav__item.-small > a{
		height: 9rem;
		font-weight: 500;
	}
	.sp-nav__item.-small > a::after{
		content: "";
		display: block;
		width: 2.8rem;
		height: 3rem;
		background-image: url(../images/common/icon_arrow-black-naked.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.sp-nav__item.-small .sp-nav__item-text{
		width: calc(100% - 2.8rem);
	}
	/* 子ナビ持ち */
	.sp-nav__item-button{
		width: 6.6rem;
		height: 6.6rem;
		background-image: url(../images/common/icon_open.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
		display: block;
	}
	.sp-nav__item-button.-current{
		background-image: url(../images/common/icon_close.svg);
	}
	.sp-nav__child{
		display: none;
		padding-left: 6rem;
	}
	.sp-nav__child-item:not(:last-child){
		border-bottom: 1px solid #ddd;
	}
	.sp-nav__child-item a{
		color: var(--blackcolor);
		width: 100%;
		padding-top: 2rem;
		padding-bottom: 2rem;
		font-size: 3rem;
		letter-spacing: .06em;
		font-weight: 500;
		line-height: calc(6 / 4);
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.sp-nav__child-item a::before{
		background: var(--maincolor);
		content: "";
		display: block;
		width: 2rem;
		height: 2rem;
		border-radius: 50%;
	}
	.sp-nav__child-item-text{
		width: calc(100% - 2rem);
		padding-left: 1.4rem;
		line-height: calc(6 / 4);
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}
	.sp-nav__child-item-text[data-tag]::before{
		content: attr(data-tag);
		width: 17.5rem;
		font-size: 2.4rem;
		line-height: 1;
		display: block;
	}
	.sp-nav-last{
		padding-top: 5.6rem;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.sp-nav-last__button{
		width: calc(100% - 8.6rem);
		padding-right: 3.4rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.sp-nav-last__button-item{
		background: var(--maincolor);
		width: 50%;
		position: relative;
	}
	.sp-nav-last__button-item:not(:last-child)::after{
		content: "";
		display: block;
		width: 1px;
		height: calc(100% - 4rem);
		background: #fff;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}
	.sp-nav-last__button-item a{
		width: 100%;
		height: 8.8rem;
		font-weight: 700;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sp-nav-last__button-item a::before{
		content: "";
		display: block;
		margin-right: 1rem;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center center;
	}
	.sp-nav-last__button-item.-mail{
		border-top-left-radius: 4.4rem;
		border-bottom-left-radius: 4.4rem;
	}
	.sp-nav-last__button-item.-mail a::before{
		width: 3.4rem;
		height: 2.6rem;
		background-image: url(../images/common/icon_mail-white.svg);
	}
	.sp-nav-last__button-item.-req{
		border-top-right-radius: 4.4rem;
		border-bottom-right-radius: 4.4rem;
	}
	.sp-nav-last__button-item.-req a::before{
		width: 3.6rem;
		height: 4.2rem;
		background-image: url(../images/common/icon_req-white.svg);
	}
	
	.sp-nav-last__youtube{
		width: 8.6rem;
		height: 8.6rem;
	}
	.sp-nav-last__youtube a{
		border-radius: 50%;
		border: 1px solid var(--blackcolor);
		display: block;
	}
	.sp-nav-last__youtube img{
		width: 100%;
	}

	/*----- ハンバーガー */
	.menu-button {
		transition: var(--transition);
		background: var(--maincolor);
		width: 8.8rem;
		height: 8.8rem;
		padding: 3rem 2.7rem;
		border-radius: 1.4rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9990;
		cursor: pointer;
		position: fixed;
		right: 3rem;
		top: 2.4rem;
	}
	.menu-button i{
		transition: var(--transition);
		display: block;
		width: 100%;
		height: 2px;
		position: relative;
		left: 0px;
		top: calc(1.4rem - 1px);
		background: #fff;
	}
	.menu-button i:before,
	.menu-button i:after{
		transition: var(--transition);
		content: "";
		display: block;
		width: 100%;
		height: 2px;
		position: absolute;
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
		background: #fff;
	}
	.menu-button i:before{
		-webkit-transform: translateY(1.4rem);
		-ms-transform: translateY(1.4rem);
		transform: translateY(1.4rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-1.4rem);
		-ms-transform: translateY(-1.4rem);
		transform: translateY(-1.4rem);
	}
	.menu-button.is_open{
		background: var(--maincolor);
	}
	.menu-button.is_open i{
		background: transparent;
	}
	.menu-button.is_open i:after{
		transform:translateY(0px) rotate(-45deg);
		background: #fff;
	}
	.menu-button.is_open i:before{
		transform:translateY(0px) rotate(45deg);
		background: #fff;
	}

}



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

.footer{
	background: var(--blackcolor);
	padding-top: 15rem;
	margin-top: -5rem;
	overflow: hidden;
	color: #fff;
}
.footer-top{
	width: 100%;
	margin-bottom: 9.8rem;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.footer-top__left{
	width: 57rem;
	padding-right: 4rem;
}
.footer-top__logo{
	max-width: 38.4rem;
	margin-bottom: 3.8rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-top__logo img{
	width: 100%;
}
/* .footer-top__logo::before{
	content: "";
	display: block;
	width: 5.8rem;
	height: 5.8rem;
	background-image: url(../images/common/logo-white.png);
	background-image: image-set(url(../images/common/logo-white.png) 1x, url(../images/common/logo-white@2x.png) 2x);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.footer-top__logo-text{
	width: calc(100% - 5.8rem);
	font-size: 3.8rem;
	padding-left: 1rem;
	letter-spacing: .01em;
	line-height: 1;
	display: inline-block;
} */
.footer-top__address{
	margin-bottom: 4.8rem;
}
.footer-top__address-text{
	font-size: 1.4rem;
	margin-bottom: 1.2rem;
	font-weight: 500;
	letter-spacing: .02em;
}
.footer-top__address-map{
	width: 15rem;
	display: inline-block;
}
.footer-top__address-map a{
	width: 100%;
	font-size: 1.4rem;
	padding-bottom: .6rem;
	font-weight: 500;
	letter-spacing: .02em;
	border-bottom: 1px solid #fff;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-top__address-map a::after{
	content: "";
	display: block;
	width: 1.4rem;
	height: 1.5rem;
	background-image: url(../images/common/icon_blank-white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.footer-top__nav{
	width: 100%;
	padding-top: 4rem;
	border-top: 1px solid #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-top__nav-item{
	min-width: 21.2rem;
	line-height: 1;
	display: block;
}
.footer-top__nav-item:not(:nth-last-of-type(-n+2)){
	margin-bottom: 2.6rem;
}
.footer-top__nav-item a{
	padding-left: 2.2rem;
	letter-spacing: .06em;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	position: relative;
	display: inline-block;
	opacity: 1 !important;
}
.footer-top__nav-item a::before{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-image: url(../images/common/icon_arrow-white-border.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.footer-top__nav-item a:hover::before{
	transform: translate(.25rem,-50%);
}

.footer-top__map{
	width: calc(100% - 57rem);
}
.footer-top__map-inner{
	width: calc(100% + (100vw - var(--maxwidth)) / 2 + var(--padding-leftright)); /* エリアの要素＋コンテンツエリアを除いた右側の余白＋padding-rightの余白 */
	height: 100%;
	border-top-left-radius: 2rem;
	border-bottom-left-radius: 2rem;
	overflow: hidden;
}
.footer-top__map iframe{
	width: calc(100% + 50rem);
	height: calc(100% + 50rem);
	transform: translate(-25rem,-25rem);
}

.footer-bottom{
	width: 100%;
	padding-bottom: 10rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bottom-tel{
	width: calc(100% - 55rem);
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-tel__title{
	font-weight: 700;
	letter-spacing: .01em;
	line-height: calc(2.5 / 1.6);
}
.footer-bottom-tel__body{
	border-left: 1px solid #fff;
	padding-left: 1.8rem;
}
.footer-bottom-tel__tel{
	font-family: var(--en);
	font-size: 4.8rem;
	letter-spacing: 0;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
}
.footer-bottom-tel__tel::before{
	content: attr(data-tag);
	font-size: 2.5rem;
	letter-spacing: 0;
	font-weight: 700;
	line-height: 1;
	display: inline-block;
}
.footer-bottom-tel__time{
	font-size: 1.8rem;
	font-weight: 500;
}
.footer-bottom-button{
	width: 55rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-bottom-button__item{
	width: calc((100% - 2rem) / 2);
	border-radius: 4rem;
	overflow: hidden;
}
.footer-bottom-button__item a{
	color: var(--blackcolor);
	width: 100%;
	height: 8rem;
	font-size: 2rem;
	padding-left: 2rem;
	font-weight: 700;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 1 !important;
}
.footer-bottom-button__item a::before{
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 2rem;
	top: 50%;
	transform: translateY(-50%);
}
.footer-bottom-button__item.-req a::before{
	background-image: url(../images/common/icon_req-black.svg);
	width: 2.5rem;
	height: 2.9rem;
}
.footer-bottom-button__item.-mail a::before{
	background-image: url(../images/common/icon_mail-black.svg);
	width: 2.3rem;
	height: 1.8rem;
}
.footer-bottom-button__item a:hover{
	background: #ffd23c;
}

.footer-last{
	padding-top: 2.8rem;
	padding-bottom: 2.6rem;
	border-top: 1px solid #fff;
}
.footer-last__inner{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-last__policy{
	line-height: 1;
}
.footer-last__policy a{
	font-size: 1.4rem;
	line-height: 1;
	font-weight: 700;
	color: #fff;
	display: inline-block;
}
.footer-last__copyright{
	font-size: 1.2rem;
	letter-spacing: .02em;
	font-weight: 500;
	line-height: 1;
}

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

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

	.footer-top__left{
		width: 50%;
	}
	.footer-top__nav-item{
		width: calc(50% - .5em);
		min-width: unset;
	}
	.footer-top__nav-item a{
		line-height: 1.25;
	}
	.footer-top__map{
		width: 50%;
	}

	.footer-top__map-inner{
		width: calc(100% + var(--padding-leftright));
	}

	.footer-bottom-tel{
		width: 45%;
		flex-direction: column;
	}
	.footer-bottom-tel__title{
		padding-bottom: .5rem;
		margin-bottom: 1.5rem;
		border-bottom: 1px solid #fff;
	}
	.footer-bottom-tel__title br{
		display: none;
	}
	.footer-bottom-tel__body{
		border-left: none;
		padding-left: 0;
		text-align: center;
	}
	.footer-bottom-button{
		width: 55%;
	}
	.footer-bottom-button__item a{
		letter-spacing: 0;
	}

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

	.footer-top__nav{
		flex-direction: column;
	}
	.footer-top__nav-item{
		width: 100%;
	}
	.footer-top__nav-item:not(:last-child){
		margin-bottom: 2.6rem;
	}

	.footer-bottom{
		flex-direction: column;
	}
	.footer-bottom-tel{
		width: 100%;
		margin-bottom: 2.5rem;
	}
	.footer-bottom-button{
		width: calc(100% - (var(--padding-leftright) * 2));
	}
}
@media screen and (max-width:768px){

	.footer{
		padding-top: 15.8rem;
	}
	.footer-top{
		margin-bottom: 5.5rem;
		padding-bottom: 7.4rem;
		border-bottom: 1px solid #fff;
		flex-direction: column;
	}
	.footer-top__left{
		width: 100%;
		padding-right: 0;
	}
	.footer-top__logo{
		max-width: 44.2rem;
		margin-bottom: 3.2rem;
		margin-left: auto;
		margin-right: auto;
		justify-content: center;
	}
	/* .footer-top__logo::before{
		width: 8.8rem;
		height: 8.8rem;
	}
	.footer-top__logo-text{
		width: auto;
		font-size: 4.3rem;
		padding-left: 1.6rem;
	} */
	.footer-top__address{
		margin-bottom: 0;
	}
	.footer-top__address-text{
		font-size: 2.4rem;
		margin-bottom: 3rem;
		letter-spacing: .01em;
		text-align: center;
	}
	.footer-top__address-map{
		width: 30rem;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
	.footer-top__address-map a{
		font-size: 3rem;
		padding-bottom: 1.2rem;
		letter-spacing: 0;
	}
	.footer-top__address-map a::after{
		width: 2.7rem;
		height: 3rem;
	}

	.footer-top__nav{
		display: none;
	}

	.footer-top__map{
		display: none;
	}

	.footer-bottom{
		width: 100%;
		padding-bottom: 4rem;
		flex-direction: column;
	}
	.footer-bottom-tel{
		width: 100%;
		margin-bottom: 2.3rem;
		flex-direction: column;
	}
	.footer-bottom-tel__title{
		font-size: 2.4rem;
		margin-bottom: 1rem;
		line-height: 1;
	}
	.footer-bottom-tel__title br{
		display: none;
	}
	.footer-bottom-tel__body{
		border-left: none;
		padding-left: 0;
	}
	.footer-bottom-tel__tel{
		font-size: 6.8rem;
		margin-bottom: 1rem;
	}
	.footer-bottom-tel__tel::before{
		font-size: 3.1rem;
	}
	.footer-bottom-tel__time{
		font-size: 2.4rem;
		text-align: center;
	}
	.footer-bottom-button{
		width: 100%;
	}
	.footer-bottom-button__item{
		width: calc((100% - 3rem) / 2);
		border-radius: 4.4rem;
	}
	.footer-bottom-button__item a{
		height: 8.8rem;
		font-size: 2.4rem;
		padding-left: 2.5rem;
	}
	.footer-bottom-button__item a::before{
		left: 3.4rem;
	}

	.footer-last{
		padding-top: 0;
		padding-bottom: 0;
		border-top: none;
	}
	.footer-last__inner{
		flex-direction: column;
	}
	.footer-last__policy{
		line-height: 1;
		margin-bottom: 3.2rem;
	}
	.footer-last__policy a{
		font-size: 2.4rem;
		letter-spacing: .02em;
		font-weight: 400;
		text-decoration: underline;
		display: block;
	}
	.footer-last__copyright{
		width: 100%;
		padding-top: 1.8rem;
		padding-bottom: 1.5rem;
		border-top: 1px solid #fff;
		font-size: 2rem;
		text-align: center;
	}

}



/*-------------------------------
	ぱんくず
-------------------------------*/

.Breadclumb{
	margin-top: 11rem;
	padding-top: 11.6rem;
	padding-bottom: 1rem;
}
.Breadclumb__inner{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.Breadclumb__item{
	color: var(--blackcolor);
	font-size: 1.4rem;
}
.Breadclumb__item:not(:last-child)::after{
	content: "-";
	margin-left: .5rem;
	margin-right: .5rem;
}
.Breadclumb__item a{
	color: var(--blackcolor);
	text-decoration: underline;
}

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

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

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

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

}



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

.Keyvisual{
	padding-bottom: 10rem;
}
.Keyvisual__inner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.Keyvisual__content{
	width: calc(100% - 53rem);
	padding-bottom: 6.8rem;
	padding-right: 9.5rem;
	position: relative;
}
.Keyvisual__title{
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.Keyvisual__title-en{
	font-family: var(--en);
	color: var(--maincolor);
	padding-top: 1.5rem;
	margin-right: 2rem;
	font-weight: 500;
	letter-spacing: .06em;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	position: relative;
}
.Keyvisual__title-en::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}
.Keyvisual__title-jp{
	font-family: var(--mincho);
	font-size: 4rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: calc(5 / 4);
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-feature-settings: normal;
}
.Keyvisual__message{
	padding-top: 54rem;
}
.Keyvisual__message-title{
	font-family: var(--mincho);
	font-size: 2.4rem;
	margin-bottom: 7rem;
	letter-spacing: .05em;
	line-height: calc(4 / 2.4);
	font-weight: 700;
}
.Keyvisual__image{
	width: 53rem;
	position: sticky;
	right: 0;
	top: 0;
}
.Keyvisual__image img{
	/* width: calc(100% + 13rem); */
	width: 50vw;
	height: 60rem;
	border-bottom-left-radius: 3rem;
	object-fit: cover;
}

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

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

	.Keyvisual__content{
		width: calc(100% - 40rem);
		padding-right: 5rem;
	}
	.Keyvisual__image{
		width: 40rem;
	}
	.Keyvisual__image img{
		width: calc(100% + var(--padding-leftright));
	}

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

	.Keyvisual__content{
		width: calc(100% - 30rem);
		padding-right: 5rem;
	}
	.Keyvisual__image{
		width: 30rem;
	}

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

	.Keyvisual{
		padding-bottom: 17.5rem;
	}
	.Keyvisual__inner{
		flex-direction: column-reverse;
	}
	.Keyvisual__content{
		width: 100%;
		padding-top: 7.5rem;
		padding-right: 0;
		padding-bottom: 0;
	}
	.Keyvisual__title{
		position: static;
	}
	.Keyvisual__title-en{
		font-size: 2.2rem;
		margin-right: 1.5rem;
	}
	.Keyvisual__message{
		padding-top: 19.6rem;
	}
	.Keyvisual__message-title{
		font-size: 3.2rem;
		margin-bottom: 8.4rem;
		line-height: calc(6 / 3.2);
	}
	.Keyvisual__image{
		width: 100%;
		position: static;
	}
	.Keyvisual__image img{
		width: calc(100% + var(--padding-leftright));
		height: auto;
	}

}



/*-------------------------------
	お問い合わせ（共通）
-------------------------------*/

.C-Contact{
	padding-top: 25.5rem;
	padding-bottom: 14.2rem;
	border-bottom-left-radius: 5rem;
	border-bottom-right-radius: 5rem;
	background-image: url(../images/common/bg_c-contact.jpg);
	background-image: image-set(url(../images/common/bg_c-contact.jpg) 1x, url(../images/common/bg_c-contact@2x.jpg) 2x);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}
.C-Contact::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 4000;
	background: #522C1B;
	opacity: .25;
}
.C-Contact::after{
	content: "";
	display: block;
	width: 71.8rem;
	height: 11.8rem;
	background-image: url(../images/common/ojb_c-contact.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	position: absolute;
	left: -1.6rem;
	top: 5rem;
}
.C-Contact__inner{
	position: relative;
	z-index: 6000;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.C-Contact__title{
	font-size: 3.2rem;
	margin-bottom: 3.2rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	color: #fff;
}
.C-Contact-example{
	max-width: 46.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.C-Contact-example__image{
	width: 15rem;
}
.C-Contact-example__image img{
	width: 100%;
}
.C-Contact-example__list{
	width: calc(100% - 15rem);
	padding-left: 2.7rem;
}
.C-Contact-example__list-item{
	width: 100%;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .01em;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Contact-example__list-item:not(:last-child){
	margin-bottom: 2rem;
}
.C-Contact-example__list-item::before{
	content: "";
	display: block;
	width: .8rem;
	height: .8rem;
	border-radius: 50%;
	background: #fff;
}
.C-Contact-example__list-item span{
	width: calc(100% - .8rem);
	padding-left: .6rem;
	letter-spacing: 0;
	line-height: 1;
	display: block;
}
.C-Contact__right{
	width: 53rem;
}
.C-Contact-button{
	width: 100%;
	margin-bottom: 2.8rem;
}
.C-Contact-button__item{
	width: 100%;
	border-radius: 4rem;
	box-shadow: 0 0 1rem rgba(0,0,0,.16);
	overflow: hidden;
}
.C-Contact-button__item:not(:last-child){
	margin-bottom: 1.8rem;
}
.C-Contact-button__item a{
	color: var(--blackcolor);
	width: 100%;
	height: 8rem;
	padding-left: 9rem;
	padding-right: 3.8rem;
	font-size: 2rem;
	font-weight: 700;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	opacity: 1 !important;
}
.C-Contact-button__item a::after{
	transition: var(--transition);
	content: "";
	display: block;
	width: 1.8rem;
	height: 1.9rem;
	background-image: url(../images/common/icon_arrow-black-naked.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}
.C-Contact-button__item a::before{
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left: 6rem;
	top: 50%;
	transform: translateY(-50%);
}
.C-Contact-button__item.-req a::before{
	width: 2.5rem;
	height: 2.9rem;
	background-image: url(../images/common/icon_req-black.svg);
}
.C-Contact-button__item.-mail a::before{
	width: 2.3rem;
	height: 1.8rem;
	background-image: url(../images/common/icon_mail-black.svg);
}
.C-Contact-button__item span{
	width: calc(100% - 1.8rem);
	padding-left: 1.5rem;
	line-height: 1;
	display: block;
}
.C-Contact-button__item a:hover{
	background: #ffd23c;
}
.C-Contact-button__item a:hover::after{
	transform: translateX(.5rem);
}
.C-Contact-tel{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.C-Contact-tel__title{
	width: 15.5rem;
	height: 6.7rem;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: calc(3 / 1.8);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.C-Contact-tel__title::after{
	content: "";
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	background: #fff;
}
.C-Contact-tel__body{
	width: calc(100% - 15.5rem);
	padding-left: 1.4rem;
}
.C-Contact-tel__tel{
	font-family: var(--en);
	font-size: 4.8rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	color: #fff;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	white-space: nowrap;
}
.C-Contact-tel__tel::before{
	content: attr(data-tag);
	font-family: var(--en);
	font-size: 2.5rem;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0;
	padding-bottom: .4rem;
	margin-right: .4rem;
	display: block;
}
.C-Contact-tel__time{
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: .01em;
	color: #fff;
}

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

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

	.C-Contact__right{
		width: 43rem;
	}
	.C-Contact-tel{
		flex-direction: column;
	}
	.C-Contact-tel__title{
		width: auto;
		height: auto;
		border-bottom: 1px solid #fff;
		justify-content: center;
		padding-bottom: .5rem;
		margin-bottom: 1.5rem;
	}
	.C-Contact-tel__title::after{
		display: none;
	}
	.C-Contact-tel__title br{
		display: none;
	}
	.C-Contact-tel__body{
		width: 100%;
		padding-left: 0;
	}
	.C-Contact-tel__tel{
		justify-content: center;
	}
	.C-Contact-tel__time{
		text-align: center;
	}
}
@media screen and (max-width:960px) and (min-width: 769px){

	.C-Contact__inner{
		flex-direction: column;
	}
	.C-Contact__left{
		margin-bottom: 5rem;
		margin-left: auto;
		margin-right: auto;
	}
	.C-Contact__right{
		margin-left: auto;
		margin-right: auto;
	}

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

	.C-Contact{
		padding-top: 18.6rem;
		padding-bottom: 13.6rem;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		background-image: url(../images/common/sp_bg_c-contact.jpg);
		background-image: image-set(url(../images/common/sp_bg_c-contact.jpg) 1x, url(../images/common/sp_bg_c-contact@2x.jpg) 2x);
	}
	.C-Contact::after{
		top: 3rem;
	}
	.C-Contact__inner{
		flex-direction: column;
	}
	.C-Contact__title{
		font-size: 3.6rem;
		margin-bottom: 4.5rem;
	}
	.C-Contact-example{
		width: 100%;
		max-width: 100%;
		margin-bottom: 7rem;
	}
	.C-Contact-example__list-item{
		letter-spacing: .01em;
	}
	.C-Contact-example__list-item:not(:last-child){
		margin-bottom: 2.5rem;
	}
	.C-Contact-example__list-item::before{
		width: 1rem;
		height: 1rem;
	}
	.C-Contact-example__list-item span{
		width: calc(100% - 1rem);
		padding-left: 1rem;
		font-size: 2.4rem;
	}
	.C-Contact__right{
		width: 100%;
	}
	.C-Contact-button{
		width: 100%;
		margin-bottom: 4.2rem;
	}
	.C-Contact-button__item{
		border-radius: 4.4rem;
	}
	.C-Contact-button__item:not(:last-child){
		margin-bottom: 2.8rem;
	}
	.C-Contact-button__item a{
		height: 8.8rem;
		padding-left: 10rem;
		padding-right: 3.2rem;
		font-size: 3rem;
	}
	.C-Contact-button__item a::after{
		width: 2.6rem;
		height: 3rem;
	}
	.C-Contact-button__item.-req a::before{
		width: 3.9rem;
		height: 4.5rem;
	}
	.C-Contact-button__item.-mail a::before{
		width: 3.5rem;
		height: 2.7rem;
	}
	.C-Contact-button__item span{
		width: calc(100% - 1.8rem);
		padding-left: 1.5rem;
		line-height: 1;
		display: block;
	}
	.C-Contact-tel__title{
		width: 21.5rem;
		height: 8rem;
		font-size: 2.4rem;
		line-height: calc(3.5 / 2.4);
	}
	.C-Contact-tel__body{
		width: calc(100% - 21.5rem);
		padding-left: 2rem;
	}
	.C-Contact-tel__tel{
		font-size: 5.2rem;
	}
	.C-Contact-tel__tel::before{
		font-size: 3rem;
	}
	.C-Contact-tel__time{
		font-size: 2rem;
}

}