@charset "UTF-8";
/*
Theme Name: chubu-nippon-gakusei-kempo
Theme URI: https://chubu-nippon-gakusei-kempo.com/
Description: This is our original theme.
Author: Ku-nel Co.,Ltd.
Author URI:　https://ku-nel.com/
Version:1.0
*/
@import url(css/html5reset-1.6.1.css);

/* common */
/* --------------------------------------------------- */
body {
	font-family: "メイリオ", Meiryo, sans-serif;
	font-size: 100%;
	background-color: #fff;
	background: url(img/bodyback.png);
}
* {box-sizing: border-box;}
.rotate {
	animation: rotate 1s linear 1;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg) scale(1%);
	}
	100% {
		transform: rotate(360deg) scale(100%);
	}
}
.scale {
	animation: scale 1s linear 1;
}
@keyframes scale {
	0% {
		transform: scale(1%);
	}
	100% {
		transform: scale(100%);
	}
}
/* --------------------------------------------------- */


/* header */
/* --------------------------------------------------- */
header {
	width: 100%;
}
header #header {
	width: 900px;
	height: 110px;
	margin: 10px auto 53px;
}
header #header img {
	float: left;
	margin-right: 30px;
}
header #header h1 {
	float: left;
	font-size: 72px;
	font-weight: bold;
	color: #ededed;
	padding: 19px 0 0;
}
@media (max-width: 900px) {

header #header {
	width: 100%;
	height: 51px;
	margin: 10px 0 10px;
}
header #header img {
	width: 50px;
	margin-right: 4px;
}
header #header h1 {
	font-size: 24px;
	padding: 4px;
}

}
/* --------------------------------------------------- */


/* nav */
/* --------------------------------------------------- */
.gnavi__wrap {
    position: relative;
	width: 1100px;
    margin: 0 auto;
	z-index: 100;
}
.gnavi__lists {
    display: flex;
	margin: 0;
}
.gnavi__list {
    position: relative;
    width: 174px;
    height: 44px;
	margin: 0 4.5px;
	background-color: #187035;
	border-radius: 22px; 
    transition: all .3s;
}
.gnavi__list:hover {
	background-color: #114c22;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 0px;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #000;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 46px;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0em;
    transition: all .0s;
}
.gnavi__list a:hover {
    color: #fff;
}
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 46px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
	background-color: #187035;
    height: 30px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
	background-color: #187035;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
	background-color: #114c22;
}
.dropdown__list a {
    display: flex;
    height: 30px;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a:hover {
    color: #fff;
}
@media (max-width: 980px) {

.gnavi__wrap {
    width: 100%;
}
.gnavi__list a {
    font-size: 12px;
}

}
@media (max-width: 590px) {

.gnavi__wrap {
	display: none;
}

}
/* --------------------------------------------------- */


/* header menu SP */
/* --------------------------------------------------- */
nav#sidenav {
	display: none;
}
nav#sidenav ul {
	float: left;
	margin-bottom: 20px;
}
nav#sidenav ul li {
	float: left;
	width: 260px;
	height: 40px;
	margin-bottom: 5px;
	border-bottom: 1px solid #000;
}
nav#sidenav ul li a {
	display: table-cell;
	width: 260px;
	height: 40px;
	font-size: 16px;
	font-weight: 100;
	color: #000;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
nav#sidenav ul li a:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}
nav#sidenav input  {
	display: none;
}

@media (max-width: 590px) {

/*ヘッダーまわりはサイトに合わせて調整してください*/
nav#sidenav {
	display: block;
	float: right;
	position: absolute;
	top: 6px;
	right: 6px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
	display:none;
}
/*アイコンのスペース*/
#nav-open {
	display: inline-block;
	width: 30px;
	height: 22px;
	vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span,
#nav-open span:before,
#nav-open span:after {
	position: absolute;
	height: 3px;/*線の太さ*/
	width: 25px;/*長さ*/
	border-radius: 3px;
	background: #fff;
	display: block;
	content: '';
	cursor: pointer;
}
#nav-open span:before {
	bottom: -8px;
}
#nav-open span:after {
	bottom: -16px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;/*最前面に*/
	width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 270px;/*最大幅（調整してください）*/
	height: 100%;
	padding: 5px;
	background: #fff;/*背景色*/
	transition: .3s ease-in-out;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;/*カバーを表示*/
	opacity: .5;
}
#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

}
/* --------------------------------------------------- */


/* top article */
/* --------------------------------------------------- */
article {
	width: 980px;
	margin: 60px auto;
}
article section.dan1section {
	float: left;
	width: 490px;
	margin-right: 24px;
}
article section.dan1section .left01 {
	width: 100%;
    height: auto;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #1d2cf3;
	border-radius: 22px; 
}
article section.dan1section .left01 h6 {
	font-family: braggadocio-w01,fantasy;
	font-size: 31px;
	line-height: 1.3em;
	text-align: center;
    color: #F1C922;
	margin-bottom: 10px;
}
article section.dan1section .left01 h6 span {
	font-size: 24px;
	font-weight: 100;
    color: #fff;
}
article section.dan1section .left01 p {
	font-size: 20px;
	text-align: left;
	line-height: 1.3em;
    color: #fff;
}
article section.dan1section .left01 p strong {
    color: #BADA55;
}
article section.dan1section .left01 ul {
	font-size: 20px;
	text-align: left;
	line-height: 1.3em;
	list-style-type: disc;
    color: #fff;
	margin-left: 1em;
}
article section.dan1section .left01 .btn {
	width: 280px;
    height: 40px;
	margin: 10px auto 0;
	background-color: #187035;
	border: 2px solid #000;
	border-radius: 10px;
	box-shadow: inset 0 3px 6px 0 hsla(0,0%,100%,.3),inset -2px -3px 6px 0 rgba(0,0,0,.6),1px 1px 6px 1px rgba(0,0,0,.6),1px 1px 3px 0 hsla(0,0%,100%,.3);
}
article section.dan1section .left01 .btn p a {
	display: table-cell;
	width: 280px;
    height: 40px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	line-height: 0;
	color: #fff;
	vertical-align: middle;
}
article section.dan1section .left01 .btn:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
article section.dan1section .left02 {
	width: 100%;
    height: auto;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #8e8b89;
}
article section.dan1section .left02 h4 {
	font-size: 40px;
	line-height: 1.3em;
	text-align: center;
    color: #fff;
	margin-bottom: 10px;
}
article section.dan1section .left02 p {
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	line-height: 1.3em;
    color: #fff;
}
article section.dan1section .left03 {
	width: 100%;
    height: auto;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #ff4f4f;
	border-radius: 22px;
}
article section.dan1section .left03 p {
	font-family: ms gothic,ヒラギノ角ゴ pro w3,hiragino kaku gothic pro,osaka,sans-serif;
	font-size: 17px;
	font-weight: bold;
	font-style: italic;
	text-align: left;
	line-height: 1.8em;
	letter-spacing: -3px;
    color: #000;
}
article section.dan1section .leftphoto {
	width: 100%;
    height: auto;
	padding: 0;
	margin-bottom: 20px;
}
article section.dan1section .leftphoto img {
	width: 100%;
}
article section.dan1section .leftyoutube {
	width: 100%;
    height: 281px;
	padding: 0;
	margin-bottom: 20px;
	border: #999999 5px solid;
}
article section.dan2section {
	float: left;
	width: 466px;
	margin: 0;
}
article section.dan2section .right01 {
	width: 100%;
	margin-bottom: 20px;
}
article section.dan2section .right01 h2 {
	font-size: 29px;
	text-align: center;
	text-shadow: 1px 1px 3px #999;
    color: #f2e707;
}
article section.dan2section .rightinfomation {
	width: 100%;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #b8d0a7;
}
article section.dan2section .rightinfomation p {
	font-size: 24px;
	text-align: center;
}
article section.dan2section .rightfacebook {
	width: 100%;
	padding: 0;
	margin-bottom: 20px;
}
article section.dan2section .rightfacebook iframe {
	width: 100%;
}
#topendimg {
	width: 1255px;
	text-align: center;
	margin: 60px auto 10px;
}
#topendimg img:hover {
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}

@media (max-width: 1255px) {

#topendimg {
	width: 100%;
}

}
@media (max-width: 980px) {

article {
	width: 100%;
	margin: 20px 0;
}
article section.dan1section {
	width: 100%;
	margin-right: 0;
}
article section.dan2section {
	width: 100%;
}
article section.dan1section .leftyoutube {
    height: auto;
}

}
/* --------------------------------------------------- */


/* fileshare */
/* --------------------------------------------------- */
article section.fileshare {
	width: 100%;
}
article section.fileshare p {
	font-size: 24px;
	line-height: 1.5em;
}
article section.fileshare p img {
	width: 100%;
}
/* --------------------------------------------------- */


/* daigaku */
/* --------------------------------------------------- */
article section.daigaku {
	width: 100%;
	margin-bottom: 40px;
}
article section.daigaku p {
	font-size: 29px;
	text-align: center;
	line-height: 1.5em;
	color: rgb(241, 201, 34);
}
article section.daigaku .dan1,
article section.daigaku .dan3 {
	float: left;
	margin: 0;
}
article section.daigaku .dan1 ul li p,
article section.daigaku .dan3 ul li p {
	font-size: 22px;
	text-align: left;
	line-height: 1.5em;
}
article section.daigaku .dan1 ul li p:before,
article section.daigaku .dan3 ul li p:before {
	content: "◎ ";
}
article section.daigaku .dan1 ul li p a,
article section.daigaku .dan3 ul li p a {
	text-decoration: underline;
	color: rgb(253, 203, 5);
}
article section.daigaku .dan1 ul li p a:hover,
article section.daigaku .dan3 ul li p a:hover {
	text-decoration: none;
	color: white;
}
article section.daigaku .dan2 {
	float: left;
	width: 357px;
	margin: 0 20px;
}
article section.daigaku .dan2 img {
	margin-bottom: -2px;
}
article section.daigaku .dan2 img:hover {
	filter: alpha(opacity=25);
	-moz-opacity:0.25;
	opacity:0.25;
}
article section.daigaku .dan1 h3,
article section.daigaku .dan3 h3 {
	font-size: 24px;
	text-align: center;
	color: rgb(253, 203, 5);
	margin-bottom: 20px;
}

@media (max-width: 590px) {

article section.daigaku .dan1,
article section.daigaku .dan3 {
	float: none;
	margin: 20px 10px;
}
article section.daigaku .dan2 {
	float: none;
	margin: 20px auto;
}

}
/* --------------------------------------------------- */


/* nipponkempo */
/* --------------------------------------------------- */
article section.nipponkempo {
	width: 100%;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 2px solid #fff;
}
article section.nipponkempo h2 {
	font-size: 24px;
	text-shadow: 1px 1px 3px #999;
	color: rgb(241, 201, 34);
	margin-bottom: 20px;
}
article section.nipponkempo p {
	font-size: 18px;
	line-height: 1.5em;
	color: rgb(241, 201, 34);
}
article section.nipponkempo div.imgright,
article section.nipponkempo img.imgright {
	float: right;
	margin: 0 50px 0 20px;
}
article section.nipponkempo img.imgleft {
	float: left;
	margin: 0 20px 0 0;
}
article section.nipponkempo div.imgright img {
	margin-bottom: 16px;
}

@media (max-width: 590px) {

article section.nipponkempo {
	padding: 10px;
}
article section.nipponkempo img.imgright {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
}
article section.nipponkempo img.imgleft {
	float: none;
	width: 100%;
	margin: 0 0 20px 0;
}
article section.nipponkempo div.imgright img {
	width: 100%;
}

}
/* --------------------------------------------------- */


/* rinen */
/* --------------------------------------------------- */
article section.rinen {
	width: 100%;
	padding-bottom: 40px;
	margin-bottom: 40px;
	border-bottom: 2px solid #fff;
}
article section.rinen h2 {
	font-size: 40px;
	text-align: center;
	text-shadow: 1px 1px 3px #999;
	color: rgb(241, 201, 34);
	margin-bottom: 30px;
}
article section.rinen h3 {
	font-size: 30px;
	text-decoration: underline;
	line-height: 1.5em;
	color: rgb(241, 201, 34);
	margin: 0 4% 20px;
}
article section.rinen h4 {
	font-size: 22px;
	color: rgb(136, 161, 119);
	margin-bottom: 10px;
}
article section.rinen p {
	font-size: 24px;
	line-height: 1.5em;
	color: rgb(241, 201, 34);
}
article section.rinen p.jisage {
	text-indent: -2em;
	padding-left: 2em;
}

@media (max-width: 590px) {

article section.rinen {
	padding: 10px;
}
article section.rinen h2 {
	font-size: 30px;
}
article section.rinen h3 {
	font-size: 24px;
}
article section.rinen p {
	font-size: 18px;
}

}
/* --------------------------------------------------- */


/* nittei */
/* --------------------------------------------------- */
article section.nittei {
	width: 100%;
}
article section.nittei p img {
	width: 100%;
}
/* --------------------------------------------------- */


/* kekka */
/* --------------------------------------------------- */
article section.kekka {
	width: 100%;
}
article section.kekka p {
	font-size: 24px;
	line-height: 1.5em;
}
article section.kekka p img {
	width: 100%;
}
/* --------------------------------------------------- */


/* movie */
/* --------------------------------------------------- */
article section.movie {
	width: 100%;
	text-align: center;
}
article section.movie h2 {
	font-family: anton,sans-serif;
	font-size: 62px;
	font-weight: bold;
	font-style: italic;
	color: #ededed;
	margin-bottom: 20px;
}
article section.movie iframe {
	width: 758px;
	height: 498px;
}

@media (max-width: 590px) {

article section.movie h2 {
	font-size: 30px;
}
article section.movie iframe {
	width: 100%;
	height: auto;
}

}
/* --------------------------------------------------- */


/* photo */
/* --------------------------------------------------- */
article section.photo {
	width: 100%;
}
article section.photo p {
	font-size: 24px;
	line-height: 1.5em;
}

@media (max-width: 590px) {

article section.photo {
	width: 100%;
	padding: 10px;
}

}
/* --------------------------------------------------- */


/* footer */
/* --------------------------------------------------- */
footer {
	width: 100%;
}
footer #footer {
	width: 1169px;
	margin: 20px auto;
}
footer #footer #footerad {
	width: 100%;
	height: 96px;
	padding: 7px;
	margin: 15px 0 22px;
	border: 2px solid hwb(48.4 13.3% 5.5%);
}
footer #footer #footerad p a img {
	height: 78px;
	margin-right: 7px;
}
footer #footer #footercontact {
	width: 100%;
}
footer #footer #footercontact .contact {
	float: left;
	padding-top: 9px;
}
footer #footer #footercontact .contact p {
	font-size: 23px;
	font-weight: bold;
	color: rgb(241, 201, 34);
	margin-right: 20px;
}
footer #footer #footercontact .contactmail {
	float: left;
	width: 190px;
    height: 40px;
	margin-right: 20px;
	background-color: #187035;
	border: 2px solid #000;
	border-radius: 10px;
	box-shadow: inset 0 3px 6px 0 hsla(0,0%,100%,.3),inset -2px -3px 6px 0 rgba(0,0,0,.6),1px 1px 6px 1px rgba(0,0,0,.6),1px 1px 3px 0 hsla(0,0%,100%,.3);
}
footer #footer #footercontact .contactmail p a {
	display: table-cell;
	width: 190px;
    height: 40px;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	line-height: 0;
	color: #fff;
	vertical-align: middle;
}
footer #footer #footercontact .contactFB {
	float: left;
}
footer #footer #footercontact .contactFB:hover,
footer #footer #footercontact .contactmail:hover {
	filter: alpha(opacity=75);
	-moz-opacity:0.75;
	opacity:0.75;
}
@media (max-width: 1169px) {

footer #footer {
	width: 98%;
	margin: 1%;
}
footer #footer #footerad {
	height: auto;
}
footer #footer #footerad p a img {
	height: 50px;
}

}
/* --------------------------------------------------- */


/* 会員ログイン */
/* --------------------------------------------------- */
#wpmem_restricted_msg {
	width: 50%;
	margin: 40px auto 20px;
}
#wpmem_restricted_msg p {
	font-size: 0px;
}
#wpmem_restricted_msg p:before {
	font-size: 16px;
	color: #fff;
	content: "会員限定のサイトです。※ID、PASSをお持ちでない方はお問い合わせからご連絡ください。";
}
#wpmem_login {
	width: 60%;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	margin: 10px auto 40px;
}
#wpmem_login legend {
	display: none;
}
#wpmem_login fieldset > label:nth-child(2) {
	font-size: 0px;
}
#wpmem_login fieldset > label:nth-child(2):before {
	font-size: 14px;
	content: "ログインID";
}
#wpmem_login input#log,
#wpmem_login input#pwd {
	width: 50%;
	height: 40px;
	margin: 10px auto 40px;
}
#wpmem_login input.buttons {
	width: 30%;
	height: 40px;
	font-size: 18px;
	font-weight: 100;
}
#wpmem_reg {
	display: none;
}
/* --------------------------------------------------- */
