@charset "utf-8";
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url("inview.css");
@import url("mainimg.css");
:root {

	--primary-color: #0e28e5;
	--primary-inverse-color: #fff;

	--secondary-color: #121a5a;
	--secondary-inverse-color: #fff;
	
	--accent-color: #c43311;
	--accent-inverse-color: #fff;
	--content-space: 4rem;
	
}
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
body * {box-sizing: border-box;}
html,body {
	font-size: 13px;
}
	@media screen and (min-width:900px) {

	html, body {
		font-size: 15px;
	}

	}


body {
	margin: 0;padding:0;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	-webkit-text-size-adjust: none;
	background: #fff;
	color: #555;
	line-height: 2;
	overflow-x: hidden;
}
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input {font-size: 1rem;}
section {
	padding: var(--content-space);
}
a {
	color: inherit;
	transition: 0.3s;
}
a:hover {
	filter: brightness(1.1);
}
#container {
	position: relative;
	animation: opa1 1s 1s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	margin: 0 auto;
}
header {
	padding: 1rem var(--content-space);
	color: #fff;
	position: absolute;
	width: 100%;
}
header a {color: inherit;}
#logo a {text-decoration: none;}
#logo img {
	display: block;
	width: 480px;
}
	@media screen and (min-width:900px) {
	header {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
		align-items: center;
	}

	}
#header-box * {margin: 0;padding: 0;}
	@media screen and (min-width:900px) {

	#header-box {
		margin-right: 30px;
	}

	}
#header-box .btn {
	list-style: none;
	display: flex;
	gap: 1rem;
}
#header-box .btn a {
	display: block;text-decoration: none;
	padding: 0.5rem 2rem;
	border-radius: 3px;
}
#header-box .btn i {
	margin-right: 1rem;
	transform: scale(1.4);
}
	@media screen and (max-width:500px) {
	#header-box .btn {
		display: inline-block;
	}
	#header-box .btn li {
		margin-bottom: 0.5rem;
	}

	}
#menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}
#menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
}
#menubar_hdr {
	display: flex;
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	background: #000;
	border-radius: 0px 0px 0px 20px;
	transform-origin: right top;
	transform: scale(1);
}
#menubar_hdr.ham {
	background: #ff0000;
}
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}

#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}
.new-top * {margin: 0;padding: 0;}
.new-top {
	position: absolute;
	top: 80vh;
	z-index: 1;
	width: 80vw;
	margin-left: 10vw;
	display: flex;
	align-items: center;
	padding: 1rem;
	background: #fff;
	border-radius: 5px;
}
.new-top a:hover {
	opacity: 0.8;
}
.new-top h2 {
	font-size: 1rem;
	font-weight: normal;
	background: #555;
	color: #fff;
	border-radius: 3px;
	margin-right: 1rem;
	padding: 0 1rem;
}
.new-top .text {
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.new-top .new-list {
	align-self: flex-end;
}
#contents {
	flex: 1;
}
body:not(.home) #contents {
	padding-top: 10rem;
	padding-bottom: 10rem;
}
#contents ul,#contents ol {
	margin-left: 2rem;
	margin-right: 2rem;
}
p {
	margin-left: 1rem;
	margin-right: 1rem;
}
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;
	font-weight: normal;
	margin-bottom: 5vw;
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2 span.small {
	display: inline-block;
	border-top: 2px solid var(--primary-color);
	font-size: 0.9rem;
	opacity: 0.6;
	letter-spacing: 0.1rem;
	padding-top: 2rem;
}
main h2.c {
	align-items: center;
}

.list-full {
	text-align: center;
}
.list-full h4 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.list-half * {margin: 0;padding: 0;}
#message {
	background: url("../images/bg-recruit.png") no-repeat left top / 50vw;
}
.list-half .list {
	display: flex;
	flex-direction: column;
	margin-bottom: 2rem;
}
.list-half .list h4 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}
.list-half .list h4 span {
	display: block;
	opacity: 0.5;
	font-weight: normal;
	font-size: 0.5em;
	letter-spacing: 0.1em;
}
.list-half .image-l img, .list-half .image-r img {
	border-radius: 50px;
	box-shadow: 10px 10px rgba(0,0,0,0.1);
}
	@media screen and (min-width:900px) {
	.list-half .list {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
	.list-half .image-l, .list-half .image-r {
		width: 50%;
	}
	.list-half .image-r {
		margin-left: 2rem;
	}
	.list-half .image-l {
		order: -1;
		margin-right: 2rem;
	}
	.list-half .image {
		flex: 1;
	}
	.list-half .text {
		flex: 1;
	}

	}
.list-grid7 .list * {margin: 0;padding: 0;}
.list-grid7 .list {
    display: grid;
	position: relative;
	border-radius: 5px;
	background: #fafafa;
	color: #555;
	border: 1px solid #ccc;
	padding: 2rem;
	margin-bottom: 2rem;
}
.list-grid7 .list h4 {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}
.list-grid7 .list h4 span {
	display: block;
	font-weight: normal;
	font-size: 0.7em;
}
.list-grid7 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}
.list-grid7 .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;
}
	@media screen and (min-width:800px) {
	.list-grid7 {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2rem
	}

	}


.list-grid8 .list * {margin: 0;padding: 0;}
.list-grid8 .list {
    display: grid;
	position: relative;
	border-radius: 5px;
	background: #fafafa;
	color: #555;
	border: 1px solid #ccc;
	padding: 2rem;
	margin-bottom: 2rem;
}
.list-grid8 .list h4 {
	text-align: center;
	font-size: 1.3rem;
	margin-bottom: 0.5rem;
	color: var(--primary-color);
}
.list-grid8 .list h4 span {
	display: block;
	font-weight: normal;
	font-size: 0.7em;
}
.list-grid8 .list p {
	font-size: 0.85rem;
	line-height: 1.5;
}
.list-grid8 .list figure {
	margin: 0 auto;
	margin-bottom: 1rem;
}
	@media screen and (min-width:800px) {
	.list-grid8 {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem
	}

	}

.counter-section {
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	text-align: center;
}
.counter-section .count {
    font-size: 3rem;
    font-weight: 700;
    color: #0066cc;
}

..counter-section .count small {
    font-size: 0.5em;
    font-weight: 400;
    margin-left: 4px;
    color: #666;
}
.flow-box * {margin: 0;padding: 0;}
#recruitment {
	background: url("../images/bg-flow.png") no-repeat right top / 50vw;
}
.flow-box {
	position: relative;
	margin-bottom: 4rem;
}
.flow-box .title h3 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	margin-left: calc(-1 * var(--content-space));
	margin-right: calc(-1 * var(--content-space));
	text-align: center;
	padding: 2rem;
	margin-bottom: 2rem;
}
.flow-box .title h3 span {
	display: block;
	font-size: 0.7em;
}
.flow-box .step-num {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: -50px;
	width: 100%;
	font-size: 3rem;
	color: var(--primary-color);
}
	@media screen and (min-width:900px) {

	.flow-box {
		display: flex;
		align-items: flex-start;
		gap: 5rem;
	}
	.flow-box .step-num {
		top: -100px;
		font-size: 5rem;
		opacity: 0.15;
	}
	.flow-box .title {
		width: 30%;
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}
	.flow-box .title h3 {
		margin-right: auto;
		border-radius: 0 100px 100px 0;
	}
	.flow-box .text {
		flex: 1;
	}

	}
ul.step {
	margin: 0 !important;padding: 0 !important;
	list-style: none;
}
ul.step li {
	border: 2px solid var(--primary-color);
	padding: 1rem;
	margin-bottom: 2rem;
	position: relative;
}
ul.step li::after {
	content: "▼";
	transform: scaleX(2);
	position: absolute;
	left: 50%;
	bottom: -2rem;
	color: var(--primary-color);
	opacity: 0.3;
}
ul.step li:last-child::after {
	content: "";
}
.req {
	margin-bottom: 2rem;
}

.ta1 {
	width: 100%;
	border-top: 1px solid #888;
}

.ta1 tr {
	border-bottom: 1px solid #888;
}

.ta1 th, .ta1 td {
	display: block;
	width: 100%;
}
.ta1 th {
	background-color: #eeeeee;
}
.ta1 td {
	height: auto;
}
@media screen and (min-width:600px) {
.ta1 th, .ta1 td {
	padding: 1rem;
	display: table-cell;
	margin-bottom: 10rem;
}
.ta1 th {
	width: 200px;
}
.ta1 td {
	width: auto;
}
}

.ta1 .saraly {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ta1 .saraly dh {
	width: 60%;
	border-bottom: 1px solid #ccc;
}
.ta1 .saraly dd {
	padding-left: 16px;
	width: 40%;
	border-bottom: 1px solid #ccc;
}
@media screen and (min-width:600px) {
.ta1 .saraly dh {
	width: 40%;
}
.ta1 .saraly dd {
	width: 60%;
}
}

.list-yoko-scroll * {margin: 0; padding: 0;}
.list-yoko-scroll {
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	scrollbar-width: none;
	scroll-snap-type: x mandatory;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-right: calc(-1 * var(--content-space));
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none;
}
.list-yoko-scroll .list {
	width: 60%;
	flex-shrink: 0;
	scroll-snap-align: start;
	margin-right: 2rem;
	position: relative;
	color: var(--primary-inverse-color);
	background: var(--primary-color);
	border-radius: 1rem;
	padding: 2rem;
}
	@media screen and (min-width:600px) {
	.list-yoko-scroll .list {
		width: 28%;
	}

	}
.list-yoko-scroll .list:nth-of-type(even) {
	transform: translateY(30px);
}
.list-yoko-scroll .list::before {
	content: "▲";
	color: var(--primary-color);
	font-size: 30px;
	position: absolute;
	left: 30%;
	top: -40px;
}
.list-yoko-scroll .list .text {
	font-size: 0.85rem;
	line-height: 1.5;
}
.faq {
	font-size: 1.3rem;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}
.faq dt {
	display: flex;
	align-items: flex-start;
	border-top: 1px solid rgba(255,255,255,0.3);
	padding: 1rem;
	cursor: pointer;
}
.faq dt::before {
	content: "＋";
	margin-right: 1rem;
	flex-shrink: 0;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	width: 2rem;
	line-height: 2rem;
	text-align: center;
	border-radius: 50%;
	transform: translateY(5px);
}
.faq dt.active::before {
	content: "ー";
}
.faq dd {
	margin: 0 1rem 1rem 4rem;
	padding: 1rem 2rem;
	background: #fff;
	color: #333;
	border-radius: 5px;
}
.btn a {
	display: block;text-decoration: none;
	background: var(--accent-color);
	color: var(--accent-inverse-color);
	text-align: center;
}
.btn a:hover {
	background: var(--accent-inverse-color);
	color: var(--accent-color);
}
.btn-box .btn i {
	margin-right: 2rem;
	transform: scale(1.4);
}
.btn-box .btn {
	list-style: none;margin:0;padding:0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	height: 80vh;
	font-size: 1.5rem;
}
.btn-box .btn li {
	width: 80vw;
}
.btn-box .btn a {
	border-radius: 10px;
	padding: 1rem 2rem;
}
	@media screen and (min-width:900px) {
	.btn-box .btn {
		flex-direction: row;
	}
	.btn-box .btn li {
		width: 40vw;
	}

	}
@keyframes move-wave {
0% { transform: translateX(0); }
100%   { transform: translateX(-50%); }
}
.wave-section {
	position: relative;
	padding-top: 79px;
	top: -79px;
	margin-bottom: -79px;
}
.wave-section .text {
	background: var(--primary-color);
}
.wave-wrap use {
	fill: var(--primary-color);
}
.wave {
	position: absolute;
	left: 0;
	width: 100%;
	height: 80px;
}
.wave svg {
	display: block;
	width: 100%;
	height: 100%;
}

.wave .wave-wrap {
	transform-box: fill-box;
	transform-origin: 0 0;
	animation: move-wave 10s linear infinite;
}
.wave-top {
	top: 0;
}
.wave-bottom {
	bottom: 0;
	transform: rotate(180deg);
}
#footer * {margin: 0;padding: 0;}
#footer ul {list-style: none;}
#footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: var(--content-space);
}
#footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#footer div.footer2 {
    flex: 1;
}
	@media screen and (min-width:700px) {

	#footer {
		display: flex;
		gap: 2rem;
	}
	#footer div.footer1 {
		text-align: left;
		width: 40%;
	}

	}
#footer small {
	display: block;
	text-align: right;
	margin-top: 2rem;
}
#footer .sns {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

#footer .sns i {
	font-size: 30px;
}
#footer .iframe {
	width: 100%;
	height: 0;
	padding-top: 56.25% !important;
	position: relative;
	overflow: hidden;
}
#footer .iframe iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
.week {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #ccc;
	table-layout: fixed;
	background: #fff;
	color: #555;
}
.week th:first-child,
.week td:first-child {
	width: 25%;
}
.week th:not(:first-child),
.week td:not(:first-child) {
	width: calc(75% / 7);
}
.week th,
.week td {
	padding: 1rem 0;
	text-align: center;
	border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;
}
.week th:last-child,
.week td:last-child {
	border-right: none;
}
.week tr:last-child td {
	border-bottom: none;
}
.week th {
	background: #fafafa;
}
.week td {
	border-bottom: 1px solid #ccc;
}
.pr a {
	text-decoration: none;display: block;
	background: #555;
	color: #ccc;
	text-align: right;
	padding: 0.5rem 1rem;
	font-size: 0.8rem;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}
.pagetop-show {display: block;}
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}
.bg1 {
	background: var(--secondary-color);
	color: var(--secondary-inverse-color);
}
.bg-slideup {
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
}
.slideup1 {
    background-image: url("../images/bg-slideup1.jpg");
	color: #fff;
	border-radius: 10vw 10vw 0 0;
}
.slideup2 {
    background-image: url("../images/bg-slideup2.jpg");
	position: relative;
}
.slideup2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 20vh;
	background: linear-gradient(var(--secondary-color), transparent);
}
.new dd {
	padding-bottom: 1rem;
}
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;
	border-radius: 2px;
	padding: 0 1rem;
	width: 8rem;
	transform: scale(0.85);
	border: 1px solid #777;
}
.new .icon-bg1 {
	border-color: transparent;
	background: #cd0000;
	color: #fff;
}
.new .icon-bg2 {
	border-color: transparent;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}
	@media screen and (min-width:700px) {
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}

	}
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}
.fade-in-text {
    visibility: hidden;
}
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}
#footermenu {
	margin: 0;
	padding: 1%;
}
#footermenu li {
	display: inline-block;
	padding: 0 10px;
	font-size: 0.8em;
}
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5rem {margin-bottom: 5rem !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}

