@charset "UTF-8";
/*------------------------------------------------------------
	サイト幅でセンタリング
------------------------------------------------------------*/
/*------------------------------------------------------------
	breakpoint
------------------------------------------------------------*/
/*------------------------------------------------------------
	フォント
------------------------------------------------------------*/
/*------------------------------------------------------------
	clearfix
------------------------------------------------------------*/
/*------------------------------------------------------------
	flex
------------------------------------------------------------*/
/*------------------------------------------------------------
	Other
------------------------------------------------------------*/
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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,
font,
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,
figcaption,
figure,
section {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

html {
	font-size: 62.5%;
}
@media (min-width: 1440px) {
	html {
		font-size: 0.520833vw;
	}
}
@media (min-width: 600px) and (max-width: 1024px) {
	html {
		font-size: clamp(15px, 1.3vw, 16.5px);
	}
}
@media screen and (max-width: 374px) {
	html {
		font-size: max(2.6666666667vw, 9px);
	}
}

body,
table,
input,
textarea,
select,
option {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
main,
hgroup,
menu,
nav,
section,
summary {
	display: block;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

chrome_annotation {
	border: none !important;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

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

address {
	font-style: normal;
}

a {
	color: #444444;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:visited {
	color: #444444;
}
a:hover {
	color: #9b9b9b;
}
a:active {
	color: #444444;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media screen and (max-width: 600px) {
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}

.popup {
	opacity: 0;
	-webkit-transform: translateY(2rem);
	        transform: translateY(2rem);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.popuped {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

.popup_margin {
	opacity: 0;
	-webkit-transform: translateY(2rem);
	        transform: translateY(2rem);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.popup_margin::before, .popup_margin::after {
	opacity: 0;
	margin-top: 2rem;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.popuped_margin {
	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.popuped_margin::before, .popuped_margin::after {
	opacity: 1;
	margin-top: 0;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #444444;
	line-height: 1.7;
	-moz-text-size-adjust: none;
	 -ms-text-size-adjust: none;
	     text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background: #ffffff;
	max-width: 256rem;
	margin: 0 auto;
}
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1025px) {
	body .sp {
		display: none !important;
	}
}
@media screen and (max-width: 1024px) {
	body {
		min-width: inherit;
	}
	body a:hover,
	body a:hover img {
		opacity: 1 !important;
	}
	body .pc {
		display: none !important;
	}
}

#container {
	position: relative;
	text-align: left;
}

.en {
	font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
	text-transform: uppercase;
}

/*------------------------------------------------------------
	header
------------------------------------------------------------*/
#gHeader {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	z-index: 1000;
	margin-left: min(3%, 8.6rem);
	margin-right: min(4%, 7.1rem);
	height: 7.8rem;
}
@media screen and (max-width: 1024px) {
	#gHeader {
		margin-top: 2rem;
		margin-right: min(1%, 7.1rem);
		position: fixed;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		top: 0;
		left: 0;
		margin-top: 0;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		width: calc(100% - (min(3%, 8.6rem) + min(4%, 7.1rem)));
	}
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
	#gHeader {
		padding: 2rem 0%;
	}
}
#gHeader .hBox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	z-index: 100;
}
@media screen and (max-width: 1024px) {
	#gHeader .hBox {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
#gHeader .hBox h1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
#gHeader .hBox h1 .logo {
	width: 100%;
	max-width: 24.5rem;
}
#gHeader .hBox .gNav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
}
#gHeader .hBox .gNav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
#gHeader .hBox .gNav ul .navItem {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#gHeader .hBox .gNav ul .navItem:not(:first-child) {
	margin-left: 3rem;
}
#gHeader .hBox .gNav ul .navItem a {
	display: block;
	color: #444444;
	text-align: center;
	font-size: max(12px,1rem);
	font-weight: 700;
	line-height: 1.6;
	width: 100%;
	white-space: nowrap;
	font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 1025px) {
	#gHeader .hBox .gNav ul .navItem a {
		font-size: 1.4rem;
		line-height: 1;
		width: auto;
	}
}
#gHeader .hBox .gNav ul .navItem a .ja {
	display: block;
	font-size: max(12px,1.2rem);
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1025px) {
	#gHeader .hBox .gNav ul .navItem a .ja {
		font-size: 1.2rem;
		line-height: 1;
		margin-top: 0.4rem;
	}
}
@media screen and (max-width: 600px) {
	#gHeader .hBox #gNav {
		display: none !important;
	}
}
#gHeader.fixed {
	position: fixed;
	top: 0;
	left: 0;
	margin-top: 0;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: calc(100% - (min(3%, 8.6rem) + min(4%, 7.1rem)));
}
@media screen and (max-width: 1024px) {
	#gHeader.fixed {
		padding: 2rem 0%;
	}
}
#gHeader.fixed.show {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*------------------------------------------------------------
	contact
------------------------------------------------------------*/
#contact {
	position: relative;
	z-index: 1;
	background: -webkit-gradient(linear, left top, right top, color-stop(0.06%, #06b9d9), color-stop(102.85%, #d0eefb));
	background: -webkit-linear-gradient(left, #06b9d9 0.06%, #d0eefb 102.85%);
	background: linear-gradient(90deg, #06b9d9 0.06%, #d0eefb 102.85%);
	padding-bottom: 20rem;
	padding-top: 6rem;
}
@media screen and (max-width: 1024px) {
	#contact {
		padding-top: 6rem;
	}
}
#contact .wrapper {
	width: 88%;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media screen and (min-width: 1025px) {
	#contact .wrapper {
		width: 74%;
	}
}
#contact .headLine01 {
	margin-top: 4rem;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#contact .headLine01 .en {
	color: #ffffff;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(10, 186, 218, 0.5);
	        box-shadow: 0px 0px 4px 0px rgba(10, 186, 218, 0.5);
}
#contact .headLine01 .ja {
	text-align: center;
	color: #ffffff;
	-webkit-box-shadow: 0px 0px 4px 0px rgba(10, 186, 218, 0.5);
	        box-shadow: 0px 0px 4px 0px rgba(10, 186, 218, 0.5);
}
#contact .box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1.4rem;
	margin-top: 6rem;
}
@media screen and (max-width: 1024px) {
	#contact .box {
		margin-top: 4rem;
	}
}
#contact .box .box1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	border-radius: 4.6rem;
	border: 0.1rem solid #fff;
	padding: 2.4rem 4.1rem;
}
@media screen and (max-width: 1024px) {
	#contact .box .box1 {
		padding: 2.4rem 3rem;
	}
}
#contact .box .box1 .flexB {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
@media screen and (max-width: 1024px) {
	#contact .box .box1 .flexB {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}
#contact .box .box1 h3 {
	color: #ffffff;
	text-shadow: 0px 0px 4px rgba(10, 186, 218, 0.7);
	font-size: 2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	vertical-align: middle;
}
@media screen and (max-width: 1024px) {
	#contact .box .box1 h3 {
		font-size: 1.8rem;
	}
}
#contact .box .box1 p {
	color: #ffffff;
	text-shadow: 0px 0px 4px rgba(10, 186, 218, 0.7);
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
#contact .box .box1 .tel {
	margin-top: 0;
	font-size: 4rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	color: #ffffff;
}
@media screen and (max-width: 1024px) {
	#contact .box .box1 .tel {
		font-size: 3rem;
	}
}
#contact .box .box1 .tel::before {
	content: "";
	display: inline-block;
	width: 3.4rem;
	height: 3.4rem;
	background-image: url(../img/phone.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-block: auto;
	margin-right: 1rem;
}
@media screen and (max-width: 1024px) {
	#contact .box .box1 .tel::before {
		width: 2.4rem;
		height: 2.4rem;
	}
}
#contact .box .address_text {
	margin-top: 2rem;
	text-align: center;
}
#contact .box .box2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 1.45rem 4.1rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	border-radius: 4.6rem;
	border: 0.1rem solid #fff;
	text-decoration: none;
}
@media screen and (max-width: 1024px) {
	#contact .box .box2 {
		padding: 1.45rem 3rem;
	}
}
#contact .box .box2:hover {
	background: rgba(255, 255, 255, 0.2);
}
#contact .box .box2 .btn {
	color: #ffffff;
	text-shadow: 0px 0px 4px rgba(10, 186, 218, 0.7);
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	#contact .box .box2 .btn {
		font-size: 1.8rem;
	}
}

/*------------------------------------------------------------
	footer
------------------------------------------------------------*/
#gFooter {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding-bottom: 15rem;
	background: #ecf9ff;
	z-index: 3;
}
#gFooter .bg {
	background: #ffffff;
	border-radius: 5rem;
	margin: -14rem auto;
	width: 100rem;
	max-width: 95%;
	padding: 5rem 5rem 1rem;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg {
		padding: 3rem 2.3rem 1rem;
	}
}
#gFooter .bg .content {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding-top: 1.1rem;
	gap: 3rem;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg .content {
		gap: 2rem;
	}
}
#gFooter .bg .content p {
	font-size: 1.6rem;
	color: #444444;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.5;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg .content p {
		font-size: 1.4rem;
	}
}
#gFooter .bg .content img {
	width: 100%;
	margin-top: 4rem;
	max-width: 35.5rem;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg .content img {
		margin-top: 4rem;
		max-width: 25rem;
	}
}
#gFooter .bg .content ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
	gap: 1rem;
	font-size: 1.4rem;
	color: #444444;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg .content ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	#gFooter .bg .content ul a {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		font-size: 1.4rem;
		font-weight: 500;
	}
}
#gFooter .bg .content address {
	font-size: 1rem;
	color: #444444;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	padding-top: 3.5rem;
}
@media screen and (max-width: 1024px) {
	#gFooter .bg .content address {
		padding-top: 1.5rem;
	}
}
@media screen and (min-width: 1025px) {
	#gFooter .bg .content address {
		font-size: 1.4rem;
	}
}

/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-WYX */
/* flex */
.flex,
.flexA,
.flexB,
.flexC {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.flexA {
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
}

.flexB {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.flexC {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.block {
	display: block;
}

@media screen and (max-width: 1024px) {
	.sp_sblock {
		display: block;
	}
}

@media screen and (min-width: 1025px) {
	.pc_block {
		display: block;
	}
}

p {
	color: #444444;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	p {
		font-size: 1.6rem;
	}
}

.title-small {
	font-size: 3.6rem;
}
@media screen and (max-width: 1024px) {
	.title-small {
		font-size: 2.4rem;
	}
}

.rowList {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	margin-top: 3.8rem;
}
@media screen and (max-width: 1024px) {
	.rowList {
		margin-top: 2.4rem;
	}
}
.rowList .list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding: 2.8rem 1.2rem;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 2rem;
	-webkit-align-self: stretch;
	    -ms-flex-item-align: stretch;
	        align-self: stretch;
	border-bottom: 1px solid #1c9ab0;
}
@media screen and (min-width: 1025px) {
	.rowList .list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		    -ms-flex-direction: row;
		        flex-direction: row;
	}
}
@media screen and (max-width: 1024px) {
	.rowList .list {
		gap: 0.4rem;
		padding: 1.8rem 0.8rem;
	}
}
.rowList .list h4,
.rowList .list h5 {
	width: 10rem;
	color: #047294;
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	.rowList .list h4,
	.rowList .list h5 {
		width: 100%;
		font-size: 1.6rem;
	}
}
.rowList .list p {
	margin-top: 0;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	color: #444444;
	font-size: 2rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	.rowList .list p {
		font-size: 1.4rem;
	}
}
.rowList .list p a {
	text-decoration: underline;
}

.flow_list {
	margin-top: 6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: min(6rem, 2vw);
	padding-left: 6%;
	padding-right: 6%;
}
@media screen and (min-width: 1025px) {
	.flow_list {
		padding-left: 13%;
		padding-right: 13%;
	}
}
@media screen and (max-width: 1024px) {
	.flow_list {
		margin-top: 4rem;
		gap: 4rem;
		overflow-x: scroll;
		height: 30rem;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
}
.flow_list .flow_item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 1rem;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	position: relative;
	background: #ffffff;
	padding: 3rem 3rem 3rem;
	border: 0.1rem solid #1c9ab0;
	border-radius: 4rem;
}
@media screen and (max-width: 1024px) {
	.flow_list .flow_item {
		-webkit-box-flex: 0;
		-webkit-flex: none;
		    -ms-flex: none;
		        flex: none;
		-webkit-box-align: center;
		-webkit-align-items: center;
		    -ms-flex-align: center;
		        align-items: center;
		width: 25rem;
		height: 25rem;
		margin-top: 2rem;
	}
}
.flow_list .flow_item.blue {
	background: #28b5d1;
	color: white;
}
.flow_list .flow_item.blue .flow_title {
	color: white;
}
.flow_list .flow_item.blue .flow_text {
	color: white;
}
.flow_list .flow_item.blue .flow_icon {
	color: white;
}
.flow_list .flow_item.next {
	background: #e2f6fc;
}
.flow_list .flow_item:not(:first-child)::before {
	content: "";
	display: block;
	width: 6rem;
	height: 6rem;
	background: url(../img/flow_arrow.svg) no-repeat center center;
	background-size: 6rem;
	position: absolute;
	top: 50%;
	top: 50%;
	left: max(-4.8rem, -3.8vw);
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	.flow_list .flow_item:not(:first-child)::before {
		width: 4rem;
		height: 4rem;
		background-size: 4rem;
		left: -4rem;
	}
}
.flow_list .flow_item::after {
	content: "";
	position: absolute;
	top: 1.2rem;
	left: 1.2rem;
	width: 100%;
	height: 100%;
	border-radius: 4.1rem;
	background: #c7ecf9;
	z-index: -1;
}
@media screen and (max-width: 1024px) {
	.flow_list .flow_item::after {
		top: 1.2rem;
		left: 1.2rem;
	}
}
.flow_list .flow_item .flow_icon {
	width: 8rem;
	aspect-ratio: 1/1;
	margin: 0 auto;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: #1c9ab0;
}
.flow_list .flow_item .flow_icon.apply {
	background-image: url(../img/apply.svg);
}
.flow_list .flow_item .flow_icon.email {
	background-image: url(../img/email-receive.svg);
}
.flow_list .flow_item .flow_icon.money {
	background-image: url(../img/money.svg);
}
.flow_list .flow_item .flow_icon.docs {
	background-image: url(../img/docs.svg);
}
.flow_list .flow_item .flow_title {
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	color: #1c9ab0;
}
.flow_list .flow_item .flow_text {
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: left;
	color: #1c9ab0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
.flow_list .flow_item .comLink1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 5.1rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	margin-top: 1.5rem;
	border-radius: 5rem;
	border: 0.1rem solid #1f9cbf;
	background: #ffffff;
	position: relative;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0.4rem 0.4rem 0 #28b5d1;
	        box-shadow: 0.4rem 0.4rem 0 #28b5d1;
}
@media screen and (max-width: 1024px) {
	.flow_list .flow_item .comLink1 {
		width: 21rem;
		max-width: 100%;
		height: 4.2rem;
	}
}
.flow_list .flow_item .comLink1:hover {
	background: #e2f6fc;
	top: 0.4rem;
	left: 0.4rem;
	-webkit-box-shadow: 0rem 0rem 0 #28b5d1;
	        box-shadow: 0rem 0rem 0 #28b5d1;
}
.flow_list .flow_item .comLink1.hidden {
	opacity: 0;
	pointer-events: none;
}
.flow_list .flow_item .comLink1 a {
	position: relative;
	color: #1c9ab0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 5.1rem;
	width: 100%;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	.flow_list .flow_item .comLink1 a {
		font-size: 1.2rem;
		height: 4.2rem;
		background-position: left calc(50% - 3.7rem) center;
	}
}
.flow_list .flow_item .comLink1 a::before {
	position: absolute;
	left: min(1.2rem, 1vw);
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	content: "";
	display: block;
	width: 1.9rem;
	height: 2.4rem;
	background: url(../img/btn-arrow-right-blue.svg) no-repeat left center;
	background-size: 2.4rem;
}

.supporter {
	margin-top: 20rem;
	width: 88%;
	margin: 0 auto;
	padding-top: 10.6rem;
}
@media screen and (min-width: 1025px) {
	.supporter {
		width: 74%;
	}
}
@media screen and (max-width: 1024px) {
	.supporter {
		padding-top: 12.6rem;
	}
}
.supporter .supporter_list {
	display: grid;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.5rem 3.6rem;
	margin-top: 5.9rem;
}
@media screen and (max-width: 1024px) {
	.supporter .supporter_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.6rem 1.6rem;
		margin-top: 4.3rem;
	}
}
.supporter .supporter_list .list {
	width: 100%;
}
@media screen and (max-width: 1024px) {
	.supporter .supporter_list .list {
		width: 100%;
	}
}
.supporter .supporter_list .list img {
	width: 100%;
}

.instagram {
	margin-top: 1.4rem;
	content: url(/img/instagram.svg);
	display: inline-block;
	width: 2.4rem;
	height: 2.4rem;
	vertical-align: middle;
	margin-left: 0.4rem;
}

.website {
	margin-top: 1.4rem;
	content: url(../img/website.svg);
	display: inline-block;
	width: 2.4rem;
	height: 2.4rem;
	vertical-align: middle;
	margin-left: 0.4rem;
}

/*------------------------------------------------------------
	breadcrumb
------------------------------------------------------------*/
.breadcrumb {
	position: relative;
	width: 88%;
	margin: 0 auto;
	padding-top: 10.6rem;
	padding-bottom: 1.5rem;
}
@media screen and (min-width: 1025px) {
	.breadcrumb {
		width: 74%;
	}
}
@media screen and (min-width: 1025px) {
	.breadcrumb {
		padding-top: 7rem;
	}
}
.breadcrumb .bc_list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 1rem;
}
.breadcrumb .bc_link {
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
.breadcrumb .bc_link:not(:first-child)::before {
	content: "/";
	display: inline-block;
	margin-right: 1rem;
}

/*------------------------------------------------------------
	headLine01
------------------------------------------------------------*/
.headLine01 {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	font-weight: bold;
	text-align: center;
	color: #444444;
	gap: 2.8rem;
}
@media screen and (max-width: 1024px) {
	.headLine01 {
		gap: 1.6rem;
	}
}
.headLine01 .en {
	display: block;
	font-size: 1.8rem;
	text-align: left;
	color: #008099;
	font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1024px) {
	.headLine01 .en {
		font-size: 1.6rem;
	}
}
.headLine01 .ja {
	display: block;
	font-size: 3.6rem;
	text-align: left;
	font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1024px) {
	.headLine01 .ja {
		font-size: 2.4rem;
	}
}

/*------------------------------------------------------------
	headLine02
------------------------------------------------------------*/
.headLine02 {
	margin-bottom: 0;
	font-size: 4.8rem;
	color: #444444;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	.headLine02 {
		margin-bottom: 0;
		font-size: 3.2rem;
	}
}

/*------------------------------------------------------------
	comLink
------------------------------------------------------------*/
.comLink {
	margin-top: 5rem;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	display: flex;
	max-width: 36.3rem;
	text-align: center;
	height: 6rem;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	border-radius: 5rem;
	background: #1f9cbf;
	cursor: pointer;
}
@media screen and (max-width: 1024px) {
	.comLink {
		width: 100%;
		max-width: 30rem;
		height: 5rem;
		border-radius: 5rem;
		margin: 6rem auto;
	}
}
.comLink .hover_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.comLink:hover {
	background: #64c4e7;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.comLink:hover .hover_bg {
	position: absolute;
	top: 0rem;
	left: 0rem;
	width: 100%;
	height: 100%;
	background: #e2f4fb;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-filter: blur(4px);
	        filter: blur(4px);
}
.comLink::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background: url(../img/new-tab.svg) no-repeat right 3rem center;
	background-size: 1.6em 1.6em;
}
.comLink .btn_name {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	    -ms-flex-positive: 1;
	        flex-grow: 1;
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
	.comLink .btn_name {
		font-size: 1.4rem;
	}
}
.comLink.inactive {
	background: #ccc;
	pointer-events: none;
}

#gHeader.fixed ~ #main {
	margin-top: 7.8rem;
}
@media screen and (max-width: 1024px) {
	#gHeader .gNav {
		display: none !important;
	}
}
#gHeader .sp_menu {
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	position: fixed;
}
#gHeader .sp_menu .sp_menu_content {
	margin-left: 2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	padding: 1rem 0;
	font-size: 2rem;
	font-weight: 700;
}
#gHeader .sp_menu .sp_menu_content:first-child {
	margin-top: 8rem;
}
#gHeader .sp_menu .sp_subMenu_content {
	margin-left: 4.5rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: start;
	    -ms-flex-align: start;
	        align-items: start;
	font-size: 1.4rem;
	font-weight: 500;
	gap: 1rem;
}
#gHeader .sp_menu .sp_subMenu_content:first-child {
	margin-top: 8rem;
}
#gHeader .hamburger {
	display: none;
}
@media screen and (max-width: 1024px) {
	#gHeader .hamburger {
		display: block;
		position: absolute;
		top: 2rem;
		right: 0;
		width: 4rem;
		height: 3rem;
		cursor: pointer;
		z-index: 2;
	}
	#gHeader .hamburger.active .line:first-child {
		width: 3.7rem;
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
		top: 36% !important;
	}
	#gHeader .hamburger.active .line:last-child {
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
		top: 50% !important;
	}
	#gHeader .hamburger.active + .sp_menu {
		display: none;
	}
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
	#gHeader .hamburger.active + .sp_menu {
		display: block;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: #fff;
		z-index: 1;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		opacity: 1;
	}
	#gHeader .hamburger.active + .sp_menu.active {
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@media screen and (max-width: 1024px) {
	#gHeader .hamburger .line {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		height: 0.4rem;
		border-radius: 0.4rem;
		background: #2377cc;
		position: absolute;
		right: 0;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
	#gHeader .hamburger .line:first-child {
		margin-top: 0.4rem;
		width: 2.9rem;
		top: 14%;
	}
	#gHeader .hamburger .line:last-child {
		margin-bottom: 0.4rem;
		width: 3.7rem;
		top: 60%;
	}
}

@media screen and (max-width: 1024px) {
	#main {
		margin-top: 7rem;
	}
}

/*------------------------------------------------------------
	index
------------------------------------------------------------*/
.pinkbg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -100;
}

.bluebg {
	position: absolute;
	left: 0;
	top: 100vh;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: -100;
}

#top {
	position: relative;
	z-index: 1;
	overflow-x: clip;
}
#top .mainVisual {
	position: relative;
	width: 100%;
	margin-top: 2.4rem;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual {
		margin-top: 0;
	}
}
#top .mainVisual .bg {
	position: relative;
	width: 126rem;
	max-width: 95%;
	margin: 0 auto;
	border-radius: 45px;
	background: -webkit-gradient(linear, left top, right top, color-stop(0.06%, #06b9d9), color-stop(102.85%, #d0eefb));
	background: -webkit-linear-gradient(left, #06b9d9 0.06%, #d0eefb 102.85%);
	background: linear-gradient(90deg, #06b9d9 0.06%, #d0eefb 102.85%);
}
@media screen and (min-width: 1025px) {
	#top .mainVisual .bg {
		aspect-ratio: 1260/646;
	}
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg {
		height: 60rem;
	}
}
@media screen and (max-width: 600px) {
	#top .mainVisual .bg {
		height: 62.3rem;
		overflow: hidden;
	}
}
#top .mainVisual .bg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 10%;
	width: 100%;
	height: 100%;
	background-image: url(../img/blue_triangle.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg::before {
		content: "";
		position: absolute;
		top: -10%;
		left: 10%;
		width: 140%;
		height: 100%;
		background-image: url(../img/blue_triangle.svg);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}
}
#top .mainVisual .bg img {
	width: 40rem;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg img {
		width: 25rem;
	}
}
#top .mainVisual .bg h2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 0;
	width: 100%;
	text-align: center;
	position: absolute;
	top: 20%;
	left: 8%;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg h2 {
		top: 10%;
		left: 5%;
		gap: 0.8rem;
	}
}
#top .mainVisual .bg h2 .catch_text {
	font-size: min(6.4rem, 5vw);
	color: #fff;
	line-height: 1.4;
	letter-spacing: 0.1rem;
	text-align: left;
	margin-left: 5rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg h2 .catch_text {
		line-height: 1.1;
		font-size: 3.6rem;
		margin-left: 5%;
	}
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg h2 .catch_text .block {
		margin-top: 1rem;
	}
}
#top .mainVisual .bg .subtext {
	margin-top: 1.1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	position: absolute;
	bottom: 7%;
	left: 8%;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg .subtext {
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		left: 0;
		right: 0;
	}
}
#top .mainVisual .bg .subtext .lbox {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding: 4px;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.73);
}
#top .mainVisual .bg .subtext .lbox p {
	margin-top: 0;
	color: #1abedc;
	text-align: center;
	font-size: 4.3rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#top .mainVisual .bg .subtext .lbox p .small {
	font-size: 2.4rem;
}
#top .mainVisual .bg .subtext .rbox {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	padding-inline: 2rem;
	padding-bottom: 2.4rem;
	padding-left: 2rem;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	-webkit-flex-shrink: 0;
	    -ms-flex-negative: 0;
	        flex-shrink: 0;
	border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg .subtext .rbox {
		padding-inline: 1rem;
		padding-bottom: 1.8rem;
		padding-top: 1.7rem;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
	}
}
#top .mainVisual .bg .subtext .rbox p {
	margin-top: 0;
	color: #fff;
	font-size: 2.4rem;
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg .subtext .rbox p {
		font-size: 1.6rem;
		text-shadow: 0px 0px 8px rgba(10, 186, 218, 0.5);
	}
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg .subtext .rbox p .sp_block {
		display: block;
		margin-top: 0.5rem;
	}
}
#top .mainVisual .bg .top_woman {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 56%;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	#top .mainVisual .bg .top_woman {
		left: 50%;
		-webkit-transform: translateX(-50%);
		        transform: translateX(-50%);
		width: 38rem;
	}
}
@media screen and (max-width: 600px) {
	#top .mainVisual .bg .top_woman {
		width: 40rem;
		max-width: 40rem !important;
	}
}
#top .about {
	width: 88%;
	margin: 0 auto;
	padding-top: 10.6rem;
	text-align: center;
}
@media screen and (min-width: 1025px) {
	#top .about {
		width: 74%;
		padding-bottom: 20rem;
	}
}
@media screen and (max-width: 1024px) {
	#top .about {
		padding-top: 10rem;
	}
}
#top .about .headLine01 {
	margin: 0 auto;
}
#top .about .headLine01 .ja {
	text-align: center;
	color: #fff;
	background: #0abada;
	padding: 0rem 1rem;
}
#top .about .about_text {
	text-align: center;
	margin-top: 4rem;
	font-size: 1.6rem;
	max-width: 74rem;
	margin-inline: auto;
}
#top .about h3 {
	margin-top: 10rem;
	color: #444444;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#top .about h3 {
		font-size: 2.4rem;
		margin-top: 6rem;
	}
}
#top .about .container {
	margin-top: 6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 6rem;
}
@media screen and (max-width: 1024px) {
	#top .about .container {
		margin-top: 5rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 2rem;
	}
	#top .about .container.first {
		margin-top: 6rem;
	}
}
#top .about .container img {
	width: 100%;
	max-width: 20rem;
	aspect-ratio: 1/1;
}
#top .about .container .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#top .about .container .inner h4 {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.8rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	text-align: right;
	width: 100%;
}
@media screen and (max-width: 1024px) {
	#top .about .container .inner h4 {
		font-size: 2rem;
	}
}
#top .about .container .inner .instructor_title {
	margin-top: 0.2rem;
	color: #444444;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#top .about .container .inner .instructor_title {
		margin-top: 0;
		font-size: 1.4rem;
	}
}
#top .about .container .inner p {
	color: #444444;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	#top .about .container .inner p {
		font-size: 1.6rem;
	}
}
#top .about .photoBox {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 2fr);
	gap: 9.4rem;
	margin-top: 6.4rem;
}
@media screen and (max-width: 1024px) {
	#top .about .photoBox {
		grid-template-columns: repeat(1, 1fr);
		margin-top: 0;
		gap: 0;
	}
}
#top .about .photoBox .photo01 {
	position: relative;
	top: 0;
	left: 0;
	aspect-ratio: 3/2;
	scale: 0.9;
	-webkit-transform: translate(-5rem, 0);
	        transform: translate(-5rem, 0);
}
@media screen and (max-width: 1024px) {
	#top .about .photoBox .photo01 {
		top: 0;
		right: 50%;
		-webkit-transform: translate(-20%, 0%);
		        transform: translate(-20%, 0%);
		scale: 0.7;
	}
}
#top .about .photoBox .photo02 {
	position: relative;
	top: 0;
	left: 0;
	-webkit-transform: translate(-5rem, 3.6rem);
	        transform: translate(-5rem, 3.6rem);
	aspect-ratio: 3/2;
	scale: 1.2;
}
@media screen and (max-width: 1024px) {
	#top .about .photoBox .photo02 {
		top: -5%;
		left: 50%;
		-webkit-transform: translate(-50%, 0%);
		        transform: translate(-50%, 0%);
		scale: 0.9;
	}
}
#top .about .photoBox .photo03 {
	position: relative;
	top: 5rem;
	right: 0;
	-webkit-transform: translate(2rem, 1.5rem);
	        transform: translate(2rem, 1.5rem);
	aspect-ratio: 3/2;
	scale: 1.2;
}
@media screen and (max-width: 1024px) {
	#top .about .photoBox .photo03 {
		top: 0;
		right: 50%;
		-webkit-transform: translate(50%, 0%);
		        transform: translate(50%, 0%);
		scale: 0.9;
	}
}
#top .about .photoBox .photo04 {
	position: relative;
	top: 6rem;
	left: 0;
	-webkit-transform: translate(0, 10rem);
	        transform: translate(0, 10rem);
	aspect-ratio: 3/2;
	scale: 0.9;
}
@media screen and (max-width: 1024px) {
	#top .about .photoBox .photo04 {
		top: -5%;
		left: 50%;
		-webkit-transform: translate(-50%, 0%);
		        transform: translate(-50%, 0%);
		scale: 0.7;
	}
}
#top .schedule {
	margin-top: 27.5rem;
	position: relative;
	width: 88%;
	margin: 0 auto;
	padding-top: 8.6rem;
}
@media screen and (min-width: 1025px) {
	#top .schedule {
		width: 74%;
	}
}
@media screen and (max-width: 1024px) {
	#top .schedule {
		padding-top: 6rem;
	}
}
#top .schedule .blue_rec_bg {
	width: 24rem;
	height: 14rem;
	border-radius: 1.6rem;
	background: #c7ecf9;
	position: absolute;
	z-index: -1;
}
@media screen and (max-width: 1024px) {
	#top .schedule .blue_rec_bg {
		width: 17rem;
		height: 8rem;
	}
}
#top .schedule .blue_rec_bg.right {
	right: -20%;
	top: 10%;
}
#top .schedule .blue_rec_bg.right::before {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	background: #feffff;
	left: -19%;
	bottom: -55%;
	border-radius: 1.6rem;
}
@media screen and (max-width: 1024px) {
	#top .schedule .blue_rec_bg.right {
		right: -20%;
		top: 4%;
		scale: 0.8;
	}
}
#top .schedule .blue_rec_bg.left {
	left: -21%;
	bottom: 9%;
}
@media screen and (max-width: 1024px) {
	#top .schedule .blue_rec_bg.left {
		bottom: -5%;
		scale: 0.8;
	}
}
#top .schedule .blue_rec_bg.left::before {
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	background: #feffff;
	right: -19%;
	bottom: -55%;
	border-radius: 1.6rem;
}
#top .schedule .box_wrap {
	margin-top: 4.7rem;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-top: 5rem;
		gap: 3rem;
	}
}
#top .schedule .box_wrap .box1,
#top .schedule .box_wrap .box2,
#top .schedule .box_wrap .box3,
#top .schedule .box_wrap .box4 {
	position: relative;
	padding-top: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	border-radius: 4.1rem;
	background: #4ccce5;
	padding: 0rem 11.1rem;
	background-image: url(../img/blue_triangle.svg);
	background-repeat: no-repeat;
	background-position: right -9rem center;
	background-size: 40rem;
	-webkit-box-shadow: 2rem 2rem 0px 0px #c7ecf9;
	        box-shadow: 2rem 2rem 0px 0px #c7ecf9;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box1,
	#top .schedule .box_wrap .box2,
	#top .schedule .box_wrap .box3,
	#top .schedule .box_wrap .box4 {
		max-width: 38.4rem;
		border-radius: 2.2rem;
		background-position: right -5rem center;
		background-size: 28rem;
	}
}
#top .schedule .box_wrap .box1 {
	top: 2rem;
	left: -6%;
	padding: 8rem 10rem 6rem 5rem;
	width: 56%;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box1 {
		top: 0rem;
		margin: 0 auto 0 0;
		left: 0%;
		width: 56%;
		padding: 4rem 3rem 2rem;
		width: calc(100% - 2rem);
	}
}
@media screen and (min-width: 1441px) {
	#top .schedule .box_wrap .box1 {
		left: 0;
		max-width: 68rem;
	}
}
#top .schedule .box_wrap .box2 {
	top: -9rem;
	left: 53%;
	padding: 8rem 11rem 6rem 5rem;
	width: 65%;
	max-width: none;
	border-radius: 4.1rem 0 0 4.1rem;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box2 {
		top: 0rem;
		left: 0;
		margin: 0 0 0 auto;
		padding: 4rem 3rem 2rem;
		max-width: 38.4rem;
		width: calc(100% - 2rem);
		border-radius: 2.2rem;
	}
}
@media screen and (min-width: 1441px) {
	#top .schedule .box_wrap .box2 {
		max-width: 68rem;
		border-radius: 4.1rem;
	}
}
#top .schedule .box_wrap .box3 {
	top: -17rem;
	left: -21%;
	padding: 8rem 11rem 6rem 10rem;
	width: 71%;
	border-radius: 0 4.1rem 4.1rem 0;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box3 {
		top: 0rem;
		left: 0;
		margin: 0 auto 0 0;
		padding: 4rem 3rem 2rem;
		width: calc(100% - 2rem);
		border-radius: 2.2rem;
	}
}
@media screen and (min-width: 1441px) {
	#top .schedule .box_wrap .box3 {
		left: 0;
		max-width: 68rem;
		border-radius: 4.1rem;
	}
}
#top .schedule .box_wrap .box4 {
	top: -22rem;
	left: 53%;
	padding: 8rem 10rem 6rem 5rem;
	width: 56%;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box4 {
		top: 0rem;
		left: 0%;
		padding: 4rem 3rem 2rem;
		width: calc(100% - 2rem);
		margin: 0 0 0 auto;
	}
}
@media screen and (min-width: 1441px) {
	#top .schedule .box_wrap .box4 {
		max-width: 68rem;
		border-radius: 4.1rem;
	}
}
#top .schedule .box_wrap .month {
	position: absolute;
	margin-top: 0;
	top: -0.75rem;
	left: 5rem;
	color: #4ccce5;
	font-size: 6.4rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #ffffff;
	paint-order: stroke;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .month {
		font-size: 3.6rem;
		left: 4rem;
		line-height: 1.2;
	}
}
#top .schedule .box_wrap .box3 .month {
	left: 10rem;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .box3 .month {
		left: 4rem;
	}
}
#top .schedule .box_wrap h3 {
	margin-top: 2rem;
	color: #ffffff;
	font-size: 2.7rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap h3 {
		font-size: 2rem;
	}
}
#top .schedule .box_wrap .content {
	margin-top: 1.8rem;
	color: #ffffff;
	text-shadow: 0px 0px 2px rgba(41, 157, 180, 0.2);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.8;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .content {
		font-size: 1.6rem;
	}
}
#top .schedule .box_wrap .limit {
	margin-top: 3.4rem;
	border-radius: 0.6rem;
	background: #ffffff;
	width: 100%;
}
#top .schedule .box_wrap .limit p {
	margin-top: 0;
	padding: 1.1rem 2.6rem;
	color: #1c9ab0;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .limit p {
		font-size: 1.6rem;
	}
}
#top .schedule .box_wrap .comLink1 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 24.6rem;
	height: 5.1rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
	margin-top: 2.5rem;
	border-radius: 50px;
	border: 1px solid #ffffff;
	background: #4ccce5;
	position: relative;
	z-index: 0;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
#top .schedule .box_wrap .comLink1:hover {
	background: #18bedc;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .comLink1 {
		width: 21rem;
		max-width: 100%;
		height: 4.2rem;
	}
}
#top .schedule .box_wrap .comLink1 a {
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 5.1rem;
	width: 100%;
	background-image: url(../img/btn-arrow-right.svg);
	background-repeat: no-repeat;
	background-position: left calc(50% - 4.7rem) center;
	background-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
	#top .schedule .box_wrap .comLink1 a {
		font-size: 1.6rem;
		height: 4.2rem;
		background-position: left calc(50% - 4.7rem) center;
	}
}
#top .overview {
	margin: 10rem auto 0;
	position: relative;
	width: 88%;
}
@media screen and (min-width: 1025px) {
	#top .overview {
		width: 74%;
		margin-top: -5rem;
	}
}
#top .contact {
	margin-top: 14.4rem;
}

#orientation,
#business-start,
#step-up,
#presentation,
#partner,
#notfound {
	overflow-x: hidden;
}
#orientation .title,
#business-start .title,
#step-up .title,
#presentation .title,
#partner .title,
#notfound .title {
	width: 88%;
	margin: 0 auto;
	padding-top: 16rem;
}
@media screen and (min-width: 1025px) {
	#orientation .title,
	#business-start .title,
	#step-up .title,
	#presentation .title,
	#partner .title,
	#notfound .title {
		width: 74%;
	}
}
#orientation .title h2,
#business-start .title h2,
#step-up .title h2,
#presentation .title h2,
#partner .title h2,
#notfound .title h2 {
	color: #1c9ab0;
	font-size: 4.8rem;
	line-height: 1.5;
	letter-spacing: 0.1rem;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .title h2,
	#business-start .title h2,
	#step-up .title h2,
	#presentation .title h2,
	#partner .title h2,
	#notfound .title h2 {
		font-size: 3.2rem;
	}
}
#orientation .title p.h_detail,
#business-start .title p.h_detail,
#step-up .title p.h_detail,
#presentation .title p.h_detail,
#partner .title p.h_detail,
#notfound .title p.h_detail {
	margin-top: 1rem;
	text-align: center;
}
@media screen and (max-width: 1024px) {
	#orientation .title p.h_detail,
	#business-start .title p.h_detail,
	#step-up .title p.h_detail,
	#presentation .title p.h_detail,
	#partner .title p.h_detail,
	#notfound .title p.h_detail {
		margin-top: 0.8rem;
	}
}
#orientation .title .comLink_above,
#business-start .title .comLink_above,
#step-up .title .comLink_above,
#presentation .title .comLink_above,
#partner .title .comLink_above,
#notfound .title .comLink_above {
	margin: 12rem auto 0;
	color: #1c9ab0;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .title .comLink_above,
	#business-start .title .comLink_above,
	#step-up .title .comLink_above,
	#presentation .title .comLink_above,
	#partner .title .comLink_above,
	#notfound .title .comLink_above {
		margin-top: 8rem;
		font-size: 1.4rem;
	}
}
#orientation .title .comLink,
#business-start .title .comLink,
#step-up .title .comLink,
#presentation .title .comLink,
#partner .title .comLink,
#notfound .title .comLink {
	margin: 1rem auto 0;
}
@media screen and (max-width: 1024px) {
	#orientation .title .comLink,
	#business-start .title .comLink,
	#step-up .title .comLink,
	#presentation .title .comLink,
	#partner .title .comLink,
	#notfound .title .comLink {
		margin-top: 0.8rem;
	}
}
#orientation .title .comLink_below,
#business-start .title .comLink_below,
#step-up .title .comLink_below,
#presentation .title .comLink_below,
#partner .title .comLink_below,
#notfound .title .comLink_below {
	margin: 1rem auto 0;
	color: #444444;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .title .comLink_below,
	#business-start .title .comLink_below,
	#step-up .title .comLink_below,
	#presentation .title .comLink_below,
	#partner .title .comLink_below,
	#notfound .title .comLink_below {
		font-size: 1.4rem;
		margin-top: 0.8rem;
	}
}
#orientation .title .c_top,
#business-start .title .c_top,
#step-up .title .c_top,
#presentation .title .c_top,
#partner .title .c_top,
#notfound .title .c_top {
	margin: 12rem auto 0;
}
@media screen and (max-width: 1024px) {
	#orientation .title .c_top,
	#business-start .title .c_top,
	#step-up .title .c_top,
	#presentation .title .c_top,
	#partner .title .c_top,
	#notfound .title .c_top {
		margin-top: 8rem;
	}
}
#orientation .intro,
#business-start .intro,
#step-up .intro,
#presentation .intro,
#partner .intro,
#notfound .intro {
	position: relative;
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .intro,
	#business-start .intro,
	#step-up .intro,
	#presentation .intro,
	#partner .intro,
	#notfound .intro {
		width: 74%;
		padding-top: 10rem;
	}
}
#orientation .intro .headLine01,
#business-start .intro .headLine01,
#step-up .intro .headLine01,
#presentation .intro .headLine01,
#partner .intro .headLine01,
#notfound .intro .headLine01 {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	margin-bottom: 1rem;
	text-align: center;
}
#orientation .intro .headLine01 .ja,
#business-start .intro .headLine01 .ja,
#step-up .intro .headLine01 .ja,
#presentation .intro .headLine01 .ja,
#partner .intro .headLine01 .ja,
#notfound .intro .headLine01 .ja {
	color: #1c9ab0;
	text-align: center;
	font-size: 2.4rem;
}
#orientation .intro .intro_text,
#business-start .intro .intro_text,
#step-up .intro .intro_text,
#presentation .intro .intro_text,
#partner .intro .intro_text,
#notfound .intro .intro_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
	text-justify: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .sec_photo,
#business-start .sec_photo,
#step-up .sec_photo,
#presentation .sec_photo,
#partner .sec_photo,
#notfound .sec_photo {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	#orientation .sec_photo,
	#business-start .sec_photo,
	#step-up .sec_photo,
	#presentation .sec_photo,
	#partner .sec_photo,
	#notfound .sec_photo {
		width: 74%;
	}
}
#orientation .sec_photo .sample_photo,
#business-start .sec_photo .sample_photo,
#step-up .sec_photo .sample_photo,
#presentation .sec_photo .sample_photo,
#partner .sec_photo .sample_photo,
#notfound .sec_photo .sample_photo {
	margin-top: 5rem;
	width: 100%;
}
#orientation .sec_photo .sample_photo .pc_photos,
#business-start .sec_photo .sample_photo .pc_photos,
#step-up .sec_photo .sample_photo .pc_photos,
#presentation .sec_photo .sample_photo .pc_photos,
#partner .sec_photo .sample_photo .pc_photos,
#notfound .sec_photo .sample_photo .pc_photos {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	gap: 1rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#orientation .sec_photo .sample_photo .pc_photos img,
#business-start .sec_photo .sample_photo .pc_photos img,
#step-up .sec_photo .sample_photo .pc_photos img,
#presentation .sec_photo .sample_photo .pc_photos img,
#partner .sec_photo .sample_photo .pc_photos img,
#notfound .sec_photo .sample_photo .pc_photos img {
	width: 25%;
	height: auto;
}
#orientation .sec_photo .sample_photo .sp_photos,
#business-start .sec_photo .sample_photo .sp_photos,
#step-up .sec_photo .sample_photo .sp_photos,
#presentation .sec_photo .sample_photo .sp_photos,
#partner .sec_photo .sample_photo .sp_photos,
#notfound .sec_photo .sample_photo .sp_photos {
	display: none;
}
@media screen and (max-width: 1024px) {
	#orientation .sec_photo .sample_photo .pc_photos,
	#business-start .sec_photo .sample_photo .pc_photos,
	#step-up .sec_photo .sample_photo .pc_photos,
	#presentation .sec_photo .sample_photo .pc_photos,
	#partner .sec_photo .sample_photo .pc_photos,
	#notfound .sec_photo .sample_photo .pc_photos {
		display: none;
	}
	#orientation .sec_photo .sample_photo .sp_photos,
	#business-start .sec_photo .sample_photo .sp_photos,
	#step-up .sec_photo .sample_photo .sp_photos,
	#presentation .sec_photo .sample_photo .sp_photos,
	#partner .sec_photo .sample_photo .sp_photos,
	#notfound .sec_photo .sample_photo .sp_photos {
		display: block;
		overflow: hidden;
	}
	#orientation .sec_photo .sample_photo .sp_photos .swiper-wrapper,
	#business-start .sec_photo .sample_photo .sp_photos .swiper-wrapper,
	#step-up .sec_photo .sample_photo .sp_photos .swiper-wrapper,
	#presentation .sec_photo .sample_photo .sp_photos .swiper-wrapper,
	#partner .sec_photo .sample_photo .sp_photos .swiper-wrapper,
	#notfound .sec_photo .sample_photo .sp_photos .swiper-wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	#orientation .sec_photo .sample_photo .sp_photos .swiper-slide,
	#business-start .sec_photo .sample_photo .sp_photos .swiper-slide,
	#step-up .sec_photo .sample_photo .sp_photos .swiper-slide,
	#presentation .sec_photo .sample_photo .sp_photos .swiper-slide,
	#partner .sec_photo .sample_photo .sp_photos .swiper-slide,
	#notfound .sec_photo .sample_photo .sp_photos .swiper-slide {
		-webkit-flex-shrink: 0;
		    -ms-flex-negative: 0;
		        flex-shrink: 0;
		width: 100%;
	}
	#orientation .sec_photo .sample_photo .sp_photos .swiper-slide img,
	#business-start .sec_photo .sample_photo .sp_photos .swiper-slide img,
	#step-up .sec_photo .sample_photo .sp_photos .swiper-slide img,
	#presentation .sec_photo .sample_photo .sp_photos .swiper-slide img,
	#partner .sec_photo .sample_photo .sp_photos .swiper-slide img,
	#notfound .sec_photo .sample_photo .sp_photos .swiper-slide img {
		width: 100%;
		height: auto;
	}
}
#orientation .note,
#business-start .note,
#step-up .note,
#presentation .note,
#partner .note,
#notfound .note {
	width: 88%;
	background: #eef1f2;
	margin: 8rem auto 0;
	padding: 2.6rem 3rem;
	border-radius: 2rem;
}
@media screen and (min-width: 1025px) {
	#orientation .note,
	#business-start .note,
	#step-up .note,
	#presentation .note,
	#partner .note,
	#notfound .note {
		width: 74%;
	}
}
#orientation .note .headLine01,
#business-start .note .headLine01,
#step-up .note .headLine01,
#presentation .note .headLine01,
#partner .note .headLine01,
#notfound .note .headLine01 {
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 700;
}
#orientation .note .headLine01 .ja,
#business-start .note .headLine01 .ja,
#step-up .note .headLine01 .ja,
#presentation .note .headLine01 .ja,
#partner .note .headLine01 .ja,
#notfound .note .headLine01 .ja {
	color: #444444;
	font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
	#orientation .note .headLine01 .ja,
	#business-start .note .headLine01 .ja,
	#step-up .note .headLine01 .ja,
	#presentation .note .headLine01 .ja,
	#partner .note .headLine01 .ja,
	#notfound .note .headLine01 .ja {
		font-size: 1.4rem;
	}
}
#orientation .note .note_text,
#business-start .note .note_text,
#step-up .note .note_text,
#presentation .note .note_text,
#partner .note .note_text,
#notfound .note .note_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .note .note_text,
	#business-start .note .note_text,
	#step-up .note .note_text,
	#presentation .note .note_text,
	#partner .note .note_text,
	#notfound .note .note_text {
		font-size: 1.4rem;
	}
}
#orientation .explain,
#business-start .explain,
#step-up .explain,
#presentation .explain,
#partner .explain,
#notfound .explain {
	position: relative;
	margin: 0 auto;
	padding-top: 8rem;
	width: 88%;
}
@media screen and (min-width: 1025px) {
	#orientation .explain,
	#business-start .explain,
	#step-up .explain,
	#presentation .explain,
	#partner .explain,
	#notfound .explain {
		padding-top: 10.6rem;
		width: 74%;
	}
}
#orientation .explain .explain_title,
#business-start .explain .explain_title,
#step-up .explain .explain_title,
#presentation .explain .explain_title,
#partner .explain .explain_title,
#notfound .explain .explain_title {
	margin-top: 6rem;
	color: #1c9ab0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .explain .explain_text,
#business-start .explain .explain_text,
#step-up .explain .explain_text,
#presentation .explain .explain_text,
#partner .explain .explain_text,
#notfound .explain .explain_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .explain .explain_list,
#business-start .explain .explain_list,
#step-up .explain .explain_list,
#presentation .explain .explain_list,
#partner .explain .explain_list,
#notfound .explain .explain_list {
	margin-top: 1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-left: 0.5rem;
	gap: 0rem;
}
#orientation .explain .explain_item,
#business-start .explain .explain_item,
#step-up .explain .explain_item,
#presentation .explain .explain_item,
#partner .explain .explain_item,
#notfound .explain .explain_item {
	position: relative;
	margin-top: 0;
	padding-left: 2rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .explain .explain_item::before,
#business-start .explain .explain_item::before,
#step-up .explain .explain_item::before,
#presentation .explain .explain_item::before,
#partner .explain .explain_item::before,
#notfound .explain .explain_item::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	background: url(../img/check.svg) no-repeat center center;
	background-size: 1.6rem;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#orientation .eligibility,
#business-start .eligibility,
#step-up .eligibility,
#presentation .eligibility,
#partner .eligibility,
#notfound .eligibility {
	position: relative;
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
	padding-bottom: 10rem;
}
@media screen and (min-width: 1025px) {
	#orientation .eligibility,
	#business-start .eligibility,
	#step-up .eligibility,
	#presentation .eligibility,
	#partner .eligibility,
	#notfound .eligibility {
		width: 74%;
		padding-top: 12.6rem;
		padding-bottom: 12.6rem;
	}
}
#orientation .eligibility::after,
#business-start .eligibility::after,
#step-up .eligibility::after,
#presentation .eligibility::after,
#partner .eligibility::after,
#notfound .eligibility::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(../img/mie.svg) no-repeat center center;
	background-size: 26rem;
	position: absolute;
	top: 0;
	left: 30%;
	z-index: -1;
}
@media screen and (max-width: 1024px) {
	#orientation .eligibility::after,
	#business-start .eligibility::after,
	#step-up .eligibility::after,
	#presentation .eligibility::after,
	#partner .eligibility::after,
	#notfound .eligibility::after {
		top: -17%;
		scale: 0.5;
	}
}
#orientation .eligibility .eligibility_list,
#business-start .eligibility .eligibility_list,
#step-up .eligibility .eligibility_list,
#presentation .eligibility .eligibility_list,
#partner .eligibility .eligibility_list,
#notfound .eligibility .eligibility_list {
	margin-top: 6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-left: 0.5rem;
	gap: 0.8rem;
}
#orientation .eligibility .eligibility_item,
#business-start .eligibility .eligibility_item,
#step-up .eligibility .eligibility_item,
#presentation .eligibility .eligibility_item,
#partner .eligibility .eligibility_item,
#notfound .eligibility .eligibility_item {
	position: relative;
	margin-top: 0;
	color: #444444;
	font-size: 1.8rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	list-style: disc;
	list-style-position: inside;
}
#orientation .feature,
#business-start .feature,
#step-up .feature,
#presentation .feature,
#partner .feature,
#notfound .feature {
	position: relative;
	margin: 0 8%;
	padding-top: 8rem;
	padding-bottom: 10rem;
	background: #eef1f2;
	border-radius: 5rem;
}
@media screen and (min-width: 1025px) {
	#orientation .feature,
	#business-start .feature,
	#step-up .feature,
	#presentation .feature,
	#partner .feature,
	#notfound .feature {
		padding-top: 10.6rem;
		padding-bottom: 12.6rem;
	}
}
@media screen and (max-width: 1024px) {
	#orientation .feature,
	#business-start .feature,
	#step-up .feature,
	#presentation .feature,
	#partner .feature,
	#notfound .feature {
		margin: 0 4%;
	}
}
#orientation .feature .headLine01,
#business-start .feature .headLine01,
#step-up .feature .headLine01,
#presentation .feature .headLine01,
#partner .feature .headLine01,
#notfound .feature .headLine01 {
	margin-bottom: 4rem;
}
@media screen and (max-width: 1024px) {
	#orientation .feature .headLine01,
	#business-start .feature .headLine01,
	#step-up .feature .headLine01,
	#presentation .feature .headLine01,
	#partner .feature .headLine01,
	#notfound .feature .headLine01 {
		margin-bottom: 4rem;
	}
}
#orientation .feature .bg,
#business-start .feature .bg,
#step-up .feature .bg,
#presentation .feature .bg,
#partner .feature .bg,
#notfound .feature .bg {
	margin: 0 8rem;
}
@media screen and (max-width: 1024px) {
	#orientation .feature .bg,
	#business-start .feature .bg,
	#step-up .feature .bg,
	#presentation .feature .bg,
	#partner .feature .bg,
	#notfound .feature .bg {
		margin: 0 3.6rem;
	}
}
#orientation .feature .feature_title,
#business-start .feature .feature_title,
#step-up .feature .feature_title,
#presentation .feature .feature_title,
#partner .feature .feature_title,
#notfound .feature .feature_title {
	color: #1c9ab0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .feature .feature_text,
#business-start .feature .feature_text,
#step-up .feature .feature_text,
#presentation .feature .feature_text,
#partner .feature .feature_text,
#notfound .feature .feature_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .feature .feature_list,
#business-start .feature .feature_list,
#step-up .feature .feature_list,
#presentation .feature .feature_list,
#partner .feature .feature_list,
#notfound .feature .feature_list {
	margin-top: 1rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-left: 0.5rem;
	gap: 0rem;
}
#orientation .feature .feature_item,
#business-start .feature .feature_item,
#step-up .feature .feature_item,
#presentation .feature .feature_item,
#partner .feature .feature_item,
#notfound .feature .feature_item {
	position: relative;
	margin-top: 0;
	padding-left: 2rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .feature .feature_item::before,
#business-start .feature .feature_item::before,
#step-up .feature .feature_item::before,
#presentation .feature .feature_item::before,
#partner .feature .feature_item::before,
#notfound .feature .feature_item::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	background: url(../img/check.svg) no-repeat center center;
	background-size: 1.6rem;
	position: absolute;
	top: 1.2rem;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#orientation .graduate,
#business-start .graduate,
#step-up .graduate,
#presentation .graduate,
#partner .graduate,
#notfound .graduate {
	width: 88%;
	margin: 0 auto;
	padding-top: 10rem;
}
@media screen and (min-width: 1025px) {
	#orientation .graduate,
	#business-start .graduate,
	#step-up .graduate,
	#presentation .graduate,
	#partner .graduate,
	#notfound .graduate {
		width: 74%;
		padding-top: 12.6rem;
	}
}
#orientation .graduate .container,
#business-start .graduate .container,
#step-up .graduate .container,
#presentation .graduate .container,
#partner .graduate .container,
#notfound .graduate .container {
	margin-top: 6.7rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 6rem;
}
@media screen and (max-width: 1024px) {
	#orientation .graduate .container,
	#business-start .graduate .container,
	#step-up .graduate .container,
	#presentation .graduate .container,
	#partner .graduate .container,
	#notfound .graduate .container {
		margin-top: 5rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 2rem;
	}
	#orientation .graduate .container.first,
	#business-start .graduate .container.first,
	#step-up .graduate .container.first,
	#presentation .graduate .container.first,
	#partner .graduate .container.first,
	#notfound .graduate .container.first {
		margin-top: 4rem;
	}
}
#orientation .graduate .container img,
#business-start .graduate .container img,
#step-up .graduate .container img,
#presentation .graduate .container img,
#partner .graduate .container img,
#notfound .graduate .container img {
	width: 100%;
	max-width: 20rem;
	aspect-ratio: 1/1;
}
#orientation .graduate .container .inner,
#business-start .graduate .container .inner,
#step-up .graduate .container .inner,
#presentation .graduate .container .inner,
#partner .graduate .container .inner,
#notfound .graduate .container .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#orientation .graduate .container .inner h4,
#business-start .graduate .container .inner h4,
#step-up .graduate .container .inner h4,
#presentation .graduate .container .inner h4,
#partner .graduate .container .inner h4,
#notfound .graduate .container .inner h4 {
	color: #444444;
	font-size: 2rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .graduate .container .inner h4,
	#business-start .graduate .container .inner h4,
	#step-up .graduate .container .inner h4,
	#presentation .graduate .container .inner h4,
	#partner .graduate .container .inner h4,
	#notfound .graduate .container .inner h4 {
		font-size: 1.8rem;
	}
}
#orientation .graduate .container .inner .graduate_title,
#business-start .graduate .container .inner .graduate_title,
#step-up .graduate .container .inner .graduate_title,
#presentation .graduate .container .inner .graduate_title,
#partner .graduate .container .inner .graduate_title,
#notfound .graduate .container .inner .graduate_title {
	margin-top: 0.2rem;
	color: #444444;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .graduate .container .inner .graduate_title,
	#business-start .graduate .container .inner .graduate_title,
	#step-up .graduate .container .inner .graduate_title,
	#presentation .graduate .container .inner .graduate_title,
	#partner .graduate .container .inner .graduate_title,
	#notfound .graduate .container .inner .graduate_title {
		margin-top: 0;
		font-size: 1.4rem;
	}
}
#orientation .graduate .container .inner p,
#business-start .graduate .container .inner p,
#step-up .graduate .container .inner p,
#presentation .graduate .container .inner p,
#partner .graduate .container .inner p,
#notfound .graduate .container .inner p {
	margin-top: 2.2rem;
	color: #444444;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	#orientation .graduate .container .inner p,
	#business-start .graduate .container .inner p,
	#step-up .graduate .container .inner p,
	#presentation .graduate .container .inner p,
	#partner .graduate .container .inner p,
	#notfound .graduate .container .inner p {
		margin-top: 1.2rem;
		font-size: 1.4rem;
	}
}
#orientation .graduate .container .inner .gLink,
#business-start .graduate .container .inner .gLink,
#step-up .graduate .container .inner .gLink,
#presentation .graduate .container .inner .gLink,
#partner .graduate .container .inner .gLink,
#notfound .graduate .container .inner .gLink {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 1rem;
}
#orientation .gallery,
#business-start .gallery,
#step-up .gallery,
#presentation .gallery,
#partner .gallery,
#notfound .gallery {
	width: 88%;
	margin: 0 auto;
	padding-top: 10rem;
}
@media screen and (min-width: 1025px) {
	#orientation .gallery,
	#business-start .gallery,
	#step-up .gallery,
	#presentation .gallery,
	#partner .gallery,
	#notfound .gallery {
		width: 74%;
		padding-top: 12.6rem;
	}
}
#orientation .gallery .flex,
#business-start .gallery .flex,
#step-up .gallery .flex,
#presentation .gallery .flex,
#partner .gallery .flex,
#notfound .gallery .flex {
	margin-top: 6rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
	#orientation .gallery .flex,
	#business-start .gallery .flex,
	#step-up .gallery .flex,
	#presentation .gallery .flex,
	#partner .gallery .flex,
	#notfound .gallery .flex {
		gap: 1.6rem;
		grid-template-columns: repeat(2, 1fr);
	}
}
#orientation .gallery .flex img,
#business-start .gallery .flex img,
#step-up .gallery .flex img,
#presentation .gallery .flex img,
#partner .gallery .flex img,
#notfound .gallery .flex img {
	width: 100%;
	aspect-ratio: 3/2;
}
#orientation .contents,
#business-start .contents,
#step-up .contents,
#presentation .contents,
#partner .contents,
#notfound .contents {
	padding-top: 8rem;
	padding-bottom: 10rem;
	background: #eef1f2;
}
@media screen and (min-width: 1025px) {
	#orientation .contents,
	#business-start .contents,
	#step-up .contents,
	#presentation .contents,
	#partner .contents,
	#notfound .contents {
		padding-top: 10.6rem;
		padding-bottom: 12.6rem;
	}
}
#orientation .contents .headLine01,
#business-start .contents .headLine01,
#step-up .contents .headLine01,
#presentation .contents .headLine01,
#partner .contents .headLine01,
#notfound .contents .headLine01 {
	margin-bottom: 6.7rem;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .headLine01,
	#business-start .contents .headLine01,
	#step-up .contents .headLine01,
	#presentation .contents .headLine01,
	#partner .contents .headLine01,
	#notfound .contents .headLine01 {
		margin-bottom: 4rem;
	}
}
#orientation .contents .bg,
#business-start .contents .bg,
#step-up .contents .bg,
#presentation .contents .bg,
#partner .contents .bg,
#notfound .contents .bg {
	width: 88%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	#orientation .contents .bg,
	#business-start .contents .bg,
	#step-up .contents .bg,
	#presentation .contents .bg,
	#partner .contents .bg,
	#notfound .contents .bg {
		width: 74%;
		margin: 0 auto;
	}
}
#orientation .contents .contents_text,
#business-start .contents .contents_text,
#step-up .contents .contents_text,
#presentation .contents .contents_text,
#partner .contents .contents_text,
#notfound .contents .contents_text {
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .contents .card,
#business-start .contents .card,
#step-up .contents .card,
#presentation .contents .card,
#partner .contents .card,
#notfound .contents .card {
	margin-top: 2rem;
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 1rem;
	border-radius: 23px;
	background: #fff;
	padding: 4.4rem 3.2rem 4.4rem 6rem;
}
#orientation .contents .card:first-child,
#business-start .contents .card:first-child,
#step-up .contents .card:first-child,
#presentation .contents .card:first-child,
#partner .contents .card:first-child,
#notfound .contents .card:first-child {
	margin-top: 4rem;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card,
	#business-start .contents .card,
	#step-up .contents .card,
	#presentation .contents .card,
	#partner .contents .card,
	#notfound .contents .card {
		margin-top: 1.5rem;
		gap: 2.2rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 3.6rem 2rem 3.6rem 4rem;
	}
}
#orientation .contents .card .date,
#business-start .contents .card .date,
#step-up .contents .card .date,
#presentation .contents .card .date,
#partner .contents .card .date,
#notfound .contents .card .date {
	width: 24%;
	color: #444444;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .date,
	#business-start .contents .card .date,
	#step-up .contents .card .date,
	#presentation .contents .card .date,
	#partner .contents .card .date,
	#notfound .contents .card .date {
		width: 100%;
		font-size: 1.6rem;
	}
}
#orientation .contents .card .flex,
#business-start .contents .card .flex,
#step-up .contents .card .flex,
#presentation .contents .card .flex,
#partner .contents .card .flex,
#notfound .contents .card .flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 1rem;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .flex,
	#business-start .contents .card .flex,
	#step-up .contents .card .flex,
	#presentation .contents .card .flex,
	#partner .contents .card .flex,
	#notfound .contents .card .flex {
		gap: 0.6rem;
	}
}
#orientation .contents .card .flex h4,
#business-start .contents .card .flex h4,
#step-up .contents .card .flex h4,
#presentation .contents .card .flex h4,
#partner .contents .card .flex h4,
#notfound .contents .card .flex h4 {
	color: #1c9ab0;
	font-size: 2.4rem;
	line-height: 1.5;
	-webkit-align-self: stretch;
	    -ms-flex-item-align: stretch;
	        align-self: stretch;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .flex h4,
	#business-start .contents .card .flex h4,
	#step-up .contents .card .flex h4,
	#presentation .contents .card .flex h4,
	#partner .contents .card .flex h4,
	#notfound .contents .card .flex h4 {
		font-size: 1.8rem;
	}
}
#orientation .contents .card .flex p,
#business-start .contents .card .flex p,
#step-up .contents .card .flex p,
#presentation .contents .card .flex p,
#partner .contents .card .flex p,
#notfound .contents .card .flex p {
	margin-top: 0;
	color: #444444;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	-webkit-align-self: stretch;
	    -ms-flex-item-align: stretch;
	        align-self: stretch;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .flex p,
	#business-start .contents .card .flex p,
	#step-up .contents .card .flex p,
	#presentation .contents .card .flex p,
	#partner .contents .card .flex p,
	#notfound .contents .card .flex p {
		font-size: 1.4rem;
	}
}
#orientation .contents .card .flex .category_group,
#business-start .contents .card .flex .category_group,
#step-up .contents .card .flex .category_group,
#presentation .contents .card .flex .category_group,
#partner .contents .card .flex .category_group,
#notfound .contents .card .flex .category_group {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
}
#orientation .contents .card .flex .category,
#business-start .contents .card .flex .category,
#step-up .contents .card .flex .category,
#presentation .contents .card .flex .category,
#partner .contents .card .flex .category,
#notfound .contents .card .flex .category {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 0.8rem 1.6rem;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 1rem;
	border-radius: 50px;
	border: 1px solid #1c9ab0;
	color: #444444;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .flex .category,
	#business-start .contents .card .flex .category,
	#step-up .contents .card .flex .category,
	#presentation .contents .card .flex .category,
	#partner .contents .card .flex .category,
	#notfound .contents .card .flex .category {
		padding: 0.7rem 1.6rem;
		font-size: 1.4rem;
	}
}
#orientation .contents .card .instructor_card_group,
#business-start .contents .card .instructor_card_group,
#step-up .contents .card .instructor_card_group,
#presentation .contents .card .instructor_card_group,
#partner .contents .card .instructor_card_group,
#notfound .contents .card .instructor_card_group {
	width: 13%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 1rem;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card .instructor_card_group,
	#business-start .contents .card .instructor_card_group,
	#step-up .contents .card .instructor_card_group,
	#presentation .contents .card .instructor_card_group,
	#partner .contents .card .instructor_card_group,
	#notfound .contents .card .instructor_card_group {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-flex-wrap: wrap;
		    -ms-flex-wrap: wrap;
		        flex-wrap: wrap;
		gap: 1.4rem;
		width: 100%;
		position: relative;
		padding-left: 2.4rem;
	}
	#orientation .contents .card .instructor_card_group::before,
	#business-start .contents .card .instructor_card_group::before,
	#step-up .contents .card .instructor_card_group::before,
	#presentation .contents .card .instructor_card_group::before,
	#partner .contents .card .instructor_card_group::before,
	#notfound .contents .card .instructor_card_group::before {
		content: "";
		display: block;
		width: 1.6rem;
		height: 1.6rem;
		background: url(../img/person.svg) no-repeat center center;
		background-size: contain;
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
}
#orientation .contents .card .instructor_card,
#business-start .contents .card .instructor_card,
#step-up .contents .card .instructor_card,
#presentation .contents .card .instructor_card,
#partner .contents .card .instructor_card,
#notfound .contents .card .instructor_card {
	margin-top: 0;
	font-size: 1.6rem;
	line-height: 1.5;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
}
#orientation .contents .card::before,
#business-start .contents .card::before,
#step-up .contents .card::before,
#presentation .contents .card::before,
#partner .contents .card::before,
#notfound .contents .card::before {
	content: "";
	display: block;
	width: 1rem;
	height: 86%;
	background: #99dce8;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 2rem;
	border-radius: 5rem;
	z-index: 1;
}
@media screen and (max-width: 1024px) {
	#orientation .contents .card::before,
	#business-start .contents .card::before,
	#step-up .contents .card::before,
	#presentation .contents .card::before,
	#partner .contents .card::before,
	#notfound .contents .card::before {
		left: 1rem;
	}
}
#orientation .instructor,
#business-start .instructor,
#step-up .instructor,
#presentation .instructor,
#partner .instructor,
#notfound .instructor {
	width: 88%;
	margin: 0 auto;
	padding-top: 10rem;
	padding-bottom: 10rem;
}
@media screen and (min-width: 1025px) {
	#orientation .instructor,
	#business-start .instructor,
	#step-up .instructor,
	#presentation .instructor,
	#partner .instructor,
	#notfound .instructor {
		width: 74%;
		padding-top: 12.6rem;
		padding-bottom: 12.6rem;
	}
}
#orientation .instructor .container,
#business-start .instructor .container,
#step-up .instructor .container,
#presentation .instructor .container,
#partner .instructor .container,
#notfound .instructor .container {
	margin-top: 6.7rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 6rem;
}
@media screen and (max-width: 1024px) {
	#orientation .instructor .container,
	#business-start .instructor .container,
	#step-up .instructor .container,
	#presentation .instructor .container,
	#partner .instructor .container,
	#notfound .instructor .container {
		margin-top: 5rem;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 2rem;
	}
	#orientation .instructor .container.first,
	#business-start .instructor .container.first,
	#step-up .instructor .container.first,
	#presentation .instructor .container.first,
	#partner .instructor .container.first,
	#notfound .instructor .container.first {
		margin-top: 6rem;
	}
}
#orientation .instructor .container img,
#business-start .instructor .container img,
#step-up .instructor .container img,
#presentation .instructor .container img,
#partner .instructor .container img,
#notfound .instructor .container img {
	width: 100%;
	max-width: 20rem;
	aspect-ratio: 1/1;
}
#orientation .instructor .container .inner,
#business-start .instructor .container .inner,
#step-up .instructor .container .inner,
#presentation .instructor .container .inner,
#partner .instructor .container .inner,
#notfound .instructor .container .inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex: 1 0 0;
	    -ms-flex: 1 0 0px;
	        flex: 1 0 0;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
#orientation .instructor .container .inner h4,
#business-start .instructor .container .inner h4,
#step-up .instructor .container .inner h4,
#presentation .instructor .container .inner h4,
#partner .instructor .container .inner h4,
#notfound .instructor .container .inner h4 {
	color: #444444;
	font-size: 2rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .instructor .container .inner h4,
	#business-start .instructor .container .inner h4,
	#step-up .instructor .container .inner h4,
	#presentation .instructor .container .inner h4,
	#partner .instructor .container .inner h4,
	#notfound .instructor .container .inner h4 {
		font-size: 2rem;
	}
}
#orientation .instructor .container .inner .instructor_title,
#business-start .instructor .container .inner .instructor_title,
#step-up .instructor .container .inner .instructor_title,
#presentation .instructor .container .inner .instructor_title,
#partner .instructor .container .inner .instructor_title,
#notfound .instructor .container .inner .instructor_title {
	margin-top: 0.2rem;
	color: #444444;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .instructor .container .inner .instructor_title,
	#business-start .instructor .container .inner .instructor_title,
	#step-up .instructor .container .inner .instructor_title,
	#presentation .instructor .container .inner .instructor_title,
	#partner .instructor .container .inner .instructor_title,
	#notfound .instructor .container .inner .instructor_title {
		margin-top: 0;
		font-size: 1.4rem;
	}
}
#orientation .instructor .container .inner p,
#business-start .instructor .container .inner p,
#step-up .instructor .container .inner p,
#presentation .instructor .container .inner p,
#partner .instructor .container .inner p,
#notfound .instructor .container .inner p {
	margin-top: 2.2rem;
	color: #444444;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	text-align: justify;
}
@media screen and (max-width: 1024px) {
	#orientation .instructor .container .inner p,
	#business-start .instructor .container .inner p,
	#step-up .instructor .container .inner p,
	#presentation .instructor .container .inner p,
	#partner .instructor .container .inner p,
	#notfound .instructor .container .inner p {
		margin-top: 1.2rem;
		font-size: 1.6rem;
	}
}
#orientation .overview,
#business-start .overview,
#step-up .overview,
#presentation .overview,
#partner .overview,
#notfound .overview {
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .overview,
	#business-start .overview,
	#step-up .overview,
	#presentation .overview,
	#partner .overview,
	#notfound .overview {
		width: 74%;
		padding-top: 12.6rem;
	}
}
#orientation .sub_schedule,
#business-start .sub_schedule,
#step-up .sub_schedule,
#presentation .sub_schedule,
#partner .sub_schedule,
#notfound .sub_schedule {
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .sub_schedule,
	#business-start .sub_schedule,
	#step-up .sub_schedule,
	#presentation .sub_schedule,
	#partner .sub_schedule,
	#notfound .sub_schedule {
		padding-top: 12.6rem;
	}
}
#orientation .sub_schedule .bg,
#business-start .sub_schedule .bg,
#step-up .sub_schedule .bg,
#presentation .sub_schedule .bg,
#partner .sub_schedule .bg,
#notfound .sub_schedule .bg {
	width: 88%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	#orientation .sub_schedule .bg,
	#business-start .sub_schedule .bg,
	#step-up .sub_schedule .bg,
	#presentation .sub_schedule .bg,
	#partner .sub_schedule .bg,
	#notfound .sub_schedule .bg {
		width: 74%;
		margin: 0 auto;
	}
}
#orientation .sub_schedule .comment,
#business-start .sub_schedule .comment,
#step-up .sub_schedule .comment,
#presentation .sub_schedule .comment,
#partner .sub_schedule .comment,
#notfound .sub_schedule .comment {
	position: absolute;
	padding: 0.3rem 4rem;
	border-radius: 50px;
	background: #ffffff;
	border: 1px solid #1f9cbf;
	top: 0;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	color: #1c9ab0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
	z-index: 1;
}
#orientation .sub_schedule .flow_item,
#business-start .sub_schedule .flow_item,
#step-up .sub_schedule .flow_item,
#presentation .sub_schedule .flow_item,
#partner .sub_schedule .flow_item,
#notfound .sub_schedule .flow_item {
	padding: 5rem min(3rem, 1.6vw) 3rem;
}
#orientation .flow,
#business-start .flow,
#step-up .flow,
#presentation .flow,
#partner .flow,
#notfound .flow {
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .flow,
	#business-start .flow,
	#step-up .flow,
	#presentation .flow,
	#partner .flow,
	#notfound .flow {
		padding-top: 12.6rem;
	}
}
#orientation .flow .bg,
#business-start .flow .bg,
#step-up .flow .bg,
#presentation .flow .bg,
#partner .flow .bg,
#notfound .flow .bg {
	width: 88%;
	margin: 0 auto;
}
@media screen and (min-width: 1025px) {
	#orientation .flow .bg,
	#business-start .flow .bg,
	#step-up .flow .bg,
	#presentation .flow .bg,
	#partner .flow .bg,
	#notfound .flow .bg {
		width: 74%;
		margin: 0 auto;
	}
}
#orientation .flow .flow_detail,
#business-start .flow .flow_detail,
#step-up .flow .flow_detail,
#presentation .flow .flow_detail,
#partner .flow .flow_detail,
#notfound .flow .flow_detail {
	margin-top: 3rem;
	color: #444444;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: justify;
}
#orientation .supporter,
#business-start .supporter,
#step-up .supporter,
#presentation .supporter,
#partner .supporter,
#notfound .supporter {
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .supporter,
	#business-start .supporter,
	#step-up .supporter,
	#presentation .supporter,
	#partner .supporter,
	#notfound .supporter {
		width: 74%;
		padding-top: 12.6rem;
	}
}
#orientation .about,
#business-start .about,
#step-up .about,
#presentation .about,
#partner .about,
#notfound .about {
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .about,
	#business-start .about,
	#step-up .about,
	#presentation .about,
	#partner .about,
	#notfound .about {
		width: 74%;
		padding-top: 12.6rem;
	}
}
#orientation .about .about_text,
#business-start .about .about_text,
#step-up .about .about_text,
#presentation .about .about_text,
#partner .about .about_text,
#notfound .about .about_text {
	margin-top: 6rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
}
#orientation .request,
#business-start .request,
#step-up .request,
#presentation .request,
#partner .request,
#notfound .request {
	position: relative;
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .request,
	#business-start .request,
	#step-up .request,
	#presentation .request,
	#partner .request,
	#notfound .request {
		width: 74%;
		padding-top: 10rem;
	}
}
#orientation .request h4.headLine01,
#business-start .request h4.headLine01,
#step-up .request h4.headLine01,
#presentation .request h4.headLine01,
#partner .request h4.headLine01,
#notfound .request h4.headLine01 {
	position: relative;
	margin-top: 6rem;
}
#orientation .request h4.headLine01 .ja,
#business-start .request h4.headLine01 .ja,
#step-up .request h4.headLine01 .ja,
#presentation .request h4.headLine01 .ja,
#partner .request h4.headLine01 .ja,
#notfound .request h4.headLine01 .ja {
	color: #1c9ab0;
	font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
	#orientation .request h4.headLine01 .ja,
	#business-start .request h4.headLine01 .ja,
	#step-up .request h4.headLine01 .ja,
	#presentation .request h4.headLine01 .ja,
	#partner .request h4.headLine01 .ja,
	#notfound .request h4.headLine01 .ja {
		font-size: 2rem;
	}
}
#orientation .request .request_detail,
#business-start .request .request_detail,
#step-up .request .request_detail,
#presentation .request .request_detail,
#partner .request .request_detail,
#notfound .request .request_detail {
	margin-top: 4rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-justify: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .request .request_title,
#business-start .request .request_title,
#step-up .request .request_title,
#presentation .request .request_title,
#partner .request .request_title,
#notfound .request .request_title {
	color: #1c9ab0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .request .request_text,
#business-start .request .request_text,
#step-up .request .request_text,
#presentation .request .request_text,
#partner .request .request_text,
#notfound .request .request_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .request .request_list,
#business-start .request .request_list,
#step-up .request .request_list,
#presentation .request .request_list,
#partner .request .request_list,
#notfound .request .request_list {
	margin-top: 4rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-left: 0.5rem;
	gap: 0rem;
}
#orientation .request .request_item,
#business-start .request .request_item,
#step-up .request .request_item,
#presentation .request .request_item,
#partner .request .request_item,
#notfound .request .request_item {
	position: relative;
	margin-top: 0;
	padding-left: 2rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	-webkit-text-decoration: dotted;
	        text-decoration: dotted;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .request .request_item::before,
#business-start .request .request_item::before,
#step-up .request .request_item::before,
#presentation .request .request_item::before,
#partner .request .request_item::before,
#notfound .request .request_item::before {
	content: "・";
	display: block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 0;
	left: 0;
}
#orientation .application,
#business-start .application,
#step-up .application,
#presentation .application,
#partner .application,
#notfound .application {
	width: 88%;
	margin: 0 auto;
	padding-top: 8rem;
	padding-bottom: 8rem;
}
@media screen and (min-width: 1025px) {
	#orientation .application,
	#business-start .application,
	#step-up .application,
	#presentation .application,
	#partner .application,
	#notfound .application {
		width: 74%;
		padding-top: 12.6rem;
		padding-bottom: 10rem;
	}
}
#orientation .application .headLine01,
#business-start .application .headLine01,
#step-up .application .headLine01,
#presentation .application .headLine01,
#partner .application .headLine01,
#notfound .application .headLine01 {
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#orientation .application .headLine01 .en,
#orientation .application .headLine01 .ja,
#business-start .application .headLine01 .en,
#business-start .application .headLine01 .ja,
#step-up .application .headLine01 .en,
#step-up .application .headLine01 .ja,
#presentation .application .headLine01 .en,
#presentation .application .headLine01 .ja,
#partner .application .headLine01 .en,
#partner .application .headLine01 .ja,
#notfound .application .headLine01 .en,
#notfound .application .headLine01 .ja {
	text-align: center;
}
#orientation .application .application_title,
#business-start .application .application_title,
#step-up .application .application_title,
#presentation .application .application_title,
#partner .application .application_title,
#notfound .application .application_title {
	color: #1c9ab0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .application .application_text,
#business-start .application .application_text,
#step-up .application .application_text,
#presentation .application .application_text,
#partner .application .application_text,
#notfound .application .application_text {
	margin-top: 1rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: justify;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .application .application_list,
#business-start .application .application_list,
#step-up .application .application_list,
#presentation .application .application_list,
#partner .application .application_list,
#notfound .application .application_list {
	margin-top: 6rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	padding-left: 0.5rem;
	gap: 0rem;
}
@media screen and (max-width: 1024px) {
	#orientation .application .application_list,
	#business-start .application .application_list,
	#step-up .application .application_list,
	#presentation .application .application_list,
	#partner .application .application_list,
	#notfound .application .application_list {
		margin-top: 4rem;
	}
}
#orientation .application .application_item,
#business-start .application .application_item,
#step-up .application .application_item,
#presentation .application .application_item,
#partner .application .application_item,
#notfound .application .application_item {
	position: relative;
	margin-top: 0;
	padding-left: 2rem;
	color: #444444;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
#orientation .application .application_item::before,
#business-start .application .application_item::before,
#step-up .application .application_item::before,
#presentation .application .application_item::before,
#partner .application .application_item::before,
#notfound .application .application_item::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	background: url(../img/check.svg) no-repeat center center;
	background-size: 1.6rem;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#orientation .application .application_link,
#business-start .application .application_link,
#step-up .application .application_link,
#presentation .application .application_link,
#partner .application .application_link,
#notfound .application .application_link {
	text-decoration: underline;
	cursor: pointer;
}
#orientation .application .comLink_above,
#business-start .application .comLink_above,
#step-up .application .comLink_above,
#presentation .application .comLink_above,
#partner .application .comLink_above,
#notfound .application .comLink_above {
	margin: 6rem auto 0;
	color: #1c9ab0;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.6;
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .application .comLink_above,
	#business-start .application .comLink_above,
	#step-up .application .comLink_above,
	#presentation .application .comLink_above,
	#partner .application .comLink_above,
	#notfound .application .comLink_above {
		margin-top: 8rem;
		font-size: 1.4rem;
	}
}
#orientation .application .comLink,
#business-start .application .comLink,
#step-up .application .comLink,
#presentation .application .comLink,
#partner .application .comLink,
#notfound .application .comLink {
	margin: 1rem auto 0;
}
@media screen and (max-width: 1024px) {
	#orientation .application .comLink.c_top,
	#business-start .application .comLink.c_top,
	#step-up .application .comLink.c_top,
	#presentation .application .comLink.c_top,
	#partner .application .comLink.c_top,
	#notfound .application .comLink.c_top {
		margin-top: 4rem;
	}
}
#orientation .application .comLink_below,
#business-start .application .comLink_below,
#step-up .application .comLink_below,
#presentation .application .comLink_below,
#partner .application .comLink_below,
#notfound .application .comLink_below {
	margin: 1rem auto 0;
	color: #444444;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.6;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
}
@media screen and (max-width: 1024px) {
	#orientation .application .comLink_below,
	#business-start .application .comLink_below,
	#step-up .application .comLink_below,
	#presentation .application .comLink_below,
	#partner .application .comLink_below,
	#notfound .application .comLink_below {
		font-size: 1.4rem;
		margin-top: 0.8rem;
	}
}
#orientation .application .c_top,
#business-start .application .c_top,
#step-up .application .c_top,
#presentation .application .c_top,
#partner .application .c_top,
#notfound .application .c_top {
	margin: 5rem auto 0;
}
@media screen and (max-width: 1024px) {
	#orientation .application .c_top,
	#business-start .application .c_top,
	#step-up .application .c_top,
	#presentation .application .c_top,
	#partner .application .c_top,
	#notfound .application .c_top {
		margin-top: 8rem;
	}
}

#partner .request .rowList {
	margin-top: 1rem;
}
#partner .request .rowList .list {
	margin-top: 1rem;
}
#partner .request .rowList h5 {
	font-size: 1.6rem;
}
#partner .request .rowList p {
	font-size: 1.6rem;
}

#notfound .spacer {
	width: 100%;
	height: 10rem;
}

/*------------------------------------------------------------
    menu
------------------------------------------------------------*/
.subMenu {
	position: absolute;
	background: #fff;
	padding: 10px;
	list-style: none;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 100;
	margin-top: 0;
}

.has-submenu {
	position: relative;
	cursor: pointer;
}
.has-submenu .subMenu {
	top: 4rem;
	left: -5rem;
	height: 0;
	width: 0;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
	position: absolute;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 1rem;
}
@media screen and (max-width: 1024px) {
	.has-submenu .subMenu {
		top: 2rem;
	}
}
.has-submenu .subMenu li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-webkit-justify-content: start;
	    -ms-flex-pack: start;
	        justify-content: start;
}
.has-submenu .arrow_down {
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.has-submenu.open .subMenu {
	height: 19rem;
	opacity: 1;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	background: #fff;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	z-index: 100;
	gap: 2.4rem;
	padding: 4rem 4rem;
	border-radius: 0 0 3rem 3rem;
}
@media screen and (max-width: 1024px) {
	.has-submenu.open .subMenu {
		padding: 2rem 3rem;
	}
}
.has-submenu.open .subMenu li {
	margin: 0;
}
.has-submenu.open .arrow_down {
	-webkit-transform: rotate(180deg);
	        transform: rotate(180deg);
}

/* PC：ホバーで表示 */
@media (hover: hover) {
	.has-submenu:hover .subMenu {
		display: block;
	}
}
/* JSで制御するクラス */
.has-submenu.open .subMenu {
	display: block;
}/*# sourceMappingURL=style.css.map */