@charset 'utf-8';

@font-face {
	font-family: 'NotoSansJP';
	font-style: normal;
	font-weight: 400;
	src: url('../font/NotoSansJP-Regular.woff') format('woff'),
		url('../font/NotoSansJP-Regular.eot')  format('eot');
	font-display: swap;
}
@font-face {
	font-family: 'NotoSansJP';
	font-style: normal;
	font-weight: 700;
	src: url('../font/NotoSansJP-Bold.woff') format('woff'),
	url('../font/NotoSansJP-Bold.eot')  format('eot');
	font-display: swap;
}

html {
	font-size: 17px;
	line-height: 1.4;
	color: #000000;
  scroll-behavior: smooth;
}
body {
	font-family: 'NotoSansJP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background-color: #d2d5d1;
	margin: 0px;
	padding: 0px;
	font-feature-settings: "palt" 1;
}
/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}
div,h1,h2,h3,h4,h5,p,img,ul,li {
	margin: 0px;
	padding: 0px;
	border: none;
}
#container {
	width: 1000px;
	margin: 0px auto;
	background-color: #FFF;
	box-shadow: 0 0px 10px 0px rgba(0,0,0,0.5);
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	#container {
		width: 100%;
		margin: 0px;
		background-color: #FFF;
		box-shadow: 0 0px 0px 0px rgba(0,0,0,0);
	}
}
h2 {
	clear: both;
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 10px;
  background: #FFFFFF;
  background-image: -webkit-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -moz-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -ms-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: -o-linear-gradient(top, #E4E4E4, #FFFFFF);
  background-image: linear-gradient(to bottom, #E4E4E4, #FFFFFF);
  padding: 20px 16px 20px 36px;
  position: relative;
}
h2::after {
  content:  "";     /* 空の要素作成 */
  width: 4px;                /* 幅指定 */
  height: 50px;               /* 高さ指定 */
  display: block;    /* インラインブロックにする */
  background-color: #f5ab18;  /* 背景色指定 */
  position: absolute;        /* 位置調整 */
  top: 14px;                   /* 位置指定 */
  left: 20px;
  margin-right: 20px;          /* 余白指定 */
}
.h2sub {
  font-size: 0.9rem;
}

h3 {
	clear: both;
	font-size: 1rem;
	margin-bottom: 10px;
  background: #F9F9F9;
  background-image: -webkit-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -moz-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -ms-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: -o-linear-gradient(top, #F9F9F9, #E4E4E4);
  background-image: linear-gradient(to bottom, #F9F9F9, #E4E4E4);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: solid 1px #E4E4E4;
  padding: 10px 16px 10px 26px;
  position: relative;
}
h3::after {
  content:  "";     /* 空の要素作成 */
  width: 6px;                /* 幅指定 */
  height: 20px;               /* 高さ指定 */
  display: block;    /* インラインブロックにする */
  background-color: #f5ab18;  /* 背景色指定 */
  position: absolute;        /* 位置調整 */
  top: 12px;                   /* 位置指定 */
  left: 10px;
  border-radius:  25%;        /* 要素を丸くする */
  margin-right: 20px;          /* 余白指定 */
}
h4 {
	font-size: 1rem;
	color: #FFFFFF;
	background-color: #21600B;
	margin: 0px 0px 4px 0px;
	padding: 2px 10px;
}
h5 {
	font-size: 0.9rem;
	color: #FFFFFF;
	background-color: #21600B;
	margin: 0px 0px 6px 0px;
	padding-left: 10px;
}
h6 {
	display: flex;
	justify-content: space-between;
	font-size: 0.8rem;
	line-height: 1;
	color: #000;
	margin: 0px;
	padding: 2px 10px;
}
p {
	font-size: 0.9rem;
	margin: 0px 20px 10px 20px;
}
p.selftext {
	font-size: 1rem;
	font-weight: bold;
}
.alert {
	font-weight: bold;
	color: #cc0000;
}
.redText {
	color: #cc0000;
}
.clear {
	font-weight: bold;
	color: #00cc00;
}
.newText {
	font-weight: bold;
	color: #cc0000;
	font-style: italic;
}
.indexbox {
  margin-bottom: 6px;
}


/*
Link style -------------------------------------------------------------------------------------------- */
a {
  cursor: pointer;
}
a:link, a:visited {
	text-decoration:none;
	color: #CC0000;
}
a:hover, a:active {
	text-decoration:underline;
	color: #CC0000;
}

.btn {
  display: inline-block;
  border-radius: 3px;
  text-align: center;
  padding: 10px;
  color: #ffffff;
	border: 1px solid #FFF;
  opacity: 1;
  transition: .2s;
}
.btn:link, .btn:visited {
	text-decoration:none;
	color: #ffffff;
}
.btn:hover, .btn:active {
  opacity: 1;
	text-decoration:none;
}

.btn_gray {
	background-color: #444444;
}
.btn_gray:hover, .btn_gray:active {
	color: #444444;
	background-color: #FFF;
	border: 1px solid #444444;
}

.btn_blue {
	background-color: #1982c4;
}
.btn_blue:hover, .btn_blue:active {
	color: #1982c4;
	background-color: #FFF;
	border: 1px solid #1982c4;
}

.btn_green {
	background-color: #8ac926;
	color: #000000;
}
.btn_green:hover, .btn_green:active {
	color: #8ac926;
	background-color: #FFF;
	border: 1px solid #8ac926;
}

.btn_yellow {
	background-color: #ffca3a;
	color: #000000;
}
.btn_yellow:hover, .btn_yellow:active {
	color: #ffca3a;
	background-color: #FFF;
	border: 1px solid #ffca3a;
}

.btn_orange {
	background-color: #EF810F;
}
.btn_orange:hover, .btn_orange:active {
	color: #EF810F;
	background-color: #FFF;
	border: 1px solid #EF810F;
}

.btn_red {
	background-color: #ff595e;
}
.btn_red:hover, .btn_red:active {
	color: #ff595e;
	background-color: #FFF;
	border: 1px solid #ff595e;
}

.btn_purple {
	background-color: #6a4c93;
}
.btn_purple:hover, .btn_purple:active {
	color: #6a4c93;
	background-color: #FFF;
	border: 1px solid #6a4c93;
}


/*
page-top -------------------------------------------------------------------------------------------- */
.pagetop {
	text-align: right;
	margin: -6px 0px 20px 0px;
}
.pagetop img {
	border: none;
}


/*
header -------------------------------------------------------------------------------------------- */
#header {
	width: 100%;
	margin: 0px;
	line-height: 0em;
	background-color: #f5ab18;
}
h1 {
	padding: 0px;
	background-color: #20610D;
	background: -moz-linear-gradient(top left, #21600B, #20610D);
	background: -webkit-linear-gradient(top left, #21600B, #20610D);
	background: linear-gradient(to bottom right, #21600B, #20610D);
	border-bottom: 4px solid #f5ab18;
	display: flex;
	justify-content: space-between;
}
h1 img {
	width: auto;
  height: auto;
  object-fit: cover;
	margin: 0px;
}
@media screen and (max-width: 700px) {
	/* 680px以下に適用されるCSS（タブレット用） */
	h1 img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}


/*
middle -------------------------------------------------------------------------------------------- */
#middle {
	display: flex;
	width: 100%;
  background-color: #F0F0F0;
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	/*#middle {
		flex-direction: column;
	}*/
}

/*
rightbox -------------------------------------------------------------------------------------------- */
#rightbox {
	width: 800px;
  background-color: #FFF;
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	#rightbox {
		width: 100%;
	}
}

/*
contents -------------------------------------------------------------------------------------------- */
#contents {
	margin: 0px 20px 0px 20px;
  background-color: #FFF;
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	#contents {
		margin: 0px 10px;
	}
}

ul.annai {
	margin:0px 40px 20px;
}
ul.annai li {
	font-size: 0.9rem;
	margin: 0px 0px 10px 10px;
}

@media screen and (max-width: 900px) {
	/* 800px以下に適用されるCSS（タブレット用） */
	ul.annai  {
		margin:0px 10px 20px;
	}
}

.speakerArea {
  display: flex;
	justify-content: space-between;
	align-items: center;
  margin: 0px 20px 16px;
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
  .speakerArea {
    margin: 0px 0px 16px;
  }
}
.enjya {
	flex-grow: 3;
	font-size: 0.9rem;
	margin: 0px 1rem 4px;
}
.btnArea {
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.quizBtn {
	white-space: nowrap;
	margin-right: 6px;
}
.quizBtn a {
	padding: 11px;
}
.quizBtn p {
  color: #cc0000;
  font-weight: 600;
  line-height: 0;
	text-align: center;
	margin: -6px 6px 6px;
}
.rirekiBtn {
	width: 50px;
	font-size: 0.8rem;
	line-height: 1;
	margin-right: 6px;
}
.reloadBtn a {
	padding: 12px 18px;
}
.viewed {
  text-align: center;
  color: #cc0000;
  font-weight: bold;
  line-height: 0;
}

/*
curriculumList -------------------------------------------------------------------------------------------- */
#curriculumList {
	clear: both;
	margin: 0px;
	width: 800px;
	margin-bottom: 20px;
	font-size:80%;
	line-height: 150%;
}
#curriculumList td {
	width: 380px;
	padding-left: 10px;
	vertical-align: top;
}
#curriculumList p {
	font-size: 100%;
	font-weight: bold;
}
#curriculumList ol {
	list-style: none;
	margin:0px 0px 0px -20px;
}
#curriculumList li {
	margin: 0px 0px 4px 0px;
	text-indent: -1.4em;
}
.cLevel02 {
	font-weight: bold;
}

/*
navi -------------------------------------------------------------------------------------------- */
#navi {
	display: flex;
	flex-direction: column;
	width: 200px;
	background-color: #F0F0F0;
}
#member {
	margin: 6px auto;
	font-size: 0.8rem;
}
.nittei {
	margin: 0px auto 6px auto;
}
.banner {
	margin: 10px auto 10px auto;
}
ul#menu, ul#menu * {
	font-size: 0.9rem;
	line-height: 1.2;
	font-weight: 600;
	margin:0; padding:0;
	list-style:none;
}
ul#menu li {
	margin: 0;
	padding: 0;
	text-align: left;
}
ul#menu li#select {
	background-color: #21600B;
}
ul#menu li#select a {
	color:#FFF;
	text-decoration:none;
}
ul#menu li#select a:hover {
	color:#000000;
	text-decoration:none;
}
ul#menu a:hover {
	color:#000000;
	background-color: #d4e5cf;
	text-decoration:none;
}
ul#menu a {
	display: block;
	padding: 8px 10px 8px 16px;
	margin: 0px 10px;
	color: #333333;
	text-decoration: none;
	border-bottom: #333333 dashed 1px;
	position: relative;
}
ul#menu a::after {
  content: ""; /* 空の要素作成 */
  width: 4px; /* 幅指定 */
  height: 18px; /* 高さ指定 */
  display: block; /* インラインブロックにする */
  background-color: #21600B; /* 背景色指定 */
  position: absolute; /* 位置調整 */
  top: 7px; /* 位置指定 */
  left: 6px;
  margin-right: 10px; /* 余白指定 */
}
ul#menu .subnavi {
	border-bottom: #333333 dashed 1px;
}
ul#menu .subnavi a {
	display: block;
	padding: 4px 10px 4px 26px;
	margin: 0px 10px;
	color: #333333;
	text-decoration: none;
	border: none;
	position: relative;
	text-indent: -1.2rem;
}
ul#menu .subnavi a::after {
  content: none;
}
ul#menu .subnavi a:hover {
	color:#d9edc3;
	background-color: transparent;
}

ul#menu .subnavi p {
	display: block;
	padding: 4px 10px 4px 26px;
	margin: 0px 10px;
	color: #cc0000;
	text-decoration: none;
	border: none;
	position: relative;
	text-indent: -1.2rem;
}
.memu-arrow-right-r {
	box-sizing: border-box;
	position: relative;
	display: inline-block;
	transform: scale(var(--ggs,1));
	width: 14px;
	height: 14px;
	background: currentColor;
	border-radius: 2px;
 	top: 2px;
}

.memu-arrow-right-r::before {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 width: 0;
 height: 5px;
 border-top: 4px solid transparent;
 border-bottom: 4px solid transparent;
 border-left: 5px solid #F0F0F0;
 top: 3px;
 left: 5px
} 

.statusBtn {
	text-align: center;
	font-size: 0.8rem;
}

@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	/*#navi {
		width: 100%;
	}
	#member {
		flex-direction: row;
	}*/
	.js-hiraku-offcanvas-body-right .js-hiraku-header-fixed {
			margin-left: -200px;
	}

	.js-hiraku-offcanvas-body-left .js-hiraku-header-fixed {
			margin-left: 200px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar-left {
			margin-left: -200px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar-right {
			margin-right: 200px;
	}

	.js-hiraku-offcanvas .js-hiraku-offcanvas-sidebar {
			width: 200px;
	}

	.js-hiraku-offcanvas-body-left {
			left: 200px;
	}

	.js-hiraku-offcanvas-body-right {
			right: 200px;
	}
}

.hiraku-open-btn {
	display: inline-block;
	margin: 6px 4px 10px 10px;
	border-color: #20610D;
}
.hiraku-open-btn-line {
	background-color: #20610D;
}
.hiraku-open-btn-line:before,
.hiraku-open-btn-line:after {
	background-color: #20610D;
}
.hiraku-memu {
	color: #20610D;
	font-size: 0.9rem;
}
@media screen and (min-width: 1000px) {
	/* 1000px以上に適用されるCSS */
	.hiraku-open-btn,
	.hiraku-memu {
		display: none;
	}
}

.child {
    display: none;
}


/*
footer -------------------------------------------------------------------------------------------- */
#footer {
	clear:both;
	background-color: #20610D;
	background: -moz-linear-gradient(top left, #21600B, #20610D);
	background: -webkit-linear-gradient(top left, #21600B, #20610D);
	background: linear-gradient(to bottom right, #21600B, #20610D);
	border-top: #f5ab18 solid 4px;
}
#footer p {
	line-height: 120%;
	text-align: center;
	margin: 0px;
	padding: 10px 0px 10px 0px;
	color: #FFF;
}


/*
loginform -------------------------------------------------------------------------------------------- */
#loginform {
	width: 80%;
	border: #999 solid 1px;
	margin: 30px auto 70px auto;
	padding: 20px;
}
#registerForm {
	width: 90%;
	margin: 0px auto;
	font-size: 0.9rem;
}
@media screen and (max-width: 1000px) {
	/* 1000px以下に適用されるCSS（タブレット用） */
	#loginform {
		width: 80%;
		height:80%;
		margin: 10px auto 40px auto;
	}
}
#loginform p {
	margin: 0px 0px 10px 0px;
}
#loginform label {
	margin-bottom: 4px;
	font-size: 0.9rem;
	font-weight: bold;
}


/*
searchForm -------------------------------------------------------------------------------------------- */
#searchForm {
  display: flex;
  align-items: center;
	width: 80%;
	margin: 0px auto;
}
#searchForm p {
	margin: 0px 0px 10px 0px;
}
#searchForm label {
	margin-bottom: 4px;
	font-size: 0.9rem;
	font-weight: bold;
}

.inputform {
	margin-bottom: 10px;
}
.inputform input {
	box-sizing: border-box;
	width: 100%;
	padding: 0.6rem;
	letter-spacing: 1px;
	color: #333333;
	border: 1px solid #999999;
	border-radius: 5px;
}
.inputform input.name {
	width: 35%;
}
.inputform input.endaiTitle {
	width: 400px;
}
.inputform input.enjyaName {
	width: 400px;
}
.inputform input:focus {
	border: 1px solid #da3c41;
	outline: none;
	box-shadow: 0 0 5px 1px rgba(218,60,65, .5);
}
	
.inputform input:invalid {
	background: #ffcdd2;
}
.inputform input:valid {
	background: transparent;
} 
.inputform label {
	display:block;
	margin-bottom: 4px;
	font-size: 0.9rem;
	font-weight: bold;
}

.inputform textarea {
	box-sizing: border-box;
	width: 90%;
	height: 150px;
	padding: 0.6rem;
	margin-left: 10px;
	margin-right: 10px;
	letter-spacing: 1px;
	color: #333333;
	border: 1px solid #999999;
	border-radius: 5px;
}

.r-label {
  display: inline-block;
  border-radius: 2px;
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  padding: 3px 6px;
  background: #D9534F;
  color: #ffffff;
  line-height: 1em;
}
.o-label {
  display: inline-block;
  border-radius : 2px;
  font-size: 0.7rem;
  text-align: center;
  cursor: pointer;
  padding: 3px 6px;
  background: #5CB85C;
  color: #ffffff;
  line-height: 1em;
}

input[type=checkbox] {
    display: none;
}
.checkbox {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.checkbox::before {
    background: #fff;
    border: 1px solid #231815;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}
.checkbox::after {
    border-right: 3px solid #ed7a9c;
    border-bottom: 3px solid #ed7a9c;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox::after {
    opacity: 1;
}

#quizForm {
	border: #999 solid 1px;
	border-radius: 5px;
	background-color: #FFF;
	width: 90%;
	margin: 20px auto;
	padding: 20px;
	
}

.answer {
	margin: 6px 10px 0px 10px;
}
.answer p {
	text-indent: -2.9em;
	margin: 0px 10px 10px 50px;
}

.maru {
	background: #EFF url(../img/maru.png) no-repeat center center;
}
.batu {
	background: #FEF url(../img/batu.png) no-repeat center center;
}

.inputBtn {
	text-align: center;
}
#subBtn {
	text-align: center;
}
#submitBtn {
  display: inline-block;
  padding: 1rem 1.4rem;
  font-size: 1rem;
	font-weight: bold;
  color: #fff;
  user-select: none;
  border: 0px #130CB7 solid;
	background:linear-gradient(135deg, #8395eb 0%,#2643d4 100%);
  border-radius: 3px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 2px 0 rgba(0, 0, 0, 0.12);
}
#submitBtn:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}

.closeBtn {
	text-align: center;
}
@media screen and (min-width: 800px) {
	/* 800px以上に適用されるCSS */
	.closeBtn {
		display: none;
	}
}

/*
videoBox -------------------------------------------------------------------------------------------- */
#videoBox {
	width: 400px;
	margin: 0px auto;
	text-align: left;
}
#videoBox caption {
	background-color: #00529E;
	color: #FFF;
	font-weight: bold;
}
#videoBox table {
	border-spacing: 0px;
	border-collapse: collapse;
	margin: 20px auto;
	font-size: 0.9rem;
}
#videoBox th {
	background-color: #666;
	padding: 4px;
	text-align: center;
	color: #FFF;
}
#videoBox td {
	text-align: center;
	border-bottom: #999 solid 1px;
  background: #eee;
}
#videoBox tr:nth-child(odd) td {
	background: #fff;
}
#videoBox .slideNum {
	width: 100px;
}
#videoBox .date {
	width: 250px;
}



.gg-arrow-up-r {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 width: 20px;
 height: 20px;
 border: 2px solid;
 transform: scale(var(--ggs,1));
 border-radius: 4px
}

.gg-arrow-up-r::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 top: 6px
}

.gg-arrow-up-r::after {
 width: 6px;
 height: 6px;
 border-top: 2px solid;
 border-left: 2px solid;
 transform: rotate(45deg);
 left: 5px
}


 .gg-arrow-right-r {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 width: 30px;
 height: 30px;
 border: 4px solid;
 transform: scale(var(--ggs,1));
 border-radius: 4px
}

.gg-arrow-right-r::after {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 right: 7px
}

.gg-arrow-right-r::after {
 width: 12px;
 height: 12px;
 border-top: 4px solid;
 border-right: 4px solid;
 transform: rotate(45deg);
 bottom: 5px
}

.gg-external {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 transform: scale(var(--ggs,1));
 width: 10px;
 height: 10px;
 box-shadow:
 -2px 2px 0 0,
 -4px -4px 0 -2px,
 4px 4px 0 -2px;
 margin-left: -2px;
 margin-top: 1px;
}

.gg-external::after,
.gg-external::before {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 right: -4px;
}

.gg-external::before {
 background: currentColor;
 transform: rotate(-45deg);
 width: 10px;
 height: 2px;
 top: 0px;
}

.gg-external::after {
 width: 6px;
 height: 6px;
 border-right: 2px solid;
 border-top: 2px solid;
 top: -4px;
}

.gg-redo {
 box-sizing: border-box;
 position: relative;
 display: inline-block;
 transform: scale(var(--ggs,1));
 width: 14px;
 height: 14px;
 border: 2px solid;
 border-right-color: transparent;
 border-radius: 100px;
 top: 2px;
}

.gg-redo::before {
 content: "";
 display: block;
 box-sizing: border-box;
 position: absolute;
 width: 6px;
 height: 6px;
 border-top: 2px solid;
 border-right: 2px solid;
 top: -3px;
 right: -1px;
 transform: rotate(68deg);
}
.gg-redo {
	transform: rotate(-90deg);
}