@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,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:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{box-sizing:border-box;}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	color: #000;
}

a{
	text-decoration: none;
	color:inherit;
	transition: all .25s ease;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

a:hover{opacity: 0.7;}

img{
	vertical-align: top;
	line-height: 1;
	max-width:100%;
	height:auto;
}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}

.font-oswald {font-family: "Oswald", sans-serif;}
.font-staatliches {font-family: "Staatliches", sans-serif;}


/* layout ---------------------------------------*/
.wrapper {
	margin-top: 74px;
	min-height: calc(100vh - 410px);
}

.inner{
	max-width:1080px;
	margin:0 auto;
}

.overlay{display: none;}

.fc-indigo {color: #1491D1;}
.fc-red {color: #FF0404;}
.fc-blue-01 {color: #2933AD;}
.fc-blue-02 {color: #1D35D3;}


/* header ---------------------------------------*/

header {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	z-index: 10;
}

.header-inner {
	position: relative;
	height: 74px;
	margin: 0 auto;
	width: 100%;
}

.header-logo {
	display: block;
	position: absolute;
	top: 58%;
	left: calc(38 / 1280 * 100vw);
	transform: translateY(-50%);
	width: 197px;
}

.header-logo img {
	width: 100%;
}

#openmenu {display:none;}

/* gnav ---------------------------------------*/

.gnav {
	position:absolute;
	right: 0;
	bottom: 0;
	height: 100%;
}

.gnav-inner {
	height: 100%;
}

.gnav-list {
	display: flex;
	align-items: flex-end;
	height: 100%;
}

.gnav-list > li {
}

.gnav-list > li + li {
	margin-left: calc(36 / 1280 * 100vw);
}

.gnav-list > li:last-of-type {
	margin-left: calc(32 / 1280 * 100vw);
}

.gnav-list > li > a {
	display: block;
}

.gnav-list > li > a > small,
.gnav-list > li > small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 2;
	color: #707070;
	margin-bottom: 4px;
}

.gnav-list > li > a > span,
.gnav-list > li > span {
	display: block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.25;
	color: #000069;
	padding-bottom: 4px;
}

.has-child {
	position: relative;
}

.gnav-subchild {
	visibility: hidden;
	position: absolute;
	width: 100%;
	height: 2px;
}

.gnav-sublist {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 2px;
	left: -2px;
	width: max-content;
	transition: .25s;
}

.has-child:hover .gnav-subchild {
	visibility: visible;
}

.has-child:hover .gnav-sublist {
	visibility: visible;
	opacity: 1;
}

.gnav-sublist > li {
	position: relative;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.gnav-sublist > li:first-of-type {z-index: 5;}
.gnav-sublist > li:nth-of-type(2) {z-index: 4;}
.gnav-sublist > li:nth-of-type(3) {z-index: 3;}
.gnav-sublist > li:nth-of-type(4) {z-index: 2;}
.gnav-sublist > li:nth-of-type(5) {z-index: 1;}

.gnav-sublist > li > a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 5px 24px 8px 8px;
	background: #fff;
	width: 100%;
}

.gnav-sublist > li > a > small {
	display: block;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.08em;
	color: #000069;
	order: 2;
}

.gnav-sublist > li > a > span {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #000069;
	order: 1;
}

.gnav-list > li.gnav-contact {
	height: 100%;
}

.gnav-list > li.gnav-contact a {
	display: block;
	width: 150px;
	height: 100%;
	text-align: center;
	background: #1491D1;
	padding-top: 16px;
}

.gnav-list > li.gnav-contact a small,
.gnav-list > li.gnav-contact a span {color: #fff;}

.gnav-list > li.gnav-contact a small {
	font-size: 12px;
	margin-bottom: 2px;
}

/* fixedheader ---------------------------------------*/
.fixedheader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	transition: all 0.25s ease;
	transform: translate(0,-115%);
	z-index: 10;
}

.fixedheader.is-active {
	transform: translate(0,0);
}


/* footer ---------------------------------------*/
.footer {
	padding: 24px 20px 32px;
	background: #2933AD;
}

.footer-inner {
	max-width: 1210px;
	margin: 0 auto;
}

.footer-top {
	display: flex;
	gap: 20px;
	max-width: 1160px;
	width: 100%;
	margin: 0 0 6px auto;
}

.footer-logo {
	display: block;
	width: 107px;
	margin-top: 4px;
}

.footer-nav {
	display: flex;
	gap: min(calc(48 / 1280 * 100vw), 48px);
	margin-top: 8px;
	margin-left: calc(100 / 1160 * 100%);
}

.footer-nav-list {

}

.footer-nav-list > li {

}

.footer-nav-list > li + li {
	margin-top: 10px;
}

.footer-nav-list > li,
.footer-nav-list > li > a {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.footer-nav-list-child {
	margin-top: 2px;
	margin-left: 14px;
}

.footer-nav-list-child > li + li {
	margin-top: 4px;
}

.footer-nav-list-child > li > a {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
}

.footer-nav-list-child > li > a small {
	font-size: 12px;
}

.footer-nav-list-sub {
	margin-top: 10px;
	margin-left: 10px;
}

.footer-nav-list-sub > li + li {
	margin-top: 10px;
}

.footer-nav-list-sub > li > a {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
}

.footer-policy {
	margin-left: auto;
}

.footer-policy-list {
	margin-bottom: 30px;
}

.footer-policy-list > li {

}

.footer-policy-list > li + li {
	margin-top: 6px;
}

.footer-policy-list > li a {
	font-size: 12px;
	font-weight: 500;
	color: #fff;
}

.footer-policy-logolist {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	background: #fff;
	padding: 6px 4px;
}

.footer-policy-logolist-privacy {
	max-width: 52px;
	margin: 0 10px 0 4px;
}

.footer-policy-logolist-ias {
	max-width: 100px;
}

.footer-policy-logolist-gcerti {
	max-width: 70px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1160px;
	width: 100%;
	margin-left: auto;
}

.footer-info {

}

.footer-info-company {
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	color: #fff;
	margin-bottom: 10px;
}

.footer-info-detail {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.333;
	color: #fff;
}

.footer-copyright {
	display: block;
	font-size: 11px;
	font-weight: 500;
	line-height: 1.818;
	color: #fff;
}


/* title ---------------------------------------*/
.section-title {
	display: flex;
	align-items: center;
	gap: 42px;
	position: relative;
	padding-left: 60px;
	z-index: 1;
	margin-left: calc(58 / 1080 * 100%);
}

.section-title::before {
	position: absolute;
	top: 12px;
	left: 0;
	z-index: -1;
	width: 41px;
	height: 65px;
	background: url(../img/common/img_title_deco.png) no-repeat;
	background-size: contain;
	content: '';
}

.section-title span {
	display: block;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.479;
	color: #000069;
}

.section-title small {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.479;
	color: #000069;
}


/* text ---------------------------------------*/

.text-link {
	text-decoration: underline;
}

.text-link:hover {
	text-decoration: none;
	opacity: 1;
}


/* btn ---------------------------------------*/

.btn {
	display: inline-block;
	max-width: 371px;
	width: 100%;
	height: 77px;
	padding: 20px 20px;
	font-size: 25px;
	text-align: center;
	color: #fff;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	background: #1492D5;
	border-radius: 80px;
}


/* animation ---------------------------------------*/

.animation {
	transition: all 1.25s ease;
	transform:translate(0, 20px);
	opacity:0;
}

.animation.on {
	transform:translate(0, 0);
	opacity:1;
}

.animation-bounce {
	transition: all 0.8s ease;
	transform: translate(0, 0) rotate(-3deg);
	opacity:0;
}

.animation-bounce.on {
	opacity:1;
	transform: translate(0, 0) rotate(-3deg);
	animation: bounce 0.8s ease;
}


@keyframes bounce {
	0% {
		opacity:0;
		transform: translate(5px, 30px) rotate(-3deg) scale(0);
	}
	50% {
		opacity:1;
		transform: translate(-5px, -30px) rotate(-3deg) scale(1.1);
	}
	100% {
		opacity:1;
		transform: translate(0, 0) rotate(-3deg) scale(1);
	}
}


/* Not Found ---------------------------------------*/
.notfound {
	padding: 120px 20px 0;
	margin-bottom: 150px;
}

.notfound-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin: 0 auto 40px calc(74 / 1080 * 100%);
}

.notfound-text {
	font-size: 20px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-left: calc(74 / 1080 * 100%);
}


/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}



/* small pc */
@media screen and (min-width: 768px) and (max-width: 900px){
	.footer-logo {
		width: 70px;
	}

	.footer-nav {
		margin-left: calc(40 / 1160 * 100%);
	}

	.footer-policy-logolist-privacy {
		max-width: calc(52px / 1.3);
	}
	
	.footer-policy-logolist-ias {
		max-width: calc(100px / 1.3);
	}
	
	.footer-policy-logolist-gcerti {
		max-width: calc(70px / 1.3);
	}

	.footer-info-company {
		font-size: 14px;
	}
	
	.footer-info-detail {
		font-size: 14px;
	}
}

@media screen and (min-width: 768px) and (max-width: 800px){
	.header-logo {
		width: 170px;
	}
}


/* sp only */
@media screen and (max-width: 767px){

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}

	/* layout ---------------------------------------*/

	.header-inner,
	.footer-inner,
	.inner,
	.wrapper{
		min-width: 0;
		width: 100%;
	}

	.wrapper{
		overflow-x: hidden;
		min-height: unset;
	}


	/* header ---------------------------------------*/
	header {
		position: fixed;
	}

	.header-logo {
		top: 50%;
		left: 24px;
		width: 202px;
	}

	#openmenu {
		display:block;
		position:fixed;
		right: 5px;
		top: 5px;
		z-index: 101;
		width: 64px;
		height: 64px;
		text-indent: -99em;
		overflow: hidden;
		transition: all .25s ease;
	}

	#openmenu.is-open {
		top: 5px;
	}

	#openmenu span {
		content:'';
		display: block;
		width: 30px;
		height: 3px;
		background: #1491D1;
		border-radius: 5px;
		position: absolute;
		left: 18px;
		transition: all .25s ease;
	}

	#openmenu span:nth-child(1) {top: 22px;}
	#openmenu span:nth-child(2) {top: 31px;}
	#openmenu span:nth-child(3) {top: 40px;}

	#openmenu.is-open span {
		top:30px;
		left: 18px;
		background: #fff;
	}

	#openmenu.is-open span:nth-child(1) {
		transform:rotate(45deg);
	}

	#openmenu.is-open span:nth-child(2) {
		opacity: 0;
	}

	#openmenu.is-open span:nth-child(3) {
		transform:rotate(-45deg);
	}

	.header-wrap {
		display: contents;
	}


	/* gnav ---------------------------------------*/
	.gnav {
		background: #000069;
		overflow:auto;
		z-index:100;
		left:0px;
		top:0px;
		width:100%;
		max-width: unset;
		height: 100dvh!important;
		transition: all .25s ease;
		transform:translate3d(0,-100%,0);
		padding: 60px 16px 16px;
		border-radius: 36px;
		border: 2px solid rgba(255, 255, 255, 0.4);
		box-shadow: 40px 0 rgba(0,0,0,0.7), -40px 0 rgba(0,0,0,0.7);
	}

	.gnav.is-active {
		position: fixed;
		transform:translate3d(0,0,0);
		height: 100dvh;
		opacity:1;
	}

	.gnav-inner {
		overflow:auto;
	}

	.gnav-list {
		display: block;
		height: unset;
	}
	
	.gnav-list > li {
		position: relative;
	}
	
	.gnav-list > li:first-of-type {
		padding-bottom: 6px;
		margin-bottom: 22px;
	}

	.gnav-list > li:first-of-type::after {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		z-index: 1;
		width: calc(100% - 24px);
		height: 1px;
		background: rgba(255, 255, 255, 0.07);
		content: '';
	}

	.gnav-list > li + li {
		margin: 9px 0 0;
	}
	
	.gnav-list > li:last-of-type {
		margin: 9px 0 0;
	}
	
	.gnav-list > li > a {
		display: block;
		position: relative;
		padding: 16px 26px;
	}

	.gnav-list > li > a::after {
		position: absolute;
		top: 38px;
		right: 18px;
		z-index: 1;
		width: 11px;
		height: 17px;
		background: url('../img/common/icon_arrow_right.svg') no-repeat;
		background-size: contain;
		content: '';
	}
	
	.gnav-list > li > a > small,
	.gnav-list > li > small {
		color: #fff;
		margin-bottom: 2px;
	}
	
	.gnav-list > li > a > span,
	.gnav-list > li > span {
		color: #fff;
		padding-bottom: unset;
	}

	.has-child {
		position: unset;
	}

	.has-child > small {
		padding-left: 26px;
	}

	.has-child > span {
		padding: 0 0 16px 26px;
	}
	
	.gnav-subchild {
		visibility: unset;
		position: unset;
		width: 100%;
		height: unset;
	}
	
	.gnav-sublist {
		visibility: unset;
		opacity: 1;
		position: unset;
		width: unset;
	}
	
	.has-child:hover .gnav-subchild {
		visibility: unset;
	}
	
	.has-child:hover .gnav-sublist {
		visibility: unset;
	}
	
	.gnav-sublist > li {
		position: relative;
		box-shadow: unset;
		margin-left: 30px;
	}

	.gnav-sublist > li > a {
		display: block;
		position: relative;
		padding: 16px 26px;
		background: unset;
		width: 100%;
	}

	.gnav-sublist > li > a::after {
		position: absolute;
		top: 38px;
		right: 18px;
		z-index: 1;
		width: 11px;
		height: 17px;
		background: url('../img/common/icon_arrow_right.svg') no-repeat;
		background-size: contain;
		content: '';
	}
	
	.gnav-sublist > li > a > small {
		display: block;
		font-size: 14px;
		line-height: 1.6;
		color: #fff;
	}
	
	.gnav-sublist > li > a > span {
		font-size: 28px;
		color: #fff;
	}

	.gnav-list > li.gnav-contact {
		height: unset;
	}
	
	.gnav-list > li.gnav-contact a {
		width: 100%;
		height: 100%;
		text-align: left;
		padding: 16px 26px;
		border-radius: 20px;
	}

	.gnav-list > li > a > small,
	.gnav-list > li > small {
		font-size: 14px;
		letter-spacing: 0.1em;
	}
	
	.gnav-list > li > a > span,
	.gnav-list > li > span {
		font-size: 28px;
	}

	/* fixedheader ---------------------------------------*/
	.fixedheader {
		display: none;
	}

	.bodyfixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}

	/* footer ---------------------------------------*/
	.footer {
		padding: 30px 20px 62px;
	}

	.footer-top {
		flex-wrap: wrap;
		position: relative;
		max-width: unset;
		margin: 0 0 32px auto;
	}

	.footer-logo {
		width: 105px;
		margin-top: unset;
		margin-left: 6px;
		order: 2;
	}

	.footer-nav {
		flex-wrap: wrap;
		gap: 44px calc(10 / 341 * 100%);
		width: 100%;
		margin: 0 6px 68px;
		order: 1;
	}

	.footer-nav-list:first-of-type { width: calc(240 / 341 * 100%);}
	.footer-nav-list:nth-of-type(2) { width: calc(91 / 341 * 100%);}
	.footer-nav-list:nth-of-type(3) { width: 100%;}

	.footer-nav-list > li + li {
		margin-top: 4px;
	}

	.footer-nav-list-child {
		margin-top: 4px;
		margin-left: 10px;
	}

	.footer-nav-list-child > li + li {
		margin-top: 4px;
	}

	.footer-nav-list-child > li > a {
		font-size: 14px;
		font-weight: 500;
		color: #fff;
	}

	.footer-nav-list-child > li > a small {
		font-size: 10px;
		margin-left: 6px;
	}

	.footer-nav-list-sub {
		margin-top: 4px;
		margin-left: 12px;
	}

	.footer-nav-list-sub > li + li {
		margin-top: 4px;
	}

	.footer-nav-list-sub > li > a {
		letter-spacing: 0.05em;
	}

	.footer-policy {
		order: 3;
	}

	.footer-policy-list {
		display: flex;
		position: absolute;
		bottom: 196px;
		left: 14px;
		margin-bottom: unset;
	}

	.footer-policy-list > li + li {
		margin-top: unset;
		margin-left: 34px;
	}

	.footer-policy-list > li a {
		font-size: 10px;
	}

	.footer-policy-logolist {
		gap: 6px;
		padding: 3px 4px;
	}

	.footer-policy-logolist-privacy {
		max-width: 35px;
		margin: 0 8px 0 2px;
	}

	.footer-policy-logolist-ias {
		max-width: 66px;
	}

	.footer-policy-logolist-gcerti {
		max-width: 48px;
	}

	.footer-bottom {
		display: block;
		max-width: unset;
		margin: 0 3px;
	}

	.footer-info {
		margin-bottom: 42px;
	}

	.footer-info-company {
		letter-spacing: 0.05em;
		margin-bottom: 14px;
	}

	.footer-copyright {
		text-align: right;
	}


	/* title ---------------------------------------*/
	.section-title {
		display: block;
		padding-left: 46px;
		margin-left: 8px;
	}

	.section-title::before {
		top: 7px;
		width: 32px;
		height: 50px;
	}

	.section-title span {
		font-size: 37px;
	}

	.section-title small {
		font-size: 18.5px;
	}

	/* btn ---------------------------------------*/
	.btn {
		max-width: 297px;
		height: 62px;
		padding: 16px 20px;
		font-size: 20px;
	}

	/* Not Found ---------------------------------------*/
	.notfound {
		padding: 120px 20px 0;
		margin-bottom: 120px;
	}

	.notfound-title {
		font-size: 24px;
		margin: 0 auto 40px;
	}

	.notfound-text {
		font-size: 16px;
		margin-left: 0;
	}

}


/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}