@charset "UTF-8";

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;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
	display: none;
}

/* ハンバーガーメニューのアイコン */
.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;
	display: none;
}



.menu {
	width: 160px;
	height: 100vh;
	background-color: #0056A5;
	text-align: center;
	position: fixed;
	z-index: 999;
}

.logo {
	height: 213px;
	background-color: #fff;
}

.logo img {
	margin-top: 40px;
}


/*==ナビゲーション全体の設定*/
nav{
	width:100%;/*navの外側のheaderなどに横幅を指定する場合は削除してください*/
}


nav ul{
	list-style: none;
	text-align: center;
}


/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom-color: #00A7E2;
	border-bottom-style: solid;
	border-bottom-width:  1px;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	display: block;
	transition:all .3s;
}

nav ul li a:hover{
	color: #fff;
	background-color: #00A7E2;
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定
nav ul li.has-child::before{
	content:'';
	position: absolute;
	right:30px;
	top:20px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(45deg);
}
*/

/*3階層目を持つliの矢印の設定
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:21px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}
*/

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:100%;
	top:0;
	z-index: 4;
    /*形状を指定*/
	background-color: #0056A5;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px #00A7E2;
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background-color: #00A7E2;
}

/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}




/*==ナビゲーション全体の設定ここまで*/

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


/*
.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: 100%;
	position: absolute;
	bottom: 0;
	color: #fff;
	font-size: 11px;
	letter-spacing: 2px;
	margin-bottom: 50px;
}

.submenu a{
	color: #fff;
}

.submenu li{
	margin-bottom: 22px;
}



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

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

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

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

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

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

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

.emnews {
	width: 850px;
}

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

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


.jhjyouhou{
	margin-bottom: 0px;
	background-color: #00A7E2;
	width: 265px;
	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: 265px;
	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: 265px;
	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;
	height: 40px;
}

.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: 100px;
	width: 100%;
	height: 440px;
	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: 45%;
	height: 20%;
}

.jh_g{
	position: absolute;
	width: 23%;
	bottom: 0;
	max-height: 440px;
}

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

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

.hs_g{
	right: 0;
	position: absolute;
	width: 25%;
	bottom: 0;
	max-height: 440px;
}

.ln_logo{
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 40%;
	height: 10%;
}

.ln_logo img{
	width: 100%;
}

.ln_jh {
	width: 30%;
	right: 0;
	position: absolute;
	bottom: 0;
	margin-right: 3%;
	margin-bottom: 3%;
}

.ln_hs {
	width: 30%;
	left: 0;
	position: absolute;
	bottom: 0;
	margin-left: 3%;
	margin-bottom: 3%;
}



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

.blogtitle {
	text-align: left;
	margin-top: 100px;
	margin-left: 10%;
	font-size: 16px;
	letter-spacing: 2px;
}

.category {
	width: 50%;
	margin-top: 20px;
	margin-left: 25%;
	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;
	overflow: hidden;
}

.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: 30px;
	margin-right: 30px;
	letter-spacing: 0px;
	height: 75px;
	float: left;
}

.infotitle {
	padding-top: 28px;
	float: left;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
}

.infocat {
	display: block;
	width: 75px;
	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: 100px;
	background-color: rgba(0,86,165,0.05); 
	width: 90%;
	padding: 5%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 50px;
}

.detailcontents img {
	width: 100%;
}

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

.topics {
	position: relative;
}

.topics img{
	width: 100%;
}

.topicsdate {
	left: 0;
	top: 0;
	padding-right: 10px;
	padding-bottom: 10px;
	margin-left: 0px;
	position:absolute;
	-webkit-writing-mode: vertical-rl;
	-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;
	padding-bottom: 150px;
}

.footerwrap {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

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

.footermenu {
	margin-top: 40px;
	margin-right: 50px;
	padding-bottom:  10px;
	font-size: 10px;
	letter-spacing: 2px;
	line-height: 20px;
	margin-bottom: -20px;
}


.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: 100%;
}

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

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

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

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

.maintext h1{
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 2px;
}

.maintext p{
	font-size: 14px;
	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(4, 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: 12px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 20px;
	text-align: center;
	margin-bottom: 50px;
}

.tableline tr {

}

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

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

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

.tableline2 {
	margin-top: 50px;
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	font-weight: 300;
	letter-spacing: 2px;
	line-height: 25px;
	margin-bottom: 50px;
}

.tableline2 tr {

}

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

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

.blogdate {
	text-align: left;
	margin-top: 10px;
	margin-left: 10%;
	font-size: 12px;
	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;
	padding-bottom: 300px;
}

.cattitle {
	text-align: left;
	margin-top: 100px;
	font-size: 14px;
	letter-spacing: 2px;
}

.blogcontents img{
	max-width: 100%;
}

.menuall{
	width: 100%;
	margin-bottom: 100px;
}

.menuall img{
	width: 100%;
	margin-bottom: 0;
}

.menu2col {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	position: relative;
}

.menu3col {
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	position: relative;
}


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

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

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

.photomenu 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;
}

.sp {display: none !important;}
.pc {display: block !important;}
.pc2 {display: inline !important;}

.dummy{float: none;}

