/* -HEADER
--------------------------------------------------------------------------------------------- */

/* -togglemenu.css
--------------------------------------------------------------------------------------------- */

/**************************
ページヘッダー
**************************/

/**************************
ページヘッダー(ランダム)
**************************/
header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 103px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
header.view {
	height: 103px;
}

/* CONTAINER  */
.header__container {
	width: 95.555%;
	margin-right: auto;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: transparent;
	color: #fff;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1001;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
/* LOGO */
.header__logo {
	width: 230px;
}
.header__logo svg{
	width: 100%;
	height: 100%;
	display: block;
}
.header__logo .logo_color{
	fill: #fff;
	transition: .4s;
}
header.view .header__logo .logo_color, header.showmenu .header__logo .logo_color{
	fill: #464646;
	transition: .4s;
}
header.header_page .header__logo .logo_color{
	fill: #464646;
	transition: .4s;
}
/* GROUP */
.header-group {
	-ms-flex-item-align: stretch;
	-ms-grid-row-align: stretch;
	align-self: stretch;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header.showmenu .header-btn{
	opacity: 0;
	visibility: hidden;
}
.header-btn {
	display: flex;
	gap: 1rem;
}
.header-btn a{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 44px;
	border: 1px solid #fff;
	color: #fff;
	text-decoration: none;
	transition: .4s;
}
.header-btn a:hover{
	background-color: #fff;
	color: #464646;
}
header.view .header-btn a, header.header_page .header-btn a{
	border: 1px solid #464646;
	color: #464646;
}
header.view .header-btn a:hover, header.header_page .header-btn a:hover{
	background-color: #464646;
	color: #fff;
}
/* TRIGGER */
.menu-trigger {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 30px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	cursor: pointer;
	margin-left: 60px;
}
.menu-trigger > div {
	width: 30px;
	height: 10px;
	position: relative;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
header.view .menu-trigger span, header.showmenu .menu-trigger span{
	background-color: #464646;
}
header.header_page .menu-trigger span{
	background-color: #464646;
}
.menu-trigger span:nth-child(1) {
	top: 0;
}
.menu-trigger span:nth-child(2) {
	bottom: 0;
}
.menu-trigger.tgl-active span:nth-child(1) {
	top: 50%;
	-webkit-transform: rotate(45deg) translateY(-50%);
	-ms-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}
.menu-trigger.tgl-active span:nth-child(2) {
	bottom: 50%;
	-webkit-transform: rotate(-45deg) translateY(50%);
	-ms-transform: rotate(-45deg) translateY(50%);
	transform: rotate(-45deg) translateY(50%);
}
@media screen and (max-width: 1500px) {
	/* LOGO */
	.header__logo {
		width: 215px;
	}
}
@media screen and (max-width: 991px) {
	header {
		height: 80px;
	}
	header.view {
		height: 80px;
	}
	/* CONTAINER  */
	.header__container{
		width: 89.7435%;
	}
	/* BUTTON */
	.header-btn {
		display: none;
	}
	/* LOGO */
	.header__logo {
		width: 200px;
	}
}
@media screen and (max-width: 767px) {
	header {
		height: 58px;
	}
	header.view {
		height: 58px;
	}
	/* LOGO */
	.header__logo {
		width: 180px;
	}
	/* TRIGGER */
	.menu-trigger {
		width: 24px;
		height: 24px;
	}
	.menu-trigger > div {
		width: 24px;
		height: 10px;
	}
}
/* MENU TOGGLE */
.menu-toggle {
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	overflow-y: scroll;
	/* Hide scrollbar for IE, Edge and Firefox */
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	background-color: #fff;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	color: #464646;
	opacity: 0;
	visibility: hidden;
	z-index: -1;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
	display: none;
}
.menu-toggle.active {
	opacity: 1;
	visibility: visible;
	z-index: 1000;
}
.menu-toggle__inner {
	padding-top: 163px;
	padding-bottom: 95px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.menu-toggle .c-nav2 li {
	width: calc((100% - 80px)/2);
}
.menu-toggle .c-nav2 li:nth-child(n+3){
	margin-top: 95px;
}
.menu-toggle__left{
	width: 37.037%;
	position: relative;
}
.menu-toggle__right {
	width: 47.53%;
}
.menu-toggle .c-btns__wrapper {
	margin-bottom: 76px;
}
.menu-toggle .c-btns__wrapper .nav-btn1{
	background-color: #e6e6e6;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #a0a0a0;
	height: 140px;
	padding: 0 40px;
	position: relative;
	overflow: hidden;
	transition: color ease .4s;
}
.menu-toggle .c-btns__wrapper .nav-btn1::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #464646;
	transform-origin: 0% 50%;
	transform: scaleX(0);
	transition: transform ease .4s;
	z-index: 0;
}
.menu-toggle .c-btns__wrapper .nav-btn1:hover::before{
	transform: scaleX(1);
}
.menu-toggle .c-btns__wrapper .nav-btn1 + .nav-btn1{
	margin-top: 10px;
}
.menu-toggle .c-btns__wrapper .nav-btn1 p{
	position: relative;
	z-index: 1;
	color: #a0a0a0;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 23px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	transition: color ease .4s;
}
.menu-toggle .c-btns__wrapper .nav-btn1 p .f-eng{
	color: #464646;
	display: block;
	font-weight: 500;
	letter-spacing: 0.02em;
	font-size: 3rem;
	margin-right: 30px;
	transition: color ease .4s;
}
.menu-toggle .c-btns__wrapper .nav-btn1 .arrow{
	background-color: #464646;
	position: relative;
	z-index: 1;
	width: 60px;
	height: 30px;
	transition: background-color ease .15s;
}
.menu-toggle .c-btns__wrapper .nav-btn1 .arrow::before,
.menu-toggle .c-btns__wrapper .nav-btn1 .arrow::after{
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px 10px;
	transition: opacity ease .15s;
}
.menu-toggle .c-btns__wrapper .nav-btn1 .arrow::before{
	background-image: url(../images/arrow_white.svg);
	opacity: 1;
}
.menu-toggle .c-btns__wrapper .nav-btn1 .arrow::after{
	background-image: url(../images/arrow_black.svg);
	opacity: 0;
}
.menu-toggle .c-btns__wrapper .nav-btn1:hover,
.menu-toggle .c-btns__wrapper .nav-btn1:hover p,
.menu-toggle .c-btns__wrapper .nav-btn1:hover p .f-eng{
	color: #fff;
}
.menu-toggle .c-btns__wrapper .nav-btn1:hover .arrow{
	background-color: #fff;
	transition: background-color ease .1s .2s;
}
.menu-toggle .c-btns__wrapper .nav-btn1:hover .arrow::before{
	opacity: 0;
	transition: opacity ease .1s .2s;
}
.menu-toggle .c-btns__wrapper .nav-btn1:hover .arrow::after{
	opacity: 1;
	transition: opacity ease .1s .2s;
}
.c-add p{
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-bottom: 0;
}
.toggle_tel{
	margin-top: 22px;
}
.toggle_tel a{
	display: inline-block;
	color: #464646;
	text-decoration: none;
	transition: .4s;
	letter-spacing: 0.02em;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1;
}
.menu-toggle__left .c-copy-right{
	position: absolute;
	left: 0;
	bottom: 0;
	letter-spacing: 0.02em;
}
@media screen and (max-width: 1400px) {
	.menu-toggle__right{
		width: 52.53%;
	}
	.menu-toggle .c-nav2 li {
		width: calc((100% - 50px)/2);
	}
	.menu-toggle .c-nav2 li:nth-child(n+3){
		margin-top: 75px;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 p{
		flex-direction: column;
		align-items: flex-start;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 p .f-eng{
		margin-bottom: 10px;
		margin-right: 0;
	}
	.c-add{
		margin-bottom: 70px;
	}
	.menu-toggle__left .c-copy-right{
		position: relative;
		bottom: unset;
		left: unset;
	}
}
@media screen and (max-width: 1200px) {
	.menu-toggle__right{
		width: 55%;
	}
	.menu-toggle .c-nav2 li {
		width: calc((100% - 25px)/2);
	}
	.menu-toggle .c-btns__wrapper .nav-btn1{
		height: 130px;
		padding: 0 30px;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 p{
		font-size: 1.2rem;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 p .f-eng{
		font-size: 2rem;
		margin-bottom: 3px;
	}
}
@media screen and (max-width: 991px) {
	.menu-toggle__inner.l-container{
		width: 82.05128%;
	}
	.menu-toggle__left{
		width: 280px;
	}
	.menu-toggle__right{
		width: 50%;
	}
	.menu-toggle .c-nav2 li {
		width: 100%;
	}
	.menu-toggle .c-nav2 dd:last-child{
		margin-bottom: 27px;
	}
	.menu-toggle .c-nav2 li:nth-child(n + 2) {
		margin-top: 0;
	}
	.menu-toggle .c-nav3 {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 50px;
	}
	.menu-toggle .c-btns__wrapper {
		margin-bottom: 40px;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1{
		padding: 0 20px;
		width: 100%;
		height: 120px;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 + .nav-btn1{
		margin-top: 6px;
	}
	.menu-toggle .c-btns__wrapper .nav-btn1 .arrow{
		width: 50px;
		height: 22px;
		background-size: 12px 10px;
	}
	.c-add{
		margin-top: 40px;
		margin-bottom: 64px;
	}
	.c-add p{
		font-size: 1.3rem;
		line-height: 23px;
	}
	.toggle_tel{
		margin-top: 23px;
	}
	.toggle_tel a{
		font-size: 2.8rem;
	}
	.menu-toggle__bottom .c-copy-right{
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 767px) {
	.menu-toggle__inner {
		padding-top: 106px;
		padding-bottom: 40px;
		display: block;
	}
	.menu-toggle__left, .menu-toggle__right{
		width: 100%;
	}
	.menu-toggle__left {
		padding-top: 34px;
	}
	.menu-toggle .c-nav3 {
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 576px){
    .menu-toggle__inner{
        padding-bottom: 80px;;
    }
}
