@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100..900&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap');

/* Global styles
-------------------------------*/
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


/* 基本的な骨組み
-------------------------------*/
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: #F6F8F6;
	color: #333333;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

img {
	vertical-align: top;
	max-width: 100%;
}

@media (max-width: 1024px) {
	body {
		font-size: 14px;
		font-size: 1.4rem;
	}
}
@media (max-width: 768px) {

}

/* basic settings
-------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
pre,
td,
th,
dt,
dd {
	line-height: 1.5;
}

/* code set
-------------------------------*/
pre,
code,
kbd,
samp,
var {
	font-size: 1.3rem;
	line-height: 1.5;
}

pre {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	background-color: #f4f4f4;
	overflow-x: auto;
}


/* font
-------------------------------*/
.roboto {
	font-family: "Roboto", sans-serif;
}
.mincho {
	font-family: "Shippori Mincho", serif;
}
.text-bold {
	font-weight: bold;
}
.text-greenGradation {
	background: linear-gradient(to right, #86C532, #C1D201);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* aタグ(リンクボタン)の設定
-------------------------------*/
a, a:hover, a::after, a::before {
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	color: #4D4D4D;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:link {
	text-decoration: none;
}


/* デバイス定義
-------------------------------*/
.pc {
	display: block;
}
br.pc,
span.pc {
	display: inline;
}

.sp {
	display: none;
}
.pc-only {
	display: block;
}


@media (max-width: 768px) {
	.pc {
		display: none!important;
	}
	.sp {
		display: block;
	}
	br.sp {
		display: inline;
	}
}


/*-------------------------------
 title
-------------------------------*/
.sec__title {
	position: relative;
	width: 100%;
	text-align: center;
	color: #003C5A;
}
.sec__title .sec__title-en {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.44
}
.sec__title .sec__title-jp {
	display: block;
	font-family: "Shippori Mincho", serif;
	font-size: 28px;
	font-weight: 500;
	line-height: 2.07;
}
.sec__title .sec__title-jp .before__line {
	position: relative;
	padding-left: 65px;
}
.sec__title .sec__title-jp .before__line::before {
	position: absolute;
	content: "";
	top: 55%;
	left: 8px;
	display: inline-block;
	width: 38px;
	height: 1px;
	background-color: #003c5a;
}

@media screen and (max-width:1200px) {
	.sec__title .sec__title-en {
		font-size: 1.5vw;
	}
	.sec__title .sec__title-jp {
		font-size: 2.3333vw;
	}
	.sec__title .sec__title-jp .before__line {
		padding-left: 5.4167vw;
	}
	.sec__title .sec__title-jp .before__line::before {
		left: 0.6667vw;
		width: 3.1667vw;
	}
}

@media screen and (max-width:768px) {
	.sec__title .sec__title-en {
		margin-bottom: 1.3333vw;
		font-size: 4.8vw;
		line-height: 1;
	}
	.sec__title .sec__title-jp {
		font-size: 6.4vw;
		line-height: 1.7059;
	}
	.sec__title .sec__title-jp .before__line {
		padding-left: 5.3333vw;
		white-space: nowrap;
	}
	.sec__title .sec__title-jp .before__line::before {
		left: -1.3333vw;
		width: 5.3333vw;
	}
}



/*-------------------------------
 box layout
-------------------------------*/
.l-box-flex {
	display: flex;
}
.box__link {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.box__link-center {
	display: flex;
	justify-content: center;
}
.box__link-end {
	display: flex;
	justify-content: flex-end;
}
.box__link a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 48px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	color: #003C5A;
	border: 1px solid #003C5A;
	border-radius: 24px;
	background: #fff;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 2;
}
.box__link a:hover {
	color: #fff;
}
.box__link a::before {
	position: absolute;
	content: "";
	top: calc(50% - 4px);
	right: 15px;
	width: 7px;
	height: 9px;
	background-color: #003C5A;
	clip-path: polygon(7px 50%, 0% 0%, 0% 9px);
}
.box__link a:hover::before {
	background-color: #fff;
}
.box__link a::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 0;
	padding-top: 100%;
	margin: auto;
	background: #003C5A;
	border-radius: 50%;
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
}
.box__link a:hover::after {
	opacity: 1;
	transform: translateY(-50%) scale(1.1);
	transition-delay: 0s;
	transition: opacity .8s, transform .6s ease-in-out;
}
.box__link.box__link-inversion a {
	color: #fff;
	background: #003C5A;
}
.box__link.box__link-inversion a:hover {
	color: #003C5A;
}
.box__link.box__link-inversion a::before {
	background-color: #fff;
}
.box__link.box__link-inversion a:hover::before {
	background-color: #003C5A;
}
.box__link.box__link-inversion a::after {
	background: #fff;
}

@media screen and (max-width:1200px) {
	.box__link a {
		width: 23.3333vw;
		height: 4vw;
		font-size: 1.3333vw;
		border-radius: 2vw;
	}
	.box__link a::before {
		right: 1.25vw;
	}
}

@media screen and (max-width:768px) {
	.box__link a {
		width: 74.6667vw;
		height: 12vw;
		font-size: 4.2667vw;
		border-radius: 6.1333vw;
	}
	.box__link a::before {
		top: calc(50% - 1.3333vw);
		right: 3.2vw;
		width: 2.1333vw;
		height: 2.6667vw;
		clip-path: polygon( 2.1333vw 50%, 0% 0%, 0% 2.6667vw );
	}
}



/*-------------------------------
 mainSec
-------------------------------*/
.mainSec {
	position: relative;
	z-index: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.l-inner {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
}

@media screen and (max-width:1200px) {
	.l-inner {
		width: 90%;
	}
}

@media screen and (max-width:768px) {
	.l-inner {
		width: 89.3334vw;
	}
}




/*-------------------------------
 header
-------------------------------*/
header {
	position: absolute;
	width: 100%;
	z-index: 11;
}
.header__wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 70vw;
	height: 4.1667vw;
	padding: 0 3.1667vw;
	margin: 3.3333vw auto 0;
	background: #fff;
	border-radius: 2.0834vw;
	z-index: 999;
	-webkit-transition: all 0.5s ease-in-out 0s;
	transition: all 0.5s ease-in-out 0s;
	box-shadow: 0px 0px 0.6944vw 0px rgba(0, 0, 0, 0.25);
}
.header__logo {
	display: block;
	width: 23vw;
	height: 100%;
}
.header__logo a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.header__logo img {
	width: 100%;
}

@media screen and (min-width:769px) {
	.navi__box {
		display: none;
	}
	.gnav {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		height: 4.1667vw;
	}
	.gnav__list {
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: flex-start;
		height: 100%;
	}
	.gnav__item {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.gnav__item:not(:last-child) {
		margin-right: 1.5vw;
	}
	.gnav__item:not(:last-child)::after {
		content: "/";
		margin-left: 1.5vw;
		font-size: 1.1667vw;
	}
	.gnav__item a {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		cursor: pointer;
		font-weight: 400;
		font-size: 1.3333vw;
		letter-spacing: 0;
		line-height: 1;
		color: #333333;
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.gnav__item a span {
		position: relative;
	}
	.gnav__item a span::after {
		content: '';
		position: absolute;
		bottom: -0.25vw;
		left: -5%;
		width: 0;
		height: 0.5vw;
		background-color: rgb(172 226 229 / 0.5);
		z-index: -1;
		transition: width 0.3s;
	}
	.gnav__item a:hover span::after {
		width: 110%;
	}
}

@media screen and (min-width:1201px) {
	.header__wrap {
		width: 840px;
		height: 50px;
		padding: 0 38px;
		margin: 40px auto 0;
		border-radius: 25px;
	}
	.header__logo {
		width: 276px;
	}
	.navi__box {
		margin-left: 75px;
	}
	.gnav {
		height: 50px;
	}
	.gnav__item:not(:last-child) {
		margin-right: 18px;
	}
	.gnav__item:not(:last-child)::after {
		margin-left: 18px;
		font-size: 14px;
	}
	.gnav__item a {
		font-size: 16px;
	}
	.gnav__item a span::after {
		bottom: -3px;
		height: 6px;
	}
}

@media screen and (max-width:768px) {
	header {
		position: fixed;
	}
	.header__wrap {
		width: 92vw;
		height: 13.3333vw;
		padding: 0 4.8vw;
		margin: 2.6667vw auto 0;
		border-radius: 6.6667vw;
	}
	.header__logo {
		width: 66.6667vw;
	}
	.gnav {
		display: none;
	}
	.gnav__toggle {
		position: relative;
		top: 0;
		right: 0;
		width: 10.6667vw;
		height: 10.6667vw;
		display: flex;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		z-index: 999;
	}
	.gnav__toggle span {
		display: block;
		position: absolute;
		width: 6.6667vw;
		border-bottom: solid 0.8vw #003c5a;
		transition: all 0.6s;
	}
	.gnav__toggle span:nth-child(1) {
		top: 3.2vw;
	}
	.gnav__toggle span:nth-child(2) {
		top: 5.0667vw;
	}
	.gnav__toggle span:nth-child(3) {
		top: 6.9333vw;
	}
	.gnav__toggle.active span:nth-child(1) {
		top: 5.0667vw;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.gnav__toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.gnav__toggle.active span:nth-child(3) {
		top: 5.0667vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.header .navi__box {
		position: fixed;
		display: block;
		width: 100%;
		height: 100vh;
		top: 0;
		right: -120%;
		z-index: 998;
		opacity: 0;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
	}
	.header .navi__box.active {
		right: 0;
		opacity: 1;
	}
	.navi__wrap {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		right: -120%;
		opacity: 0;
		z-index: 10;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
	}
	.navi__wrap.active {
		right: 0;
		opacity: 1;
	}
	.navi__inner {
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		padding: 33.3333vw 0;
		-webkit-transition: all 0.5s ease-in-out 0s;
		transition: all 0.5s ease-in-out 0s;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	.navi__inner::after {
		position: absolute;
		content: "";
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url(../img/common/menu__bg.png) no-repeat top left;
		background-size: cover;
		opacity: 0.95;
		z-index: -1;
	}
	.tnavi {
		width: 100%;
		height: 100%;
		padding: 0 5.3333vw;
		z-index: 999;
	}
	.tnavi .tnavi__list {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: stretch;
		flex-flow: column;
		gap: 2.6667vw;
		width: 100%;
		padding-bottom: 13.3333vw;
	}
	.tnavi .tnavi__list::after {
		position: absolute;
		content: "";
		left: 0;
		bottom: 0;
		width: 80%;
		height: 0.5333vw;
		background: #afbaaf;
	}
	.tnavi .tnavi__list li {
		width: 100%;
		height: 13.3333vw;
	}
	.tnavi .tnavi__list li a {
		position: relative;
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 100%;
		padding: 0 13.3333vw;
		font-size: 5.3333vw;
		font-weight: 500;
		color: #003c5a;
		background: rgb( 255 255 255 / 0.5 );
	}
	.tnavi .tnavi__list li a::before {
		position: absolute;
		content: "";
		top: calc(50% - 1.0667vw);
		left: 5.3333vw;
		width: 1.8667vw;
		height: 2.4vw;
		background-color: #003C5A;
		clip-path: polygon(7px 50%, 0% 0%, 0% 9px);
	}
	.tnavi .tnavi__privacy {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		margin-top: 4vw;
		font-size: 4.2667vw;
	}
	.tnavi .tnavi__privacy a {
		color: #003c5a;
	}
}


/*-------------------------------
	footer
-------------------------------*/
.footerSec {
	position: sticky;
	top: 100vh;
	width: 100%;
	height: 38.3333vw;
	background-image: linear-gradient(180deg, rgba(57, 103, 127, 0) 0%, rgba(57, 103, 127, 1) 74%, rgba(0, 60, 90, 1));
	background-color: #F6F8F6;
	z-index: 1;
}
.footerSec .l-inner {
	display: flex;
	flex-flow: column;
	justify-content: flex-end;
	height: calc(100% - 4.6667vw);
	gap: 1.6667vw;
}
.footerSec .footerSec__info {
	margin-bottom: 0.6667vw;
	color: #fff;
}
.footerSec .footerSec__info .company__name {
	width: 33.8333vw;
	margin-bottom: 2.0833vw;
}
.footerSec .footerSec__info .company__address {
	font-size: 1.3333vw;
	line-height: 1.35;
}
.footerSec .copyright {
	display: block;
	width: 100%;
	height: 4.6667vw;
	padding: 1.5vw 0 1.8333vw;
	font-size: 1vw;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	color: #fff;
	border-top: 1px solid #fff;
}

@media screen and (min-width:769px) {
	.footerSec .footerSec__navi {
		width: 100%;
	}
	.footerSec .footerSec__navi .footer__navi__list {
		display: flex;
		justify-content: flex-end;
		align-items: end;
		width: 100%;
		margin-bottom: 5vw;
	}
	.footerSec .footerSec__navi .footer__navi__list li {
		height: 100%;
	}
	.footerSec .footerSec__navi .footer__navi__list li:not(:last-child) {
		margin-right: 2.5vw;
	}
	.footerSec .footerSec__navi .footer__navi__list li a {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
		height: 100%;
		font-size: 1.3333vw;
		letter-spacing: 0;
		line-height: 1;
		color: #fff;
	}
	.footerSec .footerSec__navi .footer__navi__list li a span {
		position: relative;
	}
	.footerSec .footerSec__navi .footer__navi__list li a span::after {
		content: '';
		position: absolute;
		bottom: -0.4167vw;
		left: -5%;
		width: 0;
		height: 2px;
		background-color: rgb(255 255 255 / 0.8);
		z-index: -1;
		transition: width 0.3s;
	}
	.footerSec .footerSec__navi .footer__navi__list li a:hover span::after {
		width: 110%;
	}
}

@media screen and (min-width:1201px) {
	.footerSec {
		height: 460px;
	}
	.footerSec .l-inner {
		height: calc( 100% - 56px );
		gap: 20px;
	}
	.footerSec .footerSec__info {
		margin-bottom: 8px;
	}
	.footerSec .footerSec__info .company__name {
		width: 406px;
		margin-bottom: 25px;
	}
	.footerSec .footerSec__info .company__address {
		font-size: 16px;
	}
	.footerSec .footerSec__navi .footer__navi__list {
		margin-bottom: 60px;
	}
	.footerSec .footerSec__navi .footer__navi__list li:not(:last-child) {
		margin-right: 30px;
	}
	.footerSec .footerSec__navi .footer__navi__list li a {
		font-size: 16px;
	}
	.footerSec .footerSec__navi .footer__navi__list li a span::after {
		bottom: -5px;
		left: -5%;
		height: 2px;
	}
	.footerSec .copyright {
		height: 56px;
		padding: 18px 0 22px;
		font-size: 12px;
	}
}

@media screen and (max-width:768px) {
	.footerSec {
		height: 90.6667vw;
		background-color: #F6F8F6;
		background-image: linear-gradient(180deg, rgba(57, 103, 127, 0) 0%, rgba(57, 103, 127, 1) 74%, rgba(0, 60, 90, 1));
	}
	.footerSec .l-inner {
		height: calc(100% - 12vw);
		gap: 5.3333vw;
	}
	.footerSec .footerSec__info {
		margin-bottom: 7.2vw;
		color: #fff;
	}
	.footerSec .footerSec__info .company__name {
		width: 74.6667vw;
		margin-bottom: 3.4667vw;
	}
	.footerSec .footerSec__info .company__address {
		font-size: 3.4667vw;
		line-height: 1.38;
	}
	.footerSec .footerSec__navi {
		display: none;
	}
	.footerSec .copyright {
		height: 10.6667vw;
		padding: 3.7333vw 0 2.6667vw;
		font-size: 3.2vw;
	}
}



a.to__top {
	position: fixed;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	width: 60px;
	height: 60px;
	right: 20px;
	bottom: 20px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #003C5A;
	font-family: "Roboto";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	color: #003c5a;
}
a.to__top::before {
	display: inline-block;
	content: "";
	width: 9px;
	height: 7px;
	background: #003c5a;
	clip-path: polygon(0 100%, 50% 0, 100% 100%);
}