@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-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: #666;		/*リンクテキストの色*/
	transition: 0.2s;	/*マウスオン時の移り変わるまでの時間設定。0.2秒。*/
}
a:hover {
	color: #52a2bd;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*containerブロック
---------------------------------------------------------------------------*/
#container {
	max-width: 1500px;	/*サイトの最大幅*/
	margin: 0 auto;
}

/*ロゴ　＋　メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: fixed;	/*ウィンドウに対して固定表示*/
	top: 0px;			/*上から0pxの場所に配置*/
	z-index: 20;
	width: 100%;
}
/*メニューブロック内にあるanimatemeブロック*/
#menubar .animateme {
	width: 100%;
	height: 70px;	/*高さ*/
	background: #CCA57C;	/*背景色（古いブラウザ用）*/
}
/*メニューブロック内にあるロゴ画像*/
#menubar h1 img {
	height: 70px;	/*ロゴ画像の高さ。下の「#menubar ul li」の「line-height」の数字と合わせる。*/
	float: left;	/*左に回り込み*/
	padding: 0 50px;	/*上下、左右への余白*/
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	line-height: 70px;	/*行間。上の「#menubar h1 img」の「height」の数字と合わせる。*/
	margin-left: 3%;	/*左側に空けるスペース。*/
}
#menubar ul li a {
	text-decoration: none;
	color: #FFF;	/*文字色*/
	padding-bottom: 5px;	/*マウスオン時の下線との間にとるスペース*/
	font-size: 0.8rem;
}
/*メニューのマウスオン時*/
#menubar ul li a:hover {
	border-bottom: 3px solid #fff;	/*下線の幅、線種、色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}

/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
	position: absolute;
	left: 41%;	/*左から41%の場所に配置*/
	top: 0px;	/*上から0pxの場所に配置*/
	width: 20%;	/*画像幅*/
	background: #CCA57C;	/*背景色*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	position: relative;z-index:10;
	background: #fff;	/*背景色*/
	padding: 120px 20% 50px;	/*上、左右、下へのボックス内の余白*/
}
#contents2 {
	overflow: hidden;
	position: relative;z-index:10;
	background: #fff;	/*背景色*/
	padding: 120px 3% 50px;	/*上、左右、下へのボックス内の余白*/
}
/*トップページのコンテンツへの追加設定*/
#top #contents {
	padding-top: 0;	/*上の余白をゼロにする*/
}
#top #contents2 {
	padding-top: 0;	/*上の余白をゼロにする*/
}
/*h2見出し*/
#contents h2 {
	font-size: 40px;	/*文字サイズ*/
	margin-bottom: 30px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	color: #333;	/*文字色*/
}
#contents2 h2 {
	font-size: 40px;	/*文字サイズ*/
	margin-bottom: 30px;	/*下に空ける余白*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
	color: #333;	/*文字色*/
}
/*h2見出しの１文字目*/
#contents h2::first-letter {
	font-size: 60px;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*余白*/
	margin-right: 5px;		/*右側に空けるスペース*/
	letter-spacing: normal;	/*文字間隔を通常に*/
	text-shadow: 5px 5px rgba(0,0,0,0.1);	/*文字の影。右に、下に、0,0,0は黒の事で0.1は透明度10%の事。*/
}
#contents2 h2::first-letter {
	font-size: 60px;	/*文字サイズ*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*余白*/
	margin-right: 5px;		/*右側に空けるスペース*/
	letter-spacing: normal;	/*文字間隔を通常に*/
	text-shadow: 5px 5px rgba(0,0,0,0.1);	/*文字の影。右に、下に、0,0,0は黒の事で0.1は透明度10%の事。*/
}
/*h2見出し内のspanタグ*/
#contents h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	margin-top: -10px;	/*少し上に詰める設定*/
}
#contents2 h2 span {
	display: block;
	font-size: 14px;	/*文字サイズ*/
	margin-top: -10px;	/*少し上に詰める設定*/
}
/*h3見出し*/
#contents h3 {
	font-size: 24px;	/*文字サイズ*/
	color: #52a2bd;		/*文字色*/
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}
#contents2 h3 {
	font-size: 36px;	/*文字サイズ*/
	color: #52a2bd;		/*文字色*/
	margin-bottom: 20px;	/*下に空ける余白*/
	letter-spacing: 0.1em;	/*文字間隔を広くとる設定*/
}
/*段落タグ*/
#contents p {
	margin-bottom: 20px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}
#contents2 p {
	margin-bottom: 20px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}
/*段落タグにh3見出しが続いた場合、段落タグにh2見出しが続いた場合の設定*/
#contents p + h3,#contents p + h2 {
	margin-top: 50px;	/*見出しの上に空ける余白*/
}
/*段落タグが続いた場合の設定*/
#contents p + p {
	margin-top: -5px;	/*続いた段落タグを少し上に詰める設定*/
}
section + section {
	padding-top: 100px;
}

/*menu_bg（メニューページの小見出し含めた各メニューブロック）
---------------------------------------------------------------------------*/
#contents .menu_bg {
	overflow: hidden;
	background: #fff;	/*背景色*/
	padding: 3%;		/*ボックス内の余白*/
	margin-bottom: 20px;	/*ボックスの下に空けるスペース*/
	border: 5px solid #eee;	/*枠線の幅、線種、色*/
}

/*box2（メニューページで使用）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#contents .box2 {
	padding: 3%;	/*ボックス内の余白*/
}
/*ボックス内のh3タグ*/
#contents .box2 h3 {
	margin-bottom: 0;
	font-size: 16px;	/*文字サイズ*/
	font-weight: bold;	/*太字にする*/
	background: url(../images/bg_dotline.png) repeat-x center;	/*背景画像の読み込み。X軸(横軸)にリピート、上下中央に配置。*/
	color: #333;	/*文字色*/
}
/*ボックス内のh3タグの１文字目*/
#contents .box2 h3::before {
	content: "◇ ";	/*このテキストを冒頭に表示させる。変更してもらって構いませんが機種依存文字は化けるので使わないように。*/
	background: #fff;	/*背景色*/
}
/*ボックス内のh3タグ内のspanタグ*/
#contents .box2 h3 span {
	background: #fff;		/*背景色*/
	padding-right: 30px;	/*右側に空ける余白*/
}
/*ボックス内のh3タグ内のprice*/
#contents .box2 h3 .price {
	float: right;	/*右に回り込み*/
	padding-right: 0;	/*上で設定したspanタグの右の余白をリセット*/
	padding-left: 30px;	/*左側に空ける余白*/
	font-weight: normal;	/*太字から標準に戻す*/
}
/*ボックス内の段落タグ*/
#contents .box2 p {
	margin: 0;
	margin-left: 24px;	/*左に空けるスペース*/
	font-size: 12px;	/*文字サイズ*/
}
/*ボックス内のfigure画像*/
#contents .box2 figure {
	width: 100%;	/*幅*/
}

/*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.box1 {
	overflow: hidden;
	margin-bottom: 30px;
}
/*説明文*/
.box1 figcaption.w50 {
	width: 47%;
}
/*説明文内のstrongタグ*/
.box1 figcaption strong {
	display: block;
	font-weight: normal;
	font-size: 20px;	/*文字サイズ*/
	color: #52a2bd;		/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	padding: 50px 0 0;	/*上、左右、下へのボックス内の余白*/
	font-size: 85%;	/*文字サイズ*/
	background: #CCA57C;	/*背景色。古いブラウザ用*/
	background: #CCA57C url(../images/footer_bg.jpg) no-repeat right top/50%;	/*背景色、背景画像の読み込み、リピートせず、右側、上側に50%幅で配置。*/
	border-top: 1px solid #CCA57C;	/*上の線の幅、線種、色*/
	color: #fff;	/*文字色*/
}
footer a {
	color: #fff;	/*文字色*/
}
footer .pr {display: block;font-size: 80%;}

/*フッター内のfacebookなどのアイコン設定
---------------------------------------------------------------------------*/
/*ブロック設定*/
#icon {
	text-align: center;	/*センタリング*/
}
/*アイコン画像１個あたりの設定*/
#icon img {
	width: 40px;	/*幅*/
	margin: 30px 10px;	/*上下、左右への余白*/
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	overflow: hidden;
	padding: 0 3%;	/*上下、左右へのボックス内の余白*/
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 18%;		/*幅。今回は５列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
	padding-right: 1%;
	padding-left: 1%;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	text-align: center;
	background: #111111;	/*背景色*/
}
#copyright a {text-decoration: none;}
#copyright a:hover {color: #666;}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*見出しを含まないお知らせブロック*/


#new {
		margin: 0 auto;
		width:70%;
	}

#new dl {
	border-top: 1px dashed #ccc;	/*上の幅、線種、色*/
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;		/*幅*/
	color: #52a2bd;	/*文字色*/
	letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
	border-bottom: 1px dashed #ccc;	/*下線の幅、線種、色*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin: 0 auto 30px;
	border-bottom: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
}
.ta1 td, .ta1 th {
	border-top: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px 15px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 250px;	/*幅*/
	text-align: right;	/*右寄せ*/
	background: #f3f3f3;	/*背景色*/
}
/*左側ボックスに画像を入れた場合の設定*/
.ta1 th img {
	width: 100%;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	padding: 5px 10px;		/*上下、左右へのボックス内の余白*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	font-size: 20px;		/*文字サイズ*/
	border-radius: 3px;		/*角丸のサイズ*/
	background: #eee;		/*背景色*/
}
/*マウスオン時の設定*/
#contents input[type="submit"].btn:hover,
#contents input[type="button"].btn:hover,
#contents input[type="reset"].btn:hover {
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	background: #fff;		/*背景色*/
}

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

/*その他
---------------------------------------------------------------------------*/
.look {background: #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}
.p0 {padding:0 !important;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1, .color1 a {color: #52a2bd !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.w50 {overflow: hidden;width: 50%;}
.fl {float: left;}
.fr {float: right;}
.big1 {font-size: 50px;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}
.bg1 {overflow: hidden;background: url(../images/bg1.png) no-repeat -20% -100px/30%,url(../images/bg1.png) no-repeat 130% 100px/50%, #fff !important;}
.bg2 {overflow: hidden;background: url(../images/bg2.png) !important;}



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

/*メインメニュー
---------------------------------------------------------------------------*/
/*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明度(opacity)0%から透明度100%にする指定。*/
@keyframes menu1 {
0% {opacity: 0;}
100% {opacity: 1;}
}
/*ヘッダー
---------------------------------------------------------------------------*/
/*ロゴ画像（トップページのロゴ画像）*/
header #logo img {
	left: 5%;	/*左から5%の場所に配置*/
	width: 30%;	/*画像幅*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューブロック*/
#menubar-s {
	display: block;overflow: hidden;
	position: absolute;
	top: 0px;
	z-index: 30;
	width: 100%;
	background: rgba(0,0,0,0.8);	/*背景色*/
	border-top: 1px solid #fff;		/*上の線の幅、線種、色*/
	animation-name: menu1;		/*上のkeyframesの名前*/
	animation-duration: 0.5S;	/*アニメーションの実行時間。0.5秒。*/
	animation-fill-mode: both;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	margin-bottom: 30px;
}
/*メニュー１個あたりの設定*/
#menubar-s li a {
	display: block;text-decoration: none;
	padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
	border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
	color: #fff;	/*文字色*/
	font-size: 20px;
}
/*PC用メニューを非表示にする*/
#menubar {display: none;}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	z-index: 40;
	position: absolute;
	top: 20px;	/*上から20pxの場所に配置*/
	right: 3%;	/*右から3%の場所に配置*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*アイコン共通設定*/
#menubar_hdr.close,
#menubar_hdr.open {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
}
/*三本バーアイコン*/
#menubar_hdr.close {
	background: #000 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}
/*閉じるアイコン*/
#menubar_hdr.open {
	background: #000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	padding-top: 50px;
}
section + section {
	padding-top: 20px;
}

/*box1（トップページの「私たちのこだわり食材」以下の４つのブロック）
---------------------------------------------------------------------------*/
/*説明文*/
.box1 figcaption.w50 {
	width: auto;
}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub,body.s-n #footermenu,.m-n {display: none;}
.big1 {font-size: 24px;}
.w50 {overflow: hidden;width: auto;}
.fl {float: none;}
.fr {float: none;}

}

*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_2 > div{
		width: 100%;
	}
}

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

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

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	position: relative;z-index:10;
	background: #fff;	/*背景色*/
	padding: 120px 5% 50px;	/*上、左右、下へのボックス内の余白*/
}

#contents h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
#contents h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
/*h2見出しの１文字目*/
#contents h2::first-letter {
	border: none;padding: 0;margin: 0;text-shadow: none;
	font-size: 24px;	/*文字サイズ*/
	letter-spacing: 0.2em;
}
/*h2見出し内のspanタグ*/
#contents h2 span {
	font-size: 10px;
	margin-top: 0px;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1, .ta1 td, .ta1 th {
	padding: 5px;	/*ボックス内の余白*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

/*inputボタン
---------------------------------------------------------------------------*/
#contents input[type="submit"].btn,
#contents input[type="button"].btn,
#contents input[type="reset"].btn {
	font-size: 16px;		/*文字サイズ*/
}

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

}

#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
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;
}
input[type="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
}

.box30 {
    margin: 2em 0;
    background: #f6f6f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box30 .box-title {
    font-size: 1.2em;
    background: #e789ac;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box30 p {
    padding: 15px 20px;
    margin: 0;
}

.box31 {
    margin: 2em 0;
    background: #f6f6f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box31 .box-title {
    font-size: 1.2em;
    background: #FFA500;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box31 p {
    padding: 15px 20px;
    margin: 0;
}

.box32 {
    margin: 2em ;
    background: #f6f6f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
	max-width: 800px;
}
.box32 .box-title {
    font-size: 1.2em;
    background: #ba9368;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box32 p {
    padding: 15px 20px;
    margin: 0;
}

*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_2 > div{
		width: 100%;
	}
}

.box16{
    padding: 0.5em 1em;
    margin: 2em 0;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}
.box16 p {
    margin: 0; 
    padding: 0;
}

.square_btn{
    display: inline-block;
    padding: 0.5em 1em;
    text-decoration: none;
    background: #CCA57C;/*ボタン色*/
    color: #FFF;
    border-bottom: solid 4px #b38454;
    border-radius: 3px;
}
.square_btn:active {/*ボタンを押したとき*/
    -ms-transform: translateY(4px);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    border-bottom: none;/*線を消す*/
}

.insta_btn {
  display: inline-block;
  text-align: center;/*中央揃え*/
  color: #2e6ca5;/*文字色*/
  font-size: 20px;/*文字サイズ*/
  text-decoration: none;/*下線消す*/
}

.insta_btn:hover {/*ホバー時*/
  color:#668ad8;/*文字色*/
  transition: .5s;/*ゆっくり変化*/
}

.insta_btn .insta{/*アイコンの背景*/
  position: relative;/*相対配置*/
  display: inline-block;
  width: 50px;/*幅*/
  height: 50px;/*高さ*/
  vertical-align: middle;/*垂直中央に*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  border-radius: 13px;/*角丸に*/

}

.insta_btn .insta:before{/*グラデーションを重ねるため*/
  content: '';
  position: absolute;/*絶対配置*/
  top: 23px;/*ずらす*/
  left: -18px;/*ずらす*/
  width: 60px;/*グラデーションカバーの幅*/
  height: 60px;/*グラデーションカバーの高さ*/
  background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);/*グラデーション②*/
}

.insta_btn .fa-instagram {/*アイコン*/
  color: #FFF;/*白に*/
  position: relative;/*z-indexを使うため*/
  z-index: 2;/*グラデーションより前に*/
  font-size: 35px;/*アイコンサイズ*/
  line-height: 50px;/*高さと合わせる*/
}

*, *:before, *:after {
	box-sizing: border-box;
}
.col_2{
	width: 100%;
	display: flex;
	display: -ms-flexbox; /* IE10 */
	flex-wrap: wrap;
	-ms-flex-wrap: wrap; /* IE10 */
}
.col_2 > div{
	width: 50%;
	padding: 10px;
}
@media screen and (max-width: 960px) {
	.col_2 > div{
		width: 100%;
	}
}

.box6 {
    padding: 0.5em 1em;
    margin: 0.5em 0.5em;
    background: #faecf1;
    border: dashed 2px #f7c8d9;/*点線*/
}
.box6 p {
    margin: 0; 
    padding: 0;
}

.ggmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


.cp_table *, .cp_table *:before, .cp_table *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_table {
	width: 100%;
	border-collapse: collapse;
}
.cp_table th, .cp_table td {
	padding: 20px;
	border: 1px solid #dddddd;
}
.cp_table th {
	background: #f4f4f4;
}
.cp_table th, .cp_table td {
	width: 20%;
	text-align: left;
}
@media only screen and (max-width: 480px) {
	.cp_table {
		margin: 0;
	}
	.cp_table tr {
		display: block;
		margin-bottom: 10px;
	}
	.cp_table th {
		display: block;
		width: 100%;
	}
	.cp_table td {
		display: list-item;
		list-style: none;
		width: 100%;
		margin-left: 1em;
		border: none;
		position: relative;
	}
	.cp_table td::before {
		font-family: 'FontAwesome';
		position: absolute;
		top: .9em;
		left: 0;
		content: ' \f0da';
	}
}


.box15 {
    padding: 0.2em 0.5em;
    margin: 4em 0;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.box15 p {
    margin: 0; 
    padding: 0;
}

.cp_hr06 {
	position: relative;
	height: 1px;
	border-width: 0;
	background-image: -webkit-linear-gradient(left,
	transparent 0%,#283593 50%,transparent 100%);
	background-image:         linear-gradient(90deg,
	transparent 0%,#283593 50%,transparent 100%);
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

.btn02 {
  display:block;  
  max-width: 300px;
  background-color: #333;
  font-size: 16px;
  color: #FFF;
  font-weight: bold;
  padding:16px;
  text-align: center;
  border-radius: 4px;
  transition: .4s;
}
.btn02:hover {
  background-color: #D3BA2B;
}

#QandA-2 {
	width: 100%;
	font-family: メイリオ;
	font-size: 14px; /*全体のフォントサイズ*/
}
#QandA-2 h3 {
	font-size: 18px;
	margin-top: 32px;
}
#QandA-2 dl {
	border: 1px solid #ccc;
}
#QandA-2 dt {
font-weight: bold;
	color: #111;
	background: #f4f4f4; /* 「Q」タイトルの背景色 */
	padding: 8px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
#QandA-2 dt:first-child {
	border-top: none;
}
#QandA-2 dt:before {
	content: "Q.";
	font-weight: bold;
	margin-right: 8px;
}
#QandA-2 dd {
	padding: 16px 16px 24px 30px;
	margin: 0;
	line-height: 140%;
        color: #bf0000;
}


#QandA-2 dd:before {
	content: "A.";
	font-weight: bold;
	margin-right: 8px;
	margin-left: -21px;
}

.video {
position: relative;
height: 0;
padding: 30px 0 56.25%;
overflow: hidden;
}

.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

h2 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
}

h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #000;
}

.list-004 {
    border: 2px solid #062d84;
}

.list-004 div {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    background-color: #062d84;
    color: #fff;
    font-weight: 600;
}

.list-004 ul {
    list-style-type: disc;
    margin: 0;
    padding: 1em 1em 1em 2.5em;
}

.list-004 li {
    padding: .3em .3em .3em 0;
}

.list-004 li::marker {
    color: #062d84;
    font-size: 1.1em;
}

.table_design08 {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  max-width: 1100px;
  text-align: center;
}
.table_design08 th, .table_design08 td {
  border: 2px solid #696969;
  padding: 1em;
}
.table_design08 thead th {
  background-color: #4d9bc1;
  color: #fff;
  border: 2px solid #696969;
  border-right: 2px solid #696969;
  border-bottom: 2px solid #696969;
}
.table_design08 thead th:last-of-type {
  border-right: 2px solid #4d9bc1;
}
.table_design08 tbody th {
  color: #4d9bc1;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 787px) {
  .table_design08 {
    text-align: left;
  }
  .table_design08 thead {
    display:none;
  }
  .table_design08 th, .table_design08 td {
    display: block;
    border: 0;
    border-bottom: 2px solid #e6f1f6;
  }
  .table_design08 tbody th{
    background: #4d9bc1;
    color:#fff;
  }
  .table_design08 td::before{
    content: attr(data-label);
    color: #4d9bc1;
    font-weight: bold;
    display: inline-block;
    width: 20%;
    min-width: 4em;
  }
}
.box26 {
	max-width:800px;
    position: relative;
    margin: 2em 0;
    padding: 1.5em 1em 0.2em;
    border: solid 3px #95ccff;
    border-radius: 8px;
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #95ccff;
    font-weight: bold;
}
.box26 p {
    margin: 5; 
    padding: 0;
}