@charset 'utf-8'; /*文字コード指定*/
/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}
html, body {
	height: 100%; /*領域の高さ指定*/
}
body {
	font-size: 65%; /* フォントサイズ指定(emはフォントの高さを１とした相対指定)｜元は75% */
	line-height: 2; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	background: #fff; /*背景指定*/
	font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', Osaka, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro'; /*フォントの種類指定(左から優先順位)*/
	color: #333; /*文字色指定*/
}
ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}
a {
	color: #4f44dc; /*文字色指定　元は#333*/
}
a:hover {
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	color: #a8a2f3; /*カーソルを合わせた時の文字色指定の追加*/
}
.color1 {
	color: #990000; /*文字色指定*/
}
/*レイアウト設定*/

.top_wrapper {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 100%; /*領域の高さ指定*/
}
.top_content {
	margin-left: 200px; /*ボックス外側左の余白*/
	height: 100%; /*領域の高さ指定*/
}
.wrapper {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: auto; /*ボックス外側の余白*/
	height: 100%; /*領域の高さ指定*/
	overflow: hidden; /*floatの解除*/
}
.main {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-right: -340px; /*ボックス外側右の余白*/
}
.content {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-left: -200px; /*ボックス外側左の余白*/
}
.content_inner {
	margin: 140px 340px 50px 200px; /*ボックス外側の余白*/
}
/*header　ページ上の内容*/

header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 200px; /*左からの距離(positionで指定している場合に適用)*/
	right: 340px; /*左からの距離(positionで指定している場合に適用)*/
	height: 100px; /*領域の高さ指定*/
	background: #fff; /*背景指定*/
	z-index: 1000; /*ボックス重なり順序指定*/
}
/*左上のロゴ*/

h1 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)* *★元は100px*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	font-family: 'Amatic SC', cursive; /*フォントの種類指定(googleのwebフォント)*/
	font-size: 4.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)｜元は4em */
	line-height: 50px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)* *★元は40px*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	padding: 10px; /*ボックス内側の余白*/
	width: 200px;
}
h1 a {
	color: #8b0000; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}
h1 a:hover {
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; /*ここまで時間的変化指定*/
	/*透明度設定*/
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6; /*ここまで透明度設定*/
}
/*中央上の見出し*/

header h2 {
	font-size: 5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-family: 'Amatic SC', cursive; /*フォントの種類指定(左から優先順位)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}
/*メインの内容*/

.top_section {
	margin: 100px auto 0; /*ボックス外側の余白* *★元は200px*/
	width: 70%; /*幅指定(100%は画面横幅いっぱいに表示)* *★元は60%*/
}
.top_h2 img {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
article {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
article h3 {
	font-size: 2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	margin-bottom: 10px; /*ボックス外側下の余白*/
}
article li, p {
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
section {
	margin: 0 auto; /*ボックス外側の余白*/
	width: 60%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
/*左下の内容*/

.copyright {
	font-size: 0.9em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 15px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	bottom: 20px; /*下からの距離(positionで指定している場合に適用)*/
	left: 20px; /*左からの距離(positionで指定している場合に適用)*/
	width: 220px; /*幅指定* *★元は180px*/
}
/*googlesearch*/

.search {
	width: 300px; /*幅指定*/
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 20px; /*上からの距離(positionで指定している場合に適用)*/
	right: 20px; /*右からの距離(positionで指定している場合に適用)*/
}
.search input[type="text"] {
	width: 80%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	padding: 8px !important; /*ボックス内側の余白*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	/*ボックス角丸設定*/
	border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
	-webkit-border-radius: 5px 0 0 5px; /*ここまでボックス角丸設定*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	/*ボックス境界線設定*/
	border-top: 1px solid #a5a5a5;
	border-left: 1px solid #a5a5a5;
	border-bottom: 1px solid #a5a5a5;
	border-right: none !important; /*ボックス境界線設定*/
}
.search button {
	width: 20%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	/*背景グラデーション指定*/
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fff), color-stop(1.00, #cecece));
	background: -webkit-linear-gradient(#fff, #cecece);
	background: -moz-linear-gradient(#fff, #cecece);
	background: -o-linear-gradient(#fff, #cecece);
	background: -ms-linear-gradient(#fff, #cecece);
	background: linear-gradient(#fff, #cecece); /*ここまで背景グラデーション指定*/
	border: 1px solid #a5a5a5; /*境界線の一括指定*/
	padding: 7px; /*ボックス内側の余白*/
	color: #666; /*文字色指定*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	-webkit-border-radius: 0 5px 5px 0;
	cursor: pointer; /*マウスカーソルの形状指定(pointerはリンクカーソル)*/
}
.search button:hover {
	/*透明度設定*/
	opacity: 0.7;
	filter: alpha(opacity=70);
	-moz-opacity: 0.7; /*ここまで透明度設定*/
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
    -o-transition: 0.s;
	transition: 0.5s; /*ここまで時間的変化指定*/
}
/*右側の内容*/

.right_content {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 120px; /*上からの距離(positionで指定している場合に適用)*/
	right: 20px; /*右からの距離(positionで指定している場合に適用)*/
	width: 300px; /*幅指定*/
}
.ad {
	width: 300px; /*幅指定*/
	height: 250px; /*領域の高さ指定*/
	background: #ff4500; /*背景指定*/
}
/*ページトップに戻るアイコン*/

.pagetop:hover {
	/*時間的変化指定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s; /*ここまで時間的変化指定*/
	color: #000; /*文字色指定*/
	/*透明度設定*/
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.6; /*ここまで透明度設定*/
}

/*レスポンシブ設定*/

@media screen and (max-width: 768px) {
h3, p, ol, li, th, td, dl {
	font-size: 1.2em !important; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.top_wrapper {
	padding-top: 50px; /*ボックス内側上の余白*/
}
.top_content {
	margin-left: 0; /*ボックス外側左の余白*/
}
h1 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 5px; /*上からの距離(positionで指定している場合に適用)*/
	left: 50px; /*左からの距離(positionで指定している場合に適用)*/
	font-size: 2.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	width: auto; /*幅指定*/
	padding: 0; /*ボックス内側の余白*/
}
header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 90px; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	right: 0; /*左からの距離(positionで指定している場合に適用)*/
	height: 50px; /*領域の高さ指定*/
}
.mov_header {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 50px; /*領域の高さ指定*/
	z-index: 1000; /*ボックス重なり順序指定*/
	background: #fff; /*背景指定*/
}
.mov_header2 {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 50px; /*領域の高さ指定*/
	z-index: 2000; /*ボックス重なり順序指定*/
	background: #fff; /*背景指定*/
}
header h2 {
	font-size: 2.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.wrapper {
	overflow: visible; /*floatの解除を初期値に戻す*/
}
.content {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: none; /*要素を左か右に寄せて配置(noneはなし)*/
	margin: 120px 0 20px; /*ボックス外側の余白*/
}
.content_inner {
	margin: 0;/*ボックス外側の余白*/
}
article h3 {
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.top_section {
	margin: 50px auto 0; /*ボックス外側の余白* *★元は100px*/
	width: 80%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
section {
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
form {
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
.search {
	position: fixed; /*ボックスの配置方法(fixedは固定)*/
	top: 50px; /*上からの距離(positionで指定している場合に適用)*/
	left: 5%; /*左からの距離(positionで指定している場合に適用)*/
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
.search input[type="text"] {
	padding: 10px !important; /*ボックス内側の余白*/
	width: 85%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}
.search button {
	width: 15%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	padding: 10px; /*ボックス内側の余白*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}
.right_content {
	clear: both; /*floatの回り込み解除*/
	position: static; /*ボックスの配置方法(staticは指定なし)*/
	margin: 20px auto; /*ボックス外側上の余白*/
}
.copyright {
	width: 220px; /*幅指定*/
	/*透明度設定*/
	opacity: 0.3;
	filter: alpha(opacity=30);
	-moz-opacity: 0.3; /*ここまで透明度設定*/
}
}

@media screen and (min-width: 787px) and (max-width: 1200px) {
section {
	width: 90%; /*幅指定(100%は画面横幅いっぱいに表示)*/
}
}

/* 囲みコラムの破線表示 */
#indent p {
  border: 2px skyblue dashed; /*2px 水色 破線を指定*/
  list-style-type: decimal;
  margin: 0px 20px 0px 20px;
  padding: 10px 20px 10px 20px; /*上・右・下・左の余白指定*/
  }

/* 仕切り線 */  
hr.line {
  margin: 0 0 10px 0;
  padding: 2px 0 6px 0;
  border: 0;
  border-bottom: dotted 1px #666666;
}

/* 蛍光マーカー表示 */
span.marker {
    background: linear-gradient(transparent 50%, #FFFF33 50%);
}

/* アイコン表示 */
.new2 {
	color: #fff;
	background: #ff9933;
	padding: 0rem 0.5rem;
	font-size: 0.7rem;
	margin-right: 1rem;
}

.underline {
	border-bottom: 3px solid var(--base-color);
	padding-bottom: 0.5rem;
	font-size: 1.5rem;
}

/*リストマーカー「・」の指定*/
li.indent2 {
	list-style: disc;
	margin-left: 20px;
}

/* 連絡先などのグレイBOXの指定 */
.gray_bg_contact {
  margin: 10px 2px 10px 2px;
  padding: 10px 8px 10px 10px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  border-top: solid 1px #dddddd;
  border-right: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  border-left: solid 1px #dddddd;
  background-color: #eeeeee;
}

.gray_bg_contact p {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.7;
}

/* 画像に枠線を出したい場合の指定 */
.waku {
   	border-style: solid;
	border-width: 1px;
	margin:10px 20px 10px;"
}

 /*本体ドロップダウンメニュー｜アコーディオン全体*/
    .menu2 {
      padding: 10px 10px 20px;  /*【上】【左右】【下】*/
    }
    .menu2 input {
      display: none; /*チェックボックスを隠す*/
    }
    /*バー部分*/
    .menu2 label {
      cursor :pointer;
      display: block;
      text-decoration: none;
	  text-indent:1em;  /*字下げの追加*/
      color: #fff;
      line-height: 1;
      position: relative;
      margin: 10px 0 10px;  /*【上】【左右】【下】|元は margin: 0 0 10px;*/
      padding: 20px;  /*元は padding: 10px;*/
      background-color: #333;
    }
    /*開いたときに表示される部分*/
    .menu2 ul {
      margin: 0;
      padding: 0;
      list-style: none;
      margin-bottom: 1px;
    }
    .menu2 li {
      height: 0;
	  text-indent:2em;  /*字下げの追加*/
      overflow-y: hidden;
      transition: padding-bottom 0.5s, padding-top 0.5s; /*閉じるときのアニメーション*/
      -webkit-transition: padding-bottom 0.5s, padding-top 0.5s
      -moz-transition: padding-bottom 0.5s, padding-top 0.5s;
      -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
      -o-transition: padding-bottom 0.5s, padding-top 0.5s;
    }
    #menu_bar01:checked ~ #links01 li,
    #menu_bar02:checked ~ #links02 li {
      height: auto; /*開いたときに表示されるliの高さ*/
      opacity: 1;
      background: #f1f1f1;
      padding: 10px;
    }
     /*開いたときの下の余白*/
    #menu_bar01:checked ~ #links01 li:last-child,
    #menu_bar02:checked ~ #links02 li:last-child {
      margin-bottom: 20px;
    }
    /*閉じた状態の矢印描画*/
    .menu2 label:after{
      content:"";
      display:block;
      width:8px;
      height:8px;
      border-top: #fff 2px solid;
      border-right: #fff 2px solid;
      -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      transform: rotate(135deg);
      position:absolute;
      right: 2%;
      top: 0;
      bottom: 15%;
      margin: auto;
    }
    /*開いた状態の矢印描画*/
    .menu2 input[type=checkbox]:checked + label:after{
      content:"";
      display:block;
      width:8px;
      height:8px;
      border-top: #fff 2px solid;
      border-right: #fff 2px solid;
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
      position:absolute;
      right: 2%;
      top: 7%;
      bottom: 0;
      margin: auto;
    }
	
/* スクロール型のお知らせ欄 */	
.contents_box{
  font-size: 1em;
  width: 100%;
  height: 200px;
  background-color: #FFFFFF;
  overflow: hidden scroll;
}
