@charset "utf-8";
/* ---------------- ベース ---------------- */
:root {
  /* color */
  --bk01: #222426;
  --lg01: #B8DB03;
  /* style */
  --main-color: var(--bk01);
  --sub-color: var(--lg01);
}
html { scroll-behavior: smooth;}
body {
	background: url(../images/common/pattern.jpg) repeat fixed;
	font-family: 'Noto Sans JP Medium';
	color: var(--main-color);
	line-height: 2;
	font-size: 12px;
/* 	font-weight: 400; */
	position: relative;
}
@media screen and (min-width: 768px) {
	body {
		font-size: 13px;
	}
}
@media screen and (min-width: 1200px) {
	body {
		font-size: 16px;
	}
}
a {transition: all 1s ease-out;}
:where(a:link) { text-decoration:none; color:var(--main-color); }
:where(a:visited) { text-decoration:none; color:var(--main-color); }
:where(a:hover) { text-decoration:none; color:var(--main-color); }
:where(a:active) { text-decoration:none; color:var(--main-color); }
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-mos-box-sizing: border-box;
	-mz-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
	transition: none !important;
}
.roboto_c { 
	font-family: 'robo_c_b', sans-serif;
}
.dm_mono { 
	font-family: 'DM Mono', monospace;
}

/*
header
*/
header {
	position: absolute;
	width: 100%;
	z-index: 50;
}
.header_contents {
	position: relative;
	height: 50px;
	background: var(--main-color);
}
.logo {
	padding: 10px 0 0 10px;
}
.logo_img {
	width: 240px;
	height: 15px;
}
@media only screen and (min-width: 351px) {
	.logo_img {
		width: 300px;
		height: 19px;
	}
}
@media only screen and (min-width: 768px) {
	.header_contents {
		height: 80px;
	}
	.logo {
		padding: 18px 0 0 18px;
	}
	.logo_img {
		width: 470px;
		height: 30px;
	}
}
@media only screen and (min-width: 1441px) {
	.logo {
		padding: 25px 53px;
	}
	.logo_img {
		width: 661px;
		height: 42px;
	}
	.header_contents {
		height: 100px;
	}
}
/*
ナビ
*/
.nav_btn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 104;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background: #B8DB03;
	cursor: pointer;
}
.nav_btn_open {
	background: var(--main-color);
	box-shadow: none;
}
.nav_btn_wrap {
	position: relative;
	display: flex;
	justify-content: center;
	width: 30px;
	height: auto;
	transition: all 0.5s ease-out;
}
.nav_btn_txt {
	position: relative;
	top: 8px;
	left: -5px;
	z-index: -1;
	display: block;
	font-size: 11px;
	color: #141B20;
	line-height: 1;
	letter-spacing: 1px;
}
.nav_btn_txt span {
	position: absolute;
	left: 50%;
	transform : translateX(-50%);
	transition: all 0.5s ease-out;
}
.txt_on {
	opacity: 1;
}
.txt_off {
	opacity: 0;
}
.nav_btn_line {
	position: absolute;
	top: -7px;
	width: 30px;
	height: 2px;
	background: var(--main-color);
	transition: transform .6s;
	transition: all 0.5s ease-out;
}
.nav_btn_line_open {
	display: block;
	background: #fff;
}
.nav_btn_line-bottom {
	top: 7px;
}
.nav_btn_line-center {
	top: 0;
}
.nav_btn_line-top.active {
	top: 0;
	transform: rotate(45deg);
}
.nav_btn_line-center.active {
	transform:scaleX(0);
}
.nav_btn_line-bottom.active {
	top: 0;
	transform: rotate(-45deg);
}
.gnav {
	position: fixed;
	flex-flow: column;
	top: 0;
	z-index: 107;
	display: none;
	width: 100%;
	height: 100%;
	background: url(../images/common/pattern.jpg) repeat;
	overflow-y: scroll;
}
.gnav_wrap {
	display: flex;
	flex-direction: column;
	flex-flow: column;
	animation: gnav_wrap_ani02 .5s linear;
}
.gnav_wrap_ani {
	animation: gnav_wrap_ani01 .5s linear;
}
@keyframes gnav_wrap_ani01 {
	0% {
		transform:translateY(-10px);
	}
	100% {
		transform:translateY(0);
	}
}
@keyframes gnav_wrap_ani02 {
	0% {
		transform:translateY(0);
	}
	100% {
		transform:translateY(-10px);
	}
}
.spnav_logo {
	position: absolute;
	top: 14px;
	left: 10px;
	width: 240px;
	height: 18px;
}
.header_nav {
	padding: 26px 21px 0;
}
.header_nav_item {
	margin: 0 0 20px;
}
.header_nav li.header_nav_item:first-child {
	margin: 0 0 40px;
}
.header_nav_link {
	font-size: 15px;
	font-weight: bold;
}
.header_nav_link_en {
	display: block;
	font-size: 50px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: -7px;
}
.header_nav_item:first-child .header_nav_link_en {
	font-size: 30px;
}
.gnav_copy {
	padding: 11px 0;
	border-top: 1px solid var(--main-color);
}
.gnav_copy small {
	display: block;
	text-align: center;
	font-size: 10px;
	transform: scale(.9);
}
.floating_head {
	position: fixed;
	top: 0;
	z-index: 104;
	width: 100%;
	height: 50px;
	background: url(../images/common/pattern.jpg) repeat;
	transform: translateY(-100%);
	transition: all .5s ease-out;
}
.floating_head_wrap_show {
	transform: translateY(0);
	transition: all .5s ease-out;
}
.floating_head_logo {
	width: 240px;
	height: 15px;
	margin: 14px 0 0 10px;
}
.floating_head_btn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 106;
	height: 50px;
	transform: translateY(-100%);
	transition: all .5s ease-out;
}
.floating_head_btn_show {
	transform: translateY(0);
	transition: all .5s ease-out;
}
.floating_head_btn .nav_btn{
	background: #222426;
}
.floating_head_btn .nav_btn_line{
	background: #fff;
}
@media only screen and (min-width: 1200px) {

.floating_head_btn .nav_btn {
	top: 5px;
	right: 10px;
	width: 40px;
	height: 40px;
	background: none;
	border: solid var(--main-color) 1px;
	border-radius: 50%;
}
.floating_head_btn .nav_btn.nav_btn_open {
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: var(--main-color);
	border-radius: 0;
}
.floating_head_btn .nav_btn_line {
	top: -3px;
	width: 20px;
	height: 1px;
	background: var(--main-color);
}
.floating_head_btn .nav_btn.nav_btn_open .nav_btn_line {
	width: 30px;
	height: 2px;
	background: #fff;
}
.floating_head_btn .nav_btn_line-center {
	display: none;
}
.floating_head_btn .nav_btn_line-bottom {
	top: 3px;
}
}

.floating_head_btn .nav_btn_line-top.active {
	top: 0;
	transform: rotate(45deg);
}
.floating_head_btn .nav_btn_line-bottom.active {
	top: 0;
	transform: rotate(-45deg);
}
.floating_head_txt {
	display: none;
}
.floating_close_btn {
	position: fixed;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background: var(--main-color);
	border-radius: 0;
	cursor: pointer;
}
.floating_close_btn span {
	position: absolute;
	display: block;
	width: 30px;
	height: 2px;
	background: #fff;
	transition: transform .6s;
	transition: all 0.5s ease-out;
}
.floating_close_btn_top {
	top: 50%;
	left: 50%;
	transform: translate(-50%) rotate(45deg);
}
.floating_close_btn_bottom {
	top: 50%;
	left: 50%;
	transform: translate(-50%) rotate(-45deg);
}
.gnav_list {
	display: none;
	height: 100vh;
	padding-top: calc(100vh - (96.5px*9));
}
.gnav_list_item {
	position: relative;
	border-bottom: 1px solid #707070;
}
.gnav_list_item::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 0;
	background: var(--main-color);
	transition: all .2s ease-out;
}
.gnav_list_item:hover::before {
  height: 100%;
  transition: all .2s ease-out;
}
.gnav_list_link {
	font-family: 'Noto Sans JP Bold';
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	padding: 9px 0 0 49px;
	font-size: 30px;
}
.gnav_list_item:hover .gnav_list_link {
	color: #fff;
}
.gnav_list_link_en {
	margin: 0 15px 0 0;
	font-size: 78px;
	line-height: 1;
}
@media screen and (min-width: 1200px) {
	.gnav_list_link_en {
		line-height: 75px;
	}
}
.floating_head_txt.close_txt {
	display: none;
}
@media only screen and (min-width: 351px) {
	.floating_head_logo {
		width: 300px;
		height: 25px;
	}
	.spnav_logo {
		width: 300px;
		height: 19px;
	}
}
@media only screen and (min-width: 576px) {
	.floating_head_txt {
		position: fixed;
		top: 50%;
		right: 70px;
		display: block;
		transform: translateY(-50%);
		font-size: 16px;
		font-weight: bold;
	}
}
@media only screen and (min-width: 768px) {
	.nav_btn {
		width: 80px;
		height: 80px;
	}
	.floating_head_logo {
		width: 470px;
		height: 30px;
		margin: 22px 0 0 18px;
	}
	.spnav_logo {
		top: 10px;
		left: 18px;
		width: 470px;
		height: 36px;
	}
	.floating_head_btn {
		height: 80px;
}
	.floating_head_btn .nav_btn {
/*
		top: 20px;
		right: 20px;
		width: 40px;
*/
	}
	.floating_head {
		height: 80px;
	}
	.floating_head_txt {
		right: 93px;
		display: block;
		transform: translateY(-50%);
		font-size: 20px;
		font-weight: bold;
	}
}
@media only screen and (min-width: 961px) {
	.gnav {
		overflow-y: auto;
	}
}
@media only screen and (min-width: 1200px) {
	.gnav {
		width: 100%;
		background: rgba(34,36,38,0.8);
		flex-flow: row-reverse;
	}
	.nav_btn {
		top: 50%;
		right: 26px;
		transform: translateY(-50%);
		width: 50px;
		height: 50px;
		border: solid #fff 1px;
		border-radius: 50%;
		background: #141B20;
	}
	.nav_btn_open {
		border: solid var(--main-color) 1px;
		background: none;
	}
	.nav_btn_wrap {
		width: 25px;
	}
	.nav_btn_line {
		top: -3px;
	}
	.nav_btn_line-bottom {
		top: 4px;
	}
	.nav_btn_txt {
		position: relative;
		top: 27px;
		left: 1px;
		font-size: 14px;
		color: #fff;
	}
	.nav_btn_line {
		background: #fff;
	}
	.nav_btn_line-center {
		top: 11px;
		display: none;
	}
	.nav_btn_line-bottom {
		top: 3px;
	}
	.nav_btn_line-top.active {
		top: 0;
	}
	.nav_btn_line-bottom.active {
		top: 0;
	}
	.nav_btn_line.active {
		background: var(--main-color);
	}
	.nav_btn_txt.close {
		letter-spacing: 1px;
	}
	.header_nav {
		padding: 0;
	}
	.header_nav_item {
		margin: 0;
	}
	.header_nav_link_en {
		display: none;
	}
	.floating_head_btn {
		height: 80px;
	}
	.floating_head_btn .nav_btn {
		top: 40px;
		right: 26px;
		width: 50px;
		height: 50px;
	}
	.floating_close_btn span {
		width: 25px;
		background: var(--main-color);
	}
	.floating_close_btn {
		top: 15px;
		right: 26px;
		border: solid var(--main-color) 1px;
		border-radius: 50%;
		width: 50px;
		height: 50px;
		background: none;
		z-index: 100;
	}
	.floating_head_txt.close_txt {
		display: block;
		top: 38px;
	}
	.spnav_logo {
		display: none;
	}
	.gnav_copy {
		display: none;
	}
	.gnav_list_bg {
		background: url(../images/common/pattern.jpg) repeat;
		width: 50%;
		margin: 0 0 0 50%;
		height: 100%;
		overflow-y: auto;
	}
	.gnav_list {
		display: block;
	}
}
@media only screen and (min-width: 1441px) {
	.floating_head_logo {
		width: 661px;
		height: 42px;
		margin: 15px 50px;
	}
	.spnav_logo {
		top: 23px;
		left: 50px;
		width: 661px;
		height: 54px;
	}
}
/* ヘッダーナビ */
.header_nav {
	margin: 50px 0 0;
	border-top: 1px solid var(--main-color);
}
@media only screen and (min-width: 1200px) {
	.header_nav {
		position: absolute;
		top: 50%;
		right: 96px;
		display: flex;
		gap: 15px;
		transform: translateY(-50%);
		margin: 0;
		border-top: none;
	}
	.header_nav_link {
		position: relative;
		font-size: 14px;
		font-weight: normal;
		color: #fff;
	}
	.header_nav_link::before {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		z-index: 1;
		transform: translateY(-50%);
		width: 0;
		height: 5px;
		background: #B8DB03;
		transition: all 0.2s ease-out;
	}
	.header_nav_link:hover::before {
		width: 100%;
		transition: all 0.3s ease-out;
	}
}
@media only screen and (min-width: 1780px) {
	.header_nav {
		gap: 40px;
	}
	.header_nav_link {
		font-size: 18px;
	}
}
/*
page_共通
*/
.page_body_01 {
	width: 100%;
	padding: 0 22px;
	margin: auto;
}
.page_body_02 {
	width: 100%;
	padding: 0 22px;
}

@media only screen and (min-width: 1199px) {
	.page_body_02 {
		width: 999px;
		margin: auto;
		padding: 0;
	}
}

@media only screen and (min-width: 1764px) {
	.page_body_01 {
		width: 1720px;
		padding: 0;
	}
}
/*
ページトップ
*/
.pagetop {
	padding: 20px 0 0;
	border-top: 1px solid var(--main-color);
}
.pagetop a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: max-content;
	margin: auto;
	transition: all 0.2s ease-out;
}
.pagetop_txt.mainttl_03_en {
	line-height: .8;
}
.pagetop figure {
	margin: 0 0 8px;
	width: 14px;
	height: 14px;
}
.pagetop figure img {
	vertical-align: inherit;
}
@media screen and (min-width: 768px) {
	.pagetop a {
		transform: translateY(8px);
	}
	.pagetop figure {
		margin: 0 0 15px;
		width: 40px;
		height: 39px;
	}
}
@media screen and (min-width: 1200px) {
	.pagetop a {
		transform: translateY(9px);
	}
	.pagetop a:hover {
		transform: none;
		transition: all 0.2s ease-out;
	}

}

/* footer */
footer {
	background: var(--main-color);
}
.footer_inner {
	text-align: center;
	padding: 4px 0;
}
footer small {
	color: #fff;
	font-size: 10px;
}
@media screen and (min-width: 1200px) {
	.footer_inner {
		padding: 37px 0;
	}
	footer small {
		font-size: 13px;
	}	
}
/* h start */
/* ---------------
文字関係
 ---------------*/
 /* テキスト */
 .txt_l {
	 font-size: 12px;
 }
 .txt_s {
	font-size: 10px;
}
 @media screen and (min-width: 768px) {
	.txt_l {
		font-size: 14px;
	}
	.txt_s {
		font-size: 11px;
	}
}
@media screen and (min-width: 1200px) {
	.txt_l {
		font-size: 18px;
	}
	.txt_s {
		font-size: 14px;
	}
}
 /* タイトル */
.mainttl_01_en {
	font-weight: bold;
	line-height: 1;
	font-size: 65px;
}
.mainttl_02_en {
	font-weight: bold;
	line-height: 1;
	font-size: 50px;
}
.mainttl_03_en {
	font-weight: bold;
	line-height: 1;
	font-size: 20px;
}
.mainttl_01_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 20px;
}
.mainttl_02_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 19px;
}
.mainttl_03_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 18px;
}
.mainttl_04_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 16px;
}
.mainttl_05_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 14px;
}
.mainttl_06_ja {
	font-weight: bold;
	line-height: 1.5;
	font-size: 13px;
}
.txt_l {
	line-height: 1.65;
	font-size: 12px;
}
.txt_s {
	line-height: 1.65;
	font-size: 10px;
}
.txt_btn {
	font-weight: bold;
	line-height: 1.5;
	font-size: 20px;
}
 @media screen and (min-width: 768px) {
	.mainttl_01_en {
		font-size: 100px;
	}
	.mainttl_02_en {
		font-size: 96px;
	}
	.mainttl_03_en {
		font-size: 40px;
	}
	.mainttl_01_ja {
		font-size: 38px;
	}
	.mainttl_02_ja {
		font-size: 32px;
	}
	.mainttl_03_ja {
		font-size: 28px;
	}
	.mainttl_04_ja {
		font-size: 24px;
	}
	.mainttl_05_ja {
		font-size: 19px;
	}
	.mainttl_06_ja {
		font-size: 14px;
	}
	.txt_l {
		font-size: 14px;
	}
	.txt_s {
		font-size: 11px;
	}
	.txt_btn {
		font-size: 40px;
	}
}
@media screen and (min-width: 1200px) {
	.mainttl_01_en {
		font-size: 186px;
	}
	.mainttl_02_en {
		font-size: 120px;
	}
	.mainttl_03_en {
		font-size: 50px;
	}
	.mainttl_01_ja {
		font-size: 48px;
	}
	.mainttl_02_ja {
		font-size: 40px;
	}
	.mainttl_03_ja {
		font-size: 36px;
	}
	.mainttl_04_ja {
		font-size: 30px;
	}
	.mainttl_05_ja {
		font-size: 24px;
	}
	.mainttl_06_ja {
		font-size: 18px;
	}
	.txt_l {
		font-size: 18px;
	}
	.txt_s {
		font-size: 14px;
	}
	.txt_btn {
		font-size: 50px;
	}
}
/*
タイトルアニメーション
*/
.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:.8s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;
  opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }
  to {
    opacity:1;  
	}
}
/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:.1s;
  animation-delay: .5s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
	}
}
/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:.8s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #222426;/*伸びる背景色の設定*/
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* ---------------
common
 ---------------*/
.page_wrap {
	padding: 50px 0 0;
}
.color_01 {
	color: #fff;
}
.color_02 {
	color: #717273;
}
@media screen and (min-width: 768px) {
	.page_wrap {
		padding: 80px 0 0;
	}
}
@media screen and (min-width: 1441px) {
	.page_wrap {
		padding: 100px 0 0;
	}
}
/* ---------------
パンくず
 ---------------*/
 .d-none {
	 display: none;
 }
 .breadcrumbs_wrap {
	 padding: 18px 0 10px;
	 display: flex;
	 justify-content: flex-end;
 }
@media screen and (min-width: 1200px) {
	 .breadcrumbs_wrap {
		padding: 18px 0 0;
	}
}
 .breadcrumbs {
	display: flex;
 }
 .breadcrumbs li {
	height: 13px;
 }
 .breadcrumbs li+li {
	 margin: 0 0 0 5px;
 }
.breadcrumbs_txt {
	height: 13px;
	display: flex;
	align-items: center;
	padding: 0 14px;
	color: #fff;
	background-color: var(--main-color);
	font-weight: bold;
	transition: background-color .2s ease-out;
 }
 .breadcrumbs_txt span {
	font-size: 10px;
	transform: scale(0.9);
 }
@media screen and (min-width: 768px) {
	.breadcrumbs li {
		height: 18px;
	 }
	.breadcrumbs_txt {
		height: 18px;
		padding: 0 20px;
	 }
	 .breadcrumbs_txt span {
		transform: scale(1.3);
	 }
	 
}
@media screen and (min-width: 1025px) {
	.breadcrumbs li a:hover {
		background-color: #717273;
	}
}
.breadcrumbs svg {
	width: 4px;
	height: 7px;
	display: block;
	margin: 3px 0 0;
}
@media screen and (min-width: 768px) {
	.breadcrumbs svg {
		width: 5px;
		height: 10px;
		margin: 4px 0 0;
	}
}

/* ---------------
sec_mainttl
 ---------------*/
.sec_mainttl {
	padding: 0 0 0;
}
.mainttl_01_en_flex {
	display: inline-flex;
	flex-direction: column;
}
.mainttl_01_en .noto {
	font-family: 'Noto Sans JP Bold', sans-serif;
}
 .hero_img {
	 display: flex;
	 justify-content: center;
	 margin: 21px 0 0;
}
.subttl_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.subttl_wrap .mainttl_01_ja {
	position: absolute;
	bottom: 50%;
  transform: translateY(50%);
}
.subttl_wrap .mainttl_01_ja_type02 {
	bottom: -2px;
	transform: none;
}
.sp_br {
	display: block;
}
.pc_br {
	display: none;
}
@media screen and (min-width: 768px) {
	.mainttl_01_en_flex {
		flex-direction: row;
		align-items: baseline;
	}
	.sp_br {
		display: none;
	}
	.subttl_wrap .mainttl_01_ja {
		bottom: -10px;
		transform: none;
	}
	.pc_br {
		display: block;
	}

}

@media screen and (min-width: 1200px) {
	.sec_mainttl {
		padding: 100px 0 0;
	}
}
/* ---------------
sec_sub
 ---------------*/
 .sec_border {
	 border-bottom: 1px solid var(--main-color);
 }
 /* ---------------
pdflist
 ---------------*/
 .enrollfile_list li a.download_link {
  display: flex;
  justify-content: space-between;
	background-color: #fff;
	font-size: 12px;
  font-weight: bold;
  padding: 7px 12px 4px;
	transition: all 0.2s ease-out;
}
.enrollfile_list li+li {
	margin: 10px 0 0;
}
.dl_color {
	fill: var(--sub-color);
}
/* 左側 */
.download_link_pdf {
	display: flex;
	align-items: center;
	width: 100%;
}
.download_link_pdf span {
	width: 100%;
}
.pdf_icon {
	margin: 0 12px 0 0;
}
/* 右側 */
.download_link_download {
	display: flex;
	align-items: center;
}
.download_link_download svg{
	width: 9px;
	height: 15px;
}
	/* 右側 */
	.dl_txt {
		display: block;
		margin: 0 13px 0 0;
		font-size: 13px;
	}
@media only screen and (min-width: 768px) {
	.enrollfile_list li a.download_link {
		font-size: 14px;
		padding: 7px 30px;
	}
	/* 左側 */
	.pdf_icon {
		margin: 0 10px 0 0;
	}
	/* 右側 */
	.download_link_download svg{
		width: 13.77px;
		height: 21.29px;
	}
}
@media only screen and (min-width: 1025px) {
  .enrollfile_list li a.download_link:hover {
    background-color: #B8DB03;
		transition: all 0.2s ease-out;
  }
	.enrollfile_list li a.download_link:hover .dl_color {
    fill: var(--main-color);;
  }

}
@media only screen and (min-width: 1200px) {
	/* 右側 */
	.dl_txt {
		font-size: 16px;
	}
	.enrollfile_list li a.download_link {
		font-size: 18px;
	}
}

/* h end */

/* s start */
/* ページ内リンクアンカーポイント */
#page01,#page02,#page03,#page04,#page05,#page06,#page07,#page08,#page09,.anchor {
	padding-top:95px;
	margin-top:-95px;
}
@media only screen and (min-width: 992px) {
	#page01,#page02,#page03,#page04,#page05,#page06,#page07,#page08,#page09,.anchor {
		padding-top:120px;
		margin-top:-120px;
	}
}
/*--end--*/

.page_body_abmission{
	width: 100%;
	padding-left: 0px;
}
@media only screen and (min-width: 768px){
	.page_body_abmission{
		width: 100%;
		padding-left: 22px;
	}
}

@media only screen and (min-width: 1764px){
	.page_body_abmission{
		width: calc( 1720px + ( ( 100% - 1720px ) * 0.5 ) );
		padding: 0;
	}
}

/* s end */

/* k start */
.ttl_effe {
	display: inline-block;
}
.ttlanime_ef{
	opacity: 0;
	transition: all 0.5s ease-out;
}
.ttlanime_ef.active{
	opacity: 1;
}

.block-revealer__element {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	pointer-events: none;
	opacity: 0;
}
/* overlay */
.overlay {
	position: absolute;
	top: 0;
	right: 0;
	opacity: 0;
	background: rgba(0, 0, 0, .80);
	transition: all 0.5s ease-out;
}
.overlay_in {
	width: 100%;
	height: 100%;
	z-index: 49;
	opacity: 1;
	transition: opacity 0.5s ease;
}
/* タイトルアニメ */
.eachTextAnime {
	display: inline-block;
	overflow: hidden;
	text-align: center;
}
.eachTextAnime span{display: inline-block;opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;transform: translateY(100px);}
  100% {opacity:1;transform: translateY(0);}
}
.eachTextAnime02 span{
	opacity: 0;
}
.eachTextAnime02.appeartext span{ animation:text_anime_on2 1s ease-out forwards; }
@keyframes text_anime_on2 {
  0% {opacity:0;}
  100% {opacity:1;}
}




