@charset "UTF-8";

html { scroll-behavior: smooth; } /* smooth Scroll css */
body {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
	letter-spacing: 0.03rem;
	overflow-x: hidden;
}
#wrapper {
	width: 100%;
	height: 100%;
}
a { color: #0033ff; }




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

.txt-xsmall { font-size: 70%; }
.txt-small  { font-size: 80%; }
.txt-large  { font-size: 120%; }

a { text-decoration: underline; }


.pc-none { display: none; }
.sp-none { display: block; }
@media screen and (min-width:768px) and ( max-width:1100px) { /* --- tablet --- */
	.pc-none { display: none; }
	.sp-none { display: block; }
}

@media screen and (max-width: 768px) { /* --- sp --- */
	.pc-none { display: block; }
	.sp-none { display: none; }
}


.flex {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}



/* -----------------
	navi
------------------ */
/* PC */
#g-nav { position: relative; }
#g-nav-list {
	position: absolute;
	top: 15px;
	right: 15px;
}
#g-nav ul {
	position: relative;
	display: flex;
}
#g-nav ul li {}
#g-nav ul li a {
	display: inline-block;
	padding: 0 10px;
	font-size: 14px;
	color: #566488;
	font-weight: 700;
	text-decoration: none;
	transition: all .2s ease 0s;
}
#g-nav ul li a:hover {
	color: #0d1cce;
	transform: scale(1.1);
}


/* SP */
@media screen and (max-width: 1060px) {
#g-nav {
    position: fixed;
	top: -120%;
    left: 0;
	width: 100%;
    height: 100vh;
	background: #efefef;
	transition: all 0.6s;
	z-index: 999;
}
#g-nav-list {
	position: relative;
	top: auto;
	right: auto;
}

#g-nav.panelactive { top: 0; }

#g-nav.panelactive #g-nav-list{
    position: fixed;
    top: auto;
	right: auto;   
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
}

#g-nav ul {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    display: block;
    transform: translate(-50%,-50%);
    z-index: 999;
}
#g-nav ul li {
	display: block;
	list-style: none;
    text-align: center; 
}
#g-nav ul li a {
	display: block;
	padding: 10px;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
}

.openbtn1 {
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height: 50px;
}	
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #34406d;
  	width: 45%;
}
.openbtn1 span:nth-of-type(1) { top:15px; }
.openbtn1 span:nth-of-type(2) { top:23px; }
.openbtn1 span:nth-of-type(3) {	top:31px; }

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn1.active span:nth-of-type(2) { opacity: 0; }
.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}


/* ------------------------------------
	hero
------------------------------------- */
#hero {
	width: 100%;
	padding: 0 0 110px 0;
	background: url('../images/hero_bg.jpg') #eee no-repeat;
	background-size: cover;
}

/* 戻る */
#hero h1 {
	position: absolute;
	top: 17px;
	left: 15px;
}
#hero h1 a {
	display: block;
	padding: 0 0 0 22px;
	color: #566488;
	font-size: 15px;
	font-weight: 700;
	background: url('../images/icon-arrow-prev.svg') left top / 20px 20px no-repeat;
}

@media screen and (max-width: 1200px) {
	#hero h1 { width: 200px; }
	#hero h1 a {
		padding: 0 0 0 24px;
		font-size: 14px;
		line-height: 1.4;
		text-decoration: none;
		background: url('../images/icon-arrow-prev.svg') left center / 20px 20px no-repeat;
	}
}

/* ロゴ */
#hero .hero-logo {
	width: 680px;
	padding: 150px 0 10px 0;
	margin: 0 auto;
}
#hero .hero-logo img { width: 100%; height: auto; }

@media screen and (max-width: 730px) {
	#hero { padding: 0 30px 60px 30px; }
	#hero .hero-logo { width: 100%; padding: 100px 0 0 0; }
}



/* ------------------------------------
	CTA
------------------------------------- */
.CTA {
	width: 460px;
	margin: 40px auto 0 auto;
}
.CTA a {
	display: block;
	padding: 30px 0;
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 80px;
	background: url('../images/icon-arrow.svg') right 35px center / 28px 28px #34406d no-repeat;
	box-shadow: 3px 3px rgba(0,0,0,0.2);	
}
.CTA a:hover { animation: poyo .6s ease 0s 1 normal running none; }

@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.1); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.02); }
	80% { transform: scale(.98); }
}

@media screen and (max-width: 510px) {
	.CTA { width: 100%; }
	.CTA a { padding: 20px 0; font-size: 18px; }
}



/* ------------------------------------
	outline
------------------------------------- */
#outline {
	width: 100%;
	padding: 80px 0 30px 0;
	background-color: #f8f8fa;
	box-sizing: border-box;
}
#outline .inner {
	width: 600px;
	margin: 0 auto;
}
#outline .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#outline .inner .body { margin: 40px 0; }
#outline .inner .body h2 { color: #34406d; font-size: 18px; }
#outline .inner .body p { margin: 10px 0 25px 0; line-height: 1.4; font-weight: 500; }
#outline .inner .body table { width: 100%; line-height: 1.4; }
#outline .inner .body table th {
	width: 20%;
	padding: 15px 15px 15px 0;
	font-weight: normal;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}
#outline .inner .body table td {
	width: 80%;
	padding: 15px;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}

@media screen and (max-width: 650px) {
	#outline { padding: 80px 30px 01px 30px; }
	#outline .inner { width: 100%; }
	#outline .inner .ttl h1 { font-size: 24px; }
	#outline .inner .body table th,
	#outline .inner .body table td { width: 100%; display: block; }
	#outline .inner .body table th { padding: 15px 0 5px 0; font-weight: 700; border-bottom: none; }
	#outline .inner .body table td { padding: 0 0 15px 0; font-weight: 300; }
}






/* ------------------------------------
	flow
------------------------------------- */
#flow {
	width: 100%;
	padding: 80px 0 30px 0;
	background-color: #eaecf0;
	box-sizing: border-box;
}
#flow .inner {
	width: 600px;
	margin: 0 auto;
}
#flow .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#flow .inner .body { margin: 40px 0; }
#flow .inner .body ol {
	margin: 0 0 0 20px; 
	list-style-type: decimal;
	list-style-position: outside;
}
#flow .inner .body ol li { margin: 15px 0; font-weight: 500; line-height: 1.4; }
#flow .inner .body ol li img { width: 50%; height: auto; margin-top: 15px; }

@media screen and (max-width: 650px) {
	#flow { padding: 80px 30px 10px 30px; }
	#flow .inner { width: 100%; }
	#flow .inner .ttl h1 { font-size: 24px; }
	#flow .inner .body ol li img { width: 100%; }
}




/* ------------------------------------
	timetable
------------------------------------- */
#timetable {
	width: 100%;
	padding: 80px 0;
	background-color: #eaecf0;
	box-sizing: border-box;
}
#timetable .inner {
	width: 600px;
	margin: 0 auto;
}
#timetable .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#timetable .inner .body { margin: 40px 0; }
#timetable .inner .body table { width: 100%; line-height: 1.4; }
#timetable .inner .body table th {
	width: 23%;
	padding: 15px 15px 15px 0;
	font-weight: 500;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}
#timetable .inner .body table td {
	width: 77%;
	padding: 15px;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}

@media screen and (max-width: 650px) {
	#timetable { padding: 80px 30px 40px 30px; }
	#timetable .inner { width: 100%; }
	#timetable .inner .ttl h1 { font-size: 24px; }
	#timetable .inner .body table th,
	#timetable .inner .body table td { width: 100%; display: block; }
	#timetable .inner .body table th { padding: 15px 0 5px 0; font-weight: 700; border-bottom: none; }
	#timetable .inner .body table td { padding: 0 0 15px 0; font-weight: 300; }
}


/* ------------------------------------
	interview
------------------------------------- */
#interview {
	width: 100%;
	padding: 80px 0;
	box-sizing: border-box;
}
#interview .inner {
	width: 600px;
	margin: 0 auto;
}
#interview .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#interview .inner .body { margin: 40px 0; }
#interview .inner .body p { margin: 0 0 20px 0; }
#interview .inner .body a img { width: 100%; height: auto; transition: all .2s ease 0s; }
#interview .inner .body a img:hover { opacity: 0.7; transform: scale(1.1); }

@media screen and (max-width: 650px) {
	#interview { padding: 80px 30px 40px 30px; }
	#interview .inner { width: 100%; }
	#interview .inner .ttl h1 { font-size: 24px; }
}


/* ------------------------------------
	investors
------------------------------------- */
#investors {
	width: 100%;
	margin: 120px auto;
	padding: 0 50px;
	box-sizing: border-box;
}
#investors .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#investors .inner .ttl p { margin: 15px 0; text-align: center; font-size: 12px; }
#investors .inner .body { margin: 40px 0; }
#investors .inner .body ul li { width: 11%; margin: 0 7px 25px 7px; text-align: center; }
#investors .inner .body ul li h3 { margin: 10px 0 5px 0; font-size: 15px; }
#investors .inner .body ul li p { font-size: 11px; font-weight: 300; line-height: 1.4; }

#investors .inner .body ul li a { color: #222; text-decoration: none; }
#investors .inner .body ul li a:hover { text-decoration: underline; }

#investors .inner .body ul li img,
#investors .inner .body ul li a img { width: 100%; height: auto; transition: all .2s ease 0s; }
#investors .inner .body ul li a img:hover { transform: scale(1.1); }


@media screen and (max-width: 650px) {
	#investors { padding: 0 30px; }
	#investors .inner .ttl h1 { font-size: 24px; }
	#investors .inner .body ul { justify-content: space-between; }
	#investors .inner .body ul li { width: 31%; margin: 0 0 25px 0; }
	#investors .inner .body ul li h3 { font-size: 13px; }
	#investors .inner .body ul li p { font-size: 10px; }
}



/* ------------------------------------
	FAQ
------------------------------------- */
#FAQ {
	width: 100%;
	padding: 80px 0;
	background-color: #f8f8fa;
	box-sizing: border-box;
}
#FAQ .inner {
	width: 600px;
	margin: 0 auto;
}
#FAQ .inner .ttl h1 {
	font-size: 36px;
	color: #50525f;
	text-align: center;
	font-weight: 700;
}
#FAQ .inner .body { margin: 40px 0; }
#FAQ .inner .body article { padding: 15px 0; border-bottom: 1px solid #ccc; }
#FAQ .inner .body article h2 { color: #34406d; font-size: 20px; }
#FAQ .inner .body article p { margin: 10px 0; font-size: 15px; font-weight: 400; }

@media screen and (max-width: 650px) {
	#FAQ { padding: 80px 30px 30px 30px; }
	#FAQ .inner { width: 100%; }
	#FAQ .inner .ttl h1 { font-size: 24px; }
	#FAQ .inner .body article h2 { font-size: 17px; line-height: 1.4; }
	#FAQ .inner .body article p { font-size: 14px; font-weight: 300; line-height: 1.4; }
}




/* ------------------------------------
	footer
------------------------------------- */
#footer {
	width: 100%;
	padding: 50px 0 100px 0;
	background-color: #34406d;
	box-sizing: border-box;
}
#footer ul { align-items: center; }
#footer ul li { margin: 0 5px; text-align: center; color: #fff; }
#footer ul li img { width: 228px; height: 40px; }

@media screen and (max-width: 768px) {
	#footer ul { display: block; }
	#footer ul li { width: 100%; margin: 0; }
}


/* ------------------------------------
	Footer固定リンク
------------------------------------- */
#fixed-footer {
	position: fixed;
	bottom: -70px;
	width: 100%;
	box-sizing: border-box;
	transition: .5s;
}
#fixed-footer a {
	display: block;
	padding: 20px 0;
	text-align: center;
	color: #5e5552;
	font-size: 1.3em;
	text-decoration: none;
	background: url('../../../assets/images/hero-bg.jpg') no-repeat;
	background-size: cover;
	filter: drop-shadow(-1px 0px 2px rgb(201, 186, 160, 0.6));
}
#fixed-footer a img { width: 30%; height: auto; }
#fixed-footer.is-show { bottom: 0; }

@media screen and (max-width: 768px) {
	#fixed-footer a img { width: 80%; height: auto; }
}



