﻿@charset "utf-8";

/*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;
}

/*menu内のブロック
---------------------------------------------------------------------------*/
/*---各ボックスの設定---*/
#main .list {
	height: 350px;	/*ボックスの高さ*/
	width: 25%;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*グラデーション*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 2%;	/*ボックス内の余白*/
	float: left;
	margin: 0px 2% 20px;
	border: 1px solid #CCC;
	position: relative;
}

/*---ボックス内の段落タグ設定---*/
#main .list p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
}

/*---ボックス内のh4タグ設定---*/
#main .list h4 {
	color: #ff4d72;	/*文字色*/
	border-bottom: 2px dotted #ff4d72;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}

/*---ボックス内の写真---*/
#main .list figure img {
	margin-bottom: 10px;
}

/*---ふきだしアイコンの位置---*/
#main .list img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

#main .list p.right1 {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 12px;	/*文字サイズ*/
	text-align: right;
}

#main .list a.blo1 {
	display: block;
	text-decoration: none;
}

/*menu内のページ内メニュー（CMS用）
---------------------------------------------------------------------------*/
ul.navmenu {
	padding: 30px 0px;
	text-align: center;
}

ul.navmenu li {
	display: inline;
}

ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-left: 15px;
	text-decoration: none;
}

ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

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

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

footer a {
	text-decoration: none;
}

/*トップページ「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*---ブロック全体の設定---*/
#new dl {
	overflow: auto; /*autoなら高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 20px 5px 20px; /*上右下左*/
}

/*---日付設定---*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}

/*---記事設定---*/
#new dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル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;
}

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

.ta1words, .ta1words th, .ta1words td {
	border: none;
}

.ta1words th {
	background: #e5e5e5; /*背景色*/
	padding: 12px;
	text-align: left;
}

.ta1words td {
	padding: 15px;
}

.ta1wordsmokuji {
	width: 92%;
	margin: 0px auto 15px;
	word-break: break-all;
	font-size: 13px;
	text-align: center;
	border: none;

}

.ta1wordsmokuji th {
	padding: 5px;
	border: 1px #000000 solid;
}

.ta1wordsmokuji td {
    width: 33%; /*幅*/
	padding: 22px;
	border-bottom: none;
}

/*作品一覧ページのテーブル設定
---------------------------------------------------------------------------*/
.ta2 {
	width: 96%;
	margin: 0px auto 15px;
}

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

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

/*作品紹介ページ内の購入リンク用テーブル
---------------------------------------------------------------------------*/
.ta3 {
	width: 96%;
	margin: 0px auto 15px;
	word-break: break-all;
	border: none;
}

.ta3 tr {
	display: inline-block;
	margin: 5px 5px 5px 5px;
}

.ta3 th {
	border: none;
}

.ta3 td {
	width: auto;
	padding: 0px;
	text-align: center;
	border: 2px solid #CCC;
}

.ta3 td:hover{
	border: 2px solid #ed84b3
}

/*ギャラリー内でのレスポンシブな横並び画像
---------------------------------------------------------------------------*/
.pic2 {
	margin: auto;
	text-align: left;
	width: 100%;
}

.pic2_left {
	display: inline-block;
	padding: 10px;
}

.pic2_right {
	display: inline-block;
	padding: 10px;
}

.pic2 h4 {
	padding: 6px 7px 6px 17px; /*左から、上、右、下、左側への余白*/
}

/*ギャラリー内でのレスポンシブな横並びGoogleMap
---------------------------------------------------------------------------*/
.gmap {
	margin: auto;
	text-align: left;
	width: 100%;
}

.gmap h4 {
	padding: 6px 7px 6px 17px; /*左から、上、右、下、左側への余白*/
}

.gmap_left {
	display: inline-block;
	padding: 10px;
	vertical-align: top;
}

.gmap_right {
	display: inline-block;
	position: relative;
	height: 0;
	margin: 0;
	padding-bottom: 395px;
	padding-right: 520px;
	overflow: hidden;
}

.gmap_right iframe {
	position: absolute;
	top: 10px;
	left: 10px;
	width: 500px;
	height: 375px;
	border: 0;
}

.gmap p {
	clear: both;
	padding: 0px 20px 14px;	/*上、左右、下への余白*/
}

.gmap::after {
	display: block;
	clear: both;
	content: "";
}

/*---スクリーンサイズが600px以下の場合---*/
@media screen and (max-width: 600px) {
  .gmap_right {
	display: inline-block;
	position: relative;
	height: 0;
	margin: 0;
	padding-bottom: 76%;
	padding-right: 100%;
  }

  .gmap_right iframe {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	width: 93.8%;
	height: 92.6%;
	border: 0;
  }
}

/*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;		/*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #ed84b3;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*その他
---------------------------------------------------------------------------*/
.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;}
.color2 {color: #c0c0c0;}
.color3 {color: #ffd700;}
.color4 {color: #008000;}
.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;
}

/*メニューブロックの各ボックス設定
---------------------------------------------------------------------------*/
#main .list {
	width: 41%;	/*ボックスの幅*/
}

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

}


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

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

/*メニューブロックの各ボックス設定
---------------------------------------------------------------------------*/
#main .list {
	float: none;
	width: auto;
	height: auto;
	margin: 0;
	margin-bottom: 20px;
	padding: 5%;	/*ボックス内の余白*/
}

/*menu内のページ内メニュー（CMS用）
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 0px;
	padding-bottom: 10px;
	text-align: left;
}

ul.navmenu li {
	display: block;
}

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

}
