@charset "Shift_JIS";

:root {
  --base-content: 'X 答え: ';
  --display-size: 24px;
}

/* クイズのすべてを管理する親要素 */

.quiz_area {
  position: relative;
  font-size:16px;
  max-width:973px;
  min-width:300px;
  min-height:310px;
  color:white;
  background-color: rgba(0, 102, 51, 1);
  border-radius: 5px;
/*  animation: bg2 4.5s ease 0s 1 alternate none running; */
}
/*
@keyframes bg2 {
  0% {
    transform: scale(.1);
  }

  100% {
    transform: scale(1);
    background:  rgba(0, 0, 0, 0.9);
  }
}
*/
/* .trueは正解（〇を表示） */
.quiz_area .quiz_area_icon.true:before {
  content: '〇';
  color: blue;
  position:absolute;
  top:-92%;
  left:0;
  font-size:16px;
  font-weight:bold;
  -webkit-text-stroke: 1px #fff;
  animation: bg4 1.3s ease-in-out 0s 1 alternate both running;
}

@keyframes bg4 {

  0% {
opacity:0;
  }
  15% {
  opacity:1;
  font-size:100px;
  display:inline-block;
  text-align:center;
  }
  39% {
  opacity:1;
  font-size:100px;
    transform:rotateY(0deg);
  }
  50% {
  opacity:1;
  font-size:100px;
  transform:rotateY()
  }

  100% {
opacity:1;
font-size:20px;
  transform:rotateY(720deg)
  }
}
/* .falseは不正解（×を表示） */
.quiz_area .quiz_area_icon.false:before {
  content: '答え:';
  white-space: pre;
  color: black;
  font-family:sans-serif;
  font-size:12px;
  top:0;
  left:0;
}

.quiz_area .quiz_area_icon.false:after {
  content: 'X';
  position:absolute;
  white-space: pre;
  color: red;
  font-size:16px;
  top:-24%;
  left:0;
  font-family: arial;
  font-weight:bold;
  -webkit-text-stroke: 1px #fff;
  animation: bg3 1.5s ease-in-out 0s 1 alternate both running;
}

@keyframes bg3 {

  0% {
opacity:0;
  }
  40% {
opacity:0;
margin:-20px 0px;
  }
  60% {
opacity:1;
font-size:100px;
margin:-20px 0px;
  }
  80% {
opacity:1;
font-size:100px;
margin:-20px 0px;
  }
  100% {
opacity:1;
font-size:20px;
margin:-20px 0px;
  }
}


/* 現在の問題数を表示 */
.quiz_area .quiz_no {
  font-weight: bold;
  color:white;
}

/* 問題文と回答後の結果（デザインは使いまわし） */
.quiz_area .quiz_question,
.quiz_result {
  box-sizing: border-box;
  padding: 15px;
background-color:white;
color:black;
  border: 0px solid #ffcc00;
  border-radius:0px;
  animation: bg7 1.3s ease-out 0s 1 alternate forwards running;
}

@keyframes bg7 {

  0% {
    opacity: 0;
  }
  95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 回答後の結果は初期非表示 */
.quiz_area .quiz_result {
  display: none;
  text-align: center;
  font:white;
}

/* 以下クイズの選択肢のデザイン */
.quiz_area .quiz_ans_area ul {
  margin: 10px 0 0 0;
  padding: 0;
  display: block;
}

.quiz_area .quiz_ans_area ul::after {
  content: '';
  margin: 10px 0 0 0 ;
  display: block;
  clear: both;
  color:white;
}

.quiz_area .quiz_ans_area ul li {
  box-sizing: border-box;
  list-style: none;
  float: left;
  width: 100%;
  padding: 10px 10px;
  border: inset 2px #000;
  border-radius:5px;
  margin: 3 0 0 0;
  color:#000;
  background-color: #f5d84e;
  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.9);
  border-radius: 10px 10px 0px 0px;
  display: none;
  color: #fff;
  text-align: center;
  animation: bg 0.3s ease-out 0s 1 alternate forwards running;
}

@keyframes bg {

  0% {
    transform: scale(.1);
    background:  rgba(0, 0, 0, 1);
  }
  100% {
    transform: scale(1);
    background:  rgba(0, 0, 0, 0.5);
  }
}
/* 正解 */

/* 画面に〇、×を表示するための要素（デフォルト非表示、回答後に一時的に表示） */
.quiz_area .quiz_area_icon.false {
  position: absolute;
  padding: 3px;
  top: 22%;
  padding-left: 10px;
  width: 100%;
  z-index: 9999;
  color: black;
  background-color:white;
  border-radius:10px;
  font-size: 16px;
  display:none;
  /* text-stroke: 2px #fff; */
}
.quiz_area .quiz_area_icon.true {
  position: absolute;
  padding: 3px;
  top: 22%;
  padding-left: 10px;
  width: 100%;
  z-index: 9999;
  color: black;
  display:none;
  background-color:white;
  border-radius:10px;
  font-size: 16px;
  /* text-stroke: 2px #fff; */
}

.quizCategory {
  position:absolute;
  margin:0 5px;
  font-size:16px;
  animation: bg10 1s ease-in-out 0s 1 alternate both running;
}

@keyframes bg10 {

0% {
opacity:0;
margin:0px -200px;

  }
  70% {
opacity:1;
font-size:16px;
margin:0px 40px;
  }
  100% {
opacity:1;
font-size:16px;

  }
}

.quiz_area_description {
  position:absolute;
  top: 33%;
  z-index: 999;
  color: white;
  padding:10px;
  width:100%;
  background-color:rgb(0,0,0,0.5);
  border-radius:5px;
  display:none;
  font-size: 16px;
}

.quiz_area_icon {
  position:absolute;
  top: 30%;
  z-index: 999;
  color: white;
  padding:10px;
  background-color:rgb(0,0,0,0.3);
  border-radius:5px;
  display:none;
  font-size: 16px;
}

.quiz_area_close {
  top: 88%;
  left: 10%;
  width: 80%;
  text-align:center;
  z-index: 9999;
  position: absolute;
  box-sizing: border-box;
  display: none;
}

/* 正解 */
.quiz_area .quiz_area_icon.true2:before {
  content: '正解';
  color: blue;
}

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

/* .trueまたは.falseのクラスが付与されたら表示するものとみなす */
.quiz_area .quiz_area_description.false,
.quiz_area .quiz_area_close.false,
.quiz_area .quiz_area_close.true,
.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;
}

@media screen and (min-width: 767px) {
  width:960px;
  box-sizing: border-box;
}

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

.seiseki{
 animation: seiseki 5s ease 0s 1 alternate none running;
  }
  @keyframes seiseki {
    0% {
      transform: scale(.1);
      opacity:0.5;
    }
    50% {
      transform: scale(2);
      opacity:0.8;
    }

    100% {
      transform: scale(1);
    }
  }


/*トップへ戻るボタン*/
#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;
}
/*PC表示での表横並び*/
@media only screen and (min-width: 800px) {
  .yoko {
    display: flex;
    justify-content: space-around;
  }
  #yoko {
    display: flex;
    justify-content: space-around;
  }
}
/*Smartphone表示での表横並び*/
@media only screen and (max-width: 800px) {
  .tate {
    display: flex;
    justify-content: space-around;
  }
}

/*タブ切り替え全体のスタイル*/
@media screen and (min-width: 767px) {

.tabs {
  margin-top: 40px;
  padding-bottom: 0px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: auto;
  margin: 0 auto;
  box-sizing: border-box;
display:block;
display:none;
visibility:collapse;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/2);
  height: 40px;
  border-bottom: 3px solid #006633;
  background-color: #d9d9d9;
  line-height: 40px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 20px 0px 0;
  clear: both;
  overflow: hidden;
  box-sizing: border-box;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #006633;
  color: #fff;
}
}
/*------------ table style set ------------*/
/*全体*/
body{
font-size:18px;
}

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;/*前後の余白*/
    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;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    text-align:left;
}
/*クリックで中身表示*/
.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;
}

/*チェックは見えなくする*/
.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:20px;
  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: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;
}
.btn-sticky {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  background: #ffffe7;
  border-left: solid 6px #006633;/*左線*/
  color: #000000;/*文字色*/
  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;
}
.hpb-cnt-tb1{
	box-sizing: border-box;
	background-color: #333333;
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb2{
	box-sizing: border-box;
	background-color: #333333;
	border-width: 1px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb3{
	box-sizing: border-box;
	background-color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb4{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
}
.hpb-cnt-tb4 p {
    margin: 0;
    padding: 0;
}

.background {
padding: 0.5em 1em;
    align: left;
    margin: 1em 0;
    background: #f4f4f4;
    border-left: solid 6px #5bb7ae;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.33);
}
.background p {
    margin: 0;
    padding: 0;
}
.search {
    margin: 2em 0;
    position: relative;
    padding: 4px 4px 4px;
    border: solid 2px #006633;
    background:#006633;
    color:#FFFFFF;
    radius:2,2,2,2;
    border-radius:20px;
}
.search .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 7 9px;
    height: 15px;
    line-height: 25px;
    font-size: 16px;
    border-radius:20px
    radius:2,2,2,2;
    border-width: 0px;
    background: #006633;
    font-weight: bold;
}
.search p {
    margin: 0;
    padding: 0;
}
 }

.hpb-cnt-tb-th1 {
	box-sizing: border-box;
	background-color: #bbbbbb;
	font-size: 80%;
	color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-th2 {
	box-sizing: border-box;
	background-color: #cccccc;
	font-size: 80%;
	color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-cell1 {
	box-sizing: border-box;
	background-color: #eeeeee;
	font-size: 80%;
	color: #333333;
	border-width: 1px 0px 0px 1px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-cell2 {
	box-sizing: border-box;
	background-color: #ffffff;
	font-size: 80%;
	color: #333333;
	border-width: 1px 0px 0px 1px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-cell3 {
	box-sizing: border-box;
	background-color: #ffffff;
	font-size: 80%;
	color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-cell4 {
	box-sizing: border-box;
	background-color: #ffffff;
	font-size: 80%;
	color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #333333;
}
.hpb-cnt-tb-cell5 {
	background-color: #ffffff;
	font-size: 80%;
	color: #333333;
	border-width: 0px;
	border-style: solid;
	border-color: #cccccc;
	box-sizing: border-box;
}
/* 黒板風　タイトル　2 */
.kokuban-t2{
 box-sizing: border-box;
 position: relative;
 padding: 1em 1em 1em;
 width: auto;/* ボックス幅 */
 background-color: #006633; /* ボックス背景色 */
 color: #fff; /* 文章色 */
 font-size:16px;
 border: 8px solid #b2771f; /* 枠線 */
 border-radius: 3px; /* 角の丸み */
 box-shadow: 0 0 5px #333, 0 0 5px #555 inset;
}
.kokuban-t2 > .imagea{
background-image: url("/eijiroempitu.png");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom
}

.kokuban-t2::before,
.kokuban-t2::after {
 content: '';
 bottom: 0;
}
.kokuban-t23::before {
 right: 10px;
 border: solid 3px #ffff6b; /*チョーク（黄色）*/
 width: 20px;
 border-radius: 3px 2px 0 2px;
}
.kokuban-t23::after {
 right: 40px;
 border: solid 3px #ffffff; /*チョーク（白）*/
 width: 15px;
 border-radius: 8px 5px 2px 5px;
}
.title-t2 {
 box-sizing: border-box;
 font-weight: bold;
 font-size: 18px;
 color: #ffff6b; /* タイトル色 */
}

.breadcrumb2 {
  display:inline-block;/*横に並ぶように*/
  display:none;
  list-style: none;
}

.breadcrumb{
  margin-left:-35px;
  margin-top:0;
  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;
}
.breadcrumb3{
  margin-left:-35px;
  margin-top:0;
  font-size:12px;
}

.breadcrumb3 li {
  display:inline-block;/*横に並ぶように*/
  list-style: none;
}

.breadcrumb3 li:after {
  /*＞を表示*/
  padding: 0 4px;
  color: #000000;
}

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

.breadcrumb3 li a {
  display: inline-block;
  padding: 0.5em 1em;
  background: #ffffe7;
  border-left: solid 6px #ffcc00;/*左線*/
  font-weight: bold;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
}

.breadcrumb3 li a:hover {
  background: ##ffbb00;
}
.note {
    position: relative;
    left:0;
    background-color: #ffffe7;
    box-sizing: border-box;
    width:auto;
    height:auto;
    color:#000000;
    background-image:
        linear-gradient(90deg, transparent 29px, #fcc 29px, #fcc 31px, transparent 31px),
        linear-gradient(90deg, transparent 49px, #fcc 49px, #fcc 51px, transparent 51px),
        linear-gradient(rgba(153,204,255,.3) .1em, transparent .1em);
    background-size: 100% 1.5em;
}

.note:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffe7;
    background-image:
        linear-gradient(90deg, transparent 9px, #fcc 9px, #fcc 11px, transparent 11px),
        linear-gradient(90deg, transparent 19px, #fcc 19px, #fcc 21px, transparent 21px);
}
.point {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #ffcc00;
    text-align: left;
}
.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;
}
.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;
}
.resizeimage {
   max-width: 650px; /* 最大幅 */
   min-width: 300px; /* 最小幅 */
}
}

@media screen and (max-width: 767px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ767px縺ｾ縺ｧ縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
#menu-bg {
background-color: #FF0000; /*襍､濶ｲ*/
}
}

@media screen and (max-width: 767px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ767px縺ｾ縺ｧ縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
#menu-bg
}
@media screen and (max-width: 479px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ479px縺ｾ縺ｧ縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
#menu-bg
}

@media screen and (max-width: 479px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ479px縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
#menu-bg {
display:none; /*髱櫁｡ｨ遉ｺ*/
}
}

@media screen and (max-width: 479px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ479px縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
	#menu-bg {

	box-sizing: border-box;

	display: none;/*髱櫁｡ｨ遉ｺ*/

}
}
@media screen and (max-width: 479px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′譛螟ｧ479px縺ｮ蝣ｴ蜷医↓驕ｩ逕ｨ*/
	#menu-bg {

	box-sizing: border-box;

	display: none;/*髱櫁｡ｨ遉ｺ*/

}
}

@media screen and (max-width: 479px) { /*繧ｦ繧｣繝ｳ繝峨え蟷・′0・・79px縺ｮ蝣ｴ蜷医↓css繧帝←逕ｨ*/
	#contents #l_contents {

	box-sizing: border-box;

	width: auto;

float: none;

}

	#contents #r_contents {

	box-sizing: border-box;

	width: auto;

	float: none;

}
}
img {
	box-sizing: border-box;
	max-width: auto;
	height: auto;
}

#menu {
	box-sizing: border-box;
	max-width: 1000px;width: auto
margin-left: auto;
	margin-right: auto;
}

.resizeimage img {
   max-width: 900px; /* 最大幅 */
   min-width: 300px; /* 最小幅 */
}

/* 下のかくす表示バー */
.love{
       position: fixed;
	background-color: #006633;   /* 閭梧勹濶ｲ(髱・ */
	width:973px


;               /* 讓ｪ縺ｮ蟷・ｒ100% */
	height: 25px;
       z-index: 99;       /* 邵ｦ縺ｮ蟷・ｒ120px */
       /* 邨ｶ蟇ｾ菴咲ｽｮ謖・ｮ壹☆繧九％縺ｨ繧貞ｮ夂ｾｩ */
  bottom: 0;
  margin: auto;
  padding: 10px 0;          /* 荳贋ｸ九↓菴咏區繧貞叙繧・*/
}
.love a {
  cursor: pointer;
  width: 973px;
  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;   /* 閭梧勹濶ｲ(髱・ */
}
.love a {
  cursor: pointer;
  width: 100%;
  margin: 0;
  text-align: center;
  z-index: 99;
}
}
