<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 基本レイアウト ここから↓ */
@import url(common.css);
body {
	background-color:lemonchiffon;
	color:chocolate;
	color: black;
}
header, nav, #breadcrumb, #contents, footer {
	width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
header h1 {
	margin: 0 0 26px 0;
	text-align: center;
}
nav ul {
	list-style-type:none;
	margin: 0 0 30px 0;
	text-align: center;
	padding-left: 0;
	overflow: hidden;
}
nav ul li {
	width: 333px;
	float: left;
}
nav ul li a {
	height: 20px;
	padding-top: 22px;
	text-align: right;
	overflow: hidden;
}

#main {
	width: 760px;
	float: left;
}
#sub {
	width: 230px;
	float: right;
}
footer {
	padding-top: 70px;
}
#main h1 {
	margin: 5px 0 10px 0;
	padding: 30px 0 10px 65px;
	background-image: url("../images/hi1_04.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, left bottom;
	font-size: 156.25%;
}

#main h2 {
	margin: 5px 0 10px 0;
	padding: 30px 0 10px 10px;
}
/* 基本レイアウト ここまで↑ */

/* トップページ ここから↓ */
.name {
	text-align: right;
	padding: 20px 20px 10px 10px;
}

#news ul {
	list-style-type: none;
	padding-left: 0;
}
#news ul li {
	padding: 20px 0 20px 175px;
	border-bottom: 1px dotted #6c5f45;
	color: #342300;
	text-indent: -175px;
}
/* トップページ ここまで↑ */

/* 「コンセプト」ページ ここから↓ */
.concept_box {
	margin-bottom: 30px;
	overflow: hidden;
}
.concept_box:last-child {
	margin-bottom: 0;
}
/* 「コンセプト」ページ ここまで↑ */

/* 「プランのご案内」ページ ここから↓ */
table thead tr th {
	background-color: #eee8cc;
}
table tbody tr:nth-child(odd) {
	background-color: #ffffff;
}
/* 「プランのご案内」ページ ここまで↑ */

/* 「Gallery」ページ ここから↓ */
.gallery_slide figure  {
	margin: 0 0 15px 0px;
}

.gallery_slide img:hover {
	filter: brightness(1.2); 
}

.gallery_box figure {
	width: 360px;
	margin: 0 0 15px 28px;
	float: left;
}
.gallery_box figure:first-child {
	margin-left: 0;
}

.gallery_box figure:hover {
	filter: brightness(1.2); /* マウスホバー時に画像を明るくする */
}
/* 「Gallery」ページ ここまで↑ */

/* 「お問い合わせ」ページ ここから↓ */
input[type="text"] {
	width: 200px;
}
input[type="email"] {
	width: 300px;
}
/* 「お問い合わせ」ページ ここまで↑ */

@media screen and (max-width: 767px) {
  /* TOP画像の縮小を無効化する */
  #graphic ul li img {
    max-width: none; /* 最大幅を無効にする */
    width: auto; /* 幅を自動に設定する */
    height: auto; /* 高さも自動に設定する */
  }
}
@media screen and (max-width: 767px) {
  /* TOP画像の縮小を無効化する */
   #top hi img {
    max-width: none; /* 最大幅を無効にする */
    width: auto; /* 幅を自動に設定する */
    height: auto; /* 高さも自動に設定する */
  }
}</pre></body></html>