@charset "utf-8";
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
/*@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Elsie&display=swap');
/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");
/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
  margin: 0px;
  padding: 0px;
  color: #333; /*全体の文字色*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px; /*文字サイズ*/
  line-height: 2; /*行間*/
  background: #fff; /*背景色*/
  -webkit-text-size-adjust: none;
}
h1, h2, h3, h4, h5, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
  font-size: 100%;
  font-weight: normal;
}
ul {
  list-style-type: none;
}
ol {
  padding-left: 40px;
  padding-bottom: 15px;
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}
video {
  max-width: 100%;
}
iframe {
  width: 100%;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #2B2B93; /*リンクテキストの色*/
  transition: 0.2s; /*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
  text-decoration: none; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}
a:hover {
  color: #2B2B93; /*マウスオン時の文字色*/
  text-decoration: underline; /*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
  opacity: 0.6;
}
/*inner
---------------------------------------------------------------------------*/
.inner {
  max-width: 1200px; /*サイトの最大幅*/
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0px;
}
.inner2 {
  max-width: 970px; /*サイトの最大幅*/
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0px;
}
/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
  position: relative;
  margin-bottom: 20px; /*ヘッダー内の余白*/
}
/*ヘッダーブロック（トップページへの追加設定）*/
.home header {
  padding: 0px; /*余白をなしに*/
}
/*ロゴ画像*/
header #logo {
  width: 200px; /*画像幅*/
  margin: 0 auto; /*中央配置*/
}
/*ロゴ画像（トップページへの追加設定）*/
.home header #logo, .notop header {
  display: none; /*スライドショーの邪魔なので非表示に*/
}
.mainimg_s {
  display: none;
}
/*
    .mainimg {
      display: inline;
    }*/
/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
  position: relative;
  z-index: 10;
  text-align: center; /*文字を中央に*/
  background: #fff; /*背景色*/
  border-top: 2px solid #2b2b93; /*上の線の幅、線種、色*/
  border-bottom: 2px solid #2b2b93; /*下の線の幅、線種、色*/
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  height: 90px; /*高さ。「#menubar ul li a」や「fixmenu」とも連動するので変更の際は注意。説明はこの下の「#menubar ul li a」で書いています。*/
  /*font-weight: 900;*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
  float: left; /*左に回り込み*/
  width: 18%; /*幅。今回は５個なので、100÷5=20。*/
  font-size: 18px; /*文字サイズ*/
  letter-spacing: 0.2em; /*文字間隔を少し広くとる設定*/
  padding-left: 0.5%; /*追加*/
  font-weight: 600;
  color: #5A5A5A;
}
#menubar ul li.logo {
  float: left; /*左に回り込み*/
  width: 24%; /*幅。今回は５個なので、100÷5=20。*/
  padding-top: 5px; /*追加*/
  padding-left: 2%; /*追加*/
}
#menubar ul li a, #category a {
  text-decoration: none;
  display: block;
  height: 51px; /*メニューブロックの高さ。ここの「85」と、下の行の「20」を合計した「105」の数字と、上の「#menubar」の「height」および下のfixmenu設定に２箇所ある「margin-top」の数字を合わせて下さい。*/
  /*padding-top: 20px;メニューブロックの高さプラス、上に空ける余白。メニューテキストの上下の配置バランスをここで調整して下さい。※変更の際は、上の行の注意書きもしっかり読んで下さい。*/
  border: 1px solid #fff;
  padding-top: 6px;
  margin-top: 10px;
  margin-bottom: 0px;
  line-height: 1.5; /*追加*/
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  color: #5A5A5A;
  font-weight: bold;
}
#category a {
  border: 1px solid #fff;
}
/*オンマウス　色設定*/
#menubar ul#know li.know a, #menubar ul li.know a:hover {
  background-color: #f3ffef;
  color: #000;
  border: 1px solid #83d26a;
}
#menubar ul#listen li.listen a, #menubar ul li.listen a:hover {
  background-color: #f6fdff;
  color: #000;
  border: 1px solid #69bbd5;
}
#menubar ul#visit li.visit a, #menubar ul li.visit a:hover {
  background-color: #fff6f4;
  color: #000;
  border: 1px solid #ffa366;
}
#menubar ul#view li.view a, #menubar ul li.view a:hover {
  background-color: #f2eeff;
  color: #000;
  border: 1px solid #a092d6;
}
/*カテゴリー　背景指定--------------------------------------------------------*/
#category td {
  /*    width: 200px;
    height: 200px;*/
  position: relative;
  padding: 0px;
  /*   background-color: #fef2f2;*/
}
/*カテゴリー　背景指定1--------------------------------------------------------*/
#category td.lt :before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #4fa52b transparent transparent transparent;
}
#category td.lt :after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #4fa52b transparent transparent transparent;
}
#category td.lt :after {
  border-top: 9px solid transparent;
  border-right: 9px solid #4fa52b;
  border-bottom: 9px solid #4fa52b;
  border-left: 9px solid transparent;
}
/*カテゴリー　背景指定2--------------------------------------------------------*/
#category td.rt :before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #13a4bc transparent transparent transparent;
}
#category td.rt :after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #13a4bc transparent transparent transparent;
}
#category td.rt :after {
  border-top: 9px solid transparent;
  border-right: 9px solid #13a4bc;
  border-bottom: 9px solid #13a4bc;
  border-left: 9px solid transparent;
}
/*カテゴリー　背景指定3--------------------------------------------------------*/
#category td.lb :before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #ed7c43 transparent transparent transparent;
}
#category td.lb :after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #ed7c43 transparent transparent transparent;
}
#category td.lb :after {
  border-top: 9px solid transparent;
  border-right: 9px solid #ed7c43;
  border-bottom: 9px solid #ed7c43;
  border-left: 9px solid transparent;
}
/*カテゴリー　背景指定4--------------------------------------------------------*/
#category td.rb :before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #5342f4 transparent transparent transparent;
}
#category td.rb :after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18px 0 0;
  border-color: #5342f4 transparent transparent transparent;
}
#category td.rb :after {
  border-top: 9px solid transparent;
  border-right: 9px solid #5342f4;
  border-bottom: 9px solid #5342f4;
  border-left: 9px solid transparent;
}
/*------------------------------------------------------------------------*/
/*飾り文字*/
#menubar ul li span, #category td span {
  display: block;
  font-size: 14px; /*文字サイズ*/
  color: #999; /*文字色*/
  letter-spacing: 0.03em; /*文字間隔を少し広くとる設定*/
  line-height: 0.9; /*追加*/
  font-weight: 700;
}
#menubar ul li.know span, #category td.lt a span, .knowcolor {
  color: #26720a; /*文字色*/
}
#menubar ul li.listen span, #category td.rt a span, .listencolor {
  color: #187489; /*文字色*/
}
#menubar ul li.visit span, #category td.lb a span, .visitcolor {
  color: #d6550d; /*文字色*/
}
#menubar ul li.view span, #category td.rb a span, .viewcolor {
  color: #3319c4; /*文字色*/
}
.homarecolor {
  color: #2b2b93; /*文字色*/
}
.pinkcolor {
  color: #e156b8; /*文字色*/
}
/*スマホ用カテゴリーメニュー----------------------------------------------*/
#category td {
  text-align: center;
  width: 50%;
}
#category td.lt {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}
#category td.rt {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
}
#category td.lb {
  border-right: 1px solid #999;
}
/*--------------------------------------------------------------------*/
/*スマホ用メニューを表示させない*/
#menubar-s, #menubar-s2, #logo2, #category {
  display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
  display: none;
}
/*ドロップダウンメニューの親メニュー*/
#menubar a.cursor-default {
  cursor: default; /*マウスオーバー時に通常のカーソルになるように*/
  color: #333; /*文字色*/
}
/*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu #menubar.nav-fix-pos {
  position: fixed;
  width: 100%;
  top: 0px;
  /*height: 70px;*/ /*メニューの高さを少し狭くする*/
}
body.is-fixed-menu #contents {
  margin-top: 105px; /*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*※以下の２ブロックのスタイルの「中身」は、上の２ブロックのスタイルと単純に合わせておいて下さい。*/
body.is-fixed #menubar.nav-fix-pos {
  position: fixed;
  width: 100%;
  top: 0px;
}
body.is-fixed #contents {
  margin-top: 105px; /*※上の「#menubar ul li a」の注意書きにある数字を指定します。*/
}
/*装飾文字を非表示にする*/
/*body.is-fixed-menu #menubar ul li span {
	display: none;
}*/
/*メニューテキストの上下バランスを調整しなおす。２つの数字の合計と、「body.is-fixed-menu #menubar.nav-fix-pos」の「height: 60px;」の数字が合うようにして下さい。*/
body.is-fixed-menu #menubar ul li a {
  height: 50px;
  padding-top: 10px;
}
/*ドロップダウンメニューへの再設定*/
/*body.is-fixed-menu #menubar ul.ddmenu li a {
	padding: 20px;
	height: auto;
}*/
/*コンテンツ
---------------------------------------------------------------------------*/
/*パンくずリスト*/
#breadcrumb {
  letter-spacing: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}
#breadcrumb li {
  display: inline-block;
  font-size: 90%;
  opacity: 0.7;
}
#breadcrumb li::after {
  content: ">";
  display: inline-block;
  margin: 0 0.5em;
}
#breadcrumb li:last-child::after {
  content: none;
}
article.read {
  padding: 0px 0 0px; /*上、左右、下へのコンテンツ内の余白*/
  width: 70%;
  text-align: center;
  margin: 0 auto;
}
#contents {
  padding: 0px 0 50px; /*上、左右、下へのコンテンツ内の余白*/
  position: relative;
  animation-name: opa2; /*keyframes.cssで使う@keyframesの指定*/
  animation-duration: 0.5S; /*アニメーションの実行時間*/
  animation-delay: 0.5s; /*出現するタイミング（秒後）*/
  animation-fill-mode: both;
}
.toppage #contents {
  padding: 0px 0 0px; /*上、左右、下へのコンテンツ内の余白*/
}
.nocategory #contents {
  padding: 0px 0 50px; /*上、左右、下へのコンテンツ内の余白*/
}
/*h1タグ*/
#contents h1 {
  clear: both;
  margin-bottom: 50px;
  margin-top: 30px;
  font-size: 250%; /*文字サイズ*/
  text-align: center; /*文字をセンタリング*/
  letter-spacing: 0.1em; /*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
  line-height: 1.2;
  font-weight: bold;
}
/*h1タグ内のspanタグ（装飾文字）*/
#contents h1 span {
  display: block;
  font-size: 40%; /*文字サイズ*/
  color: #187489; /*文字色*/
}
.know #contents h1 span {
  color: #26720a; /*文字色*/
}
.view #contents h1 span {
  color: #3319c4; /*文字色*/
}
/*h3タグ*/
#contents h3 {
  clear: both;
  margin-bottom: 30px;
  font-size: 150%; /*文字サイズ*/
  border-bottom: 1px solid #ccc; /*下線の幅、線種、色*/
  padding-left: 3%; /*左側に空ける余白*/
  letter-spacing: 0.1em; /*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
}
/*段落タグ*/
#contents p {
  padding: 0 3% 30px; /*上、左右、下への余白*/
  letter-spacing: 0.12em; /*文字間隔を少し広めにとる指定。通常がいいならこの１行削除。*/
  text-align: justify;
}
#contents h2 + p, #contents h3 + p {
  margin-top: -5px;
}
#contents p + p {
  margin-top: -10px;
}
#contents section + section {
  margin-top: 30px;
}
/*検索窓*/
.search {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*      margin: 10 10 10 10;*/
}

.gsc-search-button {
  background: #2b2b93; 
}
.w350 {
  width: 380px !important;
}
.messageb {
  width: 100px !important;
  padding: 8px 10px 0px 10px;
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
  align-items: center; /*中のブロックの縦並びの揃え方*/
  background: #E0A500; /*背景色*/
  color: #fff;
  text-align: center;
  font-size: 95%;
  height: 36px;
  line-height: 30px;
  margin: 25px 0px 30px 20px;
}
.messageb2 {
  width: 25%;
  max-width: 325px;
  padding: 15px 10px 15px 10px;
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
  align-items: center; /*中のブロックの縦並びの揃え方*/
  background: #5353BC; /*背景色*/
  color: #fff;
  text-align: center;
  font-size: 95%;
  line-height: 1;
  margin: 0 auto 0px;
  
}
.messageb3 {
  font-family: moniker, sans-serif;
    font-weight: 400;
  font-style: italic;
    font-size: 145%;
  }
.messageb a, .messageb2 a {
  color: #fff;
  text-decoration: none;
}
/*.bunkyologo {
    width: 37px !important;
}*/
.bunkyologo img {
  width: 37px;
  margin: 0 0 6px 0; /*上、左右、下への余白*/
}
a.koyukai {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
   background-image: url("../img/bunko_dot.png");     /* 背景画像指定 */
    background-repeat: no-repeat; 
    background-size: contain;
    background-position: left 0px top 0px,center;
     margin: auto;
	padding: 0.5rem 1rem;
	font-weight: bold;
	border: 2px solid #baedf7;
	color: #555555;
	border-radius: 100vh;
	transition: 0.5s;

}
/*a.koyukai strong {
  background-color: #FEFE57;
}*/
.url .kochira{
  margin-left: 60px;
  	font-weight: normal;
    	color: #000000;
}
.url .kochira2
  	font-weight: normal;
    	color: #000000;
}
a.koyukai:hover {
	color: #fff;
	background: #008fab;
}



/*メルマガ登録*/
a.form {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
   background-image: url("../img/magazine_form_bk.png");     /* 背景画像指定 */
    background-repeat: no-repeat; 
    background-size: cover;
    background-position: left 0px top 0px,center;
     margin: auto;
	padding: 0.5rem 1rem;
	font-weight: bold;
	border: 2px solid #FEDDF1;
	color: #555555;
	border-radius: 100vh;
	transition: 0.5s;
}
a.form:hover {
	color: #fff;
	background: #f9a0a0;
}


/*line 登録*/
a.line {
	display: block;
	text-align: left;
	vertical-align: middle;
	text-decoration: none;
   background-image: url("../img/line_account.png");     /* 背景画像指定 */
    background-repeat: no-repeat; 
    background-size: contain;
    background-position: left 0px top 0px,center;
     margin: auto;
	padding: 0.5rem 1rem;
	font-weight: bold;
	border: 2px solid #EFD3E9;
	color: #555555;
	border-radius: 100vh;
	transition: 0.5s;
}
a.line strong {
    margin-left: 80px !important;

}
a.form:hover {
	color: #fff;
	background: #f9a0a0;
}




.sma{
    display: none;
}
/*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#contents .list {
  position: relative;
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
  display: flex;
  align-items: center; /*中のブロックの縦並びの揃え方*/
  background: #000; /*背景色*/
  color: #fff; /*文字色*/
  margin: 0 3% 30px; /*ボックスの下に空けるスペース。上、左右、下への順番。*/
}
/*リンクテキストの文字色*/
#contents .list a {
  color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list h4 {
  margin-bottom: 20px; /*下のテキストとの間に空けるスペース*/
  font-size: 140%; /*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list p {
  padding: 0; /*余白のリセット*/
}
/*ボックス内のfigure画像*/
#contents .list figure {
  width: 50%; /*画像の幅*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list .text {
  width: 40%; /*ブロックの幅。下のpaddingの5%とも連動するので変更の際は注意して下さい。*/
  padding: 2% 5%; /*上下、左右へのブロック内の余白*/
}
/*偶数目のブロックの設定（画像とテキストブロックが左右交互に入れ替わる設定です。全部同じむきがよければこのブロックを削除します。）*/
#contents .list:nth-of-type(even) .text {
  order: 1;
}
/*装飾文字の設定（共通）*/
#contents .list::before {
  font-size: 18vw;
  line-height: 1;
  position: absolute;
  color: rgba(255, 255, 255, 0.15); /*文字色。255,255,255は白のことで、0.15は色が15%出た状態のこと。*/
  font-family: 'Tangerine', cursive; /*冒頭で読み込んだGoogle Fontsを適用する指定*/
}
/*奇数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(odd)::before {
  left: -60px;
  top: -40px;
}
/*偶数番目のブロックの文字の配置場所指定*/
#contents .list:nth-of-type(even)::before {
  right: 0px;
  top: -40px;
}
/*１つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(1)::before {
  content: "Works1";
}
/*２つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(2)::before {
  content: "Works2";
}
/*３つ目ブロックに表示させるテキスト*/
#contents .list:nth-of-type(3)::before {
  content: "Works3";
}
/*ボックス内のボタン（共通）*/
.btn1 a {
  display: block;
  text-decoration: none;
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  text-align: center; /*テキストをセンタリング*/
  padding: 10px 30px; /*上下、左右へのボタン内の余白*/
  margin: 40px auto 0; /*上、左右、下へのボックスの外側への余白*/
}
/*ボタンのマウスオン時（共通）*/
.btn1 a:hover {
  background: #fff; /*背景色*/
  color: #000 !important; /*文字色*/
}
/*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
/*カラムブロック全体を囲むボックス*/
#contents .list-column-container {
  display: flex;
  justify-content: space-between; /*中のブロックの横並びの揃え方*/
  flex-wrap: wrap; /*中のブロックを自動で折り返す*/
  margin: 0 3%;
}
/*１カラムあたりの設定*/
#contents .list-column {
  display: flex;
  flex-direction: column; /*中のブロックを並べる向きの指定。これは縦に並べる意味。*/
  width: 32%; /*ブロック幅*/
  margin-bottom: 20px; /*ブロックの下に空ける余白*/
  background: #000; /*背景色*/
  color: #fff; /*文字色*/
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
}
/*リンクテキストの文字色*/
#contents .list-column a {
  color: #fff;
}
/*ボックス内のh4（見出し）タグ*/
#contents .list-column h4 {
  margin-bottom: 20px; /*下のテキストとの間に空けるスペース*/
  font-size: 140%; /*文字サイズ*/
}
/*ボックス内のp（段落）タグ*/
#contents .list-column p {
  padding: 0; /*余白のリセット*/
}
/*「class="text"」を指定したブロック。テキストブロック。*/
#contents .list-column .text {
  padding: 5%; /*ブロック内の余白*/
  flex: 1 0 auto;
}
/*IEバグ対応*/
#contents .list-column figure {
  min-height: 0%;
}
/*フッター設定
---------------------------------------------------------------------------*/
footer {
  clear: both;
  position: relative;
  z-index: 1;
  font-size: 90%; /*文字サイズ*/
  background: #5353BC; /*背景色*/
  color: #fff; /*文字色*/
  text-align: center;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}
footer .pr {
  display: block;
  font-size: 80%;
}
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
  overflow: hidden;
  padding: 50px 0 20px 0; /*上下、左右へのボックス内の余白*/
  /*background: url(../images/footer_logo.png) no-repeat right center / 20%;	背景画像の読み込み。*/
}
/*リンクテキスト*/
#footermenu li {
  padding: 0px 0px 25px 3%;
  line-height: 1.6
}
/*#footermenu li a {
	text-decoration: none;
	opacity: 0.7;	透明度。70%の色がついた状態。
}*/
/*マウスオン時*/
/*#footermenu li a:hover {
	opacity: 1;		透明度。100%色がついた状態。
}*/
/*１行分の設定*/
#footermenu ul {
  float: left; /*左に回り込み*/
  width: 27%; /*幅*/
  padding-right: 0%;
  padding-left: 3%;
  text-align: left;
}
#footermenu ul.gaibu {
  float: left; /*左に回り込み*/
  width: 35%; /*幅*/
  padding-right: 0%;
  padding-left: 1%;
  text-align: left;
  line-height: 3.8;
}
#footermenu li.kochira {
  line-height: 0.8;
  margin-top: -10px;
}
#footermenu ul.gaibu span {
  font-size: 90%;
}
/*見出し*/
#footermenu li.box a {
  /*border: 1px solid #ccc;*/
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 7px;
  border-radius: 14px 0px 14px 0px;
  padding-right: 4%;
  padding-left: 4%;
}
#footer2 {
  display: flex;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
#footer2 ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 90%;
}
#footer2 ul li.name {
  justify-content: flex-start;
  padding-left: 1%;
  width: 35%;
  text-align: left;
}
#footer2 ul li.menu {
  justify-content: flex-end;
  text-align: right;
  padding-right: 1%;
  width: 31%
}
/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
  clear: both;
  text-align: center;
  background: #5353BC; /*背景色*/
  padding: 20px 0; /*上下、左右へのボックス内の余白*/
}
#copyright a {
  text-decoration: none;
}
/*facebookやtwitterなどのアイコン
---------------------------------------------------------------------------*/
/*アイコン全体を囲むブロック*/
ul.icon {
  margin-bottom: 20px;
}
/*アイコン１個あたりの設定*/
ul.icon li {
  display: inline-block; /*横並びにさせる指定*/
}
/*アイコン画像の設定*/
ul.icon img {
  width: 30px; /*画像の幅*/
}
ul.icon img:hover {
  opacity: 0.8;
}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/
#new dl {
  padding: 0px 20px; /*上下、左右へのブロック内の余白*/
}
/*日付設定*/
#new dt {
  float: left;
  width: 9em; /*幅*/
  letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
  padding-left: 9em;
}
/*ta1設定
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption, .ta2 caption {
  border: 1px solid #ccc; /*テーブルの枠線の幅、線種、色*/
  border-bottom: none; /*下線だけ消す*/
  text-align: left; /*文字を左寄せ*/
  background: #eeece4; /*背景色*/
  font-weight: bold; /*太字に*/
  padding: 10px; /*ボックス内の余白*/
}
/*ta1テーブル*/
.ta1 {
  width: 100%;
  table-layout: fixed;
  margin: 0 0% 30px;
  /*background: #fff;	背景色*/
}
.ta1, .ta1 td, .ta1 th {
  border: 1px solid #fff; /*テーブルの枠線の幅、線種、色*/
  padding: 10px; /*ボックス内の余白*/
  word-break: break-all;
}
/*左側ボックス*/
.ta1 th {
  width: 150px; /*幅*/
  text-align: center; /*センタリング*/
  font-weight: normal;
}
.ta1 td {
  padding-left: 18px;
}
/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn, #contents input[type="button"].btn, #contents input[type="reset"].btn {
  -webkit-appearance: none;
  outline: none;
  padding: 5px 20px; /*上下、左右へのボックス内の余白*/
  border: 1px solid #333; /*枠線の幅、線種、色*/
  font-size: 130%; /*文字サイズ*/
  border-radius: 3px; /*角丸のサイズ*/
  background: #333; /*背景色*/
  color: #fff; /*文字色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover, #contents input[type="button"].btn:hover, #contents input[type="reset"].btn:hover {
  border: 1px solid #333; /*枠線の幅、線種、色*/
  background: #fff; /*背景色*/
  color: #333; /*文字色*/
}
/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
  background: #F00; /*背景色*/
  color: #FFF; /*文字色*/
  font-size: 70%; /*文字サイズ*/
  line-height: 1.5;
  padding: 2px 5px;
  border-radius: 2px;
  margin: 0px 5px;
  vertical-align: text-top;
}
/*ヘッダーにメニューが固定される分、リンク先が隠れるのを防ぐ為のスタイル。※ページ内へのリンクで使う。
---------------------------------------------------------------------------*/
.link {
  display: block;
  margin-top: -120px;
  padding-top: 120px;
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {
  display: none;
}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  width: 50px; /*幅*/
  line-height: 50px; /*高さ*/
  z-index: 1;
  position: fixed;
  bottom: 20px; /*下から20pxの場所に配置*/
  right: 3%; /*右から3%の場所に配置*/
  background: #666; /*背景色（古いブラウザ用）*/
  background: rgba(43, 43, 147, 0.6); /*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
  color: #fff; /*文字色*/
  border: 1px solid #fff; /*枠線の幅、線種、色*/
  animation-name: opa1; /*keyframes.cssで使う@keyframesの指定*/
  animation-duration: 1S; /*アニメーションの実行時間*/
  animation-fill-mode: both; /*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
  border-radius: 22px 0px 22px 0px;
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
  background: #999; /*背景色*/
}
/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
  list-style: disc;
  padding: 0 3% 20px 6%;
}
ol {
  padding: 0 3% 20px 6%;
}
/*その他
---------------------------------------------------------------------------*/
.look {
  background: #fff;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 0px 10px !important;
  border-radius: 4px;
}
p.look {
  margin: 0 3%;
}
.mt20 {
  margin-top: 20px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mt-45 {
  margin-top: -45px !important;
}
.mt-35 {
  margin-top: -35px !important;
}
.mt-25 {
  margin-top: -25px !important;
}
.mb15, .mb1em {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.clear {
  clear: both;
}
.color1, .color1 a {
  color: #ff0909 !important;
}
.pr {
  font-size: 10px;
}
.wl {
  width: 96%;
}
.ws {
  width: 50%;
}
.c {
  text-align: center !important;
}
.r {
  text-align: right !important;
}
.l {
  text-align: left !important;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.big1 {
  font-size: 30px;
}
.mini1 {
  font-size: 11px;
  display: inline-block;
  line-height: 1.5;
}
.sh {
  display: none;
}
figcaption {
  margin-top: 10px;
  line-height: 1.7;
  font-size: 97%;
  color: dimgray;
}
rt {
  color: dimgray;
}
em {
  color: red;
  font-style: normal;
  letter-spacing: 0em;
}
.bold {
  font-weight: bold;
}
.fat {
  font-weight: 850;
}
/*外部リンクアイコン
---------------------------------------------------------------------------*/
.url a[href^="http"]:after, footer a[href^="http"]:after, .inner2 a[href^="http"]:after, #menubar-s a[href^="http"]:after, .url a[href^="//"]:after, footer a[href^="//"]:after, .inner2 a[href^="//"]:after, #menubar-s a[href^="//"]:after {
  margin: 0 0 0 5px;
  font-family: "Font Awesome 5 Free";
  content: '\f35d';
  font-weight: 600;
  color: darkgray;
}
/*除外*/
.url a[href^="https://www.bunkyo-ayanari.jp/"]:after,
.url a[href^="https://www.bunkyo.ac.jp/academy/"]:after, 
.sns a[href^="https"]:after,
.photo a[href^="https"]:after
{
  margin: inherit;
  font-family: inherit;
  content: '';
  font-weight: inherit;
}
/*メイン　コンテンツ　索引ページ
---------------------------------------------------------------------------*/
main {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
main .item1 {
  width: 28%;
  margin: 0px 2.6% 40px 2.6%;
}
main .item1 .year {
  text-align: right;
  color: #333;
}
main .item1 img {
  width: 100%;
  /*7/7 height: 320px;*/
  border-top-left-radius: 70px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 70px;
  border-bottom-left-radius: 0px;
  border-top: 1px solid #dedede;
  border-left: 1px solid #dedede;
  border-right: 1px solid #dedede;
  border-bottom: 6px solid #69bbd5;
  /*7/7  object-fit: cover;
  object-position: top;*/
}
.toppage main .item1 img {
  border-bottom: 1px solid #dedede;
}
main .item1 .title {
  font-weight: 900;
  font-size: 120%;
  color: #2b2b93;
  border-top: 1px solid #2b2b93;
  border-bottom: 1px solid #2b2b93;
  margin: 0px 0px 7px 0px;
  padding: 10px 0px 10px 0px;
  line-height: 1.6;
}
main .item1 .namelist {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 112%;
  line-height: 1.5;
}
main .item1 .from {
  line-height: 1.4;
  margin: 5px 0px 0px 0px;
  font-size: 112%;
}
/*4つのカテゴリー等、詳細ページ
---------------------------------------------------------------------------*/
body.noindex #contents h1 {
  font-size: 220%;
  text-align: left;
  margin: 0px 0px 50px 0px;
  color: #2b2b93;
  font-weight: bold;
  letter-spacing: 0.2em;
}
body.noindex #contents h1.quest {
  margin: 0px 0px 0px 0px;
}
body.noindex img.mv {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
  margin: 0px 0px 60px 0px;
  border: 1px solid #dedede;
}
/*特集バナー*/
body.noindex img.banner {
  width: 100%;
  margin: 0px 0px 0px 0px;
  border: 1px solid #dedede;
}
.year {
  font-size: 120%;
  text-align: right;
}
/*詳細ページでの、MVがない場合
----------------------*/
body.noindex img.mv.off {
  display: none;
}
body.noindex h2 {
  font-size: 180%;
  text-align: left;
  margin: 30px 0px 0px 0px;
  color: #2b2b93;
  font-weight: bold;
  line-height: 1;
}
body.noindex #contents h3 {
  font-size: 120%;
  text-align: left;
  margin: 10px 0px 50px 0px;
  color: #757575;
  font-weight: bold;
  line-height: 1;
  border: none;
  padding-left: 0px;
}
body.noindex #contents h4 {
  font-size: 135%;
  text-align: left;
  margin: 0px 0px 0px 0px;
  color: #2b2b93;
  font-weight: bold;
  line-height: 1;
  border: none;
  padding-left: 0px;
  padding-top: 30px;
  letter-spacing: 0.2em;
  position: relative;
  /* background: #f6fdff;        */
}
body.noindex #contents p {
  padding: 20px 0px 0px 0px; /*上、左右、下への余白*/
  margin: 0px 0px 45px 0px; /*上、左右、下への余白*/
}
body.noindex #contents h5 {
  margin: 50px 0px 0px 0px;
/*7/11  font-size: 120%;*/
}
/*body.listen #contents h5:empty {*/
body #contents h5:empty {
  display: none;
}
/*body.listen img.sub {*/
body img.sub {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top;
}
/*body.listen img.sub5:empty {*/
body img.sub :empty {
  display: none;
}
figcaption:empty {
  display: none;
}
/*column
---------------------------------------------------------------------------*/
body.noindex #contents h4.columntitle {
  border-bottom: 2px solid #2b2b93;
  border-top: 2px solid #2b2b93;
  margin: 50px 0% 50px 0%;
  padding: 25px 1% 20px 1%;
  background-color: #fff;
  border-radius: 40px 0px 40px 0px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 110%;
}
.columntitle:empty, h4:empty, p:empty {
  display: none;
}
.column {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 20px 0% 50px 0%;
  padding: 0px 0% 0px 0%;
  /*    border-bottom: 3px  double #8585eb;*/
}
ul.column li {
  width: 100%;
  margin: 0px 0% 0px 0%;
  padding: 0px 4% 0px 0%;
  object-fit: cover;
  object-position: top;
}
ul.column li img {
  margin: 0px 0% 20px 0%;
  padding: 0px 0% 0px 0%;
}
ul.column li.caption {
  padding: 0px 0% 0px 0%;
  margin: 0px 0% 0px 0%;
  line-height: 1.7;
  letter-spacing: 0.12em;
  text-align: justify;
  width: 100%;
  font-weight: 500;
}
.column:empty, ul.column li:empty {
  display: none;
}
/*profile
---------------------------------------------------------------------------*/
.profile {
  display: flex;
  justify-content: flex-start;
  margin: 20px 2% 40px 2%;
  padding: 20px 5% 30px 5%;
  background: #f6fdff;
  line-height: 1.3;
  border-bottom: 2px solid #69bbd5;
  border-top: 2px solid #69bbd5;
  border-top-left-radius: 70px;
  border-bottom-right-radius: 70px;
  background: -moz-linear-gradient(top left, #FFF, #f6fdff);
  background: -webkit-linear-gradient(top left, #FFF, #f6fdff);
  background: linear-gradient(to bottom right, #FFF, #e1f8ff);
  font-weight: 500;
}
ul.profile li {
  width: 47%;
  margin: 10px 2% 20px 2%;
  object-fit: cover;
  object-position: top;
  line-height: 1.7;
}
ul.profile li img {
  margin-top: 20px;
  margin-bottom: 0px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
ul.profile li.sns, ul.web li.sns {
  margin-top: 40px;
}
ul.profile li.sns img {
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
ul.profile .text li {
  width: 100%;
  margin: 0px 2% 20px 2%;
  object-fit: cover;
  object-position: top;
  position: relative;
}
ul.profile .tittle {
  font-size: 210%;
  padding-bottom: 0px;
  color: #187489;
  font-family: 'Elsie', cursive;
}
ul.profile .name {
  font-size: 120%;
  line-height: 1;
  font-weight: bold;
}
ul.profile .kana {
  line-height: 1;
}
.f120 {
  font-size: 120%;
}
.f140 {
  font-size: 140%;
}

/*button
---------------------------------------------------------------------------*/
.keisai {
  width: 46%;
  font-size: 110%;
  font-weight: nomal;
  text-align: center;
  border-radius: 30px;
  margin: 60px 27% 0px 27%;
  padding: 15px 0 15px 0px;
  background-color: #5353BC;
  color: white;
  border: 1px solid #2B2B93;
  line-height: 1.2;
}
.keisai2 {
  width:  59%;
   margin: 60px auto 0px;
}
.keisai.result {
  margin-top: 10px;
}
.keisai:empty {
  background-color: #fff;
  display: none;
}
.keisai a {
  color: white;
}
.toindex {
  width: 20%;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
  border-bottom: 3px double #2b2b93;
  margin: 40px 40% 20px 40%;
  padding: 5px 0 15px 0px;
  color: #2b2b93;
  line-height: 1.2;
}
.sns img {
  width: 30px;
  margin-right: 30px;
}
/*大学別
------------------------------------------------------------------------------------*/
#contents h3.sortTitle {
  background: #2b2b93;
  margin: 20px 0px 10px;
  padding: 0px 0px 0px 10px;
  width: 100%;
  font-size: 100%;
  color: #FFFFFF;
}
/* Pager style */
.pagination-area {
  text-align: right;
  padding: 0px 30px 15px 30px;
}
/*ページャーボタン*/
.pagination-area a {
  border: 1px solid #2b2b93;
  border-radius: 5px 5px 5px 5px;
  color: #333;
  font-size: 12px;
  padding: 5px 10px 4px;
  text-decoration: none;
  margin: 0 1px;
  background: #fff;
}
/*現在のページのボタン*/
.pagination-area .current a, .pagination-area a:hover {
  background: #2b2b93;
  color: #FFFFFF;
}
.overPagerPattern {
  padding: 0 2px;
}
.sort {
  text-align: right;
  margin: 0px 30px 15px 30px;
}
/*お店情報
----------------------*/
.shopdata {
  background-color: #f0f0f0;
  padding-bottom: 30px;
  margin-top: 0px;
}
body.noindex #contents .shopdata h3 {
  font-size: 80%;
  margin-bottom: 20px;
}
.shopdata .in {
  width: 80%;
  margin: 0 auto;
  margin-top: 60px;
  padding: 20px 10% 0px 10%;
}
.shopdata iframe {
  border: 1px solid #fff;
}
.web {
  margin-top: 30px;
}
.shopdata .ta1 th {
  overflow-wrap: break-word;
  text-align-last: justify;
}
.shopdata .ta1 th.notcenter {
  text-align-last: left;
}
/*お店情報がない場合
----------------------*/
.shopdata.off {
  display: none;
}
/*ul 表示しない場合
----------------------*/
ul.off {
  display: none;
}
/*関連リンク
----------------------*/
ul.related {
  border-radius: 3px;
  border: 1px solid #83d26a;
  padding: 20px;
  background: #f3ffef;
}
body.listen ul.related {
  border: 1px solid #69bbd5;
  background: #f4faff;
}
body.nocate ul.related {
  border: 1px solid #e7cf6f;
  background: #fffbed;
}
ul.related li {
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
  margin-top: 15px;
}
ul.related li::before {
  content: '\f0da';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0px;
  left: 11px;
  color: gray;
}
ul.related li:empty {
  display: none;
}
/*関連リンクがない場合
----------------------*/
ul.related.off {
  display: none;
}
/*トップページ
----------------------*/
/*news*/
.newsbox {
  width: 95%;
  overflow: hidden;
  height: 339px;
  margin: 0px 2.6% 40px 2.6%;
}
.news_List_Title {
  width: 100%;
  padding-bottom: 7px;
  /*      border-bottom: 1px solid #2b2b93;
      margin-bottom: 10px*/
}
ul#news_list li {
  margin-top: 8px;
  line-height: 1.3;
  width: 100%;
}
ul#news_list.top li {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis; /* Safari */
  -o-text-overflow: ellipsis; /* Opera */
}
#news_popup h1 {
  font-size: 210%;
  text-align: left;
  margin: 20px 0px 50px 0px;
  color: #2b2b93;
  font-weight: bold;
  letter-spacing: 0.2em;
}
h2.topnews {
  /*  font-family: "Moniker Basic", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;*/
  font-size: 190%;
  width: 20%;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #000;
  line-height: 1.3;
  font-family: moniker, sans-serif;
  font-weight: 400;
  font-style: nomal;
}
h2.topnews.naka {
  width: 100%;
  border-bottom: 1px solid #2b2b93;
}
.up_ymd {
  text-align: right;
  margin: 8px;
}
.newslist {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #2b2b93;
  padding-bottom: 0px;
  margin-bottom: 15px;
  width: 100%;
}
h5.tolist {
  text-align: right;
  width: 80%;
  padding-top: 7px;
}
hr {
  border-top: 2px dotted #cdcdfe;
  border-right: none;
  border-bottom: none;
  border-left: none;
}
/*pickup*/
.pickup {
  width: 95%;
  margin: 0px 2.6% 10px 2.6%;
}
h2.line {
  /*  font-family: "Moniker Basic", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;*/
  font-size: 190%;
  border-bottom: 1px solid #2b2b93;
  padding-bottom: 0px;
  margin-bottom: 10px;
  width: 100%;
  line-height: 1.3;
  font-family: moniker, sans-serif;
  font-weight: 400;
  font-style: nomal;
}
.toppage .namelist:before {
  font-size: 80%;
  padding: 5px;
  color: #000;
  margin-right: 5px;
}
.toppage .namelist.listen:before {
  content: "聞く";
  background-color: #d8eeff;
  border: 1px solid #69bbd5;
}
.toppage .namelist.visit:before {
  content: "訪ねる";
  background-color: #ffdfd6;
  border: 1px solid #ffa366;
}
.toppage .namelist.know:before {
  content: "知る";
  background-color: #e4ffdb;
  border: 1px solid #83d26a;
}
.toppage .namelist.view:before {
  content: "観る";
  background-color: #f2eeff;
  border: 1px solid #a092d6;
}
/*message*/
/*.message_bk {
   background: url("../img/message_bk.png");
    background-repeat: no-repeat;
    background-position: center;
        height: 593px;
  }*/
.message_bk {
  background: none;
  background-color: #fff4df;
  height: auto;
  padding-bottom: 15px;
  width: 100%;
}
h2.message_title {
  font-size: 240%;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 0px;
  margin-top: 40px;
  line-height: 1.3;
  /*  アドビフォント web プロジェクト　ayanari projectで指定*/
  font-family: moniker, sans-serif;
  font-weight: 400;
  font-style: italic;
}
.iken_cover {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.iken {
  line-height: 1.4;
  font-size: 80%;
  font-style: normal;
  text-align: center;
  margin-top: -35px;
  margin-bottom: 50px;
  margin-right: 12%;
}
/*  h2.message_title::before {
  background-image: url("../img/bunko1.png");
  content: "";
  display: inline-block;
  width: 135px;
  height: 156px;
  background-size: contain;
  vertical-align: -45px;
}*/
h2.message_title::after {
  background-image: url("../img/bunko3.png");
  content: "";
  display: inline-block;
  width: 135px;
  height: 156px;
  background-size: contain;
  vertical-align: -45px;
}
.message {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1200px; /*サイトの最大幅*/
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0px;
}
.message .button {
  width: 28%;
  margin: 0px 2.6% 20px 2.6%;
}
.message .button4 {
  width: 21%;
  margin: 0px 2% 20px 2%;
}
.message .button5 {
  width: 17%;
  margin: 0px 1% 20px 2%;
}
.center {
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}
#news_wrap {
  margin: 10px 2.6% 40px 2.6%;
  width: 94%;
}
/*読者アンケート*/
h5.question, h5.coment {
  position: relative;
  background-color: #EFEFEF;
  padding: 12px 12px 12px 45px;
  font-weight: 700;
}h5.coment + p{
  background-color: #e8fdfd;
  font-weight: 700;
  padding-bottom: 20px!important;
}
h5.question::before {
  content: '\f059';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 7px;
  left: 12px;
  color: #2b2b93;
  font-size: 140%;
}
h5.coment::before {
  content: '\f06b';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: absolute;
  top: 7px;
  left: 12px;
  color: #E80041;
  font-size: 140%;
}
/*読者アンケート 結果*/
h5.question.result::before {
  content: '\f200';
}
/*文は人なり*/
h5.question.thema::before {
  content: '\f5ad';
  font-size: 100%;
  padding: 5px 0px 0px 10px;
}
h5.result2 {
  border: dotted 1px #999;
  padding: 8px 12px 8px 12px;
  font-size: 100%;
  font-weight: 500;
}
.graph {
  width: 80%;
}
/*Message*/
.item1 .junle {
  position: relative;
  padding-left: 1.5em;
}
.item1 .junle::before {
  content: '\f075';
  font-family: "Font Awesome 5 Free";
  font-weight: 200;
  position: absolute;
  top: -4px;
  left: 0px;
  color: #2B2B93;
  font-size: 130%;
}
.mess table {
  width: 100%;
  /*       min-width: 250px;*/
}
.mess table, .mess table th {
  line-height: 1;
  padding: 10px 10px;
  white-space: nowrap;
  letter-spacing: normal;
  font-weight: normal;
}
.mess table td {
  white-space: nowrap;
  font-size: 90%;
  width: 10%;
}
/*文は人なり*/
.aya dt {
  padding-bottom: 10px;
  margin-top: 15px;
  border-top: #333 dotted 1px;
  padding-top: 10px;
  font-size: 105%;
}
.aya dd {
  padding-bottom: 0px;
  margin-bottom: 10px;
  margin-left: 15px;
  font-size: 95%;
}

.mail {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  /*background-color: #E0A500;*/
  /*color: #FFFFFF;*/
  font-size: 160%;
  border: solid #f0f0f0 12px;
  /*border-bottom:  solid #ededed 12px;
border-left: solid #ededed 12px;
border-right:  solid #ededed 12px;*/
}
.narrow {
  width: 80%;
    max-width: 1200px; /*サイトの最大幅*/
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 0px;
}
.narrow img {
  width: 35%;
  padding-left: 2%;
  padding-right: 2%;
}
.download .bu {
  text-align: center;
  margin: 20px 0% 0px 0%;
  padding: 10px 0% 10px 0%;
  font-size: 100%;
  border-top: double #dedede 4px;
  border-bottom: double #dedede 4px;
  font-weight: bold;
}
.download .nen {
  text-align: right;
  font-size: 90%;
}
.download .item1 img {
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid #dedede;
}
.check .item1 img {
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: 1px solid #dedede;
}
/*八ヶ岳　エピソード*/
.schoolbox {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 20px 0;
  font-size: 90%;
  line-height: 140%
}
.ies, .es, .jhs, .wjc, .ss, .u {
  flex: 0 1 20%;
  margin: 1%;
}
.ies a, .es a, .jhs a, .wjc a, .ss a, .u a {
  padding: 10% 5%;
  text-align: center;
  background: #fffbed;
  border-radius: 5px;
  border: #eaba11 1px solid;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  width: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #444;
}
.schoolbox * a:hover {
  background: #eaba11;
}
table.lunch {
  width: 98%;
  border: none;
  margin: 0 auto 70px;
}
table.lunch tr {
  border-top: 1px solid #ccc;
}
table.lunch tr:first-child {
  border: none;
}
table.lunch tr:nth-child(even) {
  background: #fff;
}
table.lunch td.response {
  width: 86%;
  padding: 20px 20px 20px 10px;
  box-sizing: border-box;
}
table.lunch td.prof {
  vertical-align: bottom;
  padding: 20px 0;
}
td.prof + td.prof:before {
  content: "／";
}
/*トップ　フッター*/
.character {
 text-align: center;
     font-size: 70%;
           margin-top: 15px;
}
.character:before {
  background-image: url("../img/bunko2.png");
  content: "";
  display: inline-block;
  width: 45px;
  height: 50px;
  background-size: contain;
 vertical-align: -15px;
}
/*アンケート　入力必須項目*/
.required {
 text-align: center;
background-color: #FFE7E7;
  border: 1px solid red;
    padding : 25px 10px;
    width: 50%;
    margin: 0 auto 30px;
    color: red;
    font-size: 110%;
}
/*ボタンを押したら要素を表示/非表示*/

.a1, .a2, .a3, .a4, .a5, .a6, .a7 {
    display: inline-block;
    cursor: pointer;
    border-top: solid #dedede 1px;
    border-bottom: solid #dedede 1px;
    padding : 8px 0px;
    color: #2b2b93;
    font-weight: 600;
    width:  100%;
    text-align: center;
    background-color: #f0f0f0;
}
.b1, .b2, .b3, .b4, .b5, .b6, .b7 {
    display: none;
}
.c1, .c2, .c3, .c4, .c5, .c6, .c7 {
    display: block;
}
/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1150px) {
  /*メイン　コンテンツ
---------------------------------------------------------------------------*/
  /*7/7  main .item1 img {
    height: 270px;
  }*/
  /*message*/
  

  .message_bk {
    /*  margin: 0 auto;*/
    background: none;
    background-color: #fff4df;
    height: auto;
    padding-bottom: 15px;
  }
  h2.message_title {
    padding-top: 25px;
    font-size: 170%;
  }
  .center {
    padding-top: 0px;
    margin-top: 5px;
  }
  .shopdata .in {
    padding-top: 0px;
  }
  .iken {
    /*      width: 120px;*/
    margin-right: 20%;
  }
    .message .button4 {
    width: 44%;
    margin: 0px 3% 40px 3%;
    margin-bottom: 40px;
  }
  .message .button4 img {
    width: 100%;
  }
/*  .message .button5 {
    width: 44%;
    margin: 0px 3% 40px 3%;
    margin-bottom: 40px;
  }
  .message .button5 img {
    width: 100%;
  }*/
}
/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px) {
  /*メイン　コンテンツ
---------------------------------------------------------------------------*/

  main {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  main .item1 {
    width: 44%;
    margin: 0px 2.6% 40px 2.6%;
  }
  main .item1 img {
    width: 100%;
    /* 7/7     height: 270px;
      object-position: top;*/
  }
    .message .button5 {
    width: 44%;
    margin: 0px 3% 40px 3%;
    margin-bottom: 40px;
  }
  .message .button5 img {
    width: 100%;
  }
}
/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px) {
  /*全体の設定
---------------------------------------------------------------------------*/
 a.koyukai  {
  margin: 20px 2% 0px 2%;
  border-radius: 10px; /*角丸の指定。ほんの少し角が丸くなります。*/
  line-height: 20px;
   background-image: url("../img/bunko_none.png");     /* 背景画像指定 */
   font-size: 112%;
}
 a.form  {
  margin: 20px 2% 0px 2%;
  border-radius: 10px; /*角丸の指定。ほんの少し角が丸くなります。*/
  line-height: 20px;
   font-size: 112%;
}
 a.line  {
  margin: 20px 2% 0px 2%;
  border-radius: 10px; /*角丸の指定。ほんの少し角が丸くなります。*/
  line-height: 20px;
   background-image: url("../img/line_none.png");     /* 背景画像指定 */
   font-size: 112%;
   	text-align: center;
}
a.line strong {
    margin-left: 0px !important;

}
.url .kochira{
  margin-left: 0px;
     font-size: 85%;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}
  body {
    font-size: 2vw; /*文字サイズ*/
  }
  .mainimg_s {
    display: inline;
  }
  .mainimg {
    display: none;
  }
  /*ヘッダーブロック（トップページへの追加設定）*/
  .home header {
    border: none;
  }
  #logo2 {
    padding: 10px 0px 0px 0px;
    width: 100%;
  }
  #logo2 img {
    width: 65%;
    padding-left: 10px;
  }
  /*メインメニュー
---------------------------------------------------------------------------*/
  /*スマホ用メニューブロック全体*/
  #menubar-s {
    overflow: auto;
    height: 100%;
    position: fixed;
    z-index: 100;
    top: 0px;
    width: 100%;
    background: rgba(43, 43, 147, 0.9); /*背景色*/
    border-top: 1px solid #fff; /*上の線の幅、線種、色*/
    animation-name: frame1; /*冒頭のkeyframesの名前*/
    animation-duration: 0.5s; /*アニメーションの実行時間。0.5秒。*/
    animation-fill-mode: both; /*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
    font-size: 16px; /*文字サイズ*/
  }
  #menubar-s .search-s {
    display: flex;
    justify-content: flex-end;
    padding: 20px 20px 0px 20px;
    background: #fff;
  }
  #menubar-s li span {
    margin-left: 20px;
    font-size: 80%;
  }
  /*メニュー１個あたりの設定と、子メニューの見出し。*/
  #menubar-s ul li a, #menubar_hdr2 {
    display: block;
    text-decoration: none;
    padding: 20px 20px 20px 40px;
    border-bottom: 1px solid #fff; /*下の線の幅、線種、色*/
    color: #fff; /*文字色*/
  }
  #category td {
    font-size: 16px; /*文字サイズ*/
  }
  /*PC用メニューを非表示にする*/
  #menubar, .search {
    display: none;
  }
  #logo2, #category {
    display: block;
    text-decoration: none;
    margin-top: 10px;
  }
  #category {
    margin-top: 20px;
  }
  .logow img {
    width: 40%;
  }
  #breadcrumb {
    margin-top: -50px;
  }
  /*子メニュー
---------------------------------------------------------------------------*/
  /*子メニューの見出しの追加。基本は上のブロックで設定しています。*/
  /*#menubar_hdr2 {
	padding-left: 60px;}*/ /*上にある「メニュー１個あたりの設定と、子メニューの見出し」の最後の数字（４つ目）に合わせる。*/
  /*子メニューメニューブロック全体*/
  /*#menubar-s2 {
	display: block;
	margin-top: 10px;
	border-radius: 5px;
	background: rgba(0,0,0,0.3);
	border: 1px solid #fff;
}*/
  /*「＞」アイコン設定*/
  /*#menubar_hdr2.close {
	background: url(../images/arrow2.png) no-repeat 20px 35px / 18px;
}*/
  /*「＾」アイコン設定*/
  /*#menubar_hdr2.open {
	background: url(../images/arrow3.png) no-repeat 20px 35px / auto 18px;
}*/
  /*子メニュー１個あたりの設定*/
  /*#menubar-s2 li a {
	border-bottom: 1px solid #fff !important;
	padding: 10px 20px !important;
}
#menubar-s2 li:last-child a {
	border-bottom: none !important;
}*/
  /*３本バーアイコン設定
---------------------------------------------------------------------------*/
  /*３本バーブロック*/
  #menubar_hdr {
    display: block;
    position: fixed;
    z-index: 100;
    top: 20px; /*上からの配置場所*/
    right: 2%; /*右からの配置場所*/
  }
  /*アイコン共通設定*/
  #menubar_hdr.close, #menubar_hdr.open {
    width: 50px; /*幅*/
    height: 50px; /*高さ*/
    border: 1px solid #fff;
  }
  /*三本バーアイコン*/
  #menubar_hdr.close {
    background: #5656BF url(../img/icon_menu.png) no-repeat center top/50px; /*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
  }
  /*閉じるアイコン*/
  #menubar_hdr.open {
    background: #5656BF url(../img/icon_menu.png) no-repeat center bottom/50px; /*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
  }
  /*fixmenu設定（メニューが画面上部に到達した際のスタイル）
---------------------------------------------------------------------------*/
  /*fixmenuから折りたたみメニューになるのでリセット。*/
  body.is-fixed-menu #contents {
    margin-top: 0px;
  }
  body.is-fixed #contents {
    margin-top: 0px;
  }
  /*コンテンツ
---------------------------------------------------------------------------*/
  #contents {
    padding: 50px 0; /*上下、左右へのコンテンツ内の余白*/
  }
  /*h1タグ*/
  #contents h1 {
    margin-bottom: 50px;
  }
  /*list-column（トップページで使っている３列ブロック）
---------------------------------------------------------------------------*/
  /*ボックス内のh4（見出し）タグ*/
  #contents .list-column h4 {
    margin-bottom: 0px;
  }
  /*ヘッダーメニューが固定されなくなるので、再設定。
---------------------------------------------------------------------------*/
  .link {
    margin-top: -30px;
    padding-top: 30px;
  }
  /*その他
---------------------------------------------------------------------------*/
  body.s-n .sub, body.s-n #footermenu {
    display: none;
  }
  .big1 {
    font-size: 20px;
  }
  #footer2 {
    font-size: 70%;
  }
  #footer2 {
    display: flex;
    flex-direction: column;
  }
  /*noindex
---------------------------------------------------------------------------*/
  body.noindex #contents h1 {
    font-size: 150%;
    margin: 20px 2% 20px 2%;
  }
  body.noindex img.mv {
    height: 350px;
    width: 96%;
    margin: 20px 2% 0px 2%;
  }
  body.noindex h2 {
    font-size: 135%;
    text-align: left;
    margin: 10px 0px 4px 0px;
    color: #2b2b93;
    font-weight: bold;
  }
  body.noindex #contents h3 {
    font-size: 100%;
    margin: 0px 0px 0px 0px;
  }
  body.noindex #contents h4 {
    font-size: 120%;
    margin: 40px 0px 0px 0px;
  }
  body.noindex #contents h5 {
    margin: 30px 0px 0px 0px;
  }
  body.noindex img.sub {
    height: 350px;
  }
  /*profile
---------------------------------------------------------------------------*/
  .profile {
    flex-direction: column;
    margin: 10px 2% 20px 2%;
    padding: 5px 5% 20px 5%;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  ul.profile li {
    width: 96%;
    margin: 10px 2% 20px 2%;
  }
  ul.profile li img {
    margin-top: 0px;
  }
  /*column
---------------------------------------------------------------------------*/
  .column {
    flex-direction: column;
  }
  body.noindex #contents h4.columntitle {
    margin: 30px 0px 20px 0px;
  }
  ul.column li, ul.column li.caption {
    width: 96%;
    margin: 5px 2% 0px 2%;
  }
  ul.column li {
    margin: 10px 10% 20px 10%;
    width: 80%;
  }
  ul.column li.caption {
    margin-top: 0px;
  }
  /*---------------------------------------------------------------------------*/
  .keisai {
    width: 94%;
    margin: 50px 3% 20px 3%;
    padding: 15px 0 15px 0px;
  }
   .keisai2 {
    width: 94%;
  }
  .toindex {
    width: 46%;
    margin: 20px 27% 0px 27%;
    padding: 5px 0 15px 0px;
  }
  .newsbox {
    margin-top: 30px;
  }
  /*  h2.message_title::before {
  background-image: url("../img/bunko1.png");
  content: "";
  display: inline-block;
  width: 105px;
  height: 121px;
  background-size: contain;
  vertical-align: -45px;
}*/
  h2.message_title::after {
    background-image: url("../img/bunko2.png");
    content: "";
    display: inline-block;
    width: 105px;
    height: 121px;
    background-size: contain;
    vertical-align: -45px;
  }
  .graph {
    width: 100%;
  }
  body img.sub {
    height: 300px;
  }
  .iken {
    /*     width: 100px;*/
    margin-right: 23%;
  }
/*  八ヶ岳エピソード*/
  		.schoolbox{
			flex-wrap: wrap;
			justify-content: center;
			align-items: center;
			align-content: center;
			margin: 20px 0;
		}
		.es,.jhs,.wjc,.u{
			flex: 0 1 45%;
			margin: 2%;
		}
		table.lunch{
			width: 98%;
			border: none;
			margin: 0 auto 70px;
		}
		table.lunch tr{
			display: block;
		}
		table.lunch td.response{
			width: 100%;
			padding: 10px;
			box-sizing: border-box;
			display: block;
			clear: both;
		}
		table.lunch td.prof{
			vertical-align: middle;
			padding: 10px 0;
			display: inline-block;
		}
		td.response + td.prof{
			margin-left: 83%;
		}
    .required {
    width: 100%;
        padding : 25px 0px;
}
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:650px) {
  /*全体の設定
---------------------------------------------------------------------------*/
  /* 7/7   main .item1 img {
      height: 220px;
    }*/
  /*news*/
  


  .newsbox {
    height: 300px;
  }
  .message .button {
    width: 100%;
    margin: 0px 20% 40px 20%;
    margin-bottom: 40px;
  }
  .message .button img {
    width: 100%;
  }
  
/*  .message .button4 {
    width: 40%;
    margin: 0px 5% 40px 5%;
    margin-bottom: 40px;
  }
  .message .button4 img {
    width: 100%;
  }*/
  .iken {
    margin-right: 30%;
  }
  .messageb2 {
  width: 55% !important;
  padding: 15px 10px 15px 10px;
  border-radius: 5px; /*角丸の指定。ほんの少し角が丸くなります。*/
  overflow: hidden; /*角丸から内容が飛び出ないよう、飛び出た部分を非表示にする指定*/
  align-items: center; /*中のブロックの縦並びの揃え方*/
  background: #E0A500; /*背景色*/
  color: #fff;
  text-align: center;
  font-size: 115%;
  line-height: 1;
  margin: 0 auto 0px;
  
}
}
/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px) {
  /*全体の設定
---------------------------------------------------------------------------*/
  body {
    font-size: 4vw;
  }
  #menubar-s ul li a, #menubar_hdr2 {
    padding: 13px 20px 13px 20px;
    font-size: 80%;
    /*文字色*/
  }
  /*コンテンツ
---------------------------------------------------------------------------*/
  /*h1タグ*/
  #contents h1 {
    margin-bottom: 30px;
  }
  /*h3タグ*/
  #contents h3 {
    margin-bottom: 20px;
  }
  #contents section + section {
    margin-top: 30px;
  }
  /*list（worksページで使っている横長ブロック）
---------------------------------------------------------------------------*/
  /*ボックス内のボタン（共通）*/
  .btn1 a {
    padding: 5px 10px; /*上下、左右へのボタン内の余白*/
  }
  /*テーブル（ta1）
---------------------------------------------------------------------------*/
  /*ta1設定*/
  .ta1, .ta1 td, .ta1 th {
    padding: 5px; /*ボックス内の余白*/
  }
  /*ta1の左側ボックス*/
  .ta1 th {
    width: 100px;
  }
  /*その他
---------------------------------------------------------------------------*/
  .ws, .wl {
    width: 94%;
  }
  .fl {
    float: none;
  }
  .fr {
    float: none;
  }
  .big1 {
    font-size: 16px;
  }
  .sh {
    display: block;
  }
  .pc {
    display: none;
  }
  main .item1 img {
    width: 100%;
    /*7/7        height: 280px;*/
  }
  main .item1 {
    width: 100%;
    margin: 0px 2.6% 40px 2.6%;
    margin-bottom: 30px;
  }
  body.noindex img.mv {
    height: 200px;
  }
  body.noindex img.sub {
    height: 250px;
  }
  footer {
    font-size: 70%;
  }
  .graph {
    width: 120%;
  }
  .iken {
    margin-right: 41%;
  }
  .narrow {
    width: 85%;
    
  }
td.response + td.prof{
		margin-left: 73%;
	}
.narrow {
  width: 100%;
}
.narrow img {
  width: 45%;

}
}
/*プリントしない
---------------------------------------------------------------------------*/
@media print {
  .search, footer #footermenu, footer #footer2 {
    display: none;
  }
}