@charset "utf-8";


/*style-opening.cssの読み込み*/
@import url(style-opening.css);


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

/*全体の設定
---------------------------------------------------------------------------*/
body,html {width: 100%;height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #111;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 17px;	/*文字サイズ*/
	line-height: 1.6;		/*行間*/
	background: url(../images/bg03.png) repeat ;	/*背景色*/
	-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 {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: rgba(102, 21, 47, 0.3);		/*リンクテキストの色*/
	transition: 0.4s;	/*マウスオン時の移り変わるまでの時間設定。0.4秒。*/
}
a:hover {
	color: rgba(102, 21, 47,0.7);		/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*header
---------------------------------------------------------------------------*/

/*ヘッダーブロック*/
header {
	text-align: center;	/*内容をセンタリング*/
	position: fixed;	/*スクロールしても固定表示する指定*/
z-index: 10;
	left: 0px;
	top:0px;
	width: 100%;
	height: auto;
	background: url(../images/bg_pink5.png) repeat ;	/*背景色（古いブラウザ用）*/
	opacity: 0.9;/*背景色。0,0,0は黒の事で、0.7は色が70%ついた状態の事。*/
}
/*ロゴ画像*/
header #logo img{
	width: 430px;		/*画像の幅*/
	height:auto
	 position: absolute;
	margin: 25px 2px 15px 2px;	/*上 左右　下に空けるスペース*/
	
}

/*headerアイコン（facebookやtwitterなどのアイコンブロック）
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	bottom: 15px;	/*ヘッダーブロックに対して下から15pxの場所に配置*/
}
/*アイコン１個あたりの設定*/
header .icon li {
	display: inline;	/*横並びにさせる指定*/
}
/*アイコン画像の設定*/
header .icon img {
	width: 30px;		/*画像の幅*/
	margin-left: 5px;	/*画像同士の余白*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー全体を囲むブロック*/
#menubar {
	position: relative;
	text-align: center;		/*文字をセンタリング*/
	font-size: 16px;		/*文字サイズ*/
	line-height:0.9;
	margin-top: 10px;		/*上に空けるスペース*/
	margin-bottom:20px;
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline;	/*横並びにする設定*/
}
#menubar li a {
	text-decoration: none;

	color: #fff;	/*文字色*/
	padding: 0px 0px 0px 0px;	/*上、右、下、左へのメニュー内の余白*/
	letter-spacing: -0.1em;		/*文字間隔*/
	margin: 0 0px;				/*上下、左右へのメニューの外側の余白*/
}
/*マウスオン時の設2*/
#menubar li a:hover {
	border-bottom: 2px solid #fff;	/*下線の幅、線種、色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*5
#menubar_hdr {display: none;}

/*inner
---------------------------------------------------------------------------*/
.inner {
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.5);	/*背景色。255,255,255は白の事で、0.8は色が80%ついた状態の事。*/
	width: auto;				/*幅*/
	margin: 0px 3% 25px 3%;	/*上、左右、下へのボックスの外側の余白。左右にautoを指定すると中央配置になる。*/
	padding: 40px 3% 20px 3%;			/*ボックス内の余白*/
	
	 border-style: solid;
	border-color:rgba(181,145,156,0.5);
	border-width:1px;
	border-radius: 20px;	/*角丸のサイズ。この行削除すれば角が尖った通常の四角形になります。*/
}
/*１つ目のブロック*/
.first {
	margin-top: 160px !important;	/*headerのheightの数字（100px）と、.innerのmarginの３つ目の数字（40px）を足した数にする。*/
}

/*contents
---------------------------------------------------------------------------*/
/*アニメーション設定------------------------*/
@keyframes contents {
/*0コマ目*/
0% {
	opacity: 0;
	top: 10px;
}
/*100コマ目*/
100% {
	opacity: 1;
	top: 0px;
}
}
/*contentsブロック*/
#contents {
	animation-duration: 1.0S;	/*アニメーションの実行時間。秒。*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを、完了後は最後のキーフレームを維持する*/
	animation-name: contents;	/*上のアニメーション設定で使っているkeyframesの名前。contents。*/
	animation-delay: 0.5s;		/*アニメーションを遅れて開始させる指定。0.5sは0.5秒の事。*/
	position: relative;
	margin: auto;
	width: auto;
	height: 100%;
	overflow: auto;
	border-box：border-box;
}
/*トップページのcontentsブロック*/
.home #contents {
	animation-delay: 0.7s;	/*アニメーションを遅れて開始させる指定の上書き。5.5sは5.5秒の事。アニメーションが終了した後、contentsを出力するまでの待機時間。*/
}
/*スクロール設定------------------------*/
html {scroll-behavior: smooth;}

/*h2見出し*/
#contents h2 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	margin-top:-20px;
	font-size: 25px; color:#555;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少し広くとる設定*/
	line-height: 1.5;		/*行間をデフォルトから少し狭くする*/
	background: url(../images/bg_line1.png) repeat-x center bottom / auto 3px;	/*下線の背景画像の読み込み。X軸(横)にリピート、左右中央、下部に配置。幅はauto(自動)で高さを3pxにする。*/
    padding-bottom: 13px;
}
/*h3見出し*/
#contents h3 {
	clear: both;
	color:#533c40;
	margin-top: 0px;	/*下に空けるスペ5ス*/
	font-size: 18px;		/*文字サイズ*/
	padding: 0px 0px;		/*上下、左右へのブロック内の余白*/
	line-height: 1.5;		/*行間をデフォルトから少し広くする*/
}

/*h4罫線*/
#contents h4 {
	clear: both;
	margin-bottom: 20px;	/*下に空けるスペース*/
	margin-top:-10px;
	line-height: 1.5;		/*行間をデフォルトから少し狭くする*/
	background: url(../images/bg_line6.png) repeat-x center bottom / auto 1.5px;	/*下線の背景画像の読み込み。X軸(横)にリピート、左右中央、下部に配置。幅はauto(自動)で高さを3pxにする。*/

	padding-bottom: 10px;
}

/*段落タグ*/
#contents p {
	padding: 0px 10px 20px;		/*上、左右、下への余白*/
}
/*段落タグが続いた場合の設定*/
#contents p + p {
	margin-top: -10px;
}



/*ボタン伸子*/

.button02 a {
  display: flex;
  justify-content: space-between;
  align-items:center ;
  margin: 0 auto;
  padding: 1.0em 0.5em 1.0em 3.3em;
  width: 230px;
  max-width: 100%;
  height:12px;
  color: rgba(102, 21, 47, 0.8);	
  font-size: 15px;
	letter-spacing:-0.05em;
  font-weight: 700;
  text-decoration: none;
  background-color: rgba(240,226,224,0.);
   border: 2px solid rgb(153,153,153,0.);
  border-radius: 10px;
  background-image: url(../images/fuutou4.png) ;
  background-size: contain;
  background-repeat: no-repeat;
}

.button02 a:hover {
  text-decoration: none;
  color: rgba(199,178,119,0.7);
  background-color: rgba(240,226,224,0.);
}



/*footerブロック
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;	/*センタリング*/
	padding-bottom: 30px;
}
footer a {text-decoration: none;}
footer a:hover {color: #666;}
footer .pr {display: block;}


/*フッターメニュー
---------------------------------------------------------------------------*/

/*リンクテキスト*/
#footermenu a {
	text-decoration: none;
	color: rgba(102, 21, 47, 0.9);	/*文字色*/
	opacity: 0.9;	/*透明度。色を70%出した状態。*/
}
/*マウスオン時のリンクテキスト*/
#footermenu a:hover {
	opacity: 0.4;	/*透明度。色を100%出した状態。*/
	text-decoration: none;
}





/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
0% {opacity: 0;}
100% {opacity: 1;}
}


/*デフォルトでは非表示に*/
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;z-index: 100;position: fixed;
	width: 50px;		/*幅*/
	line-height: 40px;	/*高さ*/
	bottom: 56.5px;		/*下から50pxの場所に配置*/
	right: 2%;			/*右から1%の場所に配置*/
	background: #C76072;	/*背景色（古いブラウザ用）*/
	background: rgba(199, 96, 114, 1.0);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
	opacity:0.9; 
	color: #fff;		/*文字色*/
	border-radius: 50%;		/*円形にする指定。この行削除すれば正方形になります。*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
	animation-duration: 3S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: rgba(199, 96, 114, 0.7);	/*背景色*/
}

/*トップページの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 42px;
}
ol {
	padding: 0 20px 20px 45px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #c3b5a2;background: rgba(0,0,0,0.07);padding: 2px 5px 0px;border-radius: 1px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.clear {clear: both;}
.color1, .color1 a {color: #b52654 !important;}
.color2, .color2 a {color: #515254}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 40px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}



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


/*１つ目のブロック*/
.first {
	margin-top: 115px !important;	/*headerのheightの数字（100px）と、.innerのmarginの３つ目の数字（40px）を足した数にする。*/
}

/*headerアイコン（facebookやtwitterなどのアイコンブロック）
---------------------------------------------------------------------------*/
/*アイコンを囲むブロック全体の設定*/
header .icon {
	position: absolute;
	right: 3%;		/*ヘッダーブロックに対して右から3%の場所に配置*/
	bottom: 15px;	/*ヘッダーブロックに対して下から15pxの場所に配置*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。
透明(opacity: 0;)から色をつける(opacity: 1;)までの指定。*/
@keyframes menubar {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	z-index: 20;
	
	border-radius: 6px;
	position: fixed;
	left: 0px;
	right: 0px;
	bottom:0px;
	width: 100%;
	height: auto;
	background: rgb(171 82 97 / 0.0);	/*背景色*/
	animation-name: menubar;		/*上のkeyframesの名前*/
	animation-duration: 1.7s;		/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;		/*待機中は最初のキーフレームを、完了後は最後のキーフレームを維持*/
	border-top: 1px solid #fff0;	/*下の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;
	background: rgb(171 82 97 / 0.85);	/*背景色*/
	text-align: center;
	text-decoration: none;
	padding: 15px 7px 12px;	/*メニュー内の余白。上下、左右。*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	border-top: 1px solid #fff;
	border-radius: 6px;
	color: #fff;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
}
/*説明表記（飾り文字）*/
#menubar-s li a span {
	display: block;
	font-size: 10px;/*文字サイズ*/
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 40;
	bottom:5px;	/*上からの配置指定*/
	right: 2%;		/*ウィンドウの右から1%の場所に配置*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 40px;	/*高さ*/
	border-radius: 50%;	/*円形にする指定*/
	border: 2px solid #ffffff;
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background:  #C76072  url(../images/icon_menu.png) no-repeat center top/40px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
	opacity:1.0; 
}

#menubar_hdr:hover{
    background:#C76072 url(../images/icon_menuhover2.png) no-repeat center top/40px;
    transition: 0.3s ;
    opacity:0.7; 
}	



/*閉じるアイコン*/
#menubar_hdr.open {
	background: #C76072 url(../images/icon_menu.png) no-repeat center bottom/40px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 20px;}
.fl {float: none;}
.fr {float: none;}
.sh {display:block;}
.pc {display:none;}

}

/*画面幅400伸子　以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:400px){
	/*１つ目のブロック*/
.first {
	margin-top: 90px !important;	/*headerのheightの数字（100px）と、.innerのmarginの３つ目の数字（40px）を足した数にする。*/
}



/*画面を横向きにした場合の高さが500px以下の場合の設定。主にスマートフォンを横向きで見た状態。
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (orientation: landscape) and (max-height:500px){

/*header
ウィンドウの高さが狭いので、ヘッダーブロックを固定からスクロールさせる動作に切り替えます。
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;menu
}

/*メインメニュー
メニューを２列表示に切り替えます。
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	top: 0px;
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	width: 50%;
	float: left;
}

}



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

/*galleryページの画像切り替え
---------------------------------------------------------------------------*/
/*大きな画像のボックスと説明文を入れるボックス*/
#item-image {
	width: 100%;			/*画像の幅*/
	margin-bottom: 0px;
}
/*サムネイル画像を囲むブロック*/
#thumbnail-box {
	bottom: 0px;
}
/*サムネイル画像*/
.thumbnail {
	width: 40px;	/*画像の幅*/
	height: 28px;	/*画像の高さ*/
	padding: 0;		/*余白*/
}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 15px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*header
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 310px;		/*画像の幅*/
	margin: 20px 2px 20px 4px;	/*上 左右　下に空けるスペース*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	padding: 20px 4px　5px 4px;	/*ボックス内の余白*/
	
	border-radius: 10px;	/*角丸のサイズ*/
}

/*contents
---------------------------------------------------------------------------*/
/*h2見出し*/
#contents h2 {
	font-size: 20px;
	letter-spacing: normal;
}
/*h3見出し*/
#contents h3 {
	font-size: 16px;
	padding-left:3px;
	padding-right:4px;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {width: 94%;}
.big1 {font-size: 16px;}
}