@charset "utf-8";

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

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

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

/* 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;
	position: relative;
	z-index: 5000;
}

@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_slim{
		width: 100%;
		max-width: var(--maxwidth_slim);
		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;
	}
	.maxwidth_wide{
		width: 100%;
		max-width: var(--maxwidth_wide);
		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);
	}

}



/*-------------------------------
	パーツ
-------------------------------*/
/*----- キービジュアル */
.Keyvisual_01{
    width: 100%;
    height: 59rem;
    margin-top: -7rem;
    background-size: cover;
	background-position: center;
}
.Keyvisual_03{
    width: 100%;
    height: 35rem;
}
.Keyvisual_03 .C-Title{
	margin-bottom: 0!important;
}
/*----- 見出し */
/* 大見出し */
.C-Title{
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.C-Title > *:nth-of-type(1){
	color: var(--maincolor);
	font-size: 6rem;
	font-weight: 600;
	line-height: 1;
	display: block;
	text-align: center;
}
.C-Title > *:nth-of-type(2){
	color: var(--subcolor);
	font-size: 2rem;
	letter-spacing: .3em;
	margin-top: 1.5rem;
	font-weight: 600;
	line-height: 1;
	display: block;
}
/* 日本語／英語 */
.C-Title:has(.C-Title__jp:nth-of-type(1)):has(.C-Title__en:nth-of-type(2)){
	margin-bottom: 12rem;
	align-items: center;
}
.C-Title__jp:nth-of-type(1)::before{
	background: var(--subcolor);
	content: "";
	display: block;
	width: 11.3rem;
	height: .7rem;
	margin-bottom: 1.5rem;
	margin-left: auto;
	margin-right: auto;
}
/* 英語／日本語 */
.C-Title:has(.C-Title__en:nth-of-type(1)):has(.C-Title__jp:nth-of-type(2)){
	margin-bottom: 2.8rem;
	align-items: flex-start;
}
/* 白色 */
.C-Title.-white > *:nth-of-type(1),
.C-Title.-white .C-Title__jp:nth-of-type(2){
	color: #fff;
}
/*下層　見出し*/
.B-Title{
	color: var(--maincolor);
    font-size: 6rem;
    font-weight: 600;
    line-height: 1;
    display: block;
	margin-bottom: 6rem;
}
.B-Title span{
	line-height: 1.45;
}
.B-Title_underline{
	border-bottom: .7rem solid var(--subcolor);
    padding-bottom: 1.2rem;
    margin-bottom: 2.8rem;
    font-size: 6rem;
    font-weight: 600;
    line-height: calc(8.7 / 6);
    color: #fff;
}
.B-Title_underline.-white{
    color: #fff;
}
/* 中見出し */
.M-Title{
	color: var(--maincolor);
    font-size: 4rem;
    font-weight: 600;
    display: block;
	margin-bottom: 4rem;
	line-height: 1.44;
}
/*----- ボタン */
.C-Button{
	width: 26rem;
	border-radius: 10rem; 
}
.C-Button a{
	color: var(--maincolor);
	width: 100%;
	height: 6.6rem;
	font-size: 1.5rem;
	font-weight: 600;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1 !important;
	border-radius: 10rem;
}
.C-Button span{
	position: relative;
	overflow: hidden;
}
.C-Button span::before{
	transition: var(--transition);
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: .2rem;
	position: absolute;
	left: -100%;
	bottom: 0;
	right: 0;
}
.C-Button a:hover span::before{
	left: 0%;
}
/*----- ボタン大 */
.C-Button.-big{
	width: 53.6rem;
	border-radius: 10rem; 
	overflow: hidden;
}
.C-Button.-big a{
	height: 9.5rem;
	font-size: 3rem;
	color: #fff;
	background: var(--maincolor);
}
.C-Button.-big:hover a{
	color: var(--maincolor);
	background: #fff;
}
.C-Button.-big span::before{
	content: none;
}
@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_01{
		width: 100%;
		height: 60rem;
		margin-top: 12rem;
		background-size: cover;
	}
	.Keyvisual_01 .K-Title{
    	max-width: 60rem;
	}
	.Keyvisual_03{
		width: 100%;
		height: 35rem;
	}
	.Keyvisual_03 .C-Title{
		margin-bottom: 0!important;
	}

	/*----- 見出し */
	/* 大見出し */
	/* 日本語／英語 */
	.C-Title:has(.C-Title__jp:nth-of-type(1)):has(.C-Title__en:nth-of-type(2)){
		margin-bottom: 8.6rem;
	}
	/* 英語／日本語 */
	.C-Title:has(.C-Title__en:nth-of-type(1)):has(.C-Title__jp:nth-of-type(2)){
		margin-bottom: 0;
	}
	.C-Title__en:nth-of-type(1){
		font-size: 7rem;
	}
	.C-Title__jp:nth-of-type(2){
		font-size: 4rem;
		margin-top: 2.8rem;
	}

	/* 中見出し */
	/*下層　見出し*/
	.B-Title{
		font-size: 4rem;
	}
	.B-Title_underline{
		font-size: 4rem;
	}
	.B-Title_underline.-white{
		
	}
	/* 中見出し */
	.M-Title{
		font-size: 3.2rem
		
	}
	/*----- ボタン */
	.C-Button.-two{
		width: 28.5rem;
	}
	.C-Button{
		width: 100%;
	}
	.C-Button a{
		font-size: 2.5rem;
		height: 9.5rem;
	}
	.C-Button.-two a{
        height: 6.6rem;
    }
	.C-Button span::before{
		height: 2px;
	}

}



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

.header{
	width: 100%;
}
.header-top{
	height: 9.6rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	box-shadow: 0 .3rem .6rem rgba(0,0,0,.16);
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 9901;
	background: #fff;
}
.header-top__inner{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header-logo{
	width: 42.7rem;
}
.header-logo a{
	width: 100%;
	display: block;
}
.header-logo img{
	width: 100%;
}
.header-contact{
	width: calc(100% - 42.7rem);
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header-contact__tel{
	border-right: 2px solid var(--maincolor);
	height: 100%;
	padding-right: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-contact__tel a{
	width: 100%;
	display: flex;
    align-items: start;
    justify-content: center;
    line-height: 1;
}
.header-contact__tel a::before{
	content: "";
	width: 3.4rem;
	height: 4.6rem;
	display: block;
	background-image: url(../images/common/icon_tel.svg);
}
.header-contact__tel span{
	font-size: 3.6rem;
	font-weight: 600;
	line-height: 1;
	display: block;
}
.header-contact__item{
	border-right: 2px solid var(--maincolor);
	width: 13rem;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}
.header-contact__item a{
	line-height: 1;
	font-weight: 600;
	display: block;
	text-align: center;
}
.header-contact__item a::before{
	content: "";
	display: block;
	margin-bottom: .6rem;
	margin-left: auto;
	margin-right: auto;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.header-contact__item.-instagram a{
	font-size: 1.5rem;
}
.header-contact__item.-instagram a::before{
	width: 4.1rem;
	height: 4.1rem;
	background-image: url(../images/common/icon_instagram.svg);
}

.header-contact__item.-mail a{
	font-size: 1.4rem;
}
.header-contact__item.-mail a::before{
	width: 5.4rem;
	height: 4rem;
	background-image: url(../images/common/icon_mail.svg);
}

.header-bottom{
	width: 100%;
	padding-top: calc(9.6rem + 3.4rem);
    position: relative;
    z-index: 9900;
}
.header-nav__inner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.header-nav__item{
	position: relative;
	z-index: 5000;
}
.header-nav__item:not(:last-child):not(.-company){
	margin-right: 8rem;
}
.header-nav__item > a{
	margin-bottom: 1.5rem;
	line-height: 1;
	font-weight: 600;
	color: #fff;
	display: block;
}
.header-nav.-black .header-nav__item > a{
	color: var(--maincolor);
}
.header-nav-child{
	border: 1px solid var(--maincolor);
	background: var(--graycolor);
	transition: var(--transition);
	min-width: 27.6rem;
	position: absolute;
	left: 50%;
	top: 3.5rem;
	transform: translateX(-50%);
	visibility: hidden;
	opacity: 0;
}
.header-nav-child__item:not(:last-child){
	border-bottom: 1px solid var(--maincolor);
}
.header-nav-child__item > a{
	width: 100%;
	padding: 2.2rem 2.4rem 1.8rem;
	line-height: 1;
	font-weight: 600;
	display: block;
	opacity: 1 !important;
}
.header-nav-child__item > a:hover{
	background: var(--maincolor);
	color: #33C7BA;
}
.header-nav-child__list{
	padding: 1.2rem 2.2rem 2.4rem 2.2rem;
}
.header-nav-child__list-item{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.header-nav-child__list-item:not(:last-child){
	margin-bottom: .5rem;
}
.header-nav-child__list-item::before{
	content: "・";
	line-height: 1;
	display: block;
}
.header-nav-child__list-item a{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	opacity: 1 !important;
}
.header-nav-child__list-item a:hover{
	color: #33C7BA;
}

.header-nav__item:hover .header-nav-child{
	opacity: 1;
	visibility: visible;
}

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

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

	.header-nav__item:not(:last-child):not(.-company){
		margin-right: 3rem;
	}
	
}
@media screen and (max-width:960px) and (min-width: 769px){

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

	.header-top{
		height: 16rem;
		padding-top: 0;
		padding-bottom: 0;
		box-shadow: none;
	}
	.header-top__inner{
		padding-left: 1.2rem;
		padding-right: 4rem;
	}
	.header-logo{
		width: 58.6rem;
	}
	.header-bottom{
		padding-top: 0;
	}
	.header-contact{
		display: none;
	}

	/*----- ナビ */
	.header-bottom{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding-left: 22.5rem;
		z-index: 9990;
		display: none;
	}
	.header-bottom__inner{
		background: var(--maincolor);
		width: 100%;
		height: 100%;
		padding-top: 16rem;
	}
	.header-nav{
		height: 100%;
		padding-bottom: 10rem;
		overflow: auto;
	}
	.header-nav__inner{
		flex-direction: column;
	}
	.header-nav__item{
		width: 100%;
		min-height: 6.5rem;
		border-bottom: 1px solid #fff;
	}
	.header-nav__item:first-child{
		border-top: 1px solid #fff;
	}
	.header-nav__item:not(:last-child){
		margin-right: 0;
	}
	.header-nav__toggle{
		position: absolute;
		right: 0;
		top: 0;
		width: 6.5rem;
		height: 6.5rem;
	}
	.header-nav__toggle::before,
	.header-nav__toggle::after{
		transition: var(--transition);
		content: "";
		display: block;
		width: 2.6rem;
		height: 2px;
		background: #fff;
		position: absolute;
		right: 50%;
		top: 50%;
		transform: translate(50%,-50%);
	}
	.header-nav__toggle::after{
		transform: translate(50%,-50%) rotate(90deg);
	}
	.header-nav__toggle.on::after{
		transform: translate(50%,-50%) rotate(0deg);
	}
	.header-nav__item > a{
		font-size: 2rem;
		padding: 2.2rem 4rem;
		margin-bottom: 0;
	}
	.header-nav-child{
		border: none;
		border-top: 1px solid #fff;
		min-width: 100%;
		position: static;
		visibility: visible;
		opacity: 1;
		background: #0a0d31;
		display: none;
		transform: translateX(0);
	}
	.header-nav-child__item:not(:last-child){
		border-bottom: none;
	}
	.header-nav-child__item > a{
		padding: 1.8rem 4rem;
		font-size: 2rem;
		color: #fff;
	}
	.header-nav-child__list{
		padding-left: 4rem;
		padding-bottom: 1.2rem;
		padding-right: 4rem;
	}
	.header-nav-child__item:last-child .header-nav-child__list{
		padding-bottom: 2.2rem;
	}
	.header-nav-child__list-item{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.header-nav-child__list-item:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.header-nav-child__list-item::before{
		font-size: 1.8rem;
		color: #fff;
	}
	.header-nav-child__list-item a{
		font-size: 1.8rem;
		color: #fff;
	}

	.header-nav__item:hover .header-nav-child{
		opacity: 1;
		visibility: visible;
	}

	.header-nav__item.-policy{
		padding-left: 4rem;
		padding-right: 4rem;
		padding-top: 3.8rem;
		border-bottom: none;
	}
	.header-nav-policy__item{
		width: 100%;
		line-height: 1;
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}
	.header-nav-policy__item:not(:last-child){
		margin-bottom: 1.5rem;
	}
	.header-nav-policy__item::before{
		content: "・";
		line-height: 1;
		display: block;
		color: #fff;
	}
	.header-nav-policy__item a{
		font-size: 1.8rem;
		line-height: 1;
		font-weight: 500;
		color: #fff;
		display: block;
	}

	/*----- ハンバーガー */
	.menu-button {
		width: 16rem;
		height: 16rem;
		padding: 6rem 4rem;
		box-sizing: border-box;
		display: block !important;
		z-index: 9990;
		cursor: pointer;
		position: fixed;
		right: 0;
		top: 0;
	}
	.menu-button i{
		background: var(--maincolor);
		display: block;
		width: 100%;
		height: .4rem;
		-webkit-transition: background 0.5s;
		transition: background 0.5s;
		position: relative;
		left: 0px;
		top: 1.8rem;
	}
	.menu-button i:before,
	.menu-button i:after{
		background: var(--maincolor);
		content: "";
		display: block;
		width: 100%;
		height: .4rem;
		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(1.8rem);
		-ms-transform: translateY(1.8rem);
		transform: translateY(1.8rem);;
	}
	.menu-button i:after{
		-webkit-transform: translateY(-1.8rem);
		-ms-transform: translateY(-1.8rem);
		transform: translateY(-1.8rem);
	}
	.is_open i{
		background: transparent;
	}
	.is_open i:after{
		transform:translateY(0px) rotate(-45deg);
		background: #fff;
	}
	.is_open i:before{
		transform:translateY(0px) rotate(45deg);
		background: #fff;
	}

}



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

.footer{
	background: #fff;
}
.footer__inner{
	width: 100%;
	padding-top: 4.5rem;
	padding-bottom: 4.5rem;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.footer-information{
	width: 42.7rem;
}
.footer-logo{
	width: 100%;
	margin-bottom: 3rem;
}
.footer-logo img{
	width: 100%;
}
.footer__adress{
	color: var(--maincolor);
	margin-bottom: 1.2rem;
	line-height: calc(3 / 2);
}
.footer__tel{
	margin-bottom: 3rem;
}
.footer__tel a{
	color: var(--maincolor);
	line-height: calc(3 / 2);
	display: block;
}
.footer__instagram{
	display: inline-block;
}
.footer__instagram a{
	color: var(--maincolor);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-weight: 600;
}
.footer__instagram a::before{
	content: "";
	width: 4.1rem;
	height: 4.1rem;
	margin-right: .8rem;
	background-image: url(../images/common/icon_instagram.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
}

.footer-nav{
	width: calc(100% - 42.7rem);
	padding-top: 3.4rem;
	padding-left: 11.8rem;
}
.footer-nav__inner{
	width: 100%;
	margin-bottom: 4.2rem;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer-nav__item{
	max-width: 22.2rem;
}
.footer-nav__item:not(:last-child){
	margin-right: 3.5rem;
}
.footer-nav__item > a{
	line-height: 1;
	font-weight: 600;
	display: block;
}
.footer-nav-child{
	margin-top: 2.4rem;
}
.footer-nav-child__item + .footer-nav-child__item{
	margin-top: 3.2rem;
}
.footer-nav-child__item:has(.footer-nav-child__list) + .footer-nav-child__item{
	margin-top: 1.8rem;
}
.footer-nav-child__item > a{
	font-weight: 500;
	line-height: 1;
	display: block;
}
.footer-nav-child__list{
	margin-top: 1rem;
}
.footer-nav-child__list-item{
	font-size: 1.6rem;
	font-weight: 500;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
}
.footer-nav-child__list-item::before{
	content: "・";
	line-height: calc(3 / 1.6);
	display: block;
}
.footer-nav-child__list-item > a{
	line-height: calc(3 / 1.6);
	display: block;
}
.footer-nav__last a{
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.footer-nav__last a::before{
	content: "＞";
	line-height: 1;
	display: block;
}

.footer__copyright{
	background: var(--maincolor);
	width: 100%;
	height: 6.2rem;
	font-size: 1.6rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

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

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

	.footer-nav{
		padding-left: 5rem;
	}
	.footer-nav__inner{
		flex-wrap: wrap;
	}
	.footer-nav__item{
		width: calc(100% / 4);
		max-width: calc(100% / 4);
	}
	.footer-nav__item:not(:nth-last-of-type(-n+4)){
		margin-bottom: 5rem;
	}
	.footer-nav__item:not(:last-child){
		margin-right: 0;
	}

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

	.footer-nav__item{
		width: calc(100% / 3);
		max-width: calc(100% / 3);
	}
	.footer-nav__item:not(:nth-last-of-type(-n+3)){
		margin-bottom: 5rem;
	}

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

	.footer-nav__item{
		width: calc(100% / 2);
		max-width: calc(100% / 2);
	}
	.footer-nav__item:not(:nth-last-of-type(-n+2)){
		margin-bottom: 5rem;
	}

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

	.footer__inner{
		flex-direction: column;
	}
	.footer-nav{
		padding-left: 0;
		width: 100%;
	}
	.footer-nav__item{
		width: calc(100% / 3);
	}

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

	.footer__inner{
		padding-top: 7.5rem;
		padding-bottom: 5.5rem;
		flex-direction: column;
	}
	.footer-information{
		line-height: 1;
	}
	.footer__adress{
		font-size: 2rem;
	}
	.footer__tel{
		font-size: 2rem;
	}
	.footer__instagram{
		display: block;
	}
	.footer__instagram a{
		font-size: 1.5rem;
	}

	.footer-nav{
		width: 100%;
		padding-top: 4.2rem;
		padding-left: 0;
	}
	.footer-nav__inner{
		margin-bottom: 4rem;
		flex-wrap: wrap;
	}
	.footer-nav__item{
		width: 100%;
		max-width: 100%;
	}
	.footer-nav__item:not(:last-child){
		margin-right: 0;
		margin-bottom: 4.2rem;
	}
	.footer-nav__item > a{
		font-size: 2rem;
	}
	.footer-nav-child{
		margin-top: 3rem;
	}
	.footer-nav-child__item + .footer-nav-child__item{
		margin-top: 2.5rem;
	}
	.footer-nav-child__item:has(.footer-nav-child__list) + .footer-nav-child__item{
		margin-top: 1.8rem;
	}
	.footer-nav-child__item > a{
		font-size: 2rem;
	}
	.footer-nav-child__list{
		margin-top: 1.5rem;
	}
	.footer-nav-child__list-item:not(:last-child){
		margin-bottom: .5rem;
	}
	.footer-nav__last a{
		justify-content: flex-start;
	}

	.footer__copyright{
		height: 3.6rem;
	}

	.footer-nav__item.-sale{
		width: 50%;
	}
	.footer-nav__item.-repair{
		width: 50%;
	}
	.footer-nav__item.-office .footer-nav-child{
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.footer-nav__item.-office .footer-nav-child__item{
		width: 50%;
	}
	.footer-nav__item.-office .footer-nav-child__item + .footer-nav-child__item{
		margin-top: 0;
	}
	.footer-nav__item.-recruit .footer-nav-child{
		width: 100%;
		overflow: hidden;
	}
	.footer-nav__item.-recruit .footer-nav-child__item{
		width: 50%;
		float: left;
	}
	.footer-nav__item.-recruit .footer-nav-child__item:nth-of-type(2){
		margin-top: 0;
	}

}
/*-------------------------------
	共通パーツ
-------------------------------*/

/*-------------------------------
	事業所紹介
-------------------------------*/

.Office{
	background: var(--graycolor);
	padding-bottom: 11.2rem;
}
.Office-block__inner{
	width: 100%;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	position: relative;
}
.Office-block__inner::after{
	background: var(--blackcolor);
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
}
.Office-block__item{
	position: relative;
}
.Office-block__item::after{
	background: var(--blackcolor);
	display: block;
	width: 1px;
	height: 100%;
	position: absolute;
	right: -3.2rem;
	top: 0;
	bottom: 0;
}
.Office-block__item a{
	opacity: 1 !important;
}
.Office-block__item-image{
	width: 100%;
}
.Office-block__item-image__inner{
	width: 100%;
	display: block;
	overflow: hidden;
}
.Office-block__item-image img{
	transition: var(--transition);
	width: 100%;
}
.Office-block__item-caption{
	margin-top: 2.4rem;
	font-weight: 600;
	line-height: 1;
	display: block;
}
.Office-block:not(:last-child){
	margin-bottom: 7.4rem;
}
.Office-block__title{
	width: 100vw;
	height: 9rem;
	margin-bottom: 12rem;
	font-size: 4rem;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	font-weight: 600;
	line-height: 1;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 6000;
}
.Office-block__title::before{
	background: var(--maincolor);
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	opacity: .1;
}

/*----- ホバー */
.Office-block__item a:hover .Office-block__item-image img{
	transform: scale(1.1);
}

/*----- レイアウト違い */
/* 2分割 */
.Office-block.-second .Office-block__inner{
	justify-content: space-between;
}
.Office-block.-second .Office-block__item{
	width: calc((100% - 6.4rem) / 2);
}
.Office-block.-second .Office-block__item:nth-of-type(2n+1)::after{
	content: "";
}
.Office-block.-second .Office-block__item:nth-child(n+3){
	margin-top: 5.2rem;
}
.Office-block.-second .Office-block__item:not(:nth-last-of-type(-n+2)){
	margin-bottom: 5.2rem;
}

/* 3分割 */
.Office-block.-third .Office-block__inner{
	justify-content: center;
}
.Office-block.-third .Office-block__item{
	width: calc((100% - (6.4rem * 2)) / 3);
}
.Office-block.-third .Office-block__item:not(:nth-of-type(3n)){
	margin-right: 6.4rem;
}
.Office-block.-third .Office-block__item:not(:last-child):not(:nth-of-type(3n))::after{
	content: "";
}
.Office-block.-third .Office-block__item:nth-child(n+4){
	margin-top: 5.2rem;
}
.Office-block.-third .Office-block__item:not(:nth-last-of-type(-n+3)){
	margin-bottom: 5.2rem;
}
@media screen and (max-width:768px){

	.Office{
		padding-bottom: 11.2rem;
	}
	.Office-block__inner{
		flex-direction: column;
	}
	.Office-block__inner::after{
		display: none;
	}
	.Office-block .Office-block__item:not(:first-child){
		margin-top: 4.5rem;
	}
	.Office-block .Office-block__item:not(:last-child){
		padding-bottom: 4.5rem;
	}
	.Office-block__item:not(:last-child)::after{
		content: "";
		display: block;
		width: 100%;
		height: 1px;
		right: 0;
		top: unset;
		bottom: 0;
	}
	.Office-block__item-caption{
		margin-top: 2rem;
		font-size: 2.5rem;
	}
	.Office-block:not(:last-child){
		margin-bottom: 9.5rem;
	}
	.Office-block__title{
		width: calc(100% + (var(--padding-leftright) * 2));
		margin-left: calc(var(--padding-leftright) * -1);
		margin-right: calc(var(--padding-leftright) * -1);
		margin-bottom: 8.8rem;
	}

	/*----- レイアウト違い */
	/* 2分割 */
	.Office-block.-second .Office-block__item{
		width: 100%;
	}
	.Office-block.-second .Office-block__item:not(:nth-last-of-type(-n+2)){
		margin-bottom: 0;
	}

	/* 3分割 */
	.Office-block.-third .Office-block__item{
		width: 100%;
	}
	.Office-block.-third .Office-block__item:not(:nth-of-type(3n)){
		margin-right: 0;
	}
	.Office-block.-third .Office-block__item:nth-child(n+4){
		margin-bottom: 0;
	}
	.Office-block.-third .Office-block__item:not(:nth-last-of-type(-n+3)){
		margin-bottom: 0;
	}
	

}