@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;	/*全体の文字色*/
	background-color: #FFF;	/*全体の背景色*/
	background-image: url(../images/bg.gif);	/*背景画像の読み込み*/
	margin: 0px;
	padding: 0px;
	font: 16px/2 "HGMaruGothicMPRO", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ/行間、フォントファミリー*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

table.type1 {
    border-collapse: collapse;
    text-align: left;
    line-height: 1.5;
    border: 1px solid #ccc;
}
table.type1 thead {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    background: #ff69b4;
}
table.type1 thead th {
    padding: 10px;
    font-weight: bold;
    vertical-align: top;
    color: #fff;
}
table.type1 tbody th {
    padding: 10px;
    font-weight: bold;
    vertical-align: top;
    border-bottom: 1px solid #ccc;
    background: #ffb6c1;
}
table.type1 td {
    padding: 10px;
    vertical-align: top;
    border-bottom: 1px solid #ccc;
}
table.type1 .laven {
    background: #efefef;
}
table.type1 .smoke {
    background: #f5f5f5;
}
table.mine {
	border-collapse:collapse;
	font-size: 10px;
	border-spacing: 0;
}
td.mine {
	font-size: 20px;
	font-weight: bold; 
}


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

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 980px;	/*コンテナー幅*/
	margin: 0px auto;
	-webkit-box-shadow: 0px 0px 8px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 8px #999;			/*同上*/
	background-color: #FFF;	/*コンテナーの背景色*/
	padding: 0px 10px;		/*上下、左右の余白*/
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #88b276;	/*背景色*/
	position: relative;z-index: 40;
}
/*トップページのヘッダー*/
#top header {
	position: relative;z-index: 10;
	min-height: 100%;
	margin-bottom: -72px;	/*メニューの高さ（「#menubar ul li aのline-height: 70px;」と「#menubarのborderの上下2px分」）を合計した数字を設定する*/
	background: #fff;	/*背景色*/
}

/*footer内の左右のブロック指定*/
#header-le,#header-ri {
	width: auto;	/*幅*/
	float: none;	/*回り込みの解除*/
	padding: 0 5%;	/*上下、左右へのブロック内の余白*/
}


/*h1タグの設定*/
header h1 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color: #808080;				/*文字色*/
	border-top: 10px solid #fa5d95;		/*上の線の幅、線種、色*/
	font-size: 20px;			/*文字サイズ*/
	text-align: light;			/*文字を右寄せ*/
	line-height: 18px;			/*行間*/
}
header h2 {
	font-weight: normal;		/*通常太字なのを標準にする設定*/
	color: #000080;				/*文字色*/
	border-top: 10px solid #fa5d95;		/*上の線の幅、線種、色*/
	font-size: 20px;			/*文字サイズ*/
	text-align: light;			/*文字を右寄せ*/
	line-height: 18px;			/*行間*/
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 10px;	/*ヘッダーブロックに対して左から10pxの位置に配置*/
	top: 38px;	/*ヘッダーブロックに対して上から38pxの位置に配置*/
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/

/*メインメニューのブロック
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: relative;z-index: 20;
	border-top: 1px solid #FFFFFF;		/*上の線の幅、線種、色*/
	border-bottom: 2px solid #FFFFFF;	/*下の線の幅、線種、色*/
	text-align: center;	/*文字を中央に*/
}
#menubar ul {
	background: #73b12b;	/*背景色*/
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar ul li {
	float: left;	/*左に回り込み*/
	width: 25%;		/*幅。下の「#menubar ul.ddmenu」と合わせる。今回は５個メニューがあるので100÷5=20*/
}
#menubar ul li a {
	text-decoration: none;display: block;
	border-left: 2px solid #FFFFFF;	/*左側の線の幅、線種、色*/
	line-height: 30px;	/*高さ（行間）*/
	margin: 10px 0;		/*上下、左右、aタグの外側にに空けるスペース。*/
}
#menubar ul li:first-child a {
	border-left: none;	/*１個目のメニューの左の線を消す指定*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {display: none;}
/*３本バーアイコンを表示させない*/
#menubar_hdr {display: none;}



/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg {
	clear: left;
	width: 100%;	/*幅*/
	height: auto;	/*高さ*/
	position: relative;
	border-radius: 4px;		/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	margin-bottom: 20px;	/*画像の下の余白*/
}
#mainimg img {
	border-radius: 4px;	/*角丸のサイズ*/
}
#mainimg .slide_file {
	display: none;
}
#slide_image {
	z-Index:2;
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	z-Index:1;
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	color: #fa5d95;		/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/h2_line.jpg);	/*背景画像の読み込み*/
	background-position: bottom left;	/*背景のバー画像の位置*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	font-size: 18px;
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	color: #333;		/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/h3_line.jpg);	/*背景画像の読み込み*/
	background-position: bottom left;	/*背景のバー画像の位置*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
	font-size: 18px;
	padding: 7px 15px;	/*上下、左右への余白*/
	clear: both;
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;	/*文字色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 7px 15px;	/*上下、左右への余白*/
	background-image: url(../images/h2_line_sub.jpg);	/*背景画像の読み込み*/
	background-position: bottom;	/*背景のバー画像の位置*/
	background-repeat: no-repeat;		/*背景のバー画像をリピートしない設定*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #FFF;				/*文字色*/
	background-color: #fa5d95;	/*背景色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #FFF;
}
footer a:hover {
	color: #FFF;
}

/*simpleタイプ（※ボックス内の部分的な箇所にリンクを設定する場合）
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list.simple article {
	padding: 10px;
	overflow: hidden;
}
#main section.list.simple article a {
	padding: 0px;
	display: inline;
	text-decoration: underline;
}
/*マウスオン時*/
#main section.list.simple article a:hover {
	background-color: transparent;
	color: #fa5d95;
}
/*ボックス内の写真設定*/
#main section.list.simple article figure a:hover img {
	background-color: #f6f1b2;
	border: 1px solid #999;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
.ta1 td.midashi{
	background-color: #FFF3DD;
}
/*テーブル内の左側*/
.ta1 th{
	width: 180px;
	padding: 10px;
	text-align: center;
	background-color: #e2e2e3;	/*背景色*/
	font-weight: normal;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background-color: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background-image: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

.ta2 {
	width: 100%;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;

}

.ta2 td{
	padding: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.ta2 td.bg0 {
	background-color: #E0E0E0;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

.ta2 td.bg1 {
	background-color: #EFEFEF;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

.ta2 td.bg2 {
	background-color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCCCCC;
	border-top-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

/*セルの左に余白*/
.colum td.bg3 {
    background-color: #f5f5f5;
    padding: 0px 20px 0px 20px;
}

/*ボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 250px;	/*ボタン幅*/
	padding: 10px;	/*ボタン内の余白*/
	margin-bottom: 20px;
	border: none;
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #d95181;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fa5d95), to(#d95181));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#fa5d95, #d95181);	/*同上*/
	background-image: linear-gradient(#fa5d95, #d95181);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	color: #FFF;		/*文字色*/
	font-size: 16px;	/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-color: #fa5d95;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#d95181), to(#fa5d95));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#d95181, #fa5d95);	/*同上*/
	background-image: linear-gradient(#d95181, #fa5d95);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	position: relative;z-index: 20;
	clear: both;overflow: hidden;
	padding-top: 50px;
	background: #f5f4f0;	/*背景色*/
}
#pagetop a {
	color: #fff;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	background: #88b276;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	width: 100px;	/*幅*/
	border-radius: 4px 4px 0px 0px;	/*角丸のサイズ。左上、右上、右下、左下への設定*/
	margin-right: 5%;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #a50e0e;	/*背景色*/
}


/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15 {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
/*ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}*/
ul.disc {padding: 0em 25px 15px;list-style: disc;}
.color1 {
	color: #fa5d95;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}
#menubar_hdr {
	display: none;
}

.mini1 {
	font-size: 16px;
	font-weight: normal;
}
.mini2 {
	font-size: 18px;
	font-weight: bold;
}
.mini3 {
	font-size: 18px;
	font-weight: bold;
	color: #FF0000;
}
.mini4 {
	font-size: 16px;
	font-weight: normal;
	color: #000000;
}
.mini5 {
	font-size: 14px;
	font-weight: normal;
	color: #000000;
}
.mini6 {
	font-size: 10px;
	font-weight: normal;
	color: #f03d06;
}
.sortbox {
	background-color: #eee;
	text-align: right;
	padding: 10px;
	border-top: 1px solid #CCC;
	border-bottom: 1px solid #CCC;
	margin-bottom: 15px;
}

.bold {
	font-weight: bold;
}

.bold_underline {
	font-weight: bold;
	text-decoration: underline;
}

.bold_underline_font20{
	font-weight: bold;
	text-decoration: underline;
	font-size: 20px;
}

.red {
	color: #ff0000;
}

.red_bold {
	color: #ff0000;
	font-weight: bold;
}

.red_bold_big {
	color: #ff0000;
	font-weight: bold;
	font-size: 22px;
}

.red_bold_underline {
	color: #ff0000;
	font-weight: bold;
	text-decoration: underline;
}

.pink_bold {
	color: #fa5d95;
	font-weight: bold;	/*文字を太字に*/
}


.blue_bold {
	color: #000080;
	font-weight: bold;	/*文字を太字に*/
}

.font14{
	font-size: 14px;
}

.font14_margin50 {
	font-size: 14px;
	margin: 50px;
}


.marker {
	background-color: #ffff00;
}

#around_message {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
}

/* lavender */
#around_message2 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e6e6fa;
}

/* lightyellow　*/
#around_message3 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #ffffe0;
}

/* lightyellow　*/
#around_message3A {
    width: 400px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #ffffe0;
}

/* lavender font14*/
#around_message4 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e6e6fa;
	font-size: 14px;
}

#around_message4n {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e6e6fa;
}

/* whitesmoke　*/
#around_message5 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #f5f5f5;
}

/* whitesmoke　*/
#around_message5A {
    width: 400px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #f5f5f5;
}

/* lightcyan　*/
#around_message6 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e0ffff;
}

/* lightcyan　*/
#around_message6A {
    width: 500px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e0ffff;
}

/* lightcyan　*/
#around_message6B {
    width: 400px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #e0ffff;
}

/* palegreen　*/
#around_message7 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #98fb98;
}

/* palegreen　*/
#around_message7A {
    width: 500px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #98fb98;
}

/* orangered　*/
#around_message8 {
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #ff4500;
}

/* orangered　*/
#around_message8A {
    width: 500px;
	border-style: solid;
	border-color: #CCCCCC;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #ff4500;
}

/* border　*/
#around_message9 {
	border-style: solid;
	border-color: #000000;
	border-width: 1px;
	padding: 5px 5px 5px 5px;
	background-color: #FFFFFF;
}

/* price rabel　*/
.box1 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.box1 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 20px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box1 p {
    margin: 0; 
    padding: 0;
}

.box2 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #8fbc8f;
}
.box2 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 20px;
    background: #8fbc8f;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box2 p {
    margin: 0; 
    padding: 0;
}

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

.box4{
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;
    border: dashed 2px white;
}
.box4 p {
    margin: 0; 
    padding: 0;
}


.box5{
    margin:2em 0;
    position: relative;
    padding: 0.25em 1em;
    border: solid 2px #ffcb8a;
    border-radius: 3px 0 3px 0;
    background: -webkit-repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px,#fffacd 3px, #fffacd 7px);
    background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px,#fffacd 3px, #fffacd 7px);
}
.box5:before,.box5:after
{
    content: '';
    position: absolute;
    width:10px;
    height: 10px;
    border: solid 2px #ffcb8a;
    border-radius: 50%;
}
.box5:after {
    top:-12px;
    left:-12px;
}
.box5:before {
    bottom:-12px;
    right:-12px;
}
.box5 p {
    margin: 0; 
    padding: 0;
}

.box6{
    margin:2em 0;
    position: relative;
    padding: 0.25em 1em;
    border: solid 2px #708090;
    border-radius: 3px 0 3px 0;
    background: -webkit-repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px,#f5f5f5 3px, #f5f5f5 7px);
    background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px,#f5f5f5 3px, #f5f5f5 7px);
}
.box6:before,.box6:after
{
    content: '';
    position: absolute;
    width:10px;
    height: 10px;
    border: solid 2px #708090;
    border-radius: 50%;
}
.box6:after {
    top:-12px;
    left:-12px;
}
.box6:before {
    bottom:-12px;
    right:-12px;
}
.box6 p {
    margin: 0; 
    padding: 0;
}

.box7 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
}
.box7 p {
    margin: 0; 
    padding: 0;
}

.box8{
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #5989cf;
    background: #c6e4ff;
    border-bottom: solid 6px #aac5de;
    border-radius: 9px;
}
.box8 p {
    margin: 0; 
    padding: 0;
}

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

img.layvert3 {
	vertical-align: middle;
	margin-right: 12px;
}



/* under line　*/
.ul1 {
  border-bottom: dashed 1px #777777;
  }

.ul2 {
  background: linear-gradient(transparent 70%, #ffff00 70%);
  }
  
ol {
  background: #f3fbff;
  border: 2px skyblue dashed;
  }

/*以下、CMS用追加
---------------------------------------------------------------------------*/
#search {
	text-align: center;
	padding: 10px 0;
}
.w {
	width: 120px !important;
	margin-right: 3px !important;
}
.btn-d {
	width: auto !important;
	padding: 3px 15px 5px !important;
	margin-bottom: 0 !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	font-size: 13px !important;
}

/*フロートメニューの設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
#floatbar_le {
	display: inline;
	position: fixed;
	bottom: 0px;
	left: 0px;
}

#floatbar_ri {
	display: inline;
	position: fixed;
	bottom: 0px;
	right: 0px;
}


/* パソコンで見たときは"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; }
}

/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
nav#menu ul {
	position: static;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	width: 50%;
}
nav#menu ul li a {
	margin: 0px;
	margin-bottom: 5px;
}
/*奇数番目のメニューの設定(※スマホ・タブレットでは「HOME」が隠れているので「サービス」「お問い合わせ」が奇数番目になる)*/
nav#menu ul li:nth-child(odd) {
	width: 49%;
	margin-left: 1%;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	margin-bottom: 20px;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

iframe {
 width: 100%;
}


img.wa {
	max-width: 100%;
	height: auto;
}



/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*スマホ・タブレットで非表示（HOMEメニューに使用）*/
.stn {
	display: none;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	display: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
header #logo img {
	width: 80%;		/*画面に対してロゴ画像を80％の幅に*/
	height: auto;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
#main p {
	padding: 0.5em 5px 1em;
}

iframe {
 width: 100%;
} 

img.wa {
	width: 95%;
	height: auto;
}

#menubar_hdr3 {
	display: inline;
	position: fixed;
	bottom: 50px;
	left: 0px;
}
#menubar_hdr4 {
	display: inline;
	position: fixed;
	bottom: 0px;
	left: 0px;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: fixed;
	top: 2px;
	right: 2px;
}
/*スマホ・タブレットで非表示（HOMEメニューに使用）*/
.stn {
	display: none;
}

}

/*個人的に作成 20170510
---------------------------------------------------------------------------*/
/*ピンクで横幅400px*/
p.territorydent1 {
    background-color: #ffc0cb; 
    width: 400px; 
    margin: 0px 0px 0px 30px;
    }

/*薄黄色*/
p.territorydent2 {
    background-color: #ffd799; 
    margin: 0px 0px 0px 30px;
    }

/*ピンク*/
p.territorydent3 {
    background-color: #ffc0cb; 
    margin: 0px 0px 0px 30px;
    }
    
#top_btn
{
  position: fixed;
  bottom: 10px;
  right: 10px;
  
  border-radius: 6px;
  background-color: rgba(255, 100, 0, 0.8);
  padding: 6px 3px;
}

#fab {/*円*/
    display: block;
    width: 56px;
    height: 56px;
    background: #03a9f4;
    text-align: center;
    border-radius: 50%;
    transition: .2s;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,.12), 0 2px 2px 0 rgba(0,0,0,.24);
}

#fab:hover {
  box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px -1px rgba(0,0,0,.2);}


#fab i {/*アイコン*/
  color: white;
  line-height: 56px;
  font-size: 18px;
  transition: 0.2s;
}

#fab:hover i {/*ホバーでアイコン回転*/
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

body {
  background: center/cover no-repeat url(https://dl.dropbox.com/s/ypqso4jxvdxn2re/moon_in_the_daytime.jpg?dl=0);
  height: 1000px;
}

/* Wordpress move
------------------- */
p.aligncenter{
  text-align: center;
}

