@charset "utf-8";

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/

body, html {
  font-size: 62.5%;
  /* 10px */
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #ffffff;
}

body {
  color: #444444;
  /*全体の文字色*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  font-size: 15px;
  font-size: 1.5rem;
  /*文字サイズ。デフォルトは14px*/
  line-height: 1.95;
  /*行間。デフォルトは2*/
  background: #ffffff;
  min-height: 100%;
  height: 100%;
  overflow-x: hidden;
  /* 文字サイズ固定 */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure, form {
  margin: 0px;
  padding: 0px;
}

ul {
  list-style-type: none;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  text-decoration: none;
}

.imgyohaku {
  margin: 20px 0px 0px 0px;
  background: #ffffff;
}

table {
  border-collapse: collapse;
  font-size: 100%;
  border-spacing: 0;
}


/* iframe {width: 100%; overflow:hidden; border: none; }--*/

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  overflow-y: hidden;
  overflow: scroll;
  -ms-overflow-style: none;
}

iframe::-webkit-scrollbar {
  display: none;
}

#box {
  width: hogehoge;
  height: hogehoge;
}

#box iframe {
  width: hogehoge;
  height: hogehoge;
}




/* = Selected Text
----------------------------------------------- */

::selection {
  background: #EAE6FF;
  /* Safari */
}

::-moz-selection {
  background: #EAE6FF;
  /* Firefox */
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/

a {
  color: #00AAE3;
  /*リンクテキストの色*/
  -webkit-transition: 0.1s;
  /*マウスオン時の移り変わるまでの時間設定。0.1秒。*/
  transition: 0.1s;
  /*同上*/
  text-decoration: none;
  /*リンクの下線を消す設定*/
  -webkit-touch-callout: none;
  /*スマホ用hover設定*/
  -webkit-tap-highlight-color: (0, 0, 0, 0);
  /*スマホ用hover設定*/
}

a:hover {
  color: #fff;
  /*マウスオン時の文字色*/
  background: #ABE2FF;
  /*マウスオン時の背景色*/
}

a img:hover {
  opacity: 0.4;
  /*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
  -webkit-transition: 0.1s;
  /*マウスオン時の移り変わるまでの時間設定*/
  transition: 0.1s;
  /*同上*/
  background: #ffffff;
}


  /* アイコンの色 */
.my-color {
 color:#ABE2FF;
 font-size: 1em ;
}

.my-color a:hover {
	color:#ffffff;
  -webkit-transition: 0.1s;
  /*マウスオン時の移り変わるまでの時間設定*/
  transition: 0.1s;
  /*同上*/
  text-decoration: none;
  /*リンクの下線を消す設定*/
  -webkit-touch-callout: none;
  /*スマホ用hover設定*/
  -webkit-tap-highlight-color: (0, 0, 0, 0);
  /*スマホ用hover設定*/
}

  /* アイコンの色 */
.my-icon_big {
 color:#ABE2FF;
 font-size: 1.5em ;
}

.my-icon_big a:hover {
	color:#ffffff;
  -webkit-transition: 0.1s;
  /*マウスオン時の移り変わるまでの時間設定*/
  transition: 0.1s;
  /*同上*/
  text-decoration: none;
  /*リンクの下線を消す設定*/
  -webkit-touch-callout: none;
  /*スマホ用hover設定*/
  -webkit-tap-highlight-color: (0, 0, 0, 0);
  /*スマホ用hover設定*/
}

/*コンテナー（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/

#container {
  position: relative;
  width: 100%;
  height: auto !important;
  height: 100%;
  min-height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  /*左右のコンテンツを中央に寄せる*/
  background: #ffffff;
}


/*メインコンテンツ
---------------------------------------------------------------------------*/

#main {
  overflow: hidden;
  float: right;
  /*右側に回り込み*/
  width: 55%;
  /*メインコンテンツ幅*/
  margin-top: 5%;
  /*上にあけるスペース*/
  margin-right: 15%;
  /*右にあけるスペース*/
  background: #fff;
  /*背景色（古いブラウザ用）*/
}


/*mainコンテンツのh2タグの設定*/

#main h2 {
  font-family: 'Quicksand', 'Noto Sans Japanese', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  clear: both;
  margin-bottom: 25px;
  font-size: 100%;
  color: #fff;
  /*文字色*/
  padding: 2px 15px;
  /*上下、左右への余白*/
  background: #b3b3b3;
  /*背景色*/
  border-radius: 2px;
  /*角丸のサイズ*/
  letter-spacing: 0.2em;
  /*文字間隔を少し広くとる設定*/
}


/*mainコンテンツのh2タグの１文字目への設定*/

#main h2::first-letter {
  border-left: 3px solid #A7DDFA;
  /*左線の幅・線種・色。*/
  padding-left: 10px;
  /*ボックス内の余白*/
}


/*mainコンテンツのh3タグの設定*/

#main h3 {
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  clear: both;
  margin-bottom: 25px;
  font-size: 100%;
  color: #fff;
  /*文字色*/
  padding: 2px 15px;
  /*上下、左右への余白*/
  background: #A7DDFA;
  /*背景色*/
  border: 0px solid #fff;
  /*線の幅・線種・色。*/
  border-radius: 2px;
  /*角丸のサイズ*/
  letter-spacing: 0.2em;
  /*文字間隔を少し広くとる設定*/
}


/*mainコンテンツのh3タグの１文字目への設定*/

#main h3::first-letter {
  border-left: 3px solid #b3b3b3;
  /*左線の幅・線種・色。*/
  padding-left: 10px;
  /*ボックス内の余白*/
}


/*mainコンテンツのlineタグ設定*/

#main h4 {
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  clear: both;
  margin-bottom: 15px;
  font-size: 115%;
  font-weight: 300;
  color: #000;
  /*文字色*/
  padding: 2px 15px;
  /*上下、左右への余白*/
  border-bottom: solid 1px #A7DDFA;
  letter-spacing: 0.2em;
  /*文字間隔を少し広くとる設定*/
  -webkit-text-stroke: 0.1px #000;
}


/*mainコンテンツのlineタグの１文字目への設定*/

#main h4::first-letter {
  border-left: 3px solid #A7DDFA;
  /*左線の幅・線種・色。*/
  padding-left: 10px;
  /*ボックス内の余白*/
}


/*mainコンテンツのh5タグの設定*/

#main h5 {
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  /*フォント種類*/
  clear: both;
  margin-bottom: 15px;
  font-size: 115%;
  color: #fff;
  /*文字色*/
  padding: 2px 15px;
  /*上下、左右への余白*/
  background: #A7DDFA;
  /*背景色*/
  border-radius: 2px;
  /*角丸のサイズ*/
  letter-spacing: 0.2em;
  /*文字間隔を少し広くとる設定*/
}


/*mainコンテンツのh5タグの１文字目への設定*/

#main h5::first-letter {
  border-left: 3px solid #b3b3b3;
  /*左線の幅・線種・色。*/
  padding-left: 10px;
  /*ボックス内の余白*/
}


/*mainコンテンツの段落タグ設定*/

#main p {
  padding: 7px 25px 14px;
  /*上、左右、下への余白*/
}

#main p+p {
  padding-top: 0px;
}

#main h2+p, #main h3+p {
  padding-top: 0px;
  margin-top: -5px;
}

ul.sample3 {
  list-style: none;
  width: 100%;
  padding-left: 0;
  margin-left: 0;
}

li.sample3 {
  list-style: none;
  float: left;
  border-color: #fff;
  border-style: ridge;
}

a.sample3 {
  display: block;
  background-color: #FFF;
  padding: 0.5em 1em;
}

a:hover.sample3 {
  background-color: #fff;
}


/*サブコンテンツ（左メニュー）
---------------------------------------------------------------------------*/

#sub {
  text-align: center;
  /*文字をセンタリング*/
  height: 100%;
  float: left;
  /*左に回り込み*/
  position: fixed;
  /*スクロールしても固定させる設定*/
  width: 20%;
  /*サブコンテンツ幅*/
  max-width: 400px;
  /*サブコンテンツ幅*/
  padding: 0px 0px 0px;
  /*上、左右、下へのボックス内の余白*/
  margin-top: 5%;
  /*ボックスの外側、上にあけるスペース*/
  margin-right: 7%;
  /*ボックスの外側、上にあけるスペース*/
}


/*サークルロゴ画像*/

#sub .logo img {
  width: 40%;
  max-width: 200px;
  display: block;
  margin: 0px auto 30px;
}


/*メインメニュー
---------------------------------------------------------------------------*/


/*メニューブロック*/

#menubar {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.2em;
}


/*メニュー１個あたりの設定*/

#menubar li a {
  text-decoration: none;
  display: inline-block;
  color: #000000;
  padding: 20px 0px 0px;
  border-bottom: 1px dashed transparent;
}

/*マウスオン時*/

#menubar li a:hover {
  border-bottom: 1px dashed #A7DDFA;
  letter-spacing: 0.5em;
  background: transparent;  /*背景色の影響を受けないよう透明(transparent)に*/
  -webkit-touch-callout: none;  /*スマホ用hover設定*/
  -webkit-tap-highlight-color: (0, 0, 0, 0);  /*スマホ用hover設定*/
}


/*小さい端末（800px以下）向けのロゴとメニューを表示させない*/

#sh {
    display: none;
  }


/*Novelsページ
---------------------------------------------------------------------------*/

.noveltitle-big {
  color: #000;
  font-size: 115%;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.noveltitle-nomal {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

h6 {
  font-size: 130%;
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #000;
  font-weight: 300;
  border-bottom: 1px solid #A7DDFA;
  margin: 0px auto 10% auto; 
  letter-spacing: 0.2em;
  padding: 0px 15px;
  -webkit-text-stroke: 0.1px #000;
}


/*mainコンテンツのh2タグの１文字目への設定*/

h6::first-letter {
  border-left: 3px solid #A7DDFA;
  padding-left: 10px;
}

.mini1n {
  font-size: 1.1rem;
  padding: 0px 0px 0px 10px;
}

.slash {
  color: #ccc;
  font-size: 1.1rem;
  padding: 5px 5px;
}

hr {
  height: 0;
  /*高さをリセット*/
  margin: 0;
  /*マージンをリセット*/
  padding: 0;
  /*パディングをリセット*/
  border: 0;
  /*ボーダーをリセット*/
}

hr.line1 {
  border-top: 1px dashed #ccc;
  background-color: #fff;
  margin-top: 5px;  /*上にあけるスペース*/
  margin-bottom: 5px;  /*下にあけるスペース*/
  text-align: center;  /*ボックス内をセンタリング*/
}

hr.line2 {
  border-top: 1px solid #ccc;
  background-color: #fff;
  text-align: center;  /*ボックス内をセンタリング*/
  margin-top: 60px;  /*上にあけるスペース*/
  margin-bottom: 60px;  /*下にあけるスペース*/
  max-width: 700px;  /*幅*/
}

.footer_novel_day {
  font-size: 1.2rem;
  color: #b3b3b3;
  letter-spacing: 0.1em;
  display: block;
 right: 10%;
}

#footer_novel {
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  border-top: 1px dashed #b3b3b3;
  text-align: center;
  font-weight: 300;
  margin: 0 auto 20% auto;
  padding: 25px 0px 0px 0px;
  color: #000;
}

#footer_novel li {
  padding: 0px 15px 30px 15px;
  display: inline;
}

.ten {
  -webkit-text-emphasis: filled dot #444;
  text-emphasis: filled dot #444;
}


/*Worksページ
---------------------------------------------------------------------------*/

.wrap {
  margin: 0px 25px 0px 25px;  /*ボックスの左右間にあけるスペース*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
    
	-js-display: flex;
}


/*在庫あり--------------------------------------------------*/

#main .list_new {
  width: 30%;  /*幅*/
  max-width: 420px;
  margin-bottom: 10%;  /*ボックスの下側スペース*/
  vertical-align: bottom;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.booktitle {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: -8px;
  border-bottom: 1px dashed #999;
  padding: 5px 0px;
  text-align: center;
}

.bookcp {
  margin-top: -10px;
  font-size: 12px;
  font-size: 1.25rem;
  text-align: center;
}

.booktext {
  margin-top: 10px;
  padding-top: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.7;
  border-top: 1px dashed #999;
}

a .booktitle {
  color: #000;  /*リンクテキストの色。基本のブルーは#00ACE6*/
  -webkit-transition: 0.1s;  /*マウスオン時の移り変わるまでの時間設定。0.1秒。*/
  transition: 0.1s; /*同上*/
}

a:hover .booktitle {
  color: #000;  /*マウスオン時の文字色*/
}


/*ボックス内のh3タグ*/

#main .list_new h3 {
  clear: both;
  margin-top: 10px;
  border-radius: 2px;  /*角丸のサイズ*/
  font-weight: bold;  /*hタグのデフォルトの太字を標準に*/
  font-size: 1.3rem;
  padding: 0px 10px;  /*上下・左右への余白*/
  color: #000;
  background: #f5f5f5;
  letter-spacing: 0.5rem;
  text-align: center;
}


/*mainコンテンツのh3タグの１文字目への設定*/

#main h3::first-letter {
  border-left: initial;
  padding-left: initial;
}


/*ボックス内の画像*/

#main .list figure img {
  border: 1px solid #ddd;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  width/***/
  : auto;
  /*IE8のみ適用*/
}


/*ボックス内の画像*/

#main .list_new figure img {
  border: 1px solid #ddd;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  width/***/
  : auto;
  /*IE8のみ適用*/
}


/*完売済既刊-----------------------------------------*/



/*ボックス１個あたりの設定*/

#main .list {
  width: 17%; /*幅*/
  max-width: 200px;
  margin-bottom: 5%;  /*ボックスの下側スペース*/
  vertical-align: bottom;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.booktitle-s {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-top: 5px;
  margin-bottom: -8px;
  border-radius: 2px;  /*角丸のサイズ*/
  border-bottom: 1px dashed #999;
  padding: 5px 0px;
}

.free-s {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding-right: 10px;
}


.bookcp-s {
  font-size: 11px;
  font-size: 1.1rem
}

a .booktitle-s {
  color: #000;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

a:hover .booktitle-s {
  color: #000;
}


/*ボックス内のh3タグ*/

#main .list h3 {
  clear: both;
  margin-top: 10px;
  border-radius: 2px;
  font-weight: bold;
  font-size: 11px;
  font-size: 1.1rem;
  padding: 0px 10px;
  color: #000;
  background: #f5f5f5;
  letter-spacing: 0.5rem;
  text-align: center;
}



/*お買いものリスト
---------------------------------------------------------------------------*/

.wrap-l {
  margin: 0px 5px 0px 5px;  /*ボックスの左右間にあけるスペース*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
    
	-js-display: flex;
}


#main .book_list {
  width: 24%;  /*幅*/
  margin-bottom: 3%;  /*ボックスの下側スペース*/
  vertical-align: bottom;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

/*ボックス内の画像*/

#main .book_list figure img {
  border: 1px solid #ddd;
  max-width: 100%;
  height: auto;
  width/***/
  : auto;
  /*IE8のみ適用*/
}




.booktitle-l {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2;
  margin-top: -8px;
  margin-bottom: -8px;
  border-bottom: 1px dashed #999;
  padding: 5px 0px;
  text-align: center;
}

.setumei-l {
  font-size: 8.5px;
  font-size: 0.85rem;
  text-align: center;
      margin-top: 8px;
  margin-bottom: 8px;
    letter-spacing: 0.05rem;
}

.setumei2-l {
  font-size: 8.5px;
  font-size: 0.85rem;
  text-align: left;
      margin-top: 8px;
  margin-bottom: 8px;
    letter-spacing: 0.05rem;
}


.bookcp-l {
  margin-top: -16px;
  font-size: 9px;
  font-size: 0.9rem;
  text-align: center;
      line-height: 1.8;
}



/*ボックス内のh3タグ*/

#main .book_list h3 {
  clear: both;
  margin-top: 10px;
  border-radius: 2px;  /*角丸のサイズ*/
  font-weight: bold;  /*hタグのデフォルトの太字を標準に*/
  font-size: 0.5rem;
  padding: 0px 4px;  /*上下・左右への余白*/
  color: #000;
  background: #f5f5f5;
  text-align: center;
}

.r18-l {
  background: #FFABB7;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 6px;
  font-size: 0.6rem;  /*文字サイズ*/
  padding: 1px 1px;
  border-radius: 2px;
  margin: 0px 2px;
}
.zanbu-l {
  background: #A7B4FA;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 6px;
  font-size: 0.6rem;  /*文字サイズ*/
  padding: 1px 1px;
  border-radius: 2px;
  margin: 0px 2px;
}


#booklist-top {
  font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  position: relative;
  top: 0;/*基準を画面の左上に*/
  left: 0;
  margin: 0;/*余白が入らないように*/
  text-align: center;
width: 100%;
background: #f5f5f5;
color: #000;
letter-spacing: 0.3rem;
}





/*フッター設定
---------------------------------------------------------------------------*/

footer {
  position: absolute;
  clear: both;
  min-width: 100%;
  text-align: center;
  left: 0px;
  bottom: 0px;
  background: #fff;
  color: #cfcfcf;
  border-top: 1px solid #cfcfcf;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: auto;
  padding: 10px 0;
}

footer a {
  text-decoration: none;
  border: none;
  color: #cfcfcf;
}

footer .pr {
  font-size: 10px;
  font-size: 1rem;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/


/*ブロック全体の設定*/

#new dl {
  padding-left: 25px;
  margin-bottom: 15px;
}


/*日付設定*/

#new dt {
  float: left;
  width: 8em;
}


/*記事設定*/

#new dd {
  padding-left: 8em;
  margin-bottom: 10px;
}


/*テーブル
---------------------------------------------------------------------------*/


/*ta1設定*/

.ta1 {
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
}

.ta1, .ta1 td, .ta1 th {
  border: 1px solid #ccc;
  padding: 15px;
  word-break: break-all;
}


/*テーブル１行目に入った見出し部分*/

.ta1 th.tamidashi {
  width: auto;
  text-align: left;
  background: #e5eef3;
}


/*ta1の左側ボックス*/

.ta1 th {
  width: 200px;
  text-align: center;
}


/*画像*/

.ta1 img {
  vertical-align: bottom;
}


/*PAGE TOP設定
---------------------------------------------------------------------------*/

#pagetop {
  clear: both;
  padding-top: 40px;
  padding-bottom: 100px;
}

#pagetop a {
  color: #fff; /*文字色*/
  font-size: 14px;
  font-size: 1.4rem; /*文字サイズ*/
  font-family: 'Quicksand', sans-serif;
  line-height: 30px; /*高さ*/
  text-decoration: none;
  display: block;
  float: right;
  margin-right: 30px;
  letter-spacing: 0.2em; /*文字間隔を少し広くとる設定*/
  background: #BFD900;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-filter: "alpha(opacity=80)";
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}


/*マウスオン時*/

#pagetop a:hover {
  color: #fff; /*文字色*/
  background: #FFABB7;  /*マウスオン時の背景色*/
  -webkit-touch-callout: none;  /*スマホ用hover設定*/
  -webkit-tap-highlight-color: (0, 0, 0, 0);  /*スマホ用hover設定*/
}


/*NEWアイコン、R18アイコン
---------------------------------------------------------------------------*/

.newicon {
  background: #BFD900;  /*背景色*/
  color: #ffffff;  /*文字色*/
  font-size: 12px;
  font-size: 1.2rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}

.r18 {
  background: #FFABB7;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 12px;
  font-size: 1.2rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}

.zanbu {
  background: #A7B4FA;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 12px;
  font-size: 1.2rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}


/*その他
---------------------------------------------------------------------------*/

.look {
  background: #dcdcdc;
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 0px 5px;
  border-radius: 4px;
}

.mb15, .mb1em {
  margin-bottom: 15px;
}

.clear {
  clear: both;
}

ul.disc {
  padding: 0em 25px 1em;
  list-style: disc;
}


/*文字色黒*/
.co0 {
  color: #000;
}


/*文字色ピンク*/
.co1 {
  color: #FF8093;
}

/*文字色うすグレー*/
.co2 {
  color: #b3b3b3;
}

/*文字色しろ*/
.co3 {
  color: #fff;
}

/*文字色みずいろ*/
.co4 {
  color: #ABE2FF;
}




.pr {
  font-size: 10px;
}

.wl {
  width: 96%;
}

.ws {
  width: 50%;
}

.c {
  text-align: center;
}

.r {
  text-align: right;
}

.l {
  text-align: left;
}

img.fr {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}

img.fl {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}

.big1 {
  font-size: 30px;
  letter-spacing: 0.2em;
}

.bold1 {
  text-shadow: 0.1px 0.5px 0 #444;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}


.mini0 {
  font-size: 0.9rem;
}

.mini1 {
  font-size: 1.1rem;
}

.mini2 {
  font-size: 1.2rem;
}

.mini3 {
  font-size: 1.3rem;
}

input#btn {
  background: #b3b3b3;
  color: #ffffff;
  margin: 10px;
  font-size: 1.4rem;
  border-radius: 10px;
  padding: 10px 20px;
  letter-spacing: 0.2em;
  border: none;
}

input#btn:hover {
  opacity: 0.5;
}

input#btn:active {
  opacity: 0.3;
}


/*画面幅1024px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:1024px) {
  #menubar {
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'Quicksand', sans-serif;
    letter-spacing: 0.2em;
  }

  /*メニュー１個あたりの設定*/
  #menubar li a {
    text-decoration: none;
    display: inline-block;
    color: #000000;
    padding: 10px 0px 0px;
    border-bottom: 1px dashed transparent;
  }

  #main .list h3 {
    font-size: 10px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
  }
}


/*画面幅768px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:768px) {
  body {
    font-size: 14px;
    font-size: 1.45rem;
    line-height: 1.9;
  }



  /*メインメニュー（小さい端末（768px以下））
---------------------------------------------------------------------------*/
  /*小さい端末（768px以下）向けのロゴを非表示から表示に切り替える*/


.wrap {
  margin: 0px 10px 0px 10px;  /*ボックスの左右間にあけるスペース*/
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
    
	-js-display: flex;
}




  /*メニューバー設定
---------------------------------------------------------------------------*/
/*小さい画面用メニュー*/
#sh {
    display: block;
    background: #fff;
  }

  /*ロゴ*/
  #sh img {
    max-width: 100%; 
    height:auto;
  }


.global-nav-header {
  margin: 5% 5% 1% 5%;
  padding: 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.2em;    /*文字間隔を少し広くとる設定*/
  list-style-type: none;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
}

.global-nav-header h1 {
	display:block;
    margin: auto;
    text-align:center;
    background-color:#fff;
}

.global-nav-header h1 a{
	display:block;
}

.global-nav-header h1 a:hover{
    background-color:#FFF;
    filter:alpha(opacity=40);
    -moz-opacity: 0.4;
      opacity: 0.4;
  /*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
  -webkit-transition: 0.1s;
  /*マウスオン時の移り変わるまでの時間設定*/
  transition: 0.1s;
  /*同上*/
}

.global-nav {
background-color:#f8f8f8;
  margin: 0 0 8% 0;
  padding: 0;
  border-top: 1px solid #b3b3b3;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: 'Quicksand', 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.2em;    /*文字間隔を少し広くとる設定*/
  list-style-type: none;
}



/*clearfix*/
.global-nav:after {
  content: "";
  clear: both;
  display: block;
}

.global-nav li {
  float: left;

  width: 99%;
  width: -moz-calc(100% / 3);
  width: -webkit-calc(100% / 3);
  width: calc(100% / 3);

  text-align: center;
  border-bottom: 1px solid #b3b3b3;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
    -moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
    transition: .2s;
}

*::-ms-backdrop, .global-nav li {
  width: 33.33%; /* IE11 */
}


/*偶数のli要素に適応*/
.global-nav li:nth-child(even) {
  border-right: 1px solid #b3b3b3;
}
/*奇数のli要素に適応*/
.global-nav li:nth-child(odd) {
  border-right: 1px solid #b3b3b3;
}
/*3番目のli要素に適応*/
.global-nav li:nth-child(3){
  border-right: none;
}
/*最後のli要素に適応*/
.global-nav li:nth-child(6){
  border-right: none;
}


.global-nav li a {
  display: block;
  line-height: 40px;
  color: #000;
  text-decoration: none;
}

.global-nav li a:hover {
    color: #ffffff;    /*マウスオン時の文字色*/
    background: #A7DDFA;    /*マウスオン時の背景色*/
    -webkit-transition: 0.1s;    /*マウスオン時の移り変わるまでの時間設定。0.1秒。*/
    transition: 0.1s;    /*同上*/
    -webkit-touch-callout: none;    /*スマホ用hover設定*/
    -webkit-tap-highlight-color: (0, 0, 0, 0);    /*スマホ用hover設定*/
}

.global-nav li img {
	margin-left: 5px;
	margin-top: 3px;
}

.global-nav li  a:hover {
    background: #A7DDFA;    /*マウスオン時の背景色*/
    -webkit-transition: 0.1s;    /*マウスオン時の移り変わるまでの時間設定。0.1秒。*/
    transition: 0.1s;    /*同上*/
    -webkit-touch-callout: none;    /*スマホ用hover設定*/
    -webkit-tap-highlight-color: (0, 0, 0, 0);    /*スマホ用hover設定*/
}


.my-color a:hover {
    background: #A7DDFA;    /*マウスオン時の背景色*/
    -webkit-transition: 0.1s;    /*マウスオン時の移り変わるまでの時間設定。0.1秒。*/
    transition: 0.1s;    /*同上*/
    -webkit-touch-callout: none;    /*スマホ用hover設定*/
    -webkit-tap-highlight-color: (0, 0, 0, 0);    /*スマホ用hover設定*/
}

  /*PC用ロゴとメニューを非表示にする*/
  #sub .logo, #menubar {
    display: none;
  }



  /*main,subコンテンツ
---------------------------------------------------------------------------*/
  #main, #sub {
    float: none;
    width: auto;
  }
  #main, #sub {
    margin: 2% 5% 2% 5%;
  }
  #sub {
    position: static;
    border: none;
    padding: 0px;
    background: transparent;
  }

#main p {
  padding: 7px 2% 14px 5%;
  /*上、右、下、左　への余白*/
}

/*ブロック全体の設定*/
#new dl {
  padding-left: 5%;
  margin-bottom: 14px;
}


/*日付設定*/
#new dt {
  float: left;
  width: 8em;
}


/*記事設定*/
#new dd {
  padding-left: 8em;
  margin-bottom: 10px;
}


  /*フッター設定
---------------------------------------------------------------------------*/
  .footer {
    position: static;
    letter-spacing: normal;
    font-size: 10px;
    font-size: 1rem;    /*文字サイズ*/
    line-height: 1;
  }

  .footer .pr {
    display: block;
  }

  /*Worksページ
---------------------------------------------------------------------------*/
  /*ボックス１個あたりの設定*/
  #main .list_new {
    width: 100%;
    margin-bottom: 30%;
  }

  #main .list {
    width: 30%;
  }

  .wrap {
    justify-content: space-around;
  }



/*NEWアイコン、R18アイコン
---------------------------------------------------------------------------*/

.newicon {
  background: #BFD900;  /*背景色*/
  color: #ffffff;  /*文字色*/
  font-size: 10px;
  font-size: 1rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}

.r18 {
  background: #FFABB7;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 10px;
  font-size: 1rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}

.zanbu {
  background: #A7B4FA;  /*背景色#fc71a9*/
  color: #ffffff;  /*文字色*/
  font-size: 10px;
  font-size: 1rem;  /*文字サイズ*/
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0px 5px;
  letter-spacing: 0.1rem;  /*文字間隔を少し広くとる設定*/
}



  /*その他
---------------------------------------------------------------------------*/
  body.s-n #sub {
    display: none;
  }
}


/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:480px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.9;
  }
  #main .list {
    width: 45%;
  }
  .mini1 {
    font-size: 1rem;
  }
  .mini2 {
    font-size: 1rem;
  }
  .mini3 {
    font-size: 1rem;
  }
  .mini1n {
    font-size: 1rem;
  }
}




/*画面幅360px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

@media screen and (max-width:360px) {
  body {
    font-size: 13px;
    font-size: 1.35rem;
    line-height: 1.9;
  }

  /*メインコンテンツ
---------------------------------------------------------------------------*/
  #main {
    padding: 5px;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }


  /*Worksページ
---------------------------------------------------------------------------*/
  /*ボックス１個あたりの設定*/
  #main .list {
    width: 45%;
  }

  /*テーブル
---------------------------------------------------------------------------*/
  /*テーブル内の左側*/
  .ta1 th {
    width: 100px;
    padding: 5px;
  }
  /*テーブル内の右側*/
  .ta1 td {
    width: auto;
    padding: 10px;
  }

  /*PAGE TOP設定
---------------------------------------------------------------------------*/
  #pagetop {
    padding-top: 0px;
    padding-bottom: 33%;
    font-size: 10px;
    font-size: 1rem;
  }

  /*その他
---------------------------------------------------------------------------*/
  .ws, .wl {
    width: 90%;
  }
  img.fr, img.fl {
    float: none;
    margin: 0;
    width: 100%;
  }
}
