@charset "utf-8";
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
http://code.google.com/p/html5resetcss/downloads/list
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
	display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
th,td{
	text-align: left;
	vertical-align: top;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}




article, aside, dialog, figure, footer, header,hgroup, menu, nav, section { display: block; }

img{border: 0; vertical-align: bottom;-ms-interpolation-mode: bicubic; }


/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
	content:"";
	display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

*{box-sizing: border-box;}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/

a{color: #0066cc;text-decoration: underline;}
a:hover{color: #ff6600;}

html{
	color: #333333;
	background: white;
	overflow-y: scroll;	/*ここでスクロールバーを常に表示*/
}
body{
	text-align: center;
	font-size: 16px;
	font-family: "M PLUS Rounded 1c"; 
	/*font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
	/*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro W3', "メイリオ", Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
	/*font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;*/
	font-weight:500;/*游ゴシック体用*/
	background-color: white;
	word-wrap: break-word;
	overflow-wrap : break-word;
}
/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast:none){
	/* IE10以降ハック*/
	/*body{font-family: "メイリオ", "Meiryo", sans-serif;}*/
}








/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon{ime-mode:active;}
.imeoff{ime-mode:disabled;}

.right{text-align: right;}
.center{text-align: center;}
.left{text-align: left;}

.nowrap{white-space: nowrap;}



@media screen and (max-width: 767px) {/* スマホ */
	.pc{display: none !important;}
}/* スマホ */

@media (min-width: 768px)  {/* PC */
	.sp, .smp{display: none;}
}/* PC */


/*-----------------------------------------------------
@@ For media queries
レスポンシブ Web デザイン　Responsive Web Design
------------------------------------------------------*/
/* set image max width to 100% */
video,
img, object {
	max-width: 100%;
	height: auto;
}

.video embed,
.video object,
.video iframe {
	width: 100%;
	height: auto;
}

/*-----------------------------------------------------
@@ 箇条書き
------------------------------------------------------*/
ul.link{
	margin: 8px 12px 24px 24px;
}
ul.link li{
	list-style-type: disc;
	margin-bottom: 4px;
	padding-left: 8px;
}
ul.link li a{
	color: #0066cc;
	text-decoration: none;
}
ul.link li a:hover{
	text-decoration: underline;
}




/* @@ なんか */


/*-----------------------------------------------------
@@ フォーム
------------------------------------------------------*/
form{vertical-align:baseline;}
input,textarea{outline:0;}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
	border: 1px solid #737373;
	padding: 4px;
	font-size: 15px;
}
select{
	border: 1px solid #737373;
	font-size: 15px;
	height: 2em;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
	border: 1px solid #737373;
	background-color: #ffc;
}
select, input, textarea, button { 
	vertical-align:middle;
	font-family: inherit;
}

textarea{overflow: auto;}/* 内容が少ないのに薄くスクロールバーが出る事への対策。IEのみ  */

input,textarea,select,button{
	margin: 2px 4px 2px 0;
}
input[type="submit"], button {
	border: 1px solid #737373;
	border-radius: 3px;
	padding: 6px 12px;
	font-size: 15px;
	line-height: 1.2;
	overflow:visible;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eeeeee+0,cccccc+100;Gren+3D */
background: #eeeeee; /* Old browsers */
background: -moz-linear-gradient(top,  #eeeeee 0%, #cccccc 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #eeeeee 0%,#cccccc 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #eeeeee 0%,#cccccc 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 ); /* IE6-9 */

}
input[type="submit"]:hover,
button:hover {
	cursor: pointer;
}

label{
	font-size: 15px;
	margin-right: 1em;
}

/* placeholder属性 */
:placeholder-shown {
	color: #737373; }
::-webkit-input-placeholder {/* Google Chrome, Safari, Opera 15+, Android, iOS */
	color: #737373; }
:-moz-placeholder {/* Firefox 18- */
	color: #737373; opacity: 1; }
::-moz-placeholder {/* Firefox 19+ */
	color: #737373; opacity: 1; }
:-ms-input-placeholder {/* IE 10+ */
	color: #737373; }

/*-----------------------------------------------------
@@ サンプル
------------------------------------------------------*/

/*-----------------------------------------------------
@@
------------------------------------------------------*/


/*-----------------------------------------------------
@@ twentyfourteennのページネーション
------------------------------------------------------*/
div.pagination{
	margin: 24px 0 24px 0;
	text-align: center;
}

div.pagination span,
div.pagination a,
div.pagination sapn.current{
	font-size: 11pt !important;
	display: inline-block;
	vertical-align: middle;
		padding:6px 9px 6px 9px !important;
		margin-right:3px !important;
		text-decoration:none !important;
		border-radius:3px !important;	
}
div.pagination span, div.pagination a{
		color:#707070 !important;
		background:#FFFFFF !important;
		border-radius:3px !important;	
		-moz-border-radius:3px !important;
		-webkit-border-radius:3px !important;
		border:solid 1px #dcdcdc  !important;
		margin-bottom: 4px;
}
div.pagination a:hover {
		border-color:#202020 !important;
		background:#525252 !important;
		color:#fff !important;
}
div.pagination span.current{
		color:#fff !important;
		background:#525252 !important;
		-moz-border-radius:3px !important;
		-webkit-border-radius:3px !important;
		border:solid 1px #202020 !important;
}


.return-list{
	text-align: center;
	font-size: 15px;
	margin: 24px 0;
}

form.post-password-form input[type='submit']{
	border: 1px solid #707070;
	border-radius: 3px;
	background-color: #ccc;
}
form.post-password-form input[type='submit']:hover{
	cursor: pointer;
}


/*-----------------------------------------------------
@@ for WordPress
http://hijiriworld.com/web/wp-native-css/
------------------------------------------------------*/
.entry strong { font-weight: bold; }
.entry em { font-style: italic; }
.entry blockquote {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }

img[class*="wp-image-"],
img[class*="attachment-"] {
    height: auto;
    max-width: 100%;
}


/*-----------------------------------------------------
@@ Retina用背景画像
------------------------------------------------------*/
@media 
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-device-pixel-ratio: 2) {

	div.retinaback {
		background-image: url(images/aaaaa@2x.png);
		background-size: 100px 100px;
	}

	/*
		background-size: contain;
		background-size: cover;
	*/

}

/* @@ sm xs 767px以下(スマホ) */
@media screen and (max-width: 767px) {
}

/* @@ sm 768px～(991px) ()は↓と一緒に使えば */
@media (min-width: 768px)  {
}

/* @@ md 992px～(1119px) ()は↓と一緒に使えば */
@media (min-width: 992px) {
}

/* @@ lg 1200px以上 */
@media (min-width: 1200px) {
}





/*-----------------------------------------------------
@@ フッター
------------------------------------------------------*/
.footer{
	background:#807f7f;
	color : #ffffff;
	margin : 100px 0 0 0;
	padding : 4px 0;
	font-size : 90%;
}








/*	●●●●●●●●●●	*/
.toptxt{padding-top : 50px;}

.toptxt .caption{
	font-size :125%;
	font-weight : bold;
}
.toptxt a{color : #000000;text-decoration: none;}
.reserve{margin:80px 0;}

.midashi{
	margin-bottom:5px;
	padding-bottom:5px;
	border-bottom:1px solid #777777;
}

.priceex{
	border:1px solid #4abaa7;
	border-radius: 5px;
	padding : 10px 20px;
	background:#e4f5f2;
}


/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.toptxt{
		margin : 20px auto 70px auto;
		width : 800px;
		line-height : 2;
	}
	.priceex{
		margin : 0 0px 60px 0;
	}

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.toptxt{
		margin : 20px auto 80px auto;
		width : 90%;
		line-height : 2;
		text-align: left;
	}
	.toptxt span{
		display: block;
	}
	.midashi{
		text-align: center;
	}
	.priceex{
		line-height: 1.4;
		text-align: left !important;
		margin-bottom: 50px;
	}
	.opt{
		display: inline !important;
	}
	.optmgn{margin-top:8px;}
}
/* スマホ ここまで-------------------------------- */

/* ●●●●●●●●●●  ここまで */




/* お知らせ／conf  ここまで */

.news a{
	text-decoration: none;
}

.news p{
	text-align: left;
	margin : 15px 0;
	line-height : 1.5;
}
.news img{
	width : 100%;
	margin-bottom: 15px;
}

.mess , .nomess{
	padding : 10px;
	text-align : center;
	width : 100%;
	font-weight : bold;
	margin-bottom : 20px;
}
.mess{
	background:#ff0000;
	color : #ffffff;

}

.viewon{
	display : inline-block;
	background:#ff0000;
	color:#ffffff;
	padding : 4px;
}
.viewoff{
	display : inline-block;
	background:#777777;
	color:#ffffff;
	padding : 4px;
}
.form-body img{
	width:150px;
}

.deleBt{color:#ff0000;font-weight:bold;}



/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.main{
		width : 70%;
		margin : 30px auto 0 auto;
		padding:20px;
	}
	.form-ttl{
		display : inline-block;
		width : 10em;
		margin-right : 10px;
		text-align : right;
	}
	.form-body{
		display : inline-block;
		width : 30em;
		text-align : left;
		line-height:1.5;

	}
	.formparts{
		width : 100%;
		margin-bottom : 15px;
	}
	input[type="text"]  , textarea {width:100%;}
	textarea{height : 120px;}
	.newsdateWrap{
		width : 600px;
		margin : 10px auto 80px auto;
		text-align : center;
		line-height : 1.5;
	}
	.newsdate{
		display: block;
	}
	.newsttl{
		display: block;
		margin-bottom : 12px;
	}
	.newsdateWrap a{
		color :#0066cc;
	}

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.main{
		margin : 20px;
		text-align : left;
	}
	.form-ttl{
		display : block;
		margin-bottom : 5px;
	}
	.formparts{
		margin-bottom : 15px;
	}
	input[type="text"]  , textarea {width:100%;}
	textarea{height : 100px;}

	.newsdateWrap{
		margin : 10px auto 10px auto;
		line-height : 1.5;
	}
	.newsdate{
		display: block;
	}
	.newsttl{
		display: block;
		margin-bottom : 12px;
	}
	.newsdateWrap a{
		color :#0066cc;
	}
	.form-body2{
		display : block;
		border-bottom : 1px solid #000000;
		line-height:1.5;
		padding-bottom : 5px;
	}


}
/* スマホ ここまで-------------------------------- */


.sns{
	margin : 30px auto;
	width : 120px;
}
.sns img{
	width : 40px;
	margin : 0 10px;
}


fieldset {
	border: none;
	padding: 0;
	margin: 0;
  }
  
  
  
  .radio-inline__input {
	  clip: rect(1px, 1px, 1px, 1px);
	  position: absolute !important;
  }
  
  .radio-inline__label , .radio-inline__labeloff{
	  display: inline-block;
		  padding :  10px;
  margin-right: 0px;
		  border-radius : 6px;
	  transition: all .2s;
  }
  
  .radio-inline__input:checked + .radio-inline__label {
	background: #ff0000;
	color: #fff;
	text-shadow: 0 0 1px rgba(0,0,0,.7);
}
.radio-inline__input:checked + .radio-inline__labeloff {
	background: #777777;
	color: #fff;
	text-shadow: 0 0 1px rgba(0,0,0,.7);
}

  .radio-inline__input:focus + .radio-inline__label {
	  outline-color: #4D90FE;
	  outline-offset: -2px;
	  outline-style: auto;
	  outline-width: 5px;
  }
  
  
  

/* お知らせ／conf  ここまで */



.yt{
	position:relative;
	width:100%;
	padding-top:56.25%;
	  margin : 15px 0 30px 0;
  }
  .yt iframe{
	position:absolute;
	top:0;
	right:0;
	width:100%;
	height:100%;
  }
  



/*	●●●●●●●●●●	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.slider{
		max-width:1280px;
		margin:0 auto;

	}
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

}
/* スマホ ここまで-------------------------------- */

/* ●●●●●●●●●●  ここまで */


