@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("animation.css");
@import url("inview.css");


/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	margin: 0;padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
	font-size: medium;
}

body {
	font-family: "Noto Sans JP", Meiryo, "BIZ UDPGothic", "Yu Gothic", sans-serif;
	-webkit-text-size-adjust: none;
	background-color: #fefef1;
	color: #57524b;
	line-height: 1.5;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*ul,olタグ*/
ul, ol {margin-top:0;margin-bottom: 30px;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #57524b;
	transition: 0.3s;
}

a:hover {
	color: #938a7d;
}


/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	padding: 5px;
}

/*ロゴ画像*/
.header .header-logo {
	margin: 0;
	font-size: 0.875rem;
}

.header .header-logo img {
	max-width: 60px;
}

/*ソーシャルメディアのアイコン*/
.header .header-icons {
	display: flex;
	align-self: center;
	gap: 1rem;
	margin: 0;
	padding-right: 15px;
	list-style-type: none;
}

.header .header-icons i {
	font-size: 1.5rem;
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: -15px;		/*上からの配置場所指定*/
	left: -20px;	/*左からの配置場所指定*/
	width: 100px;	/*幅*/
	height: 100px;	/*高さ*/
	cursor: pointer;
	background: #F7A459 url(../images/ham.png) no-repeat center top/100px;/*背景色、ハンバーガメニュー画像の読み込み。最後のpxは上のwidthとheightと#menubar_hdr.hamと揃えておいて下さい。*/
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;	/*角丸の指定*/
	box-shadow: 2px 2px 0px 4px rgba(0,0,0,0.1);		/*ボックスの影。右へ、したへ、ぼかし幅、広げる距離。0,0,0は黒の事で0.1は色が10%でた状態の事。*/
	transition: 0.2s;
}

/*マウスオン時*/
#menubar_hdr:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.ham {
	background: #ff0000 url(../images/ham.png) no-repeat center bottom/100px;
}


/*メニュー設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {display: none;}
#menubar.db {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;width: 100%;height: 100%;
	display: flex;
	justify-content: center;
	padding-top: 80px;			/*上部にあける余白*/
	font-size: 1.3rem;			/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	animation: opa1 1s both;	/*フェードインのアニメーション*/
	background: #fff;			/*背景色*/
	box-shadow: #F7A459 0px 0px 500px inset;	/*ボックスの影。右へ、下へ、ぼかし幅、insetは内側への影という意味。*/
}

/*最後のメニューの下に余白をあける*/
#menubar.db li:last-of-type a {
	padding-bottom: 80px;
}

/*メニュー1個あたりの設定*/
#menubar ul a {
	display: block;text-decoration: none;
	padding: 20px;	/*メニュー内の余白*/
}

/*装飾文字（英語表記）*/
#menubar ul span {
	display: block;
	font-size: 0.7em;	/*文字サイズ。70%。*/
	opacity: 0.5;		/*透明度。50%色がでた状態。*/
}


/*mainブロック設定
---------------------------------------------------------------------------*/
.main .mainvisual {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	width: 100%;
	height: 600px;
	padding-bottom: 120px;
	padding-left: 50px;
	background: url("../images/mainvisual.jpg") no-repeat center / cover;
}

.main .mainvisual::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(#0000, #443a35 160%); */
	background-color: rgba(0, 0, 0, 0.1);
}

.main .mainvisual .catchcopy {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 15px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.main .mainvisual .catchcopy_inner {
	padding: 0 12px;
	background-color: #fff;
}

.main .section:first-of-type {
	position: relative;
	margin-top: -80px;
}

.main .section-inner {
	margin: 0 auto;
	padding: 60px 30px;
	text-align: center;
}

/*mainブロック内のh2タグ*/
.main .section-title {
	position: relative;
	color: #F7A459;
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	margin: 0 0 40px;
}

/*装飾文字(small)の指定*/
.main .section-title .section-title-small {
	display: block;
	font-size: 0.5em;
}

/*mainブロック内のh3タグ*/
.main .section-subtitle {
	position: relative;
	font-size: 1.25rem;
	margin: 0 0 25px;
}

/*mainブロック内のh3タグ内のulineタグ*/
.main h3 .uline {
	display: inline-block;
	background: url(../images/u_line1.png) repeat-x center bottom / 100px;
	padding: 0 15px 10px;
}

/*mainブロックのpタグ*/
.main p {
	margin-bottom: 30px;
	line-height: 2;
}

.main .section-text--left {
	text-align: left;
}

.main .strong {
	font-weight: bold;
}

.main .section-list {
	padding-left: 25px;
	text-align: left;
}

.main .section-list-item {
	margin-bottom: 8px;
}

.main .section-image {
	margin-bottom: 30px;
}

.main .section-illust {
	display: flex;
	justify-content: center;
}

.main .section-illust-image {
	max-width: 250px;
}

/*微調整*/
main h2 + p,main h3 + p {
	margin-top: -10px;
}


/*decoブロック（色がついた装飾タイプのブロック）
---------------------------------------------------------------------------*/
/*decoブロックの設定*/
.section.section--deco {
	background: 
	url(../images/bg_deco_top.svg) repeat-x center top / 600px,
	url(../images/bg_deco_bottom.png) repeat-x center bottom / 1000px;
	padding-top: 80px;
	padding-bottom: 54px;
}

.section.section--room {
	padding-top: 0;
	background: #f4ad40;
}

/*上で読み込む背景画像のカラーを抜き出して指定して下さい。*/
.section.section--deco > .section-inner {
	background-color: #f7a459;
}

.section.section--room > .section-inner {
	background-color: #f4ad40;
}

/*decoブロックのh2見出し*/
.section.section--deco .section-title,
.section.section--deco .section-subtitle {
	color: #f9f1e1;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

/*decoブロック、フッターブロック内にあるcolor-themeの文字色*/
.deco .color-theme, .deco .color-theme a,
#footer .color-theme {
	color: #ffe13d !important;
}

/*リンクテキストのマウスオン時の文字色*/
.deco a:hover {
	color: #726b62;
}

/*ソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.section-icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin: 50px 0 0;
	padding: 0;
	list-style-type: none;
}

.section-icons i {
	font-size: 2rem;
}



/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
---------------------------------------------------------------------------*/
/*フッターブロック*/
#footer {
	background: #f7a459;
	color: #fff;
	margin-top: 50px;
	font-size: 0.875rem;
}

#footer .footer-inner {
	padding: 50px 30px 20px;
}

/*リンクテキスト*/
#footer a {
	color: #fff;
}

/*フッター内のロゴ画像*/
#footer .footer-logo img {
	display: block;
	position: relative;
	z-index: 1;
	width: 150px;
	margin: -120px auto 30px;
	background: #fff;
	border-radius: 50%;
	padding: 30px;
	border: 5px solid #F7A459;
}


/*footer内にある地図
---------------------------------------------------------------------------*/
#footer .map {
	margin-top: -50px;
	margin-bottom: 50px;
}


/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.footermenu {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
}

/*ulタグ（メニューの列単位）*/
.footermenu .footermenu-list {
	margin: 0;
	padding: 0 5px;
	flex: 1;
	list-style: none;
}

.footermenu .footermenu-item {
	margin-bottom: 5px;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.footermenu .footermenu-icons {
	display: flex;
	align-self: center;
	gap: 1rem;
}

.footermenu .footermenu-icons i {
	font-size: 40px;
}


/*フッター設定（最下部のコピーライトの部分）
---------------------------------------------------------------------------*/
.footer-bottom {
	text-align: center;
}
.footer-bottom .footer-copyright {
	font-size: 1rem;
}
.footer-bottom .pr {
	display: block;
	margin-top: 30px;
}



/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;
}

/*ボタン*/
.btn a,
.btn input {
	display: inline-block;text-decoration: none;border: none;
	color: #fff;
	border-radius: 3px;
	padding: 15px 40px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	font-size: 1rem;
	background: #1b92ab;
	letter-spacing: 0.1em;	/*文字間隔を少し広くする指定*/
}

/*ボタンのマウスオン時*/
.btn a:hover,
.btn input:hover {
	filter: brightness(1.1);	/*少しだけ明るくする*/
	cursor: pointer;
	color: #fff;
}

/*矢印アイコン（Font Awesome）*/
.btn.arrow a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	color: #fff;
	font-weight: bold;
	display: inline-block;
	padding-left: 15px;
	transform: scale(1.4);	/*サイズを1.4倍にする設定*/
	transition: 0.3s;
}

/*矢印アイコン（Font Awesome）のマウスオン時*/
.btn.arrow a:hover::after {
	transform: scale(1.6);	/*サイズを少し大きくする*/
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	position: fixed;
	z-index: 99;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.3);
	width: 60px;
	line-height: 60px;
	border-radius: 58% 42% 61% 39% / 44% 55% 45% 56%;
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.5);
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #1b92ab !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 0px 10px;background: rgba(0,0,0,0.05);border-radius: 5px;margin: 5px 0;}
.deco .look {background: rgba(255,255,255,0.2);}



/*---------------------------------------------------------------------------
ここから下は画面幅700px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:700px) {

	/*header
	---------------------------------------------------------------------------*/
	.header {
		padding: 20px 30px;
	}

	/*ロゴ画像*/
	.header .header-logo {
		font-size: 1.2rem;
	}

	.header .header-logo img {
		max-width: 80px;
	}


	/*３本バー（ハンバーガー）アイコン設定
	---------------------------------------------------------------------------*/
	/*３本バーブロック*/
	#menubar_hdr {
		top: -20px;		/*上からの配置場所指定*/
		width: 130px;	/*幅*/
		height: 130px;	/*高さ*/
		background-size: 130px;	/*サイズのみ、変更*/
	}

	/*×印が出ている状態の設定。*/
	#menubar_hdr.ham {
		background-size: 130px;	/*サイズのみ、変更*/
	}


	/*mainブロック設定
	---------------------------------------------------------------------------*/
	.main .mainvisual .catchcopy {
		font-size: 1.75rem;
	}


	/*footer（フッターメニューとコピーライトを囲むブロック。下にあるfooterとは異なるタグなので間違えないで下さい。）
	---------------------------------------------------------------------------*/
	/*フッターブロック*/
	#footer {
		margin-top: 100px;
	}

	/*フッター内のロゴ画像*/
	#footer .logo img {
		width: 250px;
		border: 10px solid #F7A459;
	}


	/*footer内にある地図。
	---------------------------------------------------------------------------*/
	#footer .map {
		margin-top: -100px;
	}

	#footer .map iframe {
		height: 300px;
	}


	/*フッターメニュー設定
	---------------------------------------------------------------------------*/
	#footer .footermenu-item a:hover {
		transition: 0.3s;
	}
	#footer .footermenu-item a:hover {
		text-decoration: none;
	}


	/*PAGE TOP（↑）設定
	---------------------------------------------------------------------------*/
	/*ボタンの設定*/
	.pagetop a {
		width: 100px;
		line-height: 100px;
	}

}



/*---------------------------------------------------------------------------
ここから下は画面幅900px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {


	/*全体の設定
	---------------------------------------------------------------------------*/
	html, body {
		font-size: 1.125rem;
	}


	/*contentsブロック
	---------------------------------------------------------------------------*/
	.sp-only {
		display: none;
	}

	.section .section-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 100px 30px;
	}

	.section .section-title {
		font-size: 2rem;
	}
	
	/*decoブロック（色がついた装飾タイプのブロック）
	---------------------------------------------------------------------------*/
	/*decoブロックの設定*/
	.section.section--deco {
		background: 
		url(../images/bg_deco_top.svg) no-repeat center top / contain,
		url(../images/bg_deco_bottom.png) repeat-x center bottom / 1000px;
		padding-top: 100px;
	}
	
	.section.section--room {
		padding-top: 0;
		background: #f4ad40;
	}


	/*その他
	---------------------------------------------------------------------------*/
	.ws {width: 48%;display: inline;}

}
