@charset "UTF-8";
@import url("https://use.typekit.net/uki2pnk.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');
/*==================================================================
	Style setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
}
body {
	background: #fff;
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	overflow-x:hidden;
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
	transition: all 0.3s ease-out;
	opacity: 0;
	visibility: hidden;
}
body.on {
	opacity: 1;
	visibility: visible;
} 
.stop-scroll {
	overflow-y: hidden;
}
a { color: #000; text-decoration: none; }
a:hover { color: #000; text-decoration: none; }

.inner {
	margin: auto;
	max-width: 1200px;
	width: calc(100% - 30px);
}
@media screen and (min-width: 768px){
	.sp {
		display: none!important;
	}
}
@media screen and (max-width: 767px){
	.pc {
		display: none!important;
	}
}
.brandon {
	font-family: brandon-grotesque, sans-serif; 
}
.fadein {
	opacity: 0;
	-webkit-transition: all ease-in-out 0.8s;
		 -o-transition: all ease-in-out 0.8s;
			transition: all ease-in-out 0.8s;	
}
.fadein.on {
	opacity: 1;
}
.fadeup {
	opacity: 0;
	-webkit-transform: translateY(50px);
	    -ms-transform: translateY(50px);
	        transform: translateY(50px);
	-webkit-transition: all ease-in-out 0.8s;
		 -o-transition: all ease-in-out 0.8s;
			transition: all ease-in-out 0.8s;	
}
.fadeup.on {
	opacity: 1;
	-webkit-transform: translateY(0px);
	    -ms-transform: translateY(0px);
	        transform: translateY(0px);
}

.page-btn {
	background: #004190;
	color: #fff;
	font-size: 1.4rem;
	padding: 15px 30px 15px 20px;
	-webkit-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	position: relative;
	text-align: center;
}
.page-btn:hover {
	color: #fff;
	opacity: 0.7;
}
.page-btn:after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	content: "";
	width: 12px;
	height: 12px;
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -2px;
}

.assistant {
	font-family: 'Assistant', sans-serif;
}
.uppercase {
	text-transform: uppercase;
}
/*==================================================================
	Header setting
===================================================================*/
#gnav-sp,
#menu {
	display: none;
}
#header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin: 40px 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}
#logo {
	padding-left: 60px;
}
#logo img {
	border: 1px solid #fff;
	width: 120px;
	max-width: 100%;
}
#gnav > ul {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	padding-right: 60px;
}
#gnav > ul > li {
	position: relative;
}
#gnav > ul > li > a {
	border-right: 1px solid #fff;
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	overflow: hidden;
	padding: 0 10px;
	position: relative;
	text-transform: uppercase;
	text-align: center;
	-webkit-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
#gnav > ul > li:hover > a {
	opacity: 0.7;
}
#gnav > ul > li:first-child > a {
	border-left: 1px solid #fff;
}
#gnav > ul > li > ul {
	width: 165px;
	padding-top: 10px;
	position: absolute;
	top: 100%;
	left: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all .4s ease-out;
	-o-transition: all .4s ease-out;
	transition: all .4s ease-out;
}
#gnav > ul > li:hover > ul {
	opacity: 1;
	visibility: visible;
}
#gnav > ul > li > ul > li {
	background: rgba(0,52,114,0.7);
	border-bottom: 1px solid #4E74A4;
}
#gnav > ul > li > ul > li:last-child {
	border: none;
}
#gnav > ul > li > ul > li > a {
	color: #fff;
	display: block;
	font-size: 1.7rem;
	font-weight: bold;
	-webkit-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	margin: 0;
	padding: 12px 10px;
}
#gnav > ul > li:hover > ul > li > a:hover {
	opacity: 0.7;
}

@media only screen and (min-width: 1001px) {
	#gnav-sp {
		display: none!important;
	}
}
@media only screen and (max-width: 1000px) {
	#gnav {
		display: none;
	}
	#gnav-sp,
	#menu {
		display: block;
	}
	#header {
		margin: 15px 0;
	}
	#logo {
		visibility: visible;
		padding-left: 15px;
	}
	#logo img {
		width: 98px;
	}
	#logo02 {
		padding: 0 15px;
		width: 170px;
		max-width: calc(100% - 80px);
	}
	#gnav-sp {
		background: #003472;
		display: none;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		-webkit-overflow-scrolling: auto;
		padding: 15px 0;
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		width: 100%;
		z-index: 999;
	}
	#gnav-sp > ul {
		border-top: 1px solid #fff;
		margin-top: 15px;
	}
	#gnav-sp > ul > li {
		border-bottom: 1px solid #fff;
	}
	#gnav-sp li {
		position: relative;
	}
	#gnav-sp li a {
		color: #fff;
	}
	#gnav-sp > ul > li > a {
		display: block;
		font-weight: 600;
		padding: 10px 15px;
	}
	#gnav-sp > ul > li:after {
		content: "";
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		width: 10px;
		height: 10px;
		transform: rotate(45deg);
		position: absolute;
		top: 17px;
		right: 30px;
		z-index: -1;
	}
	#gnav-sp > ul > li.has-child:after {
		display: none;
	}
	#gnav-sp > ul > li > ul > li {
		border-top: 1px solid #fff;
	}
	#gnav-sp > ul > li > ul > li > a {
		display: block;
		font-weight: 600;
		padding: 10px 30px;
	}
	#gnav-sp > ul > li > ul > li > ul {
		display: none;
		padding: 0 0 20px 60px;
	}
	#gnav-sp > ul > li > ul > li .open-sub {
		position: absolute;
		top: 15px;
		right: 25px;
		width: 15px;
		height: 15px;
		cursor: pointer;
	}
	#gnav-sp > ul > li > ul > li .open-sub:after {
		background: #fff;
		content: "";
		position: absolute;
		top: 50%;
		right: 0;
		height: 2px;
		left: 0;
		transform: translateY(-50%);
	}
	#gnav-sp > ul > li > ul > li .open-sub:before {
		background: #fff;
		content: "";
		position: absolute;
		left: 50%;
		top: 0;
		width: 2px;
		bottom: 0;
		transform: translateX(-50%);
		-webkit-transition: all ease-in-out 0.3s;
		 -o-transition: all ease-in-out 0.3s;
			transition: all ease-in-out 0.3s;
	}
	#gnav-sp > ul > li > ul > li .open-sub.min:before {
		display: none;
	}
	#menu {
		cursor: pointer;
		display: block;
		height: 20px;
		width: 35px;
		position: absolute;
		right: 15px;
		top: 3px;
		z-index: 1000;
	}
	#menu > span {
		background-color: #fff;
		display: block;
		height: 2px;
		width: 100%;
		position: absolute;
		left: 0;
		text-indent: -999em;
		-webkit-transition: all ease-in-out 0.3s;
		 -o-transition: all ease-in-out 0.3s;
			transition: all ease-in-out 0.3s;
	}
	#menu > span:nth-child(1) {
		top: 0;
	}
	#menu.active > span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	#menu > span:nth-child(2) {
		top: 9px;
	}
	#menu.active > span:nth-child(2) {
		opacity: 0;
	}
	#menu > span:nth-child(3) {
		bottom: 0;
	}
	#menu.active > span:nth-child(3) {
		transform: translateY(-11px) rotate(-45deg);
	}
}

#footer {
	background: #F3F3F3;
	padding: 50px 0;
}
#footer .f-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: auto;
	max-width: 1170px;
	width: calc(100% - 30px);
}
#footer .fnav {
	color: #5D5D5D;
	display: flex;
	flex-wrap: wrap;
	width: 54%;
}
#footer .fnav .nav-col {
	width: 25%;
	padding: 0 15px;
}
#footer .fnav .nav-col .ttl {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.8;
	position: relative;
}
#footer .fnav .nav-col .ttl a:hover {
	text-decoration: underline;
}
#footer .fnav .nav-col .ttl:before {
	content: "";
	width: 0; 
	height: 0; 
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;  
	border-left: 12px solid #808080;
	position: absolute;
	left: -18px;
	top: 10px;
}
#footer .fnav .nav-col:last-child ul {
	margin-bottom: 50px;
}
#footer .fnav .nav-col ul > li > a {
	display: inline-block;
	font-size: 1.4rem;
	-webkit-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
}
#footer .fnav .nav-col ul > li > a:hover {
	text-decoration: underline;
}
#footer .f-info {
	width: 35%;
}
#footer .f-info .f-btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 0 30px;
}
#footer .f-info .f-btn .page-btn {
	width: calc(50% - 4px);
}
#footer .f-info .f-address {
	margin: 0 0 15px;
}
#footer .f-info .f-address .name {
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin: 0 0 10px;
}
#footer .f-info .f-address .txt {
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}
#footer .f-info .f-imgs {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto 30px;
	align-items: center;
	text-align: center;
	max-width: 100%;
}
#footer .f-info .f-imgs .item-01 {
	width: 110px;
	margin: 0 0 30px;
	padding: 0 5px;
}
#footer .f-info .f-imgs .item-02 {
	width: 70px;
	margin: 0 0 30px;
	padding: 0 5px;
}
#footer .f-info .copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#footer .f-info .copyright .f-logo {
	width: 80px;
	margin: 0 0 15px;
}
#footer .f-info .copyright .ttl {
	font-size: 2.2rem;
	font-weight: 500;
	flex: 1;
	letter-spacing: 0.05em;
	margin: 0 0 15px 10px;
}
#footer .f-info .copyright .txt {	
	font-size: 1.4rem;
	width: 100%;
}
@media only screen and (max-width: 1200px) {
	#footer .fnav {
		width: calc(65% - 30px);
	}
	#footer .fnav .nav-col {
		padding: 0 10px;
	}
	#footer .fnav .nav-col .ttl::before {
		border-left: 10px solid #808080;
		left: -13px;
	}
}
@media only screen and (max-width: 1000px) {
	#footer .f-info .f-btn .page-btn {
		font-size: 1.2rem;
	}
	#footer .fnav {
		width: 100%;
	}
	#footer .f-info {
		width: 100%;
	}
	#footer .f-info .f-btn {
		margin: 30px auto;
		max-width: 400px;
	}
	#footer .f-info .f-address {
		text-align: center;
	}
	#footer .f-info .f-imgs {
		justify-content: center;
	}
	#footer .f-info .copyright {
		justify-content: center;
		text-align: center;
	}
	#footer .f-info .copyright .ttl {
		flex: inherit;
	}
	
}
@media only screen and (max-width: 767px) {
	#footer {
		padding: 30px 0;
	}
	#footer .f-info .f-address {
		margin: 0 0 30px;
		text-align: left;
	}
	#footer .f-info .f-imgs {
		width: 245px;
		margin: 0 auto;
	}
	#footer .f-info .f-imgs .item-01 {
		width: 140px;
		margin: 0 0 15px;
	}
	#footer .f-info .f-imgs .item-02 {
		width: 90px;
		margin: 0 0 15px;
	}
	#footer .f-info {
		width: 100%;
	}
	#footer .f-info .copyright {
		text-align: center;
		justify-content: center;
	}
	#footer .f-info .copyright .ttl {
		flex: 100%;
		font-size: 1.8rem;
	}
}

/*==================================================================
	Content setting
===================================================================*/
.full {
	width: 100%;
}
.c-white {color: #fff !important;}
.c-blue {color: #65BCE6 !important;}

/* sliding-text */
.sliding-text {
	display: inline-block;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.sliding-text.on span {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all ease-in-out 0.3s;
	-o-transition: all ease-in-out 0.3s;
	transition: all ease-in-out 0.3s;
	transition-delay: 1.5s;
}
.sliding-text.on span {
	opacity: 1;
	visibility: visible;
}
.sliding-text:before {
	background: #fff;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 0;
	z-index: 2;
}
.sliding-text.on:before {
	-webkit-animation: sliding_bg 1.5s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
	animation: sliding_bg 1.5s cubic-bezier(0.19, 1, 0.22, 1) 1s forwards;
}
@keyframes sliding_bg {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 103%;
		width: 0;
	}
}

/* mainpage */
#mainpage {
	position: relative;
}
#mainpage .main-bg img {
	width: 100%;
}
#mainpage .main-ttl {	
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
#mainpage .main-ttl .ttl {
	color: #fff;
	font-size: 100px;
	letter-spacing: 0.1em;
}
#mainpage .main-text {
	border: 1px solid #fff;
	color: #fff;
	position: absolute;
	top: 50%;
	right: 30%;
	transform: translateY(-40%);
	transition: all 0.75s ease-out;
	transition-delay: 1s;
	opacity: 0;
	visibility: hidden;
}
#mainpage.on .main-text {
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
}
#mainpage.on .main-text img {
	width: 24px;
	max-width: 100%;
	margin: 50px 60px 30px;
}
@media only screen and (max-width: 1200px) {
	#mainpage .main-ttl .ttl {
		font-size: 48px;
	}
	#mainpage.on .main-text img {
		width: 16px;
		margin: 20px 40px;
	}
}
@media only screen and (max-width: 767px) {
	#mainpage .main-ttl {
		top: 50%;
		left: 15px;
		right: 15px;
		text-align: center;
		margin-top: -50px;
	}
	#mainpage .main-ttl .ttl {
		font-size: 40px;
	}
	#mainpage .main-text {
		top: 50%;
		right: 50%;
		transform: translateY(30px) translateX(50%);
	}
	#mainpage.on .main-text {
		transform: translateY(0) translateX(50%);
		opacity: 1;
		visibility: visible;
	}
	#mainpage.on .main-text img {
		width: 60px;
		margin: 15px 30px;
	}
}

.sec-ttl {
	max-width: 440px;
	width: 100%;
	position: absolute;
	z-index: 0;
}
.sec-ttl .headline {
	color: #004190;
	font-size: 4.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
	padding-left: 40px;
	position: relative;
}
.sec-ttl .headline:before {
	border-top: 2px solid #004190;
	border-right: 2px solid #004190;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	width: 20px;
	height: 20px;
	margin-top: 2px;
}
.sec-ttl .jp-ttl {
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	font-weight: 500;
}
.sec-ttl .txt {
	margin-bottom: 22px;
}
.sec-ttl .read-more:hover {
	color: #003472;
}
.read-more {
	color: #003472;
	display: inline-block;
	font-size: 2rem;
	position: relative;
	transition: all 0.25s ease-out;
	margin-top: 25px;
	padding-right: 35px;
}
.read-more::after {
	content: url('../imgs/top/ic_arrow02.svg');
	bottom: 5px;
	right: 0;
	width: 25px;
	height: 25px;
	position: absolute;
	transition: all 0.25s ease-out;
}
.read-more:before {
	content: "";
    width: 0;
    height: 0;
    background: #34A9E6;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
	transition: all 0.3s ease-out;
	z-index: -1;
}
a:hover .read-more:before,
a:hover ~ .read-more:before,
.read-more:hover:before {
	width: 60px;
    height: 60px;
	left: -30px;
}
@media screen and (max-width: 767px) {
	.sec-ttl {
		padding: 0 15px;
		width: auto;
		max-width: inherit;
	}
	.sec-ttl .headline {
		font-size: 3.5rem;
		padding-left: 30px;
		margin-bottom: 10px;
	}
	.sec-ttl .headline::before {
		width: 15px;
		height: 15px;
	}
	.sec-ttl .jp-ttl {
		font-size: 2rem;
		margin-bottom: 10px;
	}
	.sec-ttl .txt {
		margin-bottom: 15px;
	}
	.read-more {
		font-size: 1.6rem;
		padding-right: 25px;
		margin-top: 15px;
		white-space: nowrap;
	}
	.read-more:after {
		width: 15px;
		height: 15px;
	}
}
/* pagetop */
#pagetop {
	position: fixed;
	right: 15px;
	bottom: 15px;
}
#pagetop span { display: block; cursor: pointer; }
#pagetop img {
	transition: all ease-in-out 0.25s;
	width: 70px;
}
#pagetop:hover img { transform: translateY(-5px); }

@media screen and (max-width:767px) {
	#pagetop img { width: 40px; transform: translateY(0)!important; }
}


/* about-slider */
.about-slider {
	background: #1D4E7A;
	padding: 110px 0 90px;
	overflow: hidden;
}
.about-slider .slick-slide {
	margin: 0 20px;
}
.slide-about {
	width: 80%;
	max-width: 490px;
	margin: 0 auto;
	overflow: visible;
}
.slide-about .slick-list {
	overflow: visible;
}
.slide-about a {
	display: block;
	transition: all ease 0.25s;
}
.slide-about a:hover {
	opacity: 0.8;
}
.item-about .img {
	position: relative;
}
.item-about .ttl {
	position: absolute;
	top: 0;
	right: 30px;
	background: #000;
	border: 1px solid #fff;
	border-top: none;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	padding: 5px;
	min-width: 190px;
	text-align: center;
}
.about-slider .item-about .ttl {
	right: 16px;
	padding: 10px 5px;
	min-width: 140px;
	font-size: 1.25rem;
	text-transform: uppercase;
}
.item-about .more {
	color: #fff;
	position: absolute;
	bottom: 20px;
	left: 15px;
	font-size: 2rem;
	letter-spacing: 0.1em;
	padding: 10px;
	min-width: 180px;
	text-align: center;
}
.item-about .more span {
	margin-left: 10px;
}
.item-about .img a {
	transition: all ease 0.25s;
}
.item-about .img a:hover {
	opacity: 0.8;
}
.item-about .img {margin-bottom: 20px;}
.item-about .txt {
	color: #fff;
	font-size: 1.6rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
}
.item-about .more.bg-pink {background: #ED736B;}
.item-about .more.bg-cobalt {background: #004190;}
.item-about .more.bg-blue {background: #34A9E6;}
.slide-about .slick-dots {
	display: flex;
	justify-content: center;
	margin-top: 70px;
}
.slide-about button {
	cursor: pointer;
	display: block;
	width: 1.4vw;
	height: 1.4vw;
	padding: 0;
	border: 1px solid #fff;
    border-radius: 100%;
    background: transparent;
	text-indent: -9999px;
}
.slide-about li {
	padding: 0 10px;
}
.slide-about li.slick-active button {
	background: #fff;
}
@media screen and (max-width: 1200px) {
	.about-slider .slick-slide {
		margin: 0 15px;
	}
	.slide-about button {
		width: 10px;
		height: 10px;
	}
}
@media screen and (max-width: 767px) {
	.about-slider {
		padding: 60px 0;
	}
	.slide-about .slick-dots {margin-top: 30px;}
	.item-about .img {
		margin-bottom: 10px;
	}
	.item-about .txt {
		font-size: 1.2rem;
	}
	.item-about .more {
		font-size: 2.8vw;
		padding: 5px;
		min-width: 90px;
		bottom: 10px;
		left: 10px;
	}
	.item-about .ttl {
		font-size: 2.8vw;
		right: 10px;
		min-width: 70px;
	}
	.about-slider .slick-slide {
		margin: 0 10px;
	}
}
@media screen and (max-width: 499px) {
	.about-slider .item-about .ttl {
		right: 10px;
		padding: 5px;
		min-width: 100px;
		font-size: 1.2rem;
	}
}