@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
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,main,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size:16px;
	font-family:"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height:1.6;
	color:#333;
	background:#fff8c2;
}

#contents {
	width:100%;
	margin:0;
}

.inner {
	position:relative;
	width:100%;
	max-width:980px;
	margin:0 auto;
}

a {
	color:#fff;
	text-decoration:none;
}
a:hover {
	color:#fff;
	text-decoration:underline;;
}

h2 {
    position: relative;
	margin-bottom:1em;
    padding:14px 12px 12px;
	font-size:26px;
	font-weight:bold;
	text-align:center;
	color:#ed7d31;
}
h2:before,h2:after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 6px;
    box-sizing: border-box;
}
h2:before {
    top: 0;
    border-top: 1px solid #ed7d31;
    border-bottom: 2px solid #ed7d31;
}
h2:after {
    bottom: 0;
    border-top: 2px solid #ed7d31;
    border-bottom: 1px solid #ed7d31;
}

h5 {
	margin:1em 1em 1.5em;
    padding:10px 15px 8px;
	font-size:18px;
	color:#fff;
	background:#ed7d31;
	box-shadow: 0px 0px 0px 8px #a2dffe;
}

h3 {
	margin:8px 8px 1.5em;
	padding: 8px 10px 4px 14px;
	font-size:20px;
	color:#fff;
	background: #ed7d31;
	box-shadow: 0px 0px 0px 8px #ed7d31;
	border: dashed 1px #fff;
}

h4 {
	margin-bottom:0.25em;
	font-size:16px;
}
h4:before {
	content:"\00ab";
}
h4:after {
	content:"\00bb";
}

p {
	margin:0 0 1em 0;
}

img {
	vertical-align:bottom;
}

em {
	font-weight:bold;
}

strong {
	font-weight:bold;
	color:#ef8100;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom:1em;
	padding:1em;
	border:1px dotted #ddd;
	border-left:5px solid #ddd;
}

ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
	list-style:disc;
}
ol li {
	list-style:decimal;
}
li {
	margin-left:2em;
}

dt {
	margin-bottom:0.5em;
	border-bottom:1px dotted #ddd;
}
dt:before {
	content:"\0025a0";
}
dd {
	margin-bottom:1em;
}

table {
	width:100%;
	margin-bottom:0;
	border-collapse:collapse;
	border:1px solid #ccc;
}
th {
	width:30%;
	padding:10px;
	text-align:center;
	vertical-align:middle;
	border:1px solid #ccc;
	background:#fcece0;
	white-space: nowrap;
}
td {
	padding:10px;
	text-align:left;
	border:1px solid #ccc;
}

@media screen and (max-width: 500px){
	h2 {
		font-size:24px;
	}
	
	h3 {
	font-size:18px;
	}
}

/*================================================
 *  汎用クラス
 ================================================*/
.list {
	padding:0 0 0 2em;
}

.list li {
	margin:0;
	padding:0;
	list-style:none;
	text-indent:-1.3em;
}
.list li:before {
	content:"\002605\00a0";
	color:#ffc720;
}

.temp {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}

.img {
	float:left;
	width:300px;
}

.text {
	float:right;
	width:450px;
}

.photo {
	margin:20px 0;
	padding:10px;
	box-shadow:rgba(113, 135, 164, 0.8) 0 3px 15px 0;
	background:#fff;
}

.photo img {
	max-width:100%;
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
    box-sizing:border-box;
    width:100%;
	margin:30px 0 1em;
}

.headerInner {
    box-sizing:border-box;
	width:980px;
	margin:0 auto;
    padding:30px;
	background-image: url(../img/header_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius:10px;
}

header h1 {
	padding: 0 0 0 85px;
	background-image: url(../img/header_logo.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
	line-height:70px;
}
header h1 {
	margin-bottom:25px;
	font-size:30px;
	font-weight:bold;
	text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}
header p {
	margin:0;
	color:#000;
	text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

@media screen and (max-width: 500px){
	header h1 {
		padding: 0 0 0 60px;
		background-position: 0 3px;
		background-size: 50px;
		line-height:60px;
	}
	header h1 {
		margin-bottom:10px;
		font-size:19px;
	}
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
nav {
	width:100%;
	position:fixed;
	top:0;
	left:0;
	padding:10px 0;
	opacity:0.8;
	background:#e86a25;
	z-index:10;
}
nav ul {
	display: flex;
	justify-content: space-between;
	margin:0;
}
nav li {
	list-style:none;
	margin:0;
	padding:0 40px;
}
nav li a {
	color:#fff;
	text-decoration:none;
}
nav li a:hover {
	color:#fff;
	text-decoration:underline;;
}

/* gnav 未使用 ここから
nav {
	width:100%;
	position:fixed;
	top:0;
	left:0;
	opacity:0.8;
	background:#e86a25;
	z-index:10;
}
nav ul {
	position:relative;
	margin:0;
}

nav ul li {
    position:relative;
    margin:0;
    padding:0;
    list-style:none;
}

nav ul li a {
    display:block;
    margin:0;
    padding:16px 0;
    background:#e86a25;
    color:#fff;
    font-size:16px;
    line-height:1;
    text-decoration:none;
}

nav ul li:hover > a {
    color:#fff;
    background:#d93b0d;
    text-decoration:none;
}

nav ul.gnav > li {
    position:relative;
    float:left;
    margin:0;
    padding:0;
    text-align:center;
    list-style:none;
}

nav ul.gnav > li:nth-child(1) {
    width: 30%;
}
nav ul.gnav > li:nth-child(2) {
    width: 70%;
}

@media screen and (max-width:500px) {
	nav ul li a {
		font-size:12px;
	}
}
 gnav 未使用 ここまで */



/*================================================
 *  メイン
 ================================================*/
section {
	box-sizing:border-box;
	width:100%;
	margin-bottom:30px;
	padding:30px;
	background:#fff;
}

/* 2カラム */
.twoCol {
	overflow:hidden;
	margin-bottom:2.5em;
}
.twoCol:last-child {
	margin-bottom:0;
}
.twoColInner {
	display: flex;
	gap: 4%;
	flex-wrap: wrap; /* レスポンシブ対応用 */
}
.twoColInner .box1,
.twoColInner .box2 {
	font-size:14px;
}

.bukken {
    display: flex;
    flex-direction: column;
    width: 48%;
    box-sizing: border-box;
}

.bukken-body {
    flex: 1 1 auto;
}

.bukken-footer {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.bukken-footer table {
	width: 100%;
	border-collapse: collapse;
	height: 100%;
}
.bukken-footer td,
.bukken-footer th {
	vertical-align: top;
}

.exterior {
	overflow:hidden;
	margin-bottom:0.5em;
	text-align:center;
}

.exterior p {
	margin:0;
}
.exterior p img {
	width:auto;
	max-height:287px;
	text-align:center;
}

.setsubi {
	overflow:hidden;
	margin-bottom:1em;
}
.setsubi ul {
	overflow:hidden;
	margin:1.492% -1.492% 0 0;
}
.setsubi li {
	list-style:none;
	float:left;
	width:31.840%;
	margin:0 1.492% 1.492% 0;
}
.setsubi li img {
	width:100%;
}

img.viewer-target {
	cursor: zoom-in;
}

/* --- 2025/08/06 修正（反映させない）
@media screen and (max-width: 500px){
	.twoCol {
		margin-right:0;
	}
	
	.twoColInner {
		flex-direction: column;
	}

	.twoColInner .box1,
	.twoColInner .box2 {
		width:100%;
	}
	.twoColInner .box1 {
		margin-bottom:2.5em;
	}

	.bukken {
		width: 100%;
		margin-bottom: 0;
	}
}
 --- */

/*================================================
 *  フッター
 ================================================*/
footer {
	clear:both;
	margin-bottom:60px;
	font-size:14px;
	color:#fff;
	background:#ed7d31;
}

.footerInner {
    box-sizing:border-box;
	width:980px;
	margin:0 auto;
    padding:30px;
	border-radius:10px;
}
.footerInner p {
	margin-bottom:0.5em;
}

.address {
	margin:0;
    padding:0;
	line-height:1;
}

.footerInner hr {
	height: 1px;
	background-color: #fff8c2;
	border: none;
	color: #fff8c2;
}

.footerLogo {
	padding: 0 0 0 65px;
	background-image: url(../img/footer_logo.png);
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: contain;
	line-height:50px;
}
.footerLogo {
	font-size:24px;
	font-weight:bold;
}

@media screen and (max-width: 500px){
	footer {
		margin-bottom:40px;
	}

	.footerLogo {
		padding: 0 0 0 50px;
		line-height:40px;
	}
	.footerLogo {
		font-size:18px;
	}
}

.copyright {
	clear:both;
	padding:20px 0;
	font-size:11px;
	text-align:center;
	color:#fff;
	background:#a99770;
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#111;
}
.totop img:hover {
	background:#333;
}

/*================================================
 *  タブレット/スマートフォン
 ================================================*/
/* スクロールバーを考慮して20px大きいサイズで切り替え */
@media screen and (max-width:799px) {
	body {
		box-sizing:border-box;
		width:100%;
		font-size:14px;
	}

	#contents {
		box-sizing:border-box;
		width:100%;
		padding:0 10px;
	}
	
	header {
	    box-sizing:border-box;
	    width:100%;
		margin:20px 0 1em;
		padding:0 10px;
	}
	
	.headerInner {
	    box-sizing:border-box;
		width:100%;
		margin:0;
	    padding:20px;
		background-image: url(../img/header_bg-sp.jpg);
	}
	
	section {
		padding:20px;
	}
	
	.footerInner {
	    box-sizing:border-box;
		width:100%;
		margin:0;
	    padding:20px;
	}
}

@media screen and (min-width: 500px){
    .br-sp {display: none; }
}


