@charset "utf-8";
/* CSS Document -----------------------------

 2021.03.03

--------------------------------------------*/
/*------------------------------------------

 * タグの設定

---------------------------------------------- */
a {
	display: inline-block;
	outline:none;
	color: #000;
	cursor: pointer;
	text-decoration: none;
    transition: all .3s ease;
}
input {
	font-family: futura-pt, sans-serif;
	line-height: 1.8;
}
input[type="submit"],
input[type="button"],
button {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	outline: none;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {display: none;}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"],
textarea {-webkit-appearance: none;border-radius: 0;}
select {
	font-family: ryo-gothic-plusn,sans-serif;
    -webkit-appearance: none;
	 -moz-appearance: none;
    appearance: none;
}
select::-ms-expand{font-family: futura-pt, sans-serif;}
table {width: 100%;}
/*------------------------------------------------*/
html {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-style: normal;
	font-weight: 500;
	font-size: 62.5%;
	line-height: 1.8;
	font-family: futura-pt-bold,  a-otf-gothic-bbb-pr6n, sans-serif;
	/*font-feature-settings: "palt" 1;*/
	word-break: break-all;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {font-size: 1.6em;line-height: 1.8;}
h2,h3,h4 {line-height: 1.4;}
figcaption,li,h5 {line-height: 1.8;}
p,table,td,th,dl,dd,dt {font-size: 1.6rem;line-height: 1.8;}
.AOTFGothic {font-family: a-otf-gothic-bbb-pr6n, sans-serif;font-weight: 400;font-style: normal;}
.inner_l {max-width: 149rem;margin: 0 auto;padding-right: 2rem;padding-left: 2rem;}
.inner_m {max-width: 114rem;margin: 0 auto;padding-right: 2rem;padding-left: 2rem;}
.inner_s {max-width: 86rem;;margin: 0 auto;padding-right: 2rem;padding-left: 2rem;}
.inner_xs {max-width: 68rem;;margin: 0 auto;padding-right: 2rem;padding-left: 2rem;}
.flexbox {display: flex;flex-wrap: wrap;justify-content: space-between;}
.blank {padding-top: 10rem;padding-bottom: 10rem;}
.title {
	margin-bottom: 5rem;
	color: #030E80;
	font-size: 2rem;
	text-align: center;
}
.title span {
	display: block;
	margin-bottom: 3rem;
	color: #000;
	font-weight: 400;
	font-style: normal;
	font-size: 2.5em;
	font-family: a-otf-gothic-bbb-pr6n, sans-serif;
	text-align: center;
}
.subttl {margin-bottom: 7rem;}
.subttl h3 {
	margin-bottom: 6rem;
	color: #0212B5;
	font-weight: 900;
	font-size: 4rem;
	text-align: center;
}
.subttl p {text-align: center;line-height: 2.2;}
.link_btn {display: block;text-align: center;}
.link_btn a {
	transition: .3s;
	padding: 2rem 8rem;
	border: 1px solid #030E80;
	border-radius: 10rem;
	background: #fff;
	color: #030E80;
	font-weight: 700;
	font-size: 2rem;
	text-align: center;
}
.link_btn a:hover {background: #030E80;color: #fff;}
.pc {display: block;}
.sp,.sp2 {display: none;}
@media only screen and ( max-width : 767px ) {
	body {font-size: 1.4em;}
	p,table,td,th,dl,dd,dt {font-size: 1.4rem;}
	.blank {padding-top: 5rem;padding-bottom: 5rem;}
	.title {font-size: 1.4rem;}
	.title span {margin-bottom: 1rem;}
	.subttl h3 {margin-bottom: 3rem;font-size: 3rem;}
	.link_btn a {padding: 2rem 4rem;font-size: 1.6rem;}
	.pc {display: none;}
	.sp {display: block;}
}
@media only screen and ( max-width : 480px ) {
	.subttl h3 {font-size: 2rem;}
	.sp2 {display: block;}
	.blank {padding-top: 3rem;padding-bottom: 3rem;}
}
/*------------------------------------------

    animation

------------------------------------------*/
.underline {display: inline-block;position: relative;}
.underline::after {	
	content: '';
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform: translate(-50%,50%);
	transition: all .3s ease 0s;
	width: 0;
	height: 2px;
	background: #fff;
}
.underline:hover {cursor: pointer;}
.underline:hover::after {width: 100%;}
/*------------------------------------------

    header

------------------------------------------*/
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9;
    width: 100%;
	height: 10rem;
	padding: 0 1rem;
	background: rgba(3,14,128,.5);
}
header .header_box {display: flex;align-items: center;height: 100%;}
header nav {width: 100%;}
header p.logo {width: 100%;max-width: 27rem;}
header ul {display: flex;justify-content: flex-end;align-items: center;}
header li {position: relative;}
header li a,
header li p {
	display: block;
	position: relative;
	transition: .3s;
	padding: 0 5rem;
	color: #fff;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}
header li a:hover,
header li p:hover {color: #ccc;}
header li p::after {
	content: "";
	position: absolute;
    right: 1rem;
	bottom: 50%;
	transform: translate(0,50%);
	transition: .3s;
	width: 0;
	height: 0;
	border-top: .9rem solid #fff;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
}
header li p:hover::after {border-top: 1.1rem solid #ccc;}
header li ul {
	display: none;
	position: absolute;
    top: 7.2rem;
	left: -5rem;
    width: 28rem;
	box-shadow: .5rem .5rem 1rem rgba(0,0,0,.2);
}
header li ul li a {padding: 2rem 0;background: rgba(255,255,255,.9);color: #000;}
header li ul li a:hover {background: #000;color: #fff;}
header li span {display: block;font-weight: 500;text-align: center;}
header .entrybtn {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 26.5rem;
	padding: 3rem 5rem;
	overflow: hidden;
	border: 1px solid #fff;
	background: #292727;
	color: #fff;
}
header .entrybtn:hover {color: #292727;}
header .entrybtn::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -5;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
	background: #fff;
}
header .entrybtn:hover::before {transform-origin: left top;transform: scale(1, 1);}
header .entrybtn::after {display: none;}
@media only screen and ( max-width : 1235px ) {
	header p.logo {max-width: 20rem;}
	header li a {padding: 0 2rem;font-size: 1.4rem;}
	header li p {padding: 0 4rem 0 0;font-size: 1.4rem;}
	header li ul {top: 6.9rem;left: -11rem;}
	header .entrybtn {padding: 3rem 2rem;}
}
@media only screen and ( max-width : 1024px ) {
	header li a {padding: 0 1rem;}
}
@media only screen and ( max-width : 767px ) {
	#js-black-bg {
		position: fixed;
		left: 0;
		top: 0;
		z-index: 6;
		transition: .3s all;
		opacity: 0;
		visibility: hidden;
		width: 0;
		height: 100vh;
		background: #333;
		cursor: pointer;
	}
	#js-black-bg.clicked {opacity: .5;visibility: visible;width: 100%;}
	header {height: 6rem;padding: 2rem;}
	header nav {
		position: fixed;
		top: 6rem;
		right: -100%;
		z-index: 8;
		transition: .3s;
		width: 60%;
		background: #fff;
	}
	header nav.clicked {right: 0;box-shadow: 0 0 1rem rgba(0,0,0,.2);}
	header ul {display: block;}
	header li a,
	header li p {padding: 2rem 0;border-bottom: 1px solid #292727;color: #292727;}
	header li ul {
		position: inherit;
		top: inherit;
		left: inherit;
		width: 100%;
		box-shadow: none;
	}
	header li p::after {border-top: .9rem solid #000;}
	header .entrybtn {max-width: 100%;margin-bottom: 0;border-radius: 0;}
	#sp-menu {position: fixed;top: 2rem;right: 2rem;z-index: 10;}
	#sp-menu a {position: relative;width: 2.7rem;height: 1.8rem;}
	#sp-menu span {
		position: absolute;
		display: inline-block;
		left: 0;
		width: 100%;
		height: 3px;
		background: #fff;
		border-radius: 1rem;
		transition: all .4s;
	}
	#sp-menu span:nth-child(1) {top: 0;}
	#sp-menu span:nth-child(2) {top: .7rem;}
	#sp-menu span:nth-child(3) {bottom: 0;}
	#sp-menu span:nth-child(2)::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		transition: all .4s;
		width: 100%;
		height: 3px;
		background: #fff;
		border-radius: 1rem;
	}
	#sp-menu.clicked span:nth-child(2) {transform: rotate(-45deg);}
	#sp-menu.clicked span:nth-child(2)::after {transform: rotate(90deg);}
	#sp-menu.clicked span:nth-child(1) {transform: translateY(20px) scale(0);}
	#sp-menu.clicked span:nth-child(3) {transform: translateY(-20px) scale(0);}
}
@media only screen and ( max-width : 480px ) {
	header nav {width: 70%;}
}
/*------------------------------------------

    NEWS

------------------------------------------*/
#news .flexbox {margin-bottom: 5rem;}
#news .title {width: 25%;}
#news dl {width: 75%;overflow: hidden;}
#news dt {
	display: flex;
	justify-content: space-between;
    align-items: center;
	float: left;
	clear: left;
	width: 100%;
	max-width: 32rem;
	margin-right: 8%;
	padding-left: 4rem;
	font-size: 1.4rem;
}
#news dt span {
	width: 100%;
	max-width: 13.7rem;
	padding: 1rem 0;
	font-size: 1.5rem;
	text-align: center;
}
.cate1 {border: 1px solid #030E80;background: #0212B5;color: #fff;}
.cate2 {border: 1px solid #0212B5;background: #fff;color: #0212B5;}
#news dd {
	position: relative;
	margin-bottom: 3rem;
	padding-right: 5rem;
	border-bottom: 1px solid #707070;
}
#news dd:last-child {margin-bottom: 0;}
#news dd::before,
#news dd::after {
	content: '';
	position: absolute;
	right: 2.2rem;
	bottom: 50%;
	transform: translate(0,50%) rotate(45deg);
	width: 11px;
	height: 11px;
	border-top: 5px solid #030E80;
	border-right: 5px solid #030E80;
}
#news dd::after {right: 1rem;}
#news dd a {
	display: flex;
	align-items: center;
	height: 4.5rem;
	
	font-size: 1.6rem;
}
#news dd a:hover {color: #ccc;}
@media only screen and ( max-width : 1021px ) {
	#news .title {width: 100%;}
	#news dl {width: 100%;}
}
@media only screen and ( max-width : 767px ) {
	#news dt {
		float: none;
		height: auto;
		max-width: 100%;
		margin-bottom: 2rem;
		padding-left: 0;
	}
}
@media only screen and ( max-width : 480px ) {
}
/*------------------------------------------

	WORKS

------------------------------------------*/
#works .flexbox {justify-content: flex-start;}
#works .txtbox {width: 29%;margin: 0 2% 5rem;border: 1px solid #707070;}
#works .txtbox:hover {box-shadow: 1rem 1rem 0 #000;}
#works .txtbox div {padding: 2rem 10%;}
#works .txtbox p {margin-bottom: 2.4rem;}
#works .txtbox p span {
	display: inline-block;
	transition: .3s;
	width: 100%;
	max-width: 40%;
	margin-left: 10%;
	padding: 8px 0;
	border: 1px solid #0212B5;
	border-radius: 5rem;
	background: #fff;
	color: #0212B5;
	font-weight: 900;
	text-align: center;
}
#works .txtbox:hover p span {background: #0212B5;color: #fff;}
#works .txtbox h3 {font-size: 2.2rem;}
@media only screen and ( max-width : 1024px ) {
	#works .txtbox h3 {font-size: 1.8rem;}
}
@media only screen and ( max-width : 767px ) {
	#works .flexbox {margin-bottom: 5rem;}
	#works .txtbox {width: 48%;margin: 0 1% 2rem;}
	#works .txtbox div {padding: 1rem;}
	#works .txtbox p span {padding: 5px 0;}
}
@media only screen and ( max-width : 480px ) {
	#works .txtbox {width: 100%;}
	#works .txtbox h3 {font-size: 1.6rem;}
}
/*------------------------------------------

	CONTACT

------------------------------------------*/
#contact-bt {position: relative;}
#contact-bt p {margin-bottom: 5rem;text-align: center;}
#contact-bt .link_btn a {padding: 3rem 10rem;font-size: 3rem;}
@media only screen and ( max-width : 767px ) {
	#contact-bt .link_btn a {padding: 2rem 5rem;font-size: 1.8rem;}
}
@media only screen and ( max-width : 480px ) {
	#contact-bt .link_btn a {padding: 2rem;}
}
/*------------------------------------------

    FOOTER

------------------------------------------*/
footer {
	position: relative;
	padding: 2rem 4rem;
	border-top: 2rem solid #000;
	background: #000;
	color: #fff;
}
footer figure {max-width: 26.7rem;margin: 0 auto 4.5rem;}
footer p.txt {margin-bottom: 9.5rem;text-align: center;}
footer ul {position: absolute;bottom: 2rem;right: 3%;}
footer ul li {text-align: right;}
footer ul li a {color: #fff;line-height: 3;}
footer p.copy {font-size: 1.3rem;text-align: center;}
@media only screen and (max-width: 767px) {
	footer p.txt {margin-bottom: 4rem;font-size: 1.4rem;}
	footer ul {position: initial;margin-bottom: 5rem;}
	footer ul li {font-size: 1.4rem;text-align: center;}
}
/*------------------------------------------

    Not Found 404

------------------------------------------*/
#notfound {padding: 20rem 0 10rem;}
#notfound h2 {margin-bottom: 5rem;text-align: center;}
#notfound h2 span {
	display: block;
	font-weight: 700;
	font-size: 2.5em;
	text-align: center;
}
#notfound p {margin-bottom: 4rem;text-align: center;}
@media only screen and ( max-width : 767px ) {
	#notfound {padding-top: 13rem;}
}
/*------------------------------------------

　   back top

------------------------------------------*/
.wrapper {position: relative;}
p.page_top {right: 1rem;bottom: 1rem;z-index: 5;}
p.page_top a {
	display: inline-block;
	vertical-align: middle;
	width: 4rem;
	height: 4rem;
	position: relative;
	border: .3rem solid #000;
	border-radius: .5rem;
	background: #fff;
}
p.page_top a::before {
	content: "";
	position: absolute;
    left: 50%;
	bottom: 50%;
	transform: translate(-50%,50%);
	width: 0;
	height: 0;
	border-left: 1rem solid transparent;
	border-right: 1rem solid transparent;
	border-bottom: 1.5rem solid #000;
}