﻿@charset "utf-8";

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*PC・タブレット・スマホ共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666; /*全体の文字色*/
	background: #fffafa; /*背景色、背景画像の読み込み*/
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; /*フォント種類*/
	font-size: 14px; /*文字サイズ*/
	line-height: 2; /*行間*/
	-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%;}
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;}
iframe {width: 100%;}

/*リンクの全般設定
---------------------------------------------------------------------------*/
a {
    color: #666;	/*リンクテキストの色*/
}

a:hover {
	color: #ff4d72;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1200px; /*コンテナー幅*/
	margin: 0 auto;
	height: 100%;
	display: flex; /*flexボックスを使う指定*/
	flex-direction: column; /*子要素を縦並びにする*/
	justify-content: space-between; /*並びかたの種類の指定*/
}

/*ヘッダー ロゴ画像
---------------------------------------------------------------------------*/
header #logo {
	width: 600px; /*画像の幅*/
	margin: 40px auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*---メニュー１個あたりの設定---*/
nav#menubar ul li,
nav#menubar-s ul li {
	float: left;	/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 15%;		/*メニュー幅*/
	margin-left: 1.5%;	/*メニュー同士の隙間*/
	font-size: 16px;	/*文字サイズ*/
}

/*---各メニューの写真部分の設定---*/
nav#menubar ul li img,
nav#menubar-s ul li img {
	width: 90%;		/*上の15%の幅に対しての写真幅*/
	height: auto;
	-webkit-box-shadow: 1px 2px 10px rgba(0,0,0,0.3);	/*影の設定。右へ、下へ、ぼかし幅。rgba以降の3つの数字がRGBでの色（この場合は黒）。最後の小数点の数字が透明度30%の事。*/
	box-shadow: 1px 2px 10px rgba(0,0,0,0.3);			/*同上*/
	border: 7px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 50%;		/*角丸の設定*/
	margin-bottom: 10px;	/*写真とメニューテキストの間にとるスペース*/
}

/*---各メニューの写真部分のマウスオン時の設定---*/
nav#menubar ul li:hover img,
nav#menubar-s ul li:hover img {
	border: 7px solid #ed84b3;	/*枠線の幅、線種、色*/
}

/*---テキスト部分の設定---*/
nav#menubar ul li a,
nav#menubar-s ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
}

nav#menubar ul li a span,
nav#menubar-s ul li a span {
	display: block;
	word-wrap: break-word;
	border-radius: 100px;	/*角丸の設定。大き目に設定しておけばOK。*/
	line-height: 1;			/*高さ*/
	background: rgba(0,0,0,0.3);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは30%。*/
	margin-bottom: 30px;	/*下のコンテンツブロックとの余白*/
	padding: 4px;
}

/*---テキスト部分のマウスオン時の設定。---*/
nav#menubar ul li a:hover span,
nav#menubar-s ul li a:hover span {
	color: #FFF;	/*文字色*/
	background: rgba(237,132,179,0.6);	/*背景色。左の3つの数字がRGBでの色。0,0,0は黒。最後の小数点の数字が透明度。ここでは60%。*/
}

/*---小さい端末用(画面幅800px以下)メニューを表示させない---*/
#menubar-s {
	display: none;
}

/*---800px以下のメニュー見出し（MENU）を表示させない---*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	overflow: hidden;
	border-radius: 30px; /*角丸のサイズ*/
	background: #FFF; /*背景色*/
	padding: 2%; /*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 6px rgba(0,0,0,0.2); /*影の設定。右、下、ぼかし幅*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2); /*同上*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	width: 100%;	/*メインコンテンツ幅*/
	padding-bottom: 40px;
}

#main h2 {
	clear: both;
	margin-bottom: 15px;
	background: #ed84b3;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#ed84b3, #ffb6c1);	/*グラデーション*/
	background: linear-gradient(#ed84b3, #ffb6c1);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #ccc;			/*同上*/
	padding: 10px 10px 10px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 50px;	/*角丸のサイズ。大きめにしておけばOK。*/
	color: #FFF;	/*文字色*/
}

#main h3 {
	clear: both;
	margin-bottom: 15px;
	background: #e5e5e5;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e5e5e5);	/*グラデーション*/
	background: linear-gradient(#FFF, #e5e5e5);			/*同上*/
	-webkit-box-shadow: 0px 2px 5px #dcdcdc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #dcdcdc;			/*同上*/
	padding: 9px 10px 9px 20px;	/*左から、上、右、下、左側への余白*/
	border-radius: 50px;		/*角丸のサイズ。大きめにしておけばOK。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}

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

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

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 15px 0px;
}

footer .pr {
	display: block;
	font-size: 80%;
}

footer a {
	text-decoration: none;
}

/*テーブル1
---------------------------------------------------------------------------*/
.ta1 {
	width: 96%;
	margin: 0px auto 15px;
	word-break: break-all;
}

.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}

/*---テーブル内の右側---*/
.ta1 td {
	padding: 10px;
}

/*---テーブル内の左側の見出し部分---*/
.ta1 th {
	background: #e5e5e5;	/*背景色*/
	width: 25%;		/*幅*/
	padding: 10px;
	text-align: center;
}

/*---テーブル１行目に入った見出し部分---*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	background: #FFCC33;	/*背景色*/
}

/*テーブル1new
---------------------------------------------------------------------------*/
.ta1new {
	width: 96%;
	margin: 0px auto 15px;
	word-break: break-all;
}

.ta1new, .ta1new td, .ta1new th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}

/*---テーブル内の右側---*/
.ta1new td {
	padding: 10px;
}

/*---テーブル内の左側の見出し部分---*/
.ta1new th {
	background: #e5e5e5;	/*背景色*/
	width: 25%;		/*幅*/
	padding: 10px;
	text-align: center;
}

.ta1new th.thsrc {
	background: #FFF; /*背景色*/
	width: 25%; /*幅*/
	padding: 10px;
	text-align: left;
}

/*作品紹介ページの表紙スクロール
---------------------------------------------------------------------------*/
#covercontainer {
	max-width: 1200px; /*最大幅。これ以上広がらないように。*/
	margin: 0px 10px 15px 10px;
	height: 100%;
	display: flex; /*flexボックスを使う指定*/
	flex-direction: column; /*子要素を縦並びにする*/
	justify-content: space-between; /*並びかたの種類の指定*/
}

/*---coverlistボックスを囲むボックス---*/
.coverlist-covercontainer {
	display: flex; /*flexボックスを使う指定*/
	flex-wrap: wrap; /*折り返す指定*/
	justify-content: space-between; /*並びかたの種類の指定*/
	flex-direction: column; /*子要素を縦並びにする*/
}

/*---1個あたりのボックスの指定---*/
.coverlist {
	display: flex; /*flexボックスを使う指定*/
	flex-direction: column; /*子要素を縦並びにする*/
	justify-content: space-between; /*並びかたの種類の指定*/
	margin-bottom: 30px; /*ボックス同士の上下間の余白*/
	border: 1px solid #ccc; /*枠線の幅、線種、色*/
	padding: 15px; /*ボックス内の余白*/
	background: #fff; /*背景色。*/
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1); /*ボックスの影。右へ、下へ、ぼかし幅の順。0,0,0は黒の事で0.1は色が10%出た状態*/
}

/*---IE対策---*/
.coverlist div {
	min-height: 0%;
}

/*---slickを使用したサムネイルの横スライドショー---*/
/*---ボックス全体---*/
.coverpickup {
	position: relative;
	background: #f5f5f5; /*背景色*/
	padding: 10px 5px; /*上下、左右へのボックス内の余白*/
}

/*---1個あたりのボックス設定---*/
.coverpickup .coverlist {
    margin: 0 5px; /*上下、左右へのボックスの外側に空けるスペース。２つ目の数字がボックス同士の余白*/
}

/*---三角矢印の共通設定---*/
.slick-arrow {
	position: absolute;
	z-index: 1;
	bottom: 45%; /*下からの配置場所*/
	background: rgba(0,0,0,0.5); /*背景色。0,0,0は黒の事で0.5は色が50%出た状態*/
	padding: 2px 7px; /*上下、左右へのボックス内の余白*/
	border-radius: 5px; /*角を丸くする指定*/
}

.slick-arrow:hover {
	cursor: pointer;
	opacity: 0.8;
}

/*---三角矢印の形、色、サイズ---*/
.slick-prev::after,
.slick-next::after {
	display: block;
	content: "▼"; /*この形を出力する。このままだと下向き矢印*/
	color: #fff; /*三角の色*/
	font-size: 0.5rem; /*三角のサイズ*/
}

/*---左側の三角---*/
.slick-prev {
	left: 0px; /*左からの配置場所*/
}

/*---左側の三角を回転させる---*/
.slick-prev::after {
	transform: rotate(90deg);
}

/*---右側の三角---*/
.slick-next {
	right: 0px; /*右からの配置場所*/
}

/*---右側の三角を回転させる---*/
.slick-next::after {
	transform: rotate(-90deg);
}

/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {

/*---coverlistボックスを囲むボックス---*/
.coverlist-covercontainer {
	flex-direction: row;	/*子要素を横並びにする*/
}

/*---coverlistボックス。1個あたりのボックスの指定---*/
.coverlist {
	width: 49%;	/*ボックスの幅*/
}

/*---左側の三角---*/
.slick-prev {
	left: -15px;	/*左からの配置場所*/
}
/*---右側の三角---*/
.slick-next {
	right: -15px;	/*右からの配置場所*/
}
}	/*消すな*/

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}

#pagetop a {
	display: block;
	float: right;
	text-decoration: none;
	text-align: center;
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #ed84b3;/*背景色*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*角丸のサイズ*/
}

#pagetop a:hover {
	background: #ff1493;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #dcdcdc;padding: 4px;border-radius: 4px;}
.mb1em,.mb15 {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #ff4d72;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
img.fl {margin: 0px 10px 10px 0px;float: left;}
img.fr {margin: 0px 0px 10px 10px;float: left;}

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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	margin: 2%;	/*外側に少し余白を作る*/
}

}

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

/*ヘッダー
---------------------------------------------------------------------------*/
header {
	margin-bottom: 20px;
}

header #logo {
	width: 80%;	/*画像の幅*/
	margin: 20px auto 10px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*---小さい端末用(画面幅800px以下)メニューを非表示から表示に切り替える---*/
#menubar-s {
	display: block;
}

/*---メニュー１個あたりの設定---*/
nav#menubar-s ul li {
	float: left;		/*メニューを左側に回り込み*/
	text-align: center;	/*内容をセンタリング*/
	width: 28%;			/*メニュー幅*/
	margin-left: 4%;	/*メニュー同士の隙間*/
	font-size: 12px;	/*文字サイズ*/
}

/*---大きな端末用(画面幅801px以上)メニューを非表示にする---*/
#menubar {
	display: none;
}

}

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

/*ヘッダー ロゴ画像
---------------------------------------------------------------------------*/
header #logo {
	width: 100%;	/*画像の幅*/
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 95%;}
