@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 1.8;		/*行間*/
	background: #dcdcdc;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,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 {
       width: 100%;   /* ※A */
   max-width: 700px;  /* ※B */
   min-width: 240px;  /* ※C */
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*▼リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #00a0de;		/*リンクテキストの色*/
}
a:hover {
	color: #87ceed;			/*マウスオン時の文字色*/
	text-decoration: none;	/*下線をけす*/
}

/*▼ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 450px;	/*pxにすること、%にすると画像リンク後の挙動がおかしくなる！*/
	overflow: auto;
	position: relative;
	background: url(../img/052.jpg) no-repeat center center / cover;
}


/*▼漫画ボタン
---------------------------------------------------------------------------*/
.btn-flat-border {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  text-decoration: none;
  color: #67c5ff;
  border: solid 2px #67c5ff;
  transition: .4s;
  background: #ffffff;
}

.btn-flat-border:hover {
  background: #67c5ff;
  color: white;
}

.btn-clap {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  text-decoration: none;
  color: #ff69b4;
  border: solid 2px #ff69b4;
  transition: .4s;
  background: #ffffff;
}

.btn-clap:hover {
  background: #ff69b4;
  color: white;
}

/*▼グローバルメニュー
---------------------------------------------------------------------------*/
#global-nav {
	background: #333; /*メニューサイドの背景色*/
   opacity: 0.66; /* 55％不透明度(＝45％透過) */
	width: 100%;
}

#global-nav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

#global-nav .inner {
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 768px;
}
.global-list {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.global-item {
	border-left: 1px solid #fff;
	width: 25%;
}

.global-item:last-child {
	border-right: 1px solid #fff;
	margin-right: 0;
}

.global-item a {
	background: #333;
	color: #fff;
	font-weight:bold;
	display: block;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
}

.global-item a:hover {
	background: #737373;
	color: #fff;
}

.link-position {
  display: block;
  position: relative;
  top: -40px;
}



/*▼コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
}

/*▼見出し・コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 15px 3%;
}
#contents section + section {
	padding-top: 15px;
}
/*▼コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 16px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
        font-weight:bold;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
/*ここからボーダー*/
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, rgba(227, 226, 223, 1) 2px, rgba(227, 226, 223, 1) 6px );
/*ここまでボーダー*/
	color: #333;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}

/*▼コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;
	font-size: 16px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
        font-weight:bold;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
/*ここからボーダー*/
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 2px, rgba(227, 225, 209, 1) 2px, rgba(227, 225, 209, 1) 6px );
/*ここまでボーダー*/
	color: #333;			/*文字色*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
}
/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #999;
}
/*h4見出しの設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

/*▼更新履歴
---------------------------------------------------------------------------*/
#new dl {
	padding-left: 10px;
	margin-bottom: 15px;
}
.update {
  background: #f5f5f5;
  padding: 5px;
  width: 95%;
  overflow: hidden;
  font-size: 14px;
  margin: 5px auto;
  border-radius: 4px;
}

.update .inner {
  height: 100px;
  overflow-y: scroll;
}

.update .inner::-webkit-scrollbar {
  width: 5px;
}

.update .inner::-webkit-scrollbar-track {
  background: #dcdcdc;
}

.update .inner::-webkit-scrollbar-thumb {
  background: #ffffff;
  border-radius: 2px;
}

.update .inner dt {
  width: 100px;
clear: left;
  float: left;
}

.update .inner dd {
  width: calc(100% - 100px);
float: left;
}

@media (max-width: 575px) {
  .update .inner {
    font-size: 12px;
  }
  .update .inner dt {
    float: left;
  }
}

/*▼イラスト
---------------------------------------------------------------------------*/
/*イラストサムネイル*/
.container2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, 100px);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.item2 {
  height: 100px;
  width: 100px;
  border: 1px solid #dcdfe2;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.item2 img:hover {
  filter: opacity(70%);
  cursor: pointer;
}

.new2 {
  position: relative;
  }

.new2 div.text2 {
  position: absolute;
  /* ここから背景のストライプ */
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 1px, rgba(227, 226, 223, 1) 1px, rgba(227, 226, 223, 1) 3px );
  /* ここまで背景のストライプ */
  padding: 0 5px;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: bold;
 }

@media (max-width: 575px) {
.container2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, 70px);
  grid-row-gap: 5px;
  grid-column-gap: 5px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  }
.item2 {
    height: 70px;
    width: 70px;
  }
}

/*▼COMIC
---------------------------------------------------------------------------*/
/*COMICサムネイル*/
.container3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.item3 {
  height: 100px;
  width: 200px;
  border: 2px solid #000000;
  border-radius: 3px;
  -o-object-fit: cover;
     object-fit: cover;
}

.item3 img:hover {
  filter: opacity(70%);
  cursor: pointer;
}

.new3 {
  position: relative;
  }

.new3 div.text2 {
  position: absolute;
  /* ここから背景のストライプ */
background-size: auto auto;
background-color: rgba(255, 255, 255, 1);
background-image: repeating-linear-gradient(135deg, transparent, transparent 1px, rgba(227, 226, 223, 1) 1px, rgba(227, 226, 223, 1) 3px );
  /* ここまで背景のストライプ */
  padding: 0 5px;
  left: 0;
  top: 0;
  font-size: 11px;
  font-weight: bold;
 }

@media (max-width: 575px) {
.container3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, 160px);
  grid-row-gap: 5px;
  grid-column-gap: 5px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  }
.item3 {
    height: 80px;
    width: 160px;
  }
}

/*▼オフライン
---------------------------------------------------------------------------*/
/*新刊蛍光ペン*/
mark {
	background: linear-gradient(transparent 80%, #FFF100 0%);
}

/*実験*/
.cards {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards li {
  border: 2px solid #ccc;	/*本のブロック線・2つ以上で2px推奨*/
  border-radius:5px;
  background-color: #fff;
  color: #333;
  flex: 1 1 200px;
  padding:0;
}

.cards h4 {		/*本のタイトル*/
  background-color: #fff;
  margin: 0;
  padding: 5px;
	text-align: center;		/*文字をセンタリング*/

}

.cards h5 {		/*通販・サンプルボタンエリア*/
  background-color: #fff;
  margin: 0;
  padding: 5px;
	text-align: center;		/*文字をセンタリング*/

}

.cards p {
  padding: 5px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);		/*@,1fr @=カラム数*/
  /*grid-template-columns: repeat(auto-fill, minmax(200px 1fr));*/
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-content: center;
  width: 80%;
  margin: 0 auto;

}

@media all and (max-width: 767px) {
.cards {
    font-size: 13px;
  }
}


/*テーブル*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}

table td {
  width: 40%;
  background: #fff;
  border: 1px solid #ccc;
  box-sizing: border-box;
  padding: 10px;
  vertical-align: top;
  text-align: center;
}

@media all and (max-width: 767px) {
  table th, table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table tr:last-child td:last-child {
    border-bottom: 0px solid #ccc;
  }
}

/*▼既刊表紙・影*/
.bookimg {
	padding: 0px 0px 10px;	/*上、左右、下への余白*/
}
/*▼本のタイトル*/
.hon {
  font-size: 15px;
  font-weight:bold;
}

/*▼Sampleボタン*/
.btn-flat-simple {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #fff;
  background: #00bfff;
  transition: .4s;
  border-radius: 3px;
}
.btn-flat-simple:hover {
  background: #87ceeb;
  color: white;
}
/*▼通販ボタン*/
.btn-flat-tora {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #333333;
  background: #ffd700;
  transition: .4s;
  border-radius: 3px;
}
.btn-flat-tora:hover {
  background: #ffff00;
  color: #333333;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
	background: #dfdfdf;	/*背景色*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
	background: #dfdfdf;	/*背景色*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 20px;
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #999;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 30%;			/*幅*/
}

/*▼PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: #555;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.5);	/*背景色。0,0,0は黒の事で、0.5は色が50%出た状態の事。*/
	color: #fff;		/*文字色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*マウスオン時の背景色*/
}

/*▼フッター設定
---------------------------------------------------------------------------*/
#footer{
	width: 100%;
	height: 40px;
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
	background-color: #535353;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページの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;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*▼その他
---------------------------------------------------------------------------*/
.look {background: #fff;border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #ff4765;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.cb {text-align: center; 
font-weight:bold; }
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
img.waku { border: 1px #000000 solid; }
.md {font-weight:bold;
	line-height: 0;  /*行間*/
	text-decoration: underline; }
.bb{ font-weight:bold; }/*太字*/

/*BKM*/
.bkm {
  display: grid;
  grid-template-columns: repeat(auto-fill, 200px);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.bkmitem {
  width: 200px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}

.bkm img:hover {
  filter: opacity(70%);
  cursor: pointer;
}
/*プライバシーポリシー
---------------------------------------------------------------------------*/
.details-wrapper {
	padding: 0px 20px 15px;	/*上、左右、下への余白*/
}
.summary-item {
  color: #4682b4;
}


/*▼めるふぉ
------------------------------------------------------------------------------------------------------------------------------------------------------*/
#formWrap {
	width:550px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:16px;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
	width:95%;
	margin:0 auto;
}
table.formTable th, table.formTable td {
	width:auto;
	display:block;
}
table.formTable th {
	margin-top:5px;
	border-bottom:0;
}
form input[type="text"], form textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
	display:block;
	width:250px;
	height:40px;
}
}

/*▼画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 30%;	/*画像の幅*/
	left: 35%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

}

/*▼画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 50%;	/*画像の幅*/
	left: 25%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

/*▼コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	font-size: 15px;
	font-size: 3.4vw;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;	/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 16px;	/*文字サイズ*/
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*h4見出しの設定*/
.list h4 {
	font-size: 13px;	/*文字サイズ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 35px;
}
ol {
	padding: 0 0px 20px 35px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 22px;letter-spacing: normal;}

}
