@charset "utf-8";
/*hrの表示*/
hr {
height: 3px;
background-color: #000000;
border: 3px;
color: #000000;
}

/*クイズ×の表示*/

:root {
  --base-content: '×';
  --display-size: 28px;
}

/* 成績表示用 */
.searchbox {
    padding: 0.5em 1em;
    text-align:left;
    margin: 2em 0;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffcc00;
}
.searchbox p {
    margin: 0;
    padding: 0;
}

/*クイズエリア*/

.quiz_area {
  position: relative;
  max-width:973px;
}

/*正解の場合の表示*/
.quiz_area .quiz_area_icon.true:before {
  content: '〇';
  color: blue;
}
/*間違いの場合の表示*/
.quiz_area .quiz_area_icon.false:before {
  content: var(--base-content);
  white-space: pre;
  color: red;
}

/*クイズ番号*/
.quiz_area .quiz_no {
  font-weight: bold;
}

/*質問と答えのエリア*/
.quiz_area .quiz_question,
.quiz_result {
  box-sizing: border-box;
  padding: 15px;
  border: 4px solid #ccc;
  font-weight: bold;
}

/*クイズの結果*/
.quiz_area .quiz_result {
  display: none;
  text-align: center;
}

/*クイズの答えエリア*/
.quiz_area .quiz_ans_area ul {
  margin: 10px 0 0 0;
  padding: 0;
  display: block;
}

.quiz_area .quiz_ans_area ul::after {
  content: '';
  display: block;
  clear: both;
}

.quiz_area .quiz_ans_area ul li {
  box-sizing: border-box;
  list-style: none;
  float: left;
  width: 100%;
  padding: 10px 15px;
  border: 2px solid #ccc;
  margin: 0 0 -2px 0;
  cursor: pointer;
}

.quiz_area .quiz_ans_area ul li.selected {
  background-color: #bcbcbc;
}

/*クイズの表示エリア*/
.quiz_area .quiz_area_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  color: #fff;
  text-align: center;
}

/*クイズエリアの表示*/
.quiz_area .quiz_area_icon {
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  color: blue;
  display: none;
  font-size: 24px;
  font-weight: bold;
  -webkit-text-stroke: 1px #fff;
  /* text-stroke: 2px #fff; */
}

/*パターン*/
.quiz_area .quiz_area_icon.true2:before {
  content: '����';
  color: blue;
}

/*パターン*/
.quiz_area .quiz_area_icon.true3:before {
  content: 'ok';
  color: blue;
}

/*表示パターン*/
.quiz_area .quiz_area_icon.true,
.quiz_area .quiz_area_icon.true2,
.quiz_area .quiz_area_icon.true3,
.quiz_area .quiz_area_icon.false {
  display: block;
}

/*タイトルの表示*/
.title{
font-size:24px;
background: linear-gradient(transparent 90%, #ff9ece 90%);
}

.title2 {
  border-bottom: double 4px #ffcc00;
}

/*ページトップ*/
#pagetop{
    position: fixed;
    right: 15%;
    bottom: 10%;
    opacity: 0;
    -ms-filter: "alpha( opacity=0 )";
    filter:alpha(opacity:0);
    zoom:1;
    z-index: 9999;
}
#pagetop a{
    display: block;
    padding: 10px;
    background: #1EA6BB;
    color:#fff;
    text-decoration: none;
}

/*Body表示*/
body{
font-size:16px;
}

div.clear{
	clear: both;
	margin: 0 0 10px 0;
}
h1{
margin:0px;
}
h2{
margin:0px;
font-size:18px;
}
h3{
margin:0px;
font-size:18px;
}
/*----------------------------------------------------
  nonemobile
----------------------------------------------------*/
@media screen and (max-width: 600px){
.nonemobile {
display:block;
display:none;
}
.resizeimage {
   max-width: 450px; /* �ő啝 */
   min-width: 300px; /* �ŏ��� */
}
}
/*----------------------------------------------------
  hiddenbox
----------------------------------------------------*/
body{
  box-sizing: border-box;
}
.hidden_box {
    margin: 2em 0;/*�O���̗]��*/
    padding: 0;
    text-align:center;
}

/*�{�^������*/
.hidden_box label {
    display:block;
    float:center;
    width:100%;
    padding: 3px;
    font-weight: bold;
    font-size:16px;
    border-color:linear-gradient(#006633,#004d00);
    cursor :pointer;
    background:linear-gradient(#006633,#004d00);
    color:#ffffff;
  box-sizing: border-box;
}

/*�`�F�b�N�͌����Ȃ�����*/
.hidden_box input {
    display: none;
}

/*���g�����\���ɂ��Ă���*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    text-align:left;
}
/*�N���b�N�Œ��g�\��*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

.hidden_box1 label {
    display:block;
    float:center;
    width:100%;
    padding: 3px;
    font-weight: bold;
    font-size:16px;
    border-radius:0px;
    border-color:linear-gradient(#006633,#004d00);
    cursor :pointer;
    background:linear-gradient(#006633,#004d00);
    color:#ffffff;
}

/*トップ画像の位置合わせ*/
@media screen and (max-width: 960px) {
.topimg{
    margin-top:-10px;
    margin-left: -15px; /*30px の半分*/
    width: calc(100% + 30px); /*調整*/
    width: -webkit-calc(100% + 30px); /*上と同じpx値に*/
}
}
@media screen and (min-width: 960px) {
.topimg{
width:960px;
height:200px;
}
}

/*�`�F�b�N�͌����Ȃ�����*/
.hidden_box1 input {
    display: none;
}

/*ボックス１*/
.hidden_box1 .hidden_show1 {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    text-align:left;
}

/*ボックス１*/
.hidden_box1 input:checked ~ .hidden_show1 {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

.maintable{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
  box-sizing: border-box;
}

.maintable th:first-child{
  border-radius: 1\5px 0 0 0;
  box-sizing: border-box;
}

.maintable th:last-child{
  border-radius: 0px 1\5px 0 0;
  border-right: 1px solid #3c6690;
  box-sizing: border-box;
}

.maintable th{
  text-align: center;
  color:white;
  background: linear-gradient(#006633,#004d00);
  border-left: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  width: auto;
  padding: 0;
  box-sizing: border-box;
}

.maintable td{
  text-align: left;
  vertical-align:top;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: auto;
  padding: 10px 0;
  box-sizing: border-box;
}

.maintable td:last-child{
  border-right: 1px solid #a8b7c5;
  box-sizing: border-box;
}

.maintable tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
  box-sizing: border-box;
}

.maintable tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
  box-sizing: border-box;
}
.table{
  width: auto;
  border-collapse:separate;
  font-size:16px;
  border-spacing: 0;
  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}
.table th{
  text-align: center;
  color:white;
  background: linear-gradient(#006633,#004d00);
  width: auto;
  padding: 0;
  font-size:18px;  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}

.table td{
  text-align: left;
  font-color: #000000;
  font-size:16px;
  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}
.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #ffffe7;
  border-left: solid 6px #006633;/*����*/
  color: #000000;/*�����F*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}
.btn-sticky:active {
  box-shadow: inset 0 0 2px rgba(128, 128, 128, 0.1);
  transform: translateY(2px);
}
.btn-sticky:hover {
  background: #ffffb7;
}

.title-t2 {
 box-sizing: border-box;
 font-weight: bold;
 font-size: 18px;
 color: #ffff6b; /* �^�C�g���F */
}

.breadcrumb2 {
  display:inline-block;/*���ɕ��Ԃ悤��*/
  display:none;
  list-style: none;
}

.breadcrumb{
  margin-left:-35px;
  margin-top:0px;
  margin-bottom:-10px;
}

.breadcrumb li {
  display:inline-block;/*���ɕ��Ԃ悤��*/
  list-style: none;
}

.breadcrumb li:after {
  /*�����\��*/
  font-family: FontAwesome;
  content: '>';
  padding: 0 4px;
  color: #000000;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 15px;
  text-decoration: none;
  background: #ffcc00;
}

.breadcrumb li a:hover {
  background: ##ffee00;
}
.point {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #ffcc00;
    text-align: left;
    font-size:16px;
}
.point .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #ffcc00;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.point p {
    margin: 0;
    padding: 0;
    font-size:16px;
}
.point .check {
    padding: 0.5em 1em;
    margin: 2em 0;
    border: double 5px #006633;
}
.point .check p {
    margin: 0;
    padding: 0;
}
@media screen and (min-width: 767px) {

.nonepc {
display:block;
display:none;
visibility:collapse;
}
}

/* フッターの背景 */
.love{
       position: fixed;
	background-color: #006633;   /* 背景色(靁E */
	width:973px;               /* 横の幁E��100% */
	height: 25px;
       z-index: 99;       /* 縦の幁E��120px */
       /* 絶対位置持E��することを定義 */
  bottom: 0;
  margin: auto;
  padding: 10px 0;          /* 上下に余白を取めE*/
}
.love a {
  cursor: pointer;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  text-align: center;
  z-index: 99;
}

@media only screen and (max-width: 767px){
.love{
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  bottom: 0;
  margin-left: -13px;
  width:100%;
  background-color: #006633;   /* 背景色(靁E */
}
}
