@charset "UTF-8";

@media screen and (max-width: 640px) {
.sp {display: block !important;}
.pc {display: none !important;}
.pc2 {display: none !important;}
	
	body {
	margin:0;
	padding:0;
}

	
	html,body {
	padding: 0;
	margin: 0;
}

body {
	margin:0;
	padding:0;
	font-family: kozuka-gothic-pro, sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #000;
	animation: fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
	background-size: 400% 400%;
	animation: AnimationName 9s ease infinite;
	background: #fff;
	letter-spacing: 0.1em;
}

a {
   color:#000;
   text-decoration:none;
}

a:hover {
   color:#707070;
   text-decoration:none;
}

img { border:0;}

h1,h2,h3,h4,h5,h6,img{
	margin:0;
	padding: 0px;
}

ol,ul,li{list-style: none;margin: 0px;padding: 0px;}


html,body {
	height: 100%;
	padding: 0;
	margin: 0;
}

/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
	right: 10px;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 1500;
  background: #fff;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .menu {
  left: 0;/* メニューを画面に入れる */
}
	


.menu {
	width: 100%;
	height: 100vh;
	background-color: #0056A5;
	text-align: center;
	position: fixed;
	z-index: 99;
	left: 100%;/* メニューを画面の外に飛ばす */
	transition: .2s;
}

.logo {
	text-align: left;
	padding: 20px;
	height: 30px;
	background-color: #fff;
}
	
.logo_sp {
	text-align: left;
	padding-top: 30px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	width: 60px;
	background-color: #fff;
	position: absolute;
	z-index: 3;
}
	
.logo_sp img{
	width: 100%;
}

.logo img {
	margin-top: 0px;
	height: 100%
}

nav ul li a{
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom-color: #00A7E2;
	border-bottom-style: solid;
	border-bottom-width:  1px;
	color: #fff;
	font-size: 10px;
	letter-spacing: 2px;
	display: block;
	transition:all .2s;
	z-index: 3;
}
	


	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}

/*矢印の向き*/
nav ul li.has-child::before,
nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}
	


.mainmenu {
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	z-index: 3;
}


/*
.mainmenu li a{
	padding-top: 22px;
	padding-bottom: 22px;
	border-bottom-color: #00A7E2;
	border-bottom-style: solid;
	border-bottom-width:  1px;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	display: block;
}

.mainmenu li a:hover{
	padding-top: 22px;
	padding-bottom: 22px;
	width: 160px;
	background-color: #00A7E2;
	border-bottom-color: #00A7E2;
	border-bottom-style: solid;
	border-bottom-width:  1px;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	display: block;
}

*/

.submenu {
	width: 90%;
	margin-left: 5%;
	margin-right: 5%;
	position: absolute;
	bottom: 0;
	color: #fff;
	font-size: 10px;
	letter-spacing: 2px;
	margin-bottom: 230px;
	text-align: center;
}

.submenu a{
	color: #fff;
	text-align: center;
}

.submenu li{
	width: 33.3%;
	display: block;
	text-align: center;
	margin-bottom: 0px;
	float: left;
}



.snsicon {
	position: absolute;
	bottom: 0;
	width: 50%;
	margin-bottom: 180px;
	display: flex;
	justify-content: space-between;
	margin-left: 25%;
}

.snsicon  img{
	width: 100%;
}

.maincontents{
	margin-left: 0px;
	width: 100%;
}

.mainphoto div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 100vh;
	margin: 0;
}

.mainphoto div.img01 {
	background-image: url("../img/sp_photo_jh.jpg");
}

.mainphoto div.img02 {
	background-image: url("../img/sp_photo_high.jpg");
}

.mainphoto .slick-dots {
	bottom: 4%;
	z-index: -1;
}

.bottommenu {
	position: fixed;
	display: block;
	bottom: 0;
	margin-bottom: 0px;
	width: 100%;
	z-index: 500;
}

.emnews {
	width: 100%;
}

.emleft {
	background-color: rgba(247,238,30,0.8);
	width: auto;
	height: 40px;
	display: block;
	text-align: right;
	color: #000;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 40px;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}

.emright {
	background-color: rgba(255,255,255,0.8);
	width: 100%;
	height: 40px;
	margin-left: 0px;
	padding-left: 20px;
	display: block;
	text-align: left;
	color: #000;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 40px;
	float: left;
}


.jhjyouhou{
	margin-bottom: 0px;
	background-color: #00A7E2;
	width: 33%;
	height: 40px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 40px;
	float: left;
}

.hsjyouhou{
	margin-bottom: 0px;
	background-color: #0056A5;
	width: 34%;
	height: 40px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 40px;
	float: left;
}

.siryou{
	margin-bottom: 0px;
	background-color: #8B8B8B;
	width: 33%;
	height: 40px;
	display: block;
	text-align: center;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	line-height: 40px;
	float: left;
}

.totop {
	background-color: #000;
	width: 100%;
	text-align: center;
	display: block;
	height: 40px;
	float: left;
}

.totop img{
	margin-top: 7px;
	width: 13px;
}

.banner {
	margin-top: -30px;
	background-color: rgba(0,86,165,0.05);
	padding-top: 3%;
	padding-bottom: 3%;
}

.bannerall {
	width: 90%;
	margin-left: 5%;
}

.bannerall li img {
	width: 94%;
	padding-left: 3%;
	padding-right: 3%;
}

.slick-arrow:before{
    content:""!important;
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    top: 0;
    left: 0;
  }

  .slick-next:before{
    background: url(../img/banner_yaji.svg)!important;
    background-size: contain!important;
  }

  .slick-prev:before{
    background: url(../img/banner_yaji_left.svg)!important;
    background-size: contain!important;
  }

.contents {
	margin-left: 5%;
	width: 90%;
}

.learners{
	margin-top: 50px;
	width: 100%;
	height: 150px;
	display: block;
	position: relative;
	overflow: hidden;
}

.learners img{
	width: 100%;
}

.l_b{
	width: 80%;
	top: 0;
	left: 0;
	position: absolute;
}

.r_b{
	width: 80%;
	right: 0;
	margin-right: 0px;
	position: absolute;
	bottom: 0;
}

.c_b{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 40%;
	height: 50px;
}

.jh_g{
	position: absolute;
	width: 23%;
	bottom: 0;
}

.jh_b{
	position: absolute;
	width: 30%;
	bottom: 0;
	margin-left: 15%;
}

.hs_b{
	position: absolute;
	width: 28%;
	bottom: 0;
	right: 0;
	margin-right: 15%;
}

.hs_g{
	right: 0;
	position: absolute;
	width: 25%;
	bottom: 0;
}

.ln_logo{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 40%;
	height: 30px;
}
	
.ln_jh_sp {
	margin-top: 10px;
	width: 100%;
	display: block;
	position: relative;
}
	
.ln_jh_sp img{
	width: 100%;
}

.ln_hs_sp {
	margin-top: 10px;
	width: 100%;
	display: block;
	position: relative;
}
	
.ln_hs_sp img{
	width: 100%;
}


.title {
	text-align: center;
	padding-top: 150px;
	margin-top: 0px;
	font-size: 16px;
	letter-spacing: 2px;
}

.category {
	width: 100%;
	margin-top: 20px;
	margin-left: 0;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-left-color: #000;
	border-left-style: solid;
	border-left-width: 1px;
}

.categoryli {
	text-align: center;
	border-right-color: #000;
	border-right-style: solid;
	border-right-width: 1px;
	font-size: 10px;

}

.informationbase {
	width: 100%;
	margin-top: 50px;
	border-top-color: #000;
	border-top-style: solid;
	border-top-width: 1px;
}

.info {
	height: 75px;
	border-left-color: #000;
	border-left-style: solid;
	border-left-width: 1px; 
	border-right-color: #000;
	border-right-style: solid;
	border-right-width: 1px; 
	border-bottom-color: #000;
	border-bottom-style: solid;
	border-bottom-width: 1px; 
}

.infodate {
	text-align: center;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: inline-block;
	font-size: 9px;
	margin-left: 10px;
	margin-right: 10px;
	letter-spacing: 0px;
	height: 75px;
	float: left;
}

.infotitle {
	width: 70%;
	padding-top: 28px;
	float: left;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	overflow: hidden;
}

.infocat {
	display: block;
	width: 50px;
	height: 45px;
	padding-top: 30px;
	text-align: center;
	float: right;
	font-size: 9px;
	border-left-color: #000;
	border-left-style: solid;
	border-left-width: 1px; 
}

.detail {
	margin-top: 50px;
	background-color: rgba(0,86,165,0.05); 
	width: 90%;
	padding: 5%;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 50px;
}

.detailcontents img {
	width: 100%;
}

.topicswrap {
	margin-top: 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
}

.topics {
	position: relative;
}

.topics img{
	width: 100%;
}

.topicsdate {
	left: 0;
	padding-right: 5px;
	padding-bottom: 10px;
	position:absolute;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: inline-block;
	font-size: 9px;
	letter-spacing: 1px;
	background-color: #fff;
}

.topicstitle {
	right: 0;
	bottom: 0;
	text-align: right;
	padding-left: 10px;
	padding-top: 10px;
	position:absolute;
	font-size: 12px;
	letter-spacing: 2px;
	background-color: #fff;
}


footer {
	border-top-color: #000;
	border-top-style: solid;
	border-top-width: 1px;
	margin-top: 100px;
	padding-top:  50px;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 20px;
	width: 100%;
	padding-bottom: 200px;
}

.footerwrap {
	margin-top: 30px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.footertitle {
	font-size: 12px;
	letter-spacing: 2px;
	line-height: 25px;
	 center;
}

.footermenu {
	margin-top: 20px;
	margin-right: 0px;
	padding-bottom:  0px;
	font-size: 10px;
	letter-spacing: 2px;
	line-height: 20px;
	margin-bottom: 0px;
}
	
.contents_bar {
	width: 100%;
	height: 10px;
	overflow: hidden;
	display: block;
}

.contents_bar img{
	width: 100%;
	height: auto;
}

.contents_topphoto {
	width: 100%;
	height: auto;
	overflow: hidden;
	display: block;
	text-align: center;
}

.contents_topphoto img{
	width: 250%;
}

.contents_title{
	text-align: center;
	margin-top: 50px;
	font-size: 18px;
	letter-spacing: 5px;
	width: 100%;
	padding-bottom: 15px;
	border-bottom-color: #000;
	border-bottom-style: solid;
	border-bottom-width:  1px;
}

.maintext {
	margin-top: 50px;
	width: 100%;
}

.maintext img{
	text-align: center;
	width: 100%;
	margin-bottom: 50px;
}

.maintext h2{
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
}
	
.maintext h1{
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
}

.maintext p{
	font-size: 12px;
	margin-bottom: 50px;
	letter-spacing: 1px;
	line-height: 28px;
	font-weight: 300;
}

.contents_foot {
	margin-top: 100px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}

.c_f_menu {
	width: 100%;
	display: block;
	position: relative;
	overflow: hidden;
	background: #0056A5;
}

.c_f_menu img {
	width: 100%;
	cursor: pointer;
  transition-duration: 0.3s;
	opacity: 0.6;
}

.c_f_menu img:hover {
	transform: scale(1.2);
	opacity: 1;
  transition-duration: 0.3s;
}

.c_f_menu p {
	position: absolute;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 2px;
	line-height: 15px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin-top: 28%;
	text-align: center;
	color: #fff;
}
	
.tableline {
	margin-top: 50px;
	width: 100%;
	border-collapse: collapse;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 15px;
	text-align: left;
}

.tableline tr {

}

.tableline th {
	border-bottom: solid 1px #000;
	font-weight: 400;
	padding-top: 30px;
	padding-bottom: 5px;
	position: relative;
	padding-left: 10px;
}

.tableline th:after{
  display: block;
  content: "";
  width: 1px;
  height: 10px;
  background-color: #000;
  position: absolute;
  right:0;
	bottom: 0;
}

.tableline td {
	border-bottom: solid 1px #000;
	padding-top: 30px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.tableline2 {
	margin-top: 50px;
	width: 100%;
	border-collapse: collapse;
	font-size: 10px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 15px;
	text-align: center;
}

.tableline2 tr {

}

.tableline2 th {
	text-align: center;
	border-color: #000;
	border-style: solid;
	border-width:  1px;
	font-weight: 400;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 10px;
}

.tableline2 td {
	text-align: center;
	border-color: #000;
	border-style: solid;
	border-width:  1px;
	padding-top: 12px;
	padding-bottom: 12px;
}

.blogtitle {
	text-align: left;
	margin-top: 100px;
	margin-left: 10%;
	font-size: 16px;
	letter-spacing: 2px;
}
	
.blogcontents{
	margin-top: 50px;
	width: 80%;
	margin-left: 10%;
	text-align: left;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 25px;
}
	
.cattitle {
	text-align: left;
	margin-top: 100px;
	font-size: 14px;
	letter-spacing: 2px;
}


	
#dummy{clear: both;}
	
	}



