@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Noto+Sans+JP:wght@100..900&display=swap');
/* =Reset
-------------------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;word-wrap:break-word;overflow-wrap:break-word;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {display: block;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:inherit;}
q:before,q:after{content:'';}
abbr,acronym{border:0;font-variant:normal;}
sup{vertical-align:super; font-size: 70%;}
sub{vertical-align: baseline; font-size: 70%;}
input,textarea,select,button{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select,button{*font-size:100%;}
legend{color:#000;}
img {vertical-align:top;}
input[type="radio"],input[type="checkbox"] {vertical-align: -2px;}
label {cursor: pointer;}


/* =Common
-------------------------------------------------------------- */
html{
	
}
html.is-fixed{
	height: 100%;
	overflow: hidden;
}
body {
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	
}
img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: auto;
	
}
input[type="submit"],
input[type="reset"] {
	appearance: none;
	cursor: pointer;
}



/* =Styles 
-------------------------------------------------------------- */
body {
	/* win：游ゴシック、mac：游ゴシック、iPhone：San Francisco、ヒラギノ（-1px） */
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #0A0A0A;
	background: #0d224a;
	display: none;
}
a {
	text-decoration: none;
	color: #000;
}
.pc{
	
}
.sp{
	display: none !important;
}

/*margin*/
.mT10{	margin-top:10px;}
.mT20{	margin-top:20px;}
.mT30{	margin-top:30px;}
.mT40{	margin-top:40px;}
.mT50{	margin-top:50px;}
.mT60{	margin-top:60px;}

/*list*/
ul.disc,
ul.disc li{
	list-style: disc;
}
ul.disc{
	padding-left: 1.5em;
}

@media ( max-width: 768px ){
	body {
		font-size: 14px;
		
	}
	.pc{
		display: none !important;
	}
	.sp{
		display: block !important;
	}
}

/* =header 
-------------------------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.header::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(#191E27 0%,#0C2550cc 45%,transparent 80%);
	width: 100%;
	height: 263px;
}
.header .header_in {
	display: flex;
	justify-content: space-between;
	max-width: 1770px;
	margin: 0 auto;
	padding: 43px 40px 0;
	position: relative;
	z-index: 1000;
}
.header .header_in .header_logo{
	max-width: 100px;
	width: 100%;
}
.header .header_in .header_logo img{
	width: 100%;
}
.header .header_in .header_nuv{
	display: flex;
	justify-content: space-between;
	max-width: 475px;
	width: 65%;
	margin-top: 22px;
}
.header .header_in .header_nuv a{
	color: #fff;
	font-family: "Michroma";
	font-size: 16px;
	transition: 0.3s;
	padding-bottom: 5px;
	position: relative;
}
.header .header_in .header_nuv a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}
.header .header_in .header_nuv a:hover::after{
	width: 100%;
}
.toggle_btn,
.toggle_nuv{
	display: none;
}
@media ( max-width: 768px ){
	.header::before{
		height: 120px;
	}
	.header .header_in{
		padding: 10px 20px;
	}
	.header .header_in .header_logo{
		width: 50px;
	}
	.header .header_in .header_nuv{
		display: none;
	}
	.toggle_btn {
		width: 45px;
		height: 45px;
		border: none;
		-webkit-backdrop-filter: blur(50px) brightness(20) opacity(0.5);
		backdrop-filter: blur(50px) brightness(20) opacity(0.5);
    	background-color: #ffffff33;
		border-radius: 4px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}
	.toggle_btn span {
		display: inline-block;
		position: relative;
		height: 2px;
		width: 20px;
		background: #000;
	}
	.toggle_btn span::before,
	.toggle_btn span::after {
		content: "";
		position: absolute;
		width: 20px;
		height: 2px;
		background: #000;
		left: 0;
		transition: 0.3s;
	}
	.toggle_btn span::before{
		top: -8px;
	}
	.toggle_btn span::after{
		bottom: -8px;
	}
	.toggle_btn.open span{
		background: none;
	}
	.toggle_btn.open span::before{
		transform: rotate(45deg);
		top: 0;
	}
	.toggle_btn.open span::after{
		transform: rotate(-45deg);
		top: 0;
	}
	.toggle_nuv {
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		-webkit-backdrop-filter: blur(10px) brightness(0.7);
		backdrop-filter: blur(10px) brightness(0.7);
		z-index: 999;
		padding-top: 80px;
	}
	.toggle_nuv_in{
		padding: 0 20px 10px;
	}
	
	.toggle_nuv ul li + li{
		border-top: solid 1px #707070;
	}
	.toggle_nuv ul li a{
		display: block;
		font-family: "Michroma";
		font-size: clamp(15px,3vw,20px);
		color: #fff;
		padding: 20px 0;
	}
	

}
/* =footer 
-------------------------------------------------------------- */
footer{
	padding: 210px 0 60px;
	position: relative;
	z-index: 10;
	-webkit-backdrop-filter: blur(10px) brightness(0.8);
	backdrop-filter: blur(10px) brightness(0.8);
}
footer .footer_in{
	max-width: 1540px;
	padding: 0 20px;
	margin: auto;
}
footer #contact{
	color: #fff;
	background: linear-gradient(110deg, #00296A 0%,#004B81 40%,#925A43 100%);
	padding: 70px 0 80px;
	border-radius: 20px;
}
footer #contact .contact_in{
	max-width: 1360px;
	margin: auto;
	padding: 0 20px;
}
footer #contact .contact_title{
	font-size: 48px;
	font-family: "Michroma";
	text-align: center;
	margin-bottom: 30px;
}
footer #contact .contact_content{
	display: flex;
	gap: 40px;
}
footer #contact .contact_box{
	width: 50%;
	text-align: center;
}
footer #contact .contact_box .contact_btn{
	margin-top: 20px;
}
footer #contact .contact_box .contact_btn a{
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(10px) brightness(1.5) opacity(0.5);
	backdrop-filter: blur(10px) brightness(1.5) opacity(0.5);
    background-color: #ffffff33;
	color: #fff;
	height: 145px;
	padding: 0 20px;
	line-height: 1.2;
	transition: 0.3s;
}
footer #contact .contact_box .contact_btn a:hover{
	opacity: 0.7;
}
footer #contact .contact_box.tel .contact_btn a{
	pointer-events: none;
}
footer #contact .contact_box .contact_btn a > div{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}
footer #contact .contact_box.tel .contact_btn a > div{
	font-size: 38px;
	font-family: "Michroma";
}
footer #contact .contact_box.mail .contact_btn a > div{
	font-size: 30px;
	font-weight: 500;
}
footer #contact .contact_box.tel .contact_btn a p{
	font-size: 12px;
	margin-top: 5px;
}
footer #contact .contact_box .contact_btn a img{
	width: 45px;
	margin: 0;
}
footer #contact .contact_box.tel .contact_btn a img{
	width: 42px;
}
footer .footer_nuv{
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}
footer .footer_nuv ul li + li{
	margin-top: 40px;
}
footer .footer_nuv ul li a{
	color: #fff;
	font-family: "Michroma";
	position: relative;
	padding-bottom: 5px;
}
footer .footer_nuv ul li a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}
footer .footer_nuv ul li a:hover::after{
	width: 100%;
}
footer .footer_nuv .footer_catchcopy{
	color: #fff;
	text-align: right;
	margin-top: 40px;
}
footer .footer_nuv .footer_catchcopy .jp{
	font-size: 54px;
	font-weight: 500;
}
footer .footer_nuv .footer_catchcopy .jp sub{
	vertical-align: sub;
}
footer .footer_nuv .footer_catchcopy .en{
	font-size: 24px;
	font-family: "Michroma";
	margin-top: 17.5px;
}
footer .footer_bottom{
	margin-top: 40px;
}
footer .footer_bottom .footer_logo{
	max-width: 250px;
}
footer .footer_bottom .copyright{
	font-family: "Michroma";
	font-size: 10px;
	color: #fff;
	margin-top: 15px;
}
@media ( max-width: 1200px ){
	footer #contact .contact_content{
		gap: 20px;
	}
	footer #contact .contact_box.tel .contact_btn a > div{
		font-size: 3vw;
	}
	footer #contact .contact_box.tel .contact_btn a img{
		width: 3vw;
	}
	footer #contact .contact_box.mail .contact_btn a > div{
		font-size: 2.8vw;
	}
	footer #contact .contact_box .contact_btn a img{
		width: 3.5vw;
	}
	footer .footer_nuv .footer_catchcopy .jp{
		font-size: 5vw;
	}
	footer .footer_nuv .footer_catchcopy .en{
		font-size: 2vw;
	}

}
@media ( max-width: 768px ){
	footer{
		padding: 50px 0 20px;
	}
	footer #contact{
		padding: 30px 0 40px;
	}
	footer #contact .contact_title{
		font-size: 24px;
	}
	footer #contact .contact_content{
		flex-flow: column;
		gap: 30px;
	}
	footer #contact .contact_box{
		width: auto;
		font-size: 15px;
	}
	footer #contact .contact_box .contact_btn a{
		height: 83px;
	}
	footer #contact .contact_box.tel .contact_btn a > div{
		font-size: 20px;
		gap: 7px;
		line-height: 1.5;
	}
	footer #contact .contact_box.mail .contact_btn a > div{
		font-size: 18px;
		gap: 7px;
	}
	footer #contact .contact_box.tel .contact_btn a img,
	footer #contact .contact_box.mail .contact_btn a img{
		width: 23px;
	}
	footer #contact .contact_box.tel .contact_btn a p{
		font-size: 11px;
		margin-top: 8px;
	}
	footer #contact .contact_box.tel .contact_btn a{
		pointer-events: all;
	}
	footer #contact .contact_box .contact_btn{
		margin-top: 15px;
	}
	footer .footer_nuv{
		flex-flow: column-reverse;
		gap: 55px;
		margin-top: 55px;
	}
	footer .footer_nuv .footer_catchcopy{
		text-align: center;
		margin-top: 0;
	}
	footer .footer_nuv .footer_catchcopy .jp{
		font-size: 24px;
	}
	footer .footer_nuv .footer_catchcopy .en{
		font-size: 11px;
		margin-top: 8px;
	}
	footer .footer_nuv ul{
		padding: 20px 30px;
		display: flex;
		flex-wrap: wrap;
		gap: 20px 0;
		border-top: solid 1px #8E8E8E;
		border-bottom: solid 1px #8E8E8E;
	}
	footer .footer_nuv ul li{
		width: 50%;
		text-align: center;
	}
	footer .footer_nuv ul li + li{
		margin: 0;
	}
	footer .footer_nuv ul li a{
		font-size: 15px;
	}
	footer .footer_bottom{
		margin-top: 50px;
	}
	footer .footer_bottom .footer_logo{
		margin: auto;
		max-width: 150px;
	}
	footer .footer_bottom .copyright{
		font-size: 8px;
		margin-top: 20px;
		text-align: center;
	}
}

.inner{
	max-width: 1540px;
	padding: 0 20px;
	margin: 0 auto;
}
h3{
	font-family: "Michroma";
	font-size: 83px;
	color: #fff;
	position: relative;
	display: inline-block;
	padding: 0 80px 25px 0;
}
h3::before{
	content: "";
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(to right,#D45918 0%,#D45918 80%,transparent 100%);
}
h3::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-100%);
	width: 100vw;
	height: 3px;
	background: #D45918;
}

@media ( max-width: 1200px ){
	h3{
		font-size: 7vw;
	}
}
@media ( max-width: 768px ){
	h3{
		font-size: 24px;
		padding: 0 50px 7px 0;
	}
	h3::before,
	h3::after{
		height: 1px;
	}
	
}

