/*------------------------------------------------------------------
********************************************************************
 * ▼構成
 * ・ベースとなるCSS
 * ・スマホ用（@media screen and (max-width: 767px) {} ）
 * 
 * リセットCSS      css / destyle.min.css
 * モジュール系CSS  css / default.css
 * ページ共通CSS    style.css
 * 各ページCSS      css / (top.css, business.css, message.css,,,)
********************************************************************
--------------------------------------------------------------------*/

/*--- 基本 ---*/
body{
	margin: 0px;
	padding: 0px;
	background: none repeat scroll 0% 0%;
	background-attachment: scroll;
	font-family: 'Noto Sans JP', sans-serif, YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	letter-spacing: 0.8px;
	font-size: 16px;
	font-weight: 400;
	color: #333;
}


img{
	vertical-align: bottom;
}
@media screen and (max-width: 767px) {
	img{
		width: 100%;
		height: auto;
	}
}


.container{
	overflow: hidden;
	background-color: #f2f1f1;
}

.inner{
	width:1000px;
	max-width: 95%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {
	
}


/*--- テキスト ---*/
.red{
	color: #ff0000;
}
.blue{
	color: #0000ff;
}
.green{
	color: #008000;
}
.orange{
	color: #ffa668;
}
.black{
	color: #000;
}
.white{
	color: #fff;
}


/*--- リンク系（アンカー） ---*/
a {
	color: #333;
	text-decoration: none;
	transition: all 1s ease;
}

a:hover {
	color: #ffa668;
}


a img{
	display: block;
	transition: 0.5s;
}

a img:hover {
	opacity: 0.7;
	transition: 0.5s;
}


a[href^="tel:"] {
	pointer-events: none;
	color: #333;
}
@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		pointer-events: auto;
	}
}


/*--- ヘッダー ---*/
header{
	
}
header h1 {
	width:213px;
	max-wdith:40%;
	margin:30px auto;
}
@media screen and (max-width: 767px) {
	header{
		
	}
}

@media screen and (max-width: 767px) {
	header {
		
	}
}


/*--- パンくず ---*/
.breadcrumb{
	
}
@media screen and (max-width: 767px) {
	.breadcrumb{
		max-width: none;
		width: 90%;
		font-size: 11px;
	}
}


.breadcrumb > span{
	display: inline-block;
}


/*--- メインコンテンツ ---*/
#main_visual {
	width:1000px;
	max-width:95%;
	margin:0 auto;
}

#guesthouse p {
	text-align:center;
	margin-top:30px;
}
#guesthouse .image {
	margin:20px auto 0;
	width:800px;
	max-width: 95%;
	height:300px;
	background:#f0f0f0;
	border-radius:20px;
	position:relative;
}
#guesthouse .image a {
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
}
/* ----
#guesthouse .image::after {
	content:"NOW PRINTING";
	position:absolute;
	left:0;
	right:0;
	margin:0;
	text-align:center;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	top:120px;
	font-size:24px;
}
---- */
#guesthouse p.link a {
	padding:10px 50px;
	display:inline-block;
	border:1px solid #999;
	border-radius:10px;
}
#guesthouse p.link a:hover {
	background:#999;
	color:#FFF;
}


#company p {
	width:600px;
	max-width: 95%;
	margin:30px auto;
	font-size:14px;
	line-height:2em;
}
#company .table_box {
	width:600px;
	max-width: 95%;
	margin:30px auto 0;
}
#company table {
	width:100%;
	border-collapse:collapse;
}
#company table th {
	padding:20px 10px;
	border-bottom:1px solid #464544;
	width:8em;
}
#company table td {
	padding:20px 0;
	border-bottom:1px solid #c0c0c0;
}


/*--- 汎用系 ---*/
section h2 {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	text-align:center;
	font-size:24px;
}
section h2 span {
	display:block;
	font-size:18px;
	color:#c0c0c0;
}
@media screen and (max-width: 767px) {
	
}

@media screen and (min-width: 768px) and (max-width: 1120px) {
	
}



/*--- フッター ---*/
footer{
	margin-top:80px;
}
#copyright {
	text-align:center;
	padding:0 0 30px;
	font-size:12px;
	color:#999;
}
@media screen and (max-width: 767px) {
	footer{
		
	}
}
@media screen and (min-width: 768px) and (max-width: 1120px) {
	footer{
		
	}
}


/*--- その他 ---*/