@charset "utf-8";


@media only screen and (max-width:991px) {}
@media only screen and (max-width:767px) {}


/*************************************************

 wrapper

*************************************************/
#wrapper {
	color: var(--color-default);
	font-family: var(--site-font-default);
	font-size: 16px;
	line-height: 1.7;
	text-align: left;
}

button,input,textarea,select {
	color: var(--color-default);
	font-family: var(--site-font-default);
}

.font-en {
	font-family: var(--site-font-en);
}

@media only screen and (max-width:767px) {
	#wrapper {
		font-size: 14px;
	}
}



/*************************************************

 header

*************************************************/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 500;
}

.header__logo {
	position: relative;
	display: flex;
	align-items: center;
	height: 140px;
	padding-left: 25px;
	line-height: 0;
	background-color: #fff;
	z-index: 2;
}

.header__logo__acnhor {
	display: block;
}

.header__btn01 {
	position: absolute;
	top: 50%;
	right: 180px;
	transform: translateY(-50%);
	z-index: 2;
}

.header__btn01__anchor {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 355px;
	height: 70px;
	color: var(--color-default);
	font-size: 28px;
	font-weight: 700;
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,182,0,1) 0%, rgba(255,207,0,1) 100%);
	box-shadow: 0px 3px 20px 0px rgba(29,29,29,0.1);
	text-decoration: none;
}

.header__btn01__anchor::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	opacity: 0;
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,207,0,1) 0%, rgba(255,182,0,1) 100%);
	transition: opacity var(--hover-duration01);
	z-index: 1;
}

.header__btn01__anchor:hover::before {
	opacity: 1;
}

.header__btn01__txt {
	position: relative;
	z-index: 2;
}

.header__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(29, 29, 29, 0.35);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 10;
}

.is-open .header__overlay {
	opacity: 1;
	visibility: visible;
}

@media only screen and (max-width:991px) {
	.header__logo img {
		width: 250px;
	}

	.header__btn01__anchor {
		width: 280px;
		font-size: 22px;
	}
}

@media only screen and (max-width:767px) {
	.header__logo {
		height: 80px;
		padding-left: 20px;
	}

	.header__logo img {
		width: 160px;
	}

	.header__btn01 {
		display: none;
	}
}


/*************************************************

 gNav

*************************************************/
.globalnav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.is-open .globalnav {
	opacity: 1;
	visibility: visible;
}


.globalnav__wrap {
	overflow: auto;
	box-sizing: border-box;
	width: 90%;
	max-width: 1360px;
	height: 100%;
	margin-left: auto;
	background-color: #EFF4FF;
	transform: translateX(100%);
	transition: transform 0.5s;
}

.is-open .globalnav__wrap {
	transition-delay: 0.1s;
	transform: translateX(0);
}

.globalnav__inner {
	padding: 140px 20px;
}

@media only screen and (max-width:767px) {
	.globalnav__inner {
		padding: 80px 20px 100px;
	}
}



/* globalnav__links
------------------------------------------*/
.globalnav__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px 20px;
	max-width: 1084px;
	margin: 0 auto;
}

.globalnav__links__group {
	/* background-color: #fff; */
}

.globalnav__links__btn01 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 80px;
	font-size: 23px;
	font-weight: 700;
	text-decoration: none;
	background: rgb(11,102,191);
	background: linear-gradient(-90deg, rgba(11,102,191,1) 0%, rgba(6,73,139,1) 100%);
	line-height: 1.3;
}

.globalnav__links__btn01::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgb(11,102,191);
	background: linear-gradient(90deg, rgba(11,102,191,1) 0%, rgba(6,73,139,1) 100%);
	opacity: 0;
	transition: opacity var(--hover-duration01);
	z-index: 1;
}

.globalnav__links__btn01::after {
	position: absolute;
	top: 0;
	right: 25px;
	display: block;
	content: '';
	width: 22px;
	height: 100%;
	background: url(../images/common/icon_arw01.svg) no-repeat center center / contain;
	transform: translateX(0);
	transition: transform var(--hover-duration01);
	z-index: 2;
}

.globalnav__links__btn01__txt {
	position: relative;
	display: block;
	color: #fff;
	letter-spacing: 0.1em;
	z-index: 2;
}

.globalnav__links__btn02 {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 80px;
	padding-left: 20px;
	font-size: 23px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: #EFEFEF solid 1px;
	background-color: #fff;
	line-height: 1.3;
}

.globalnav__links__btn02::after {
	position: absolute;
	top: 0;
	right: 25px;
	display: block;
	content: '';
	width: 22px;
	height: 100%;
	background: url(../images/common/icon_arw02.svg) no-repeat center center / contain;
	transform: translateX(0);
	transition: transform var(--hover-duration01);
	z-index: 2;
}

.globalnav__links__btn02__txt {
	position: relative;
	display: block;
	color: var(--color-default);
	letter-spacing: 0.1em;
	z-index: 2;
}

@media only screen and (min-width:768px) {
	.globalnav__links__btn01:hover::before {
		opacity: 1;
	}

	.globalnav__links__btn01:hover::after,
	.globalnav__links__btn02:hover::after {
		transform: translateX(5px);
	}
}

@media only screen and (max-width:991px) {
	.globalnav__links__btn01,
	.globalnav__links__btn02 {
		font-size: 20px;
	}
}

@media only screen and (max-width:767px) {
	.globalnav__links {
		grid-template-columns: 1fr;
		gap: 20px 20px;
	}

	.globalnav__links__group {
		background-color: #fff;
	}

	.globalnav__links__btn01 {
		min-height: 70px;
		font-size: 18px;
	}

	.globalnav__links__btn01::after {
		right: 13px;
		width: 15px;
	}

	.globalnav__links__btn01__txt {
		position: relative;
		display: block;
		color: #fff;
		letter-spacing: 0.1em;
		z-index: 2;
	}

	.globalnav__links__btn02 {
		min-height: 70px;
		padding-left: 15px;
		font-size: 18px;
	}

	.globalnav__links__btn02::after {
		right: 13px;
		width: 15px;
	}
}



/* globalnav__btns
------------------------------------------*/
.globalnav__btns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px 20px;
	max-width: 1084px;
	margin: 100px auto 0;
}

.globalnav__btns__anchor {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	text-decoration: none;
}

.globalnav__btns__txt {
	position: relative;
	display: block;
	font-size: 30px;
	font-weight: 700;
	z-index: 2;
}

.globalnav__btns__anchor.is-contact {
	color: #fff;
	background-color: #04305C;
}

.is-contact .globalnav__btns__txt {
	padding-left: 66px;
}

.is-contact .globalnav__btns__txt::before {
	position: absolute;
	top: 4px;
	left: 0;
	display: block;
	content: '';
	width: 50px;
	height: 100%;
	background: url(../images/common/icon_mail01.svg) no-repeat center center / 100% auto;
}

.globalnav__btns__anchor.is-entry {
	color: var(--color-default);
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,182,0,1) 0%, rgba(255,207,0,1) 100%);
}

.globalnav__btns__anchor.is-entry::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,207,0,1) 0%, rgba(255,182,0,1) 100%);
	opacity: 0;
	transition: opacity var(--hover-duration01);
	z-index: 1;
}

@media only screen and (min-width:768px) {
	.globalnav__btns__anchor.is-entry:hover::before {
		opacity: 1;
	}
}

@media only screen and (max-width:991px) {
	.globalnav__btns__txt {
		font-size: 30px;
	}
}

@media only screen and (max-width:767px) {
	.globalnav__btns {
		grid-template-columns: 1fr;
		gap: 15px 15px;
		margin-top: 60px;
	}

	.globalnav__btns__anchor {
		min-height: 60px;
	}

	.globalnav__btns__txt {
		font-size: 20px;
	}

	.is-contact .globalnav__btns__txt {
		padding-left: 38px;
	}

	.is-contact .globalnav__btns__txt::before {
		top: 2px;
		width: 26px;
	}
}



/*************************************************

 hamburgerMenu

*************************************************/
.hamburgermenu {
	position: absolute;
	top: 0;
	right: 0;
	width: 140px;
	height: 140px;
	background: rgb(11,102,191);
	background: linear-gradient(0deg, rgba(11,102,191,1) 0%, rgba(6,73,139,1) 100%);
	cursor: pointer;
	z-index: 100;
}

.hamburgermenu::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
	transition: opacity 0.3s;
}

.is-open .hamburgermenu::before {
	opacity: 1;
}

.hamburgermenu__bdr {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 26px;
	margin: 0 auto;
	transform: translate(-50%, -50%);
	z-index: 2;
}
.hamburgermenu__bdr span,
.hamburgermenu__bdr:before,
.hamburgermenu__bdr:after {
	position: absolute;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 4px;
	background-color: #fff;
	border-radius: 4px;
}
.hamburgermenu__bdr span {
	top: 50%;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
.hamburgermenu__bdr:before {
	top: 0;
}
.hamburgermenu__bdr:after {
	top: 100%;
}
.is-open .hamburgermenu__bdr:before {
	animation: menuAnime01 0.3s forwards;
}
.is-open .hamburgermenu__bdr:after {
	animation: menuAnime02 0.3s forwards;
}
.is-open .hamburgermenu__bdr span {
	opacity: 0;
}
.is-close .hamburgermenu__bdr:before {
	animation: menuAnime01_close 0.3s forwards;
}
.is-close .hamburgermenu__bdr:after {
	animation: menuAnime02_close 0.3s forwards;
}

@media only screen and (max-width:767px) {
	.hamburgermenu {
		width: 80px;
		height: 80px;
	}

	.hamburgermenu__bdr {
		width: 36px;
		height: 15px;
	}

	.hamburgermenu__bdr span,
	.hamburgermenu__bdr:before,
	.hamburgermenu__bdr:after {
		height: 2px;
	}
}

@keyframes menuAnime01 {
	50% {
		top: 50%;
		transform: rotate(0deg);
		background-color: var(--color-default);
	}
	100% {
		top: 50%;
		transform: rotate(45deg);
		background-color: var(--color-default);
	}
}
@keyframes menuAnime01_close {
	0% {
		top: 50%;
		transform: rotate(45deg);
		background-color: var(--color-default);
	}
	50% {
		top: 50%;
		transform: rotate(0deg);
		background-color: var(--color-default);
	}
	100% {
		top: 0;
		transform: rotate(0deg);
		background-color: #fff;
	}
}
@keyframes menuAnime02 {
	50% {
		top: 50%;
		transform: rotate(0deg);
		background-color: var(--color-default);
	}
	100% {
		top: 50%;
		transform: rotate(-45deg);
		background-color: var(--color-default);
	}
}
@keyframes menuAnime02_close {
	0% {
		top: 50%;
		transform: rotate(-45deg);
		background-color: var(--color-default);
	}
	50% {
		top: 50%;
		transform: rotate(0deg);
		background-color: var(--color-default);
	}
	100% {
		top: 100%;
		transform: rotate(0deg);
		background-color: #fff;
	}
}



/*************************************************

 maincontainer

*************************************************/
.maincontainer {
	padding-top: 140px;
}

@media only screen and (max-width:767px) {
	.maincontainer {
		padding-top: 80px;
	}
}


/*************************************************

 footer

*************************************************/

.footer {
	padding: 90px 0 30px;
	background-color: #fff;
}

.footer__inner {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer__contents {
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: space-between;
	margin-bottom: 170px;
}

.footer__contents__logos {
	width: 29.848%;
	padding-top: 15px;
	line-height: 0;
}

.footer__contents__logos__item + .footer__contents__logos__item {
	margin-top: 80px;
}

.footer__contents__links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px 50px;
}

.footer__contents__links__btn01 {
	display: block;
	color: var(--color-default);
	font-size: 23px;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: 0.1em;
}

.footer__contents__links__btn02 {
	display: block;
	margin-top: 12px;
	color: #999999;
	font-size: 14px;
	text-decoration: none;
	letter-spacing: 0.1em;
}

.footer__contents__btns {
	width: 25.758%;
}

.footer__contents__btns__li + .footer__contents__btns__li {
	margin-top: 20px;
}

.footer__contents__btns__anchor {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 86px;
	text-decoration: none;
	box-shadow: 0px 3px 20px 0px rgba(29,29,29,0.1);
}

.footer__contents__btns__txt {
	position: relative;
	display: block;
	font-size: 23px;
	font-weight: 700;
	z-index: 2;
}

.footer__contents__btns__anchor.is-contact {
	color: #fff;
	background-color: #04305C;
}

.is-contact .footer__contents__btns__txt {
	padding-left: 42px;
}

.is-contact .footer__contents__btns__txt::before {
	position: absolute;
	top: 4px;
	left: 0;
	display: block;
	content: '';
	width: 33px;
	height: 100%;
	background: url(../images/common/icon_mail01.svg) no-repeat center center / 100% auto;
}

.footer__contents__btns__anchor.is-entry {
	color: var(--color-default);
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,182,0,1) 0%, rgba(255,207,0,1) 100%);
}

.footer__contents__btns__anchor.is-entry::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgb(255,182,0);
	background: linear-gradient(90deg, rgba(255,207,0,1) 0%, rgba(255,182,0,1) 100%);
	opacity: 0;
	transition: opacity var(--hover-duration01);
	z-index: 1;
}

.footer__beneath {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer__beneath__links {
	display: flex;
	margin-top: 15px;
}

.footer__beneath__links__li {
	margin-right: 30px;
}

.footer__beneath__links__anchor {
	color: var(--color-black);
	font-size: 14px;
	text-decoration: none;
}

.footer__beneath__copyright {
	margin: 15px 0 0 auto;
	color: var(--color-black);
	font-size: 14px;
	letter-spacing: 0.1em;
}

.footer__pagetop {
	position: relative;
	z-index: 20;
}

.footer__pagetop__anchor {
	box-sizing: border-box;
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 118px;
	height: 118px;
	line-height: 0;
	text-decoration: none;
	border: var(--color-default) solid 4px;
	background-color: var(--color-yellow);
	opacity: 1;
	transform: translateY(150px);
	transition: transform 0.3s, opacity 0.3s;
	z-index: 500;
}

.is-on .footer__pagetop__anchor {
	transform: translateY(0);
}

.is-stop .footer__pagetop__anchor {
	position: absolute;
}

.footer__pagetop__anchor img {
	width: 36px;
	height: auto;
	transform: rotate(-90deg);
}

@media only screen and (min-width:768px) {
	.footer__contents__btns__anchor.is-entry:hover::before {
		opacity: 1;
	}
}

@media only screen and (max-width:1360px) {
	.footer__contents__logos {
		width: 23.848%;
	}

	.footer__contents__links {
		gap: 50px 20px;
	}

	.footer__contents__btns {
		width: 22.758%;
	}

	.footer__contents__links__btn01 {
		font-size: 20px;
	}

	.footer__contents__links__btn02 {
		font-size: 16px;
	}

	.footer__contents__btns__txt {
		font-size: 20px;
	}
}

@media only screen and (max-width:991px) {
	.footer__contents__btns__txt {
		font-size: 18px;
	}

	.is-contact .footer__contents__btns__txt {
		padding-left: 38px;
	}

	.is-contact .footer__contents__btns__txt::before {
		top: 2px;
		width: 26px;
	}
}

@media only screen and (max-width:767px) {
	.footer {
		padding: 60px 0 10px;
	}

	.footer__inner {
		padding: 0 25px;
	}

	.footer__contents {
		display: block;
		margin-bottom: 90px;
	}

	.footer__contents__logos {
		width: auto;
		padding-top: 0;
	}

	.footer__contents__logos__item + .footer__contents__logos__item {
		margin-top: 45px;
	}

	.footer__contents__links {
		display: none;
	}

	.footer__contents__btns {
		width: auto;
		margin-top: 50px;
	}

	.footer__contents__btns__anchor {
		min-height: 86px;
	}

	.footer__contents__btns__txt {
		font-size: 20px;
	}

	.is-contact .footer__contents__btns__txt {
		padding-left: 38px;
	}

	.is-contact .footer__contents__btns__txt::before {
		top: 2px;
		width: 26px;
	}

	.footer__beneath {
		display: block;
	}

	.footer__beneath__links {
		display: none;
	}

	.footer__beneath__copyright {
		margin: 0;
		text-align: center;
	}

	.footer__pagetop__anchor {
		bottom: 15px;
		right: 15px;
		width: 60px;
		height: 60px;
		border-width: 3px;
	}

	.footer__pagetop__anchor img {
		width: 22px;
	}
}