@charset "UTF-8";

html {
	font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}
body{
	margin:0;
	padding:0;
	color: #000000;
	background-color: #f9f9f9;
	font-size: 1.6rem;/* 16px */
	line-height: 2;
	/* [disabled]line-height:26px; */
	font-family: "Noto Sans JP","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	/*font-family: YuGothic, Yu Gothic, "游ゴシック", "メイリオ", "Meiryo", sans-serif;*/
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.5px;
}
@media screen and (min-width: 481px) and (max-width: 768px) {
	body {
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 480px) {
	body {
		font-size: 1.3rem;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}
.clearfix:after{
	content: "."; 
	display: block; 
	height: 0; 
	font-size:0;    
	clear: both; 
	visibility:hidden;
}
.clearfix{
	display: inline-block;
} 
/* Hides from IE Mac */
* html .clearfix{
	height: 1%;
}
.clearfix{
	display:block;
}
/* End Hack */
.ml10 {
	margin-left: 10px;
}
.mr10 {
	margin-right: 10px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt30 {
	margin-top: 30px;
}
.mt40 {
	margin-top: 40px;
}
.mt50 {
	margin-top: 50px;
}
.mt80 {
	margin-top: 80px;
}
.mt160 {
	margin-top: 160px;
}
.mb0 {
	margin-bottom: 0px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb60 {
	margin-bottom: 60px;
}
.pt10 {
	padding-top: 10px;
}
.pt30 {
	padding-top: 30px;
}
.pt40 {
	padding-top: 40px;
}
.pt60 {
	padding-top: 60px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb60 {
	padding-bottom: 60px;
}

/*-------------------- Reset */
h1,
h2,
h3,
p,
dl,
dt,
dd,
li {
  margin: 0;
  word-break: break-word;
}
a {
  color: #000;
  text-decoration: none; 
}
a:hover {
    text-decoration: none;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0; 
}
img {
	max-width: 100%;
	height: auto;
}


.img-spnone {
	display: block;
}
.img-pcnone {
	display: none;
}
@media screen and (max-width: 768px) {
	.img-spnone {
		display: none;
	}
	.img-pcnone {
		display: block;
	}
}


.en {
	font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.text600 {
	font-weight: 600;
}

 h2 {
  font-size: 3rem;
}
@media screen and (min-width: 481px)  and (max-width: 768px){
 h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 480px) {
 h2 {
    font-size: 1.8rem;
  }
}


.catch {
	font-size: 2.4rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch {
		font-size: 2rem;
	}
}
@media screen and (max-width: 480px) {
	.catch {
		font-size: 1.7rem;
	}
}

.catch2 {
	font-size: 2rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch2 {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 480px) {
	.catch2 {
		font-size: 1.5rem;
	}
}

.catch3 {
	font-size: 1.7rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
	.catch3 {
		font-size: 1.5rem;
	}
}
@media screen and (max-width: 480px) {
	.catch3 {
		font-size: 1.4rem;
	}
}

.box_center {
	text-align: center;
}

.btn_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 240px;
	height: 60px;
	border-radius: 30px;
	padding: 0 10px;
	border: 1px solid #ffffff;
	color: #ffffff;
	background: #05196E;
	background: linear-gradient(90deg, rgba(5, 25, 110, 1) 0%, rgba(40, 120, 255, 1) 50%, rgba(5, 25, 110, 1) 100%);
	background-size: 200% 100%;
	text-align: center;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	position: relative;
}
.btn_link::before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-left: 10px solid #ffffff;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}
.btn_link:hover {
	background-position: 100% 0;
}
@media screen and (max-width: 768px) {
	.btn_link {
		width: 220px;
		height: 50px;
		border-radius: 25px;
	}
}

/*---------------フッター*/
.footer {
	background-color: #051955;
	position: relative;
}
.footer .footer_inner {
	margin: 0 5%;
	padding: 40px 0;
}
.footer .footer_inner .footer_link_wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.footer .footer_inner .footer_link_wrap .footer_company {
	padding-right: 40px;
}
.footer .footer_inner .footer_link_wrap .footer_company img.f_logo {
	width: 170px;
}
.footer .footer_inner .footer_link_wrap .footer_company .company_info {
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 1.6;
}
.footer .footer_inner .footer_link_wrap .footer_company .company_info .disableTel a[href^="tel:"]{
	color: #ffffff;
	text-decoration: none;
	pointer-events: none;
}
.footer .footer_inner .footer_link_wrap .footer_right {
	display: flex;
	justify-content: flex-end;
}
.footer .footer_inner .footer_link_wrap .footer_right .footer_link {
	display: flex;
	flex-wrap: wrap;
}
.footer .footer_inner .footer_link_wrap .footer_right .footer_link li:not(last-child) {
	margin-right: 20px;
}
.footer .footer_inner .footer_link_wrap .footer_right .footer_link a {
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 1.6;
	transition: .4s;
}
.footer .footer_inner .footer_link_wrap .footer_right .footer_link a:hover {
	opacity: .7;
}
.footer .copyright {
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	color: #ffffff;
	padding: 20px 0;
}
@media screen and (max-width: 768px) {
	.footer .footer_inner {
		margin: 0 6%;
	}
	.footer .footer_inner .footer_link_wrap {
		flex-direction: column;
	}
	.footer .footer_inner .footer_link_wrap .footer_company {
		font-size: 1.3rem;
		padding-right: 0;
		margin-bottom: 20px;
	}
	.footer .footer_inner .footer_link_wrap .footer_company .company_info {
		font-size: 1.3rem;
	}
	.footer .footer_inner .footer_link_wrap .footer_right {
		justify-content: flex-start;
	}
	.footer .footer_inner .footer_link_wrap .footer_right .footer_link li a {
		font-size: 1.3rem;
	}
	.footer .copyright {
		font-size: 1rem;
		padding: 20px 0 40px;
	}
}
@media screen and (max-width: 480px) {
	.footer .footer_inner .footer_link_wrap .footer_right .footer_link {
		flex-direction: column;
	}
	.footer .footer_inner .footer_link_wrap .footer_right .footer_link li {
		width: 100%;
	}
	.footer .footer_inner .footer_link_wrap .footer_right .footer_link li:not(last-child) {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/*-----------------------第二階層共通*/
.section_mv {
	position: relative;
	padding-top: 90px;
}
.section_mv .mv_inner {
	height: 450px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
.section_mv .mv_inner .mv_title_wrap {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
}
.section_mv .mv_inner .mv_title_wrap .mv_title_box {
	display: flex;
	flex-direction: column;
	padding: 1.5em 6em 1.5em 2em;
	background-color: #f9f9f9;
	clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}
.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_lead {
	text-align: left;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.2px;
	color: #05287d;
	margin-bottom: 0.4em;
}
.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_title {
	text-align: left;
	font-size: 7rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.2px;
	color: #05287d;
}
@media screen and (max-width: 1023px) {
	.section_mv {
		padding-top: 70px;
	}
}
@media screen and (max-width: 991px) {
	.section_mv {
		padding-top: 70px;
	}
	.section_mv .mv_inner {
		height: 360px;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box {
		padding: 1.5em 5em 1.5em 2em;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_lead {
		font-size: 1.4rem;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_title {
		font-size: 5.6rem;
	}
}
@media screen and (max-width: 768px) {
	.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_title {
		font-size: 5rem;
	}
}
@media screen and (max-width: 480px) {
	.section_mv .mv_inner {
		height: 300px;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box {
		padding: 1.3em 4em 1.3em 2em;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_lead {
		font-size: 1.2rem;
	}
	.section_mv .mv_inner .mv_title_wrap .mv_title_box .mv_title {
		font-size: 4rem;
	}
}

.main .section {
	padding: 80px 5%;
}
.main .section_inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.main .section {
		padding: 50px 5%;
	}
}
.main .section-heading {
	margin-bottom: 40px;
	text-align: center;
}
.main .section-heading h2 {
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #05287d;
}
.main .section-heading .lead {
	font-size: 1.5rem;
	letter-spacing: 1px;
	color: #05287d;
}
.main .section-heading .catch {
	display: inline-block;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding-bottom: 10px;
	position: relative;
}
@media screen and (max-width: 768px) {
	.main .section-heading h2 {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 480px) {
	.main .section-heading h2 {
		font-size: 1.8rem;
	}
}






