@charset "utf-8";
/******▼html・body・wrapper▼******/
html, body, #wrapper {
	margin: 0;
	padding: 0;
}
body {
	font-size: 10px;
	font-weight: 400;
	line-height: 1;
	-webkit-text-size-adjust: none;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
/******▼header▼******/
#header {
	position: fixed;
	top: 0;
	left: 50%;
	width: 95%;
	transform: translateX(-50%);
	z-index: 9999;
	border-radius: 0 0 6px 6px;
	background-color: rgba(255,255,255,0.98);
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	font-size: 1rem;
}
/******▼site-logo▼******/
#site-logo {
	width: 250px;
	display: block;
	margin: 0 1rem;
}
#site-logo img {
	display: block;
	width: 100%;
	min-width: 120px;
}
/******▼global-menu▼******/
#global-menu {
	border-radius: 0 0 6px 0;
	overflow: hidden;
}
#global-menu ul {
	display: flex;
}
#global-menu ul li {
	list-style: none;
	display: flex;
}
#global-menu ul li a,
#global-menu ul li p {
	color: #212121;
	padding: 2rem 1rem;
	text-decoration: none;
	line-height: 1.5;
	display: flex;
	align-items: center;
	text-align: center;
	border-left: 1px solid rgba(0,0,0,0.12);
}
#global-menu ul li a.blank {
	padding-right: 2.3rem;
	background: url(../images/common/blank-icon2.png) no-repeat center right 11px;
}
#global-menu ul li a.pdf {
	padding-right: 2.3rem;
	background: url(../images/common/pdf-icon2.png) no-repeat center right 11px;
}
#global-menu ul li a.language {
	padding-left: 2.3rem;
	background: url(../images/common/language-icon.png) no-repeat center left 11px;
	font-size: 1.2rem;
	font-weight: bold;
}
#global-menu ul li p {
	background: rgba(0,0,0,0.30);
	color: #666666;
}
#global-menu ul li a:hover {
	background-color: rgba(23,73,145,0.60);
	color: #ffffff;
}
#global-menu ul li a.active {
	background-color: #174991;
	color: #FFFFFF;
}
#global-menu ul li a.language.active {
	background: url(../images/common/language-icon02.png) no-repeat center left 11px #174991;
}
@media screen and (max-width: 1830px){
	#global-menu ul li a,
	#global-menu ul li p {
		padding: 1.5rem 1rem;
	}
}
@media screen and (max-width: 1400px){
	#global-menu ul li a,
	#global-menu ul li p {
		padding: 0.7rem 1rem;
		font-size: 0.8rem;
	}
	#global-menu ul li a.language {
		font-size: 1.0rem;
	}
}
@media screen and (max-width: 1280px){
	#global-menu {
		position: fixed;
		top: 0;
		bottom: 0;
		height: 100vh;
		right: -100%;
		overflow-y: auto;
		background-color: #FFFFFF;
		box-shadow: 0 0 5px rgba(0,0,0,0.1);
		transition: all .4s;
		padding-top: 72px;
		z-index: 9998;
	}
	#global-menu::before {
		content: "MENU";
		position: absolute;
		top: 25px;
		left: 15px;
		font-size: 1.3em;
		font-weight: bold;
		color: rgba(23,73,145,1);
	}
	#global-menu.active {
		margin-right: -2.5%;
		right: 0;
	}
	#global-menu ul {
		width: 100%;
		max-width: 240px;
		display: flex;
		flex-direction: column;
	}
	#global-menu ul li {
		width: 100%;
	}
	#global-menu ul li a {
		display: block;
		width: 100%;
		text-align: left;
		border-left: 0 !important;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	#global-menu ul li:first-child a {
		border-top: 1px solid rgba(0,0,0,0.1);
	}
	#sp-btn {
		cursor: pointer;
		transition: all .4s;
		width: 72px;
		height: 72px;
		text-align: center;
		position: relative;
		background-color: #ddf0ff;
		z-index: 9999;
		border-radius: 0 0 6px 0;
	}
	#sp-btn.active {
		margin-right: -2.5%;
		border-radius: 0 0 0 0;
	}
	#sp-btn span {
		display: block;
		height: 3px;
		position: absolute;
		top: 50%;
		left: 50%;
		background: rgba(23,73,145,1);
		border-radius: 999px;
		width: 30px;
		margin-left: -15px;
		transition: all .4s;
	}
	#sp-btn span:nth-child(1){
		margin-top: -10px;
	}
	#sp-btn span:nth-child(2){
		margin-top: -2px;
	}
	#sp-btn span:nth-child(3){
		margin-top: 6px;

	}
	#sp-btn.active span:nth-child(1) {
		top: 44px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	#sp-btn.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	#sp-btn.active span:nth-child(3) {
		top: 28px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
}

/******▼container▼******/
#container {
	position: relative;
	z-index: 3;
	padding: 1px 15px;
	background: url("../images/common/bg.png") no-repeat fixed 90% 80% #f5f4f2;
}
/******▼contents▼******/
#contents {
	width: 100%;
	max-width: 1000px;
	margin: 6em auto;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 6px;
}
.contents-box {
	padding: 1.5rem 2rem;
	margin-bottom: 30px;
}
#contents p {
	font-size:1rem;
	margin: 1rem 0 2.5rem;
	line-height: 1.7;
}
#contents p.right {
	text-align: right;
}
#contents p.center {
	text-align: center;
}
.big-text {
	font-size: 1.3rem !important;
}
.bold-text {
	font-weight: 700;
}
.red-text {
	color: #FF0000;
}
.blue-text {
	color: #0000FF;
}
.link-btn {
	background: url(../images/common/arrow-icon2a.png) no-repeat center right 2% #009744;
	color: #FFFFFF;
	display: block;
	padding: 0.7rem 1rem;
	border: 2px solid #009744;
	text-decoration: none;
	font-size: 1.3rem;
	line-height: 1.7;
	font-weight: 700;
	border-radius: 4px;
}
input.link-btn {
	width: 100%;
	background: url(../images/common/arrow-icon2a.png) no-repeat center right 5% #009744;
	text-align: center;
	margin: 0 auto;
}
input.link-btn.left {
	margin-left: 0;
}
input.link-btn.none {
	border-color: #999999;
	background-color: #999999;
}
.link-btn:hover {
	background: url(../images/common/arrow-icon2.png) no-repeat center right 2% #FFFFFF;
	color: #009744;
}
input.link-btn.none:hover {
	background: url(../images/common/arrow-icon2.png) no-repeat center right 2% #FFFFFF;
	color: #999999;
}
/******▼page-title▼******/
#page-title {
	font-size: 3rem;
	text-align: center;
	font-weight: bold;
	color: #174991;
	padding: 11.8rem 2rem 1.1rem;
	line-height: 1.4;
	background: url("../images/common/bg.png") no-repeat fixed 90% 80% #f5f4f2;
	font-family: 'Kiwi Maru', serif;
	font-family: 'Edu TAS Beginner', cursive;
}
#page-title span {
	font-family: 'Kiwi Maru', serif;
	font-size: 0.9em;
	display: inline-block;
}
@media screen and (max-width: 1400px){
	#page-title {
		padding-top: 10.3rem;
	}
}
@media screen and (max-width: 800px){
	#page-title {
		padding-top: 9.3rem;
		font-size: 2rem;
	}
}
/******▼contents-title▼******/
.contents-title {
	font-size: 1.3rem;
	line-height: 1.4;
	font-weight: bold;
	margin: 1rem 0 1rem;
	background-color: #ddf0ff;
	color: rgba(23,73,145,1);
	padding: 0.7rem 1.2rem;
	border-radius: 4px;
}
/******▼contents-sub-title▼******/
.contents-sub-title {
	color: rgba(23,73,145,1);
	font-size: 1.15rem;
	line-height: 1.4;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
/******▼home▼******/
#home-text {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}
#home-text-title {
	font-size: 3.2vw;
	text-shadow: 0 0 20px rgba(255,255,255,1);
	text-align: center;
	line-height: 1.5;
}
.home-head-text {
	position: absolute;
	bottom: 1em;
	right: 1em;
	font-size: 1.3em;
	text-shadow: 0 0 10px rgba(255,255,255,1);
}
@media screen and (max-width: 800px){
	#home-text-title {
		font-size: 6.2vw;
	}
}
.greeting-img {
	float: right;
	margin: 0 0 2rem 2rem;
	width: 200px;
}
/******▼half-list▼******/
.half-box {
	margin: 0 auto 1rem;
	display: flex;
	flex-wrap: wrap;
}
.half-box div {
	width: 48.5%;
	margin: 0 0 1rem 3%;
	float: left;
}
.half-box div.left {
	clear: both;
	margin-left: 0;
}
/******▼circle-list▼******/
.circle-list {
	margin-bottom: 2rem;
}
.circle-list li {
	position: relative;
	padding-left: 28px;
	margin: 0.5rem 0;
	list-style: none;
	font-size: 1rem;
	line-height: 1.7;
}
.circle-list li::before {
	content: "";
	position: absolute;
	top: 0.4em;
	left: 0;
	width: 1em;
	height: 1em;
	background-color: #ff8a00;
	border-radius: 50%;
}
/******▼invited-box▼******/
.invited-box {
	padding: 1.5rem 0;
	border-bottom: 1px solid #DDDDDD;
}
.invited-box:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.invited-box img {
	float: left;
	width: 150px;
	margin-right: 2rem;
}
/******▼normal-table▼******/
.normal-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-bottom: 2rem;
	border-top: 1px solid #DDDDDD;
	border-left: 1px solid #DDDDDD;
	font-size: 1rem;
	line-height: 1.7;
}
.normal-table th,
.normal-table td {
	border-bottom: 1px solid #DDDDDD;
	border-right: 1px solid #DDDDDD;
	padding: 15px 10px;
	text-align: left;
	line-height: 1.7;
	background-color: #FFFFFF;
}
.normal-table .bg1 {
	background-color: #f0f0f0;
	vertical-align: middle;
	width: 30%;
}
.normal-table .bg2 {
	background-color: #EEF6F9;
	vertical-align: middle;
	width: 30%;
}
.normal-table input.input-max,
.normal-table textarea {
	border: 1px solid #dddddd;
	width: 100%;
	padding:0 5px;
	height: 2em;
}
.normal-table textarea {
	height: 8em;
}
.normal-table input.border {
	border: 1px solid #dddddd;
	padding:0 5px;
	height: 2em;
}
.normal-table p {
	margin: 0.7rem 0 0 !important;
}
.normal-table p.top-none {
	margin: 0 0 0 !important;
}
.normal-table p.supplement {
	font-size: 0.9rem;
	color: #555555;
}
.attention {
	background-color: #E50012;
	color: #FFFFFF;
	margin-right:10px;
	padding: 3px 5px;
}
.any {
	background-color: #DDDDDD;
	color: #212121;
	margin-right:10px;
	padding: 3px 5px;
}
.selectWrap{
	width: 100%;
	position: relative;
	display: block;
}
.selectWrap::after {
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-bottom: solid 2px #b4b3b3;
	border-right: solid 2px #b4b3b3;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -4px;
}
.select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	background: transparent;
	position: relative;
	z-index: 1;
	padding: 0 40px 0 5px;
	border: 1px solid #DDDDDD;
	border-radius: 2px;
	height: 2em;
}
.selectWrap.free {
	width: auto;
	display: inline-block;
}
.select.free {
	width: auto;
}
/******▼footer▼******/
#footer {
	margin: 0 auto;
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: 0 0 1px 0 rgba(0,0,0,0.1);
	position: relative;
	z-index: 3;
	background: url("../images/common/bg.png") no-repeat fixed 90% 80% #FFFFFF;
}
.footer-box {
	max-width: 1000px;
	margin: 0 auto 2rem;
	display: flex;
}
.footer-box div {
	width: 33%;
	margin-left: 4%;
	margin-top: 2rem;
}
.footer-box div:first-child {
	margin-left: 0;
	width: 67%;
}
.footer-box h4 {
	background-color: #174991;
	font-size: 1rem;
	padding: 0.7rem 1rem;
	color: #FFFFFF;
	border-radius: 4px 4px 0 0;
	position: relative;
}
.footer-box h4::before {
	content: "";
	position: absolute;
	top: -20px;
	left: 1rem;
	z-index: 10;
	width: 14px;
	height: 44px;
	background: url(../images/common/footer-box-title.png) no-repeat;
}
.footer-box h4::after {
	content: "";
	position: absolute;
	top: -20px;
	right: 1rem;
	z-index: 10;
	width: 14px;
	height: 44px;
	background: url(../images/common/footer-box-title.png) no-repeat;
}
.footer-box ul {
	border: 2px solid #174991;
	border-radius: 0 0 4px 4px;
	display: flex;
	flex-wrap: wrap;
	background-color: #FFFFFF;
}
.footer-box ul li {
	list-style: none;
	width: 100%;
}
.footer-box div:first-child ul li {
	width: 33.333%;
}
.footer-box ul li a {
	color: #212121;
	background: url(../images/common/arrow-icon2.png) no-repeat center left 95%;
	display: block;
	padding: 0.7rem 1rem;
	border-bottom: 1px solid #dddddd;
	text-decoration: none;
	font-size: 1rem;
	line-height: 1.7;
	border-right: 1px solid #dddddd;
}
.footer-box div:first-child ul li:nth-child(3n) a {
	border-right: 0;
}
.footer-box ul li a.blank {
	background: url(../images/common/blank-icon2.png) no-repeat center left 95% #FFFFFF;
}
.footer-box ul li a.pdf {
	background: url(../images/common/pdf-icon2.png) no-repeat center left 95% #FFFFFF;
}
@media screen and (max-width: 800px){
	.footer-box {
		flex-direction: column;
	}
	.footer-box div,
	.footer-box div:first-child {
		width: 100%;
		float: none;
		margin-left: 0;
	}
}
@media screen and (max-width: 400px){
	.footer-box div:first-child ul li {
		width: 100%;
		border-right: 0 !important;
	}
}
#footer-logo {
}
#footer-logo div {
	display: inline-block;
	margin: 0 10px;
}
#copy {
	margin-top: 1.5rem;
	font-size: 1rem;
}









.home #wrapper {
	margin-top: 100vh;
}
#home-head, .slick-list, .slick-track, .slick-slide {
	height: 100%;
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}
.slick-slide svg {
	z-index: 2;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	transform: translate(-50% , -50%);
}
.slide01 {
	background: url(../images/home/bg01.png) top left / 3% repeat-y, url(../images/home/bg01.jpg) center / cover no-repeat;
}
.slide02 {
	background:url(../images/home/bg02.jpg) no-repeat center;
	background-size: cover;
	left: 0 !important;
	position: absolute !important;
}
#svg-animation .st0{
	fill:none;
	stroke:#FFFFFF;
	stroke-width:19;
	stroke-linecap:round;
	stroke-linejoin:round;
	stroke-miterlimit:10;
	stroke-dasharray: 1500;
	stroke-dashoffset:1500;
}
#svg-animation{
	max-width: 100%;
	height: auto;
}
#svg-animation2 .st1{
	fill: none;
	stroke: #FFFFFF;
	stroke-width: 22;
	stroke-miterlimit:10;
	stroke-dasharray: 1500;
	stroke-dashoffset:1500;
}
#svg-animation2{
	max-width: 100%;
	height: auto;
}
.font02 {
	filter: drop-shadow(3px 3px 5px #FFFFFF);
}
.tanupon {
	position: absolute;
	right: 10px;
	bottom: -13px;
	z-index: 9000;
	width: 90px;
}