@charset "utf-8";
/*
Theme Name: tpl_090_rwd
Theme URI: http://f-tpl.com/
Description: tpl_090_rwd
Version: 1.0
Author: f-tpl
Author URI: http://f-tpl.com/
Tags: simple
*/

/*リセット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");

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {
 --primary-color: rgb(255, 202, 61);
}
/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {
html, body {
	font-size: 16px;	/*基準となるフォントサイズ。*/
}
}/*追加指定ここまで*/
body {
	font-family: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #333;		/*文字色*/
	line-height: 2;		/*行間*/
}
/*リセット*/
figure {
	margin: 0;
}
dd {
	margin: 0;
}
nav {
	margin: 0;
	padding: 0;
}
ul {
	list-style:none;
}
/*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%;
}
/*他*/
input {
	font-size: 1rem;
}
section + section {
	margin-top: 3rem;
}


/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
 0% {
opacity: 0;
}
 100% {
opacity: 1;
}
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #777;		/*文字色*/
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}
/*マウスオン時*/
a:hover {
	color: var(--primary-color);	/*css冒頭で指定しているテーマカラーを読み込みます*/
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;					/*flexを使う指定*/
	flex-direction: column;			/*子要素を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	max-width: 1800px;	/*サイトの最大幅。これ以上広がらない。*/
	margin: 0 auto;
	position: relative;
}
/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
}
/*トップページのヘッダーブロック*/
.home header {
	background: none;
	position: relative;	/*ロゴとヘッダーメニューを絶対配置させる為に必要な指定*/
}
/*ロゴ*/
#logo {
	margin: 0;
	height: 80px;			/*高さ。ロゴの高さではなく、トップ以外でのロゴが入っている色のついた部分の高さとして使っています。*/
	display: flex;			/*flexを使う指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-left: 3%;		/*左側に空ける余白*/
}
#logo img {
	display: block;
	width: 300px;	/*ロゴ画像の幅*/
}
/*トップページのロゴ*/
.home #logo {
	height: auto;
	padding-left: 0;
	position: absolute;	/*絶対配置する為の指示*/
	left: 5%;			/*headerブロックに対して左からの配置指定*/
	top: 2%;			/*headerブロックに対して上からの配置指定*/
}
.home #logo img {
	width: 350px;	/*ロゴ画像の幅*/
}
.home .cp {
	width:400px;
	height: auto;
	padding-left: 0;
	position: absolute;	/*絶対配置する為の指示*/
	left: 5%;			/*headerブロックに対して左からの配置指定*/
	top: 30%;			/*headerブロックに対して上からの配置指定*/
}


/*画面幅680px以下の追加指定*/
@media screen and (max-width:680px) {
/*ロゴ*/
		.home #logo {
	height: auto;
	padding-left: 0;
	position: absolute;	/*絶対配置する為の指示*/
	left: 5%;			/*headerブロックに対して左からの配置指定*/
	top: 5%;			/*headerブロックに対して上からの配置指定*/
}
#logo img {
	width: 220px;	/*ロゴ画像の幅*/
}
/*トップページのロゴ*/
	.home #logo img {
	width: 150px;	/*ロゴ画像の幅*/
}
}/*追加指定ここまで*/
/*カテゴリーメニュー（カテゴリーメニューは、header内と、開閉ブロックの#menubar内で使っています）
---------------------------------------------------------------------------*/
/*メニューブロック*/
.category-menu {
	color: #fff;		/*文字色*/
	text-align: left;	/*テキストを左寄せ*/
}
.category-menu ul {
	margin: 0;
	display: flex;
	justify-content: space-between;
}
/*開閉メニューの中のメニューブロック*/
#menubar .category-menu ul {
	display: block;		/*横並びにならないように、blockに変更する*/
	margin: 0 auto;		/*ブロック要素を中央に配置する*/
	max-width: 300px;	/*最大幅*/
}
/*トップページのheader内のメニューブロック*/
.home header .category-menu {
	position: absolute;	/*headerに対して絶対配置*/
	bottom: 0px;		/*headerブロックに対して下からの配置指定*/
	left: 0px;			/*headerブロックに対して左からの配置指定*/
	width: 100%;
}
/*リンクテキスト*/
.category-menu a {
	text-decoration: none;
	display: block;
	color: inherit;
	padding: 0.3rem 1rem 1rem;		/*上、左右、下へのメニュー内の余白。*/
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	position: relative;				/*アイコンを絶対配置する為に必要な指示*/
}
/*開閉メニューの中のリンク*/
#menubar .category-menu a {
	background: transparent;	/*背景色をリセット（透明）に*/
}
/*マウスオン時のリンク*/
.category-menu a:hover {
	filter: brightness(1.2);	/*色を少し明るくする*/
}
/*メニュー１個あたりの設定*/
.category-menu li {
	flex: 1;
}
/*アイコンの共通設定*/
.category-menu a::before {
	display: inline-block;
	background-color: #fff;	/*背景色*/
	color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	font-size: 1.5rem;		/*文字サイズ*/
	width: 3rem;			/*幅*/
	line-height: 3rem;		/*高さ*/
	border-radius: 50%;		/*円形にする*/
	text-align: center;		/*アイコンをセンタリング*/
	position: absolute;		/*メニュー（.category-menu a）に対して絶対配置*/
	top: 1.3rem;			/*上からの配置場所の指定*/
	transition: 0.3s;		/*マウスオン時にかける時間。0.3秒。*/
}
/*アイコンのマウスオン時の共通設定*/
.category-menu a:hover::before {
	transform: scale(1.1);	/*元の1.1倍に拡大*/
}
/*１つ目のメニューのアイコン*/
.category-menu li:nth-of-type(1) a::before {
	content: "\f6d3";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
}
/*２つ目のメニューのアイコン*/
.category-menu li:nth-of-type(2) a::before {
	content: "\f6be";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
}
/*３つ目のメニューのアイコン*/
.category-menu li:nth-of-type(3) a::before {
	content: "\f520";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
}
/*４つ目のメニューのアイコン*/
.category-menu li:nth-of-type(4) a::before {
	content: "\f578";	/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
}
/*メニューの１行目と２行目の共通設定（html側ではなくプレビュー時の１行目と２行目のことです）*/
.category-menu a .line1, .category-menu a .line2 {
	display: block;
	margin-left: 4rem;	/*左に空けるスペース。４文字分。*/
}
/*メニューの１行目の追加設定*/
.category-menu a .line1 {
	background: url(../images/uline1.png) repeat-x left bottom / auto 1px;	/*ドットラインを背景画像として読み込んでいます。最後の1pxは高さ。例えば2pxにすると大きなドットになります。*/
}
/*メニューの１行目の強調文字*/
.category-menu a .line1 span {
	font-size: 1.5rem;				/*文字サイズを1.5倍に*/
	margin-right: 0.2em;			/*右側に空けるスペース。「を探す」との間に空ける余白です。*/
}
/*メニューの２行目の追加設定*/
.category-menu a .line2 {
	font-size: 0.7rem;		/*文字サイズを0.7倍に。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-left: 0.3rem;	/*左側に空ける余白*/
}

	/*画面幅800px以下の追加指定*/
	@media screen and (max-width:800px) {
/*ヘッダーのカテゴリーメニューブロックを非表示に*/
	header .category-menu {
	display: none;
}
}/*追加指定ここまで*/
/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {
	display: block;
	text-decoration: none;
}
#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menubar {
	display: none;
}
#menubar.d-b, #menubar_hdr.d-b {
	display: block;
}
#menubar.d-n, #menubar_hdr.d-n {
	display: none;
}
/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px 20px 20px;			/*ブロック内の余白。上、左右、下。*/
	background: rgba(0,0,0,0.9);		/*背景色。0,0,0は黒の事で0.9は色が90%出た状態。*/
	text-align: center;					/*内容をセンタリング*/
	animation: animation1 0.2s both;	/*animation.cssのanimation1を実行する。0.2sは0.2秒の事。*/
	color: #fff;						/*文字色*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
#menubar {
	width: 70%;		/*メニュー幅を上書き*/
}
}/*追加指定ここまで*/
/*メニュー１個あたりの設定*/
#menubar a {
	color: inherit;
	padding: 10px;		/*メニュー内の余白*/
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 40px;			/*右からの配置場所指定*/
	top: 16px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexを使う指定*/
	flex-direction: column;			/*子要素（３本バー）を縦並びにする*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	background:#ffca3d;	/*背景色*/
	border-radius: 50%;				/*円形にする*/
	transform: scale(1.3);			/*本来のサイズの1.3倍にする*/
}
/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid #fff;	/*線の幅、線種、色*/
}
/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1), #menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}
/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}
/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
	display: none;	/*２本目は使わないので非表示にする*/
}
/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width:100%;
}
#contents_sub {
	width:100%;
	background-image: url(images/bg-beige.jpg);
	background-repeat: repeat;
	padding:50px 0;
}
.inner {
	width:1080px;
	margin:0 auto;
	background: #fff;
	padding: 50px;
}
@media screen and (max-width:680px) {
.inner {
	width:90%;
	margin:0 auto;
	background: #fff;
	padding: 20px;
}
}
/*見出し
---------------------------------------------------------------------------*/
.heading-01 {
	font-size:24px;
	margin:0;
	padding: .2em .7em;
	border-left: 5px solid #ffc840;
}
.ttl_center1 {
	font-size:32px;
	font-weight: bold;
	line-height:1em;
	padding-bottom: 0.8em;
	text-align: center;
	position: relative;
}
@media screen and (max-width:680px) {
.ttl_center1 {
	font-size:26px;
}
}
.ttl_center1 span {
	display:block;
	font-size:11px;
}
.ttl_center1::after {
	content: '';
	background-color: #ffca3d;
	width: 2em;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.page_title {
	margin-bottom:10px;
}
.page_title h2 {
	font-size:32px;
	text-align:center;
	padding:30px;
	margin:0;
	background-color:#fff9eb;
}
/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定（※頭にドットのある.mainとは異なる要素なので間違わないようにして下さい）*/
main {
	margin: 4rem 0 0;	/*ブロックの外側（上下、左右）に空けるスペース*/
}
@media screen and (max-width:680px) {
main {
	margin: 3rem 0 0;	/*ブロックの外側（上下、左右）に空けるスペース*/
}
}
/*mainブロック内のh3*/
main h3 {
	font-size: 1.2rem;		/*文字サイズ*/
	margin: 0 0 2rem;		/*h3の外側にとるスペース。上、左右、下への順番。*/
	padding: 7px 2rem;		/*h3内の余白。上下、左右への順番。*/
	background: #eee;		/*背景色*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
}
/*pタグ*/
main p {
	margin: 0 0 2rem;	/*pの外側にとるスペース。上、左右、下への順番。*/
}
/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
main.column .main {
	margin-bottom: 30px;		/*ボックスの下に空けるスペース。subとの間の余白です。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
/*カラムで使う為の指定*/
	main.column {
	display: flex;					/*flexを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}
/*2カラムの中にある.main要素（頭にドットがない「main」とは異なるので注意して下さい）*/
	main.column .main {
	margin-bottom: 0;
	order: 2;					/*並び順。数字の小さい順番に表示されます。*/
	width: calc(100% - 260px);	/*幅。ここの260pxの数字は下の.subの幅(230px)に、左右ブロックの間の余白(30px)を追加したものです。*/
}
/*2カラムの中にある.sub要素*/
	main.column .sub {
	order: 1;		/*並び順。数字の小さい順番に表示されます。*/
	width: 230px;	/*幅*/
}
}/*追加指定ここまで*/
/*sub,sideブロック設定
---------------------------------------------------------------------------*/
#contents .sub h3::before, #contents .side h3::before {
	border: none;
	padding: 0;
}
/*ブロック内のh3タグ*/
#contents .sub h3, #contents .side h3 {
	margin: 0;
	border: none;
	border-radius: 0;
	font-weight: normal;
	padding: 5px;		/*余白*/
	background-color: var(--primary-color);	/*css冒頭で指定しているprimary-colorを読み込みます*/
	color: #fff;		/*文字色*/
	text-align: center;	/*内容をセンタリング*/
}
#contents .sub h3 a, #contents .side h3 a {
	color: inherit;
}
/*サブメニュー設定
---------------------------------------------------------------------------*/
/*サブメニューブロック全体*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;	/*上、左右、下へのマージン*/
}
/*メニュー１個あたり*/
.submenu li {
	border-bottom: 1px solid rgba(0,0,0,0.2);	/*下線の幅、線種、色。0,0,0は黒の事で0.2は色が20%出た状態。*/
}
.submenu a {
	display: block;
	text-decoration: none;
	padding: 0.2rem 1rem;	/*上下、左右へのメニュー内の余白*/
}
/*アイコン（Font Awesome）*/
.submenu a::before {
	transition: 0.3s;
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0da";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #ABABAB;			/*アイコンの色*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
}
/*マウスオン時のアイコン設定*/
.submenu a:hover::before {
	color: #666;			/*アイコンの色*/
}
/*box1設定（このテンプレートでは、2カラム時のsubブロックでのみ使用しています）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.box1 {
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	padding: 10px;			/*ボックス内の余白*/
	border-radius: 5px;		/*角を丸くする指定*/
	margin-bottom: 1rem;	/*ボックスの下に空けるスペース*/
}
/*box1内で使った場合、下のマージンをなくす*/
.box1 .submenu {
	margin-bottom: 0;
}
/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	background: #444;	/*背景色*/
	color: #fff;		/*文字色*/
	padding: 50px 3%;	/*上下、左右へのボックス内の余白*/
	font-size: 0.9rem;	/*文字サイズ*/
}
#footer-contents a {
	color: inherit;
}
/*フッターコンテンツ内のh4*/
#footer-contents h4 {
	margin: 0;
	font-size: 1.3em;	/*文字サイズを親要素の1.2倍に*/
}
/*フッターコンテンツ内のロゴ*/
#footer-contents #footer-logo {
	max-width: 400px;	/*最大幅*/
}
/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;	/*下に空けるスペース*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
#footer-contents {
	display: flex;					/*flexを使う指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}
/*左側のブロック*/
	#footer-contents .left {
	margin-bottom: 0;	/*下のマージンをリセット*/
	width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
}
#footer-contents .right {
	width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	padding-left: 3%;	/*左側に空ける余白。左右ブロックの間の隙間です。*/
}
}/*画面幅900px以上の追加指定ここまで*/
/*テーブル（week）footer-contents内で使っています。
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.week caption {
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-bottom: none;	/*下線だけ消す*/
	background: #333;		/*背景色*/
	padding: 0.5rem 1rem;	/*caption内の余白。上下、左右に１文字分ずつとる。*/
}
/*weekテーブルブロック設定*/
.week {
	width: 100%;
	table-layout: fixed;
	text-align: center;	/*テーブル内のテキストをセンタリング*/
}
.week, .week td, .week th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色。*/
}
/*footer-contents内のマップ(iframe)と、詳細ページのYouTube(iframe)動画をレスポンシブにする設定。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*アスペクト比を調整するところです*/
	position: relative;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}
/*フッターメニュー設定
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	color: #000;		/*文字色*/
	font-size: 0.8rem;	/*文字サイズ。bodyのfont-sizeの80%です。*/
	padding: 30px 3%;	/*上下、左右へのボックス内の余白*/
}
/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
}
/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;
	list-style: none;
	padding: 0 2px;
	display: flex;		/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
	align-items: flex-start;
	flex-wrap: wrap;
}
#footermenu ul li {
	margin:0 10px;
}
/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;		/*太字にする*/
	color: #ccc;			/*文字色*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}
/*フッター設定
---------------------------------------------------------------------------*/
footer small {
	font-size: 100%;
}
footer {
	font-size: 0.7rem;		/*文字サイズ。bodyのfont-sizeの70%です。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
	color: #000;			/*文字色*/
	border-top: 1px solid #000;
}
/*リンクテキスト*/
footer a {
	color: inherit;
	text-decoration: none;
}
/*著作部分*/
footer .pr {
	display: block;
}
/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
/*大きな画像が表示されるブロック*/
.photo {
	max-width: 1000px;		/*最大幅*/
	margin: 0 auto 1rem;	/*ブロック要素を中央に配置。下に1文字分のマージンをとる。*/
}
/*サムネイル全体を囲むブロック*/
.thumbnail {
	display: flex;				/*flexを使う指定*/
	justify-content: center;	/*並びかたの種類の指定。これはセンタリングする指定。*/
	margin-bottom: 2rem;		/*下に空けるスペース。２文字分。*/
}
/*サムネイル画像*/
.thumbnail img {
	width: 100px;		/*サムネイルの幅*/
	margin: 2px;		/*サムネイル間のスペース*/
	cursor: pointer;	/*リンクタグではないが、クリックできる事をわかりやすくする為にリンクと同じポインターにしておきます。*/
	transition: 0.3s;	/*マウスオンまでにかける時間。3秒。*/
}
.thumbnail img:hover {
	opacity: 0.8;	/*マウスオン時に80%だけ色を出す。つまり薄くなります。*/
}
/*トップページ
---------------------------------------------------------------------------*/
.greeting {
	width:1080px;
	margin:0 auto 80px;
	display: flex;
	align-items: flex-end;
	overflow:hidden;
}
.greeting dl {
	width:50%;
	margin-right:5%;
}
.greeting dl dt {
	font-size:28px;
	font-weight:bold;
	line-height:1.4em;
	margin-bottom:30px;
}
.greeting .ph {
	width:45%;
}
.service {
	background-image:url(images/bg-beige.jpg);
	background-repeat:repeat;
	padding:80px 0;
}
.service_box1 {
	width:1080px;
	margin:50px auto;
	overflow:hidden;
}
#contents_sub .service_box1 {
	width:100%;
	border-top: 1px solid #ccc;
	padding-top: 50px;
}
.service_box1 dl {
	float:left;
	width:50%;
}
.service_box1 dl dt {
	font-size: 24px;
	font-weight: bold;
	padding: 0 .3em 1.2em .8em;
	text-indent: -.7em;
	line-height:1.4em;
}
.service_box1 dl dt:before {
	background-color: #ffca3d;
	content: "";
	display: inline-block;
	height: 1.2em;
	margin-right: .5em;
	vertical-align: -5px;
	width: .2em;
}
.service_ph01 {
	float:right;
	width:45%;
}
.service_box2 {
	width:1080px;
	margin:0 auto 50px;
	overflow:hidden;
}
#contents_sub .service_box2 {
	width:100%;
}
.service_box2 dl {
	float:right;
	width:50%;
}
.service_box2 dl dt {
	font-size: 24px;
	font-weight: bold;
	padding: 0 .3em 1.2em .8em;
	text-indent: -.7em;
	line-height:1.4em;
}
.service_box2 dl dt:before {
	background-color: #ffca3d;
	content: "";
	display: inline-block;
	height: 1.2em;
	margin-right: .5em;
	vertical-align: -5px;
	width: .2em;
}
.service_ph02 {
	float:left;
	width:45%;
}
.service_box3 {
	width:1080px;
	margin:0 auto;
	overflow:hidden;
}
#contents_sub .service_box3 {
	width:100%;
}
.service_box3 dl {
	float:left;
	width:50%;
}
.service_box3 dl dt {
	font-size: 24px;
	font-weight: bold;
	padding: 0 .3em 1.2em .8em;
	text-indent: -.7em;
	line-height:1.4em;
}
.service_box3 dl dt:before {
	background-color: #ffca3d;
	content: "";
	display: inline-block;
	height: 1.2em;
	margin-right: .5em;
	vertical-align: -5px;
	width: .2em;
}
.service_ph03 {
	float:right;
	width:45%;
}
.gallery {
	width:1080px;
	margin:0 auto 80px;
	padding:50px 0 0;
	background-image: url(images/obj02.png);
	background-size: 150px;
	background-position: 75% 0%;
}
.gallery ul {
	margin:0 0 30px;
	padding:0;
	overflow:hidden;
}
.gallery ul li {
	float: left;
	width: 340px;
	margin-right:30px;
	margin-bottom:20px;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.gallery ul li:nth-child(3n) {
	margin-right:0;
}
.gallery ul li img {
	margin-bottom:10px;
}
.gallery ul li p {
	margin:0;
}
.guide {
	background-image:url(images/bg-beige.jpg);
	background-repeat:repeat;
	padding:50px 0;
	position:relative;
}
.guide .obj {
	position:absolute;
	width:200px;
	top:-10%;
	left:20%;
}
.guide ul {
	width:1080px;
	margin:50px auto;
	padding:0;
	overflow:hidden;
}
.guide ul li {
	width:340px;
	float:left;
	margin-right:30px;
	text-align: center;
	list-style: none;
}
.guide ul li:last-child {
	margin-right:0;
}
.guide ul li img {
	height:40px;
	display:block;
	margin:0 auto 5px;
}
.guide ul li a {
	display:block;
}
.access {
	overflow:hidden;
}
.access h2 {
	line-height:1em;
}
.access h2 span {
	display:block;
	font-size:11px;
	color:#887c5b;
}
.access .txt {
	width:50%;
	height:450px;
	float:left;
	background:#4a422d;
	color:#fff;
	padding:50px;
}
.access .txt dl dt {
	font-size:14px;
}
.access .txt dl dd {
	font-size:24px;
	line-height:1.2em;
}
.access .map {
	width:50%;
	float:right;
}
/*「ブログ」ブロック
---------------------------------------------------------------------------*/
.blog_area {
	margin:80px 0 0;
}
.blog {
	width:1080px;
	margin:0 auto;
	padding:0;
	overflow:hidden;
}
.blog li {
	list-style:none;
	float: left;
	width: 340px;
	padding:30px 0;
	margin-right:30px;
}
.blog li:last-child {
	margin-right:0px;
}
.blog .thumb {
}
.blog .thumb img {
}
.blog .desc {
}
.blog a {
	color:#0472c9;
}
.blog a:hover {
	color:#d70101;
}
/*ブログ一覧ブロック*/
.postcard {
	list-style:none;
	overflow:hidden;
	border-bottom:1px solid #ccc;
	padding:30px 0;
}
.postcard .thumb {
	float:left;
	width:30%;
}
.postcard .desc {
	float:right;
	width:65%;
}
@media screen and (max-width:680px) {
.blog_area {
	margin:40px 0 0;
}
.blog {
	width:80%;
	margin:30px auto 0;
	padding:0;
	overflow:hidden;
}
.blog li {
	list-style:none;
	float: none;
	width: 100%;
	padding:0;
	margin-right:0px;
	margin-bottom:30px;
}
.blog li:last-child {
	margin-right:0;
	margin-bottom:30px;
}
}
/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
.news_area {
	width:1080px;
	margin:50px auto;
	padding:50px 0 0;
	background-image: url(images/obj01.png);
	background-size: 105px;
	background-position: 25% 5%;
}
.news {
	padding:0;
	margin-bottom:50px;
}
.news li {
	list-style:none;
	border-bottom:1px solid #ccc;
	padding:20px;
}
.news li dl dt {
	float:left;
	margin-right:20px;
}
.news li dl dd a {
	color:#0472c9;
	text-decoration:none;
}
.news li dl dd a:hover {
	color:#d70101;
}
/*お知らせ一覧ブロック*/
.news-list {
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .item a {
	display: flex;
	flex-wrap: wrap;
	flex-wrap: nowrap;
	text-decoration: none;
	color: #333;
	border-bottom: 1px solid #CCC;
	padding: 20px 30px;
}
.news-list .item a:hover {
	color:#0472c9;
}
.news-list .item a p.date {
	margin-right:30px;
}
.news-list .item:first-child a {
	padding-top:0;
}
@media screen and (max-width:680px) {
.news_area {
	width:80%;
	margin:50px auto;
	padding:10px 0 0;
	background-image: url(images/obj01.png);
	background-size: 90px;
	background-position: 5% 0%;
}
}
/*施設概要
---------------------------------------------------------------------------*/
.gallery02 {
	width:100%;
	margin:0 auto 80px;
	padding:50px 0 0;
	background-image: url(images/obj02.png);
	background-size: 150px;
	background-position: 75% 0%;
}
.gallery02 ul {
	margin:0 0 30px;
	padding:0;
	overflow:hidden;
}
.gallery02 ul li {
	float: left;
	width: 222px;
	margin-right:30px;
	margin-bottom:20px;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.gallery02 ul li:nth-child(4n) {
	margin-right:0;
}
.gallery02 ul li img {
	margin-bottom:10px;
}
.gallery02 ul li dl {
	margin:0;
	padding:0;
}
.gallery02 ul li dl dt {
	margin:0;
	padding:0;
	font-weight:bold;
}
.gallery02 ul li dl dd {
	font-size:14px;
	text-align:left;
}
@media screen and (max-width:680px) {
.gallery02 {
	width:100%;
	margin:0 auto 50px;
	padding:10px 0 0;
	background-image: url(images/obj02.png);
	background-size: 90px;
	background-position: 100% 5%;
}
.gallery02 ul {
	margin:30px 0;
	padding:0;
	overflow:hidden;
	display: flex;
	flex-wrap: wrap;
}
.gallery02 ul li {
	float: none;
	width: 47%;
	margin-right:6%;
	margin-bottom:6%;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.gallery02 ul li:nth-child(3n) {
	margin-right:6%;
}
.gallery02 ul li:nth-child(2n) {
	margin-right:0;
}
}
/*施設の特徴
---------------------------------------------------------------------------*/
.other {
	width:100%;
	margin:0 auto 80px;
	padding:50px 0 0;
}
.other ul {
	margin:0 0 30px;
	padding:0;
	overflow:hidden;
}
.other ul li {
	float: left;
	width: 306px;
	margin-right:30px;
	margin-bottom:20px;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.other ul li:nth-child(3n) {
	margin-right:0;
}
.other ul li img {
	margin-bottom:10px;
}
.other ul li p {
	margin:0;
}
@media screen and (max-width:680px) {
.other {
	width:100%;
	margin:0 auto 50px;
	padding:10px 0 0;
}
.other ul {
	margin:30px 0;
	padding:0;
	overflow:hidden;
	display: flex;
	flex-wrap: wrap;
}
.other ul li {
	float: none;
	width: 47%;
	margin-right:6%;
	margin-bottom:6%;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.other ul li:nth-child(3n) {
	margin-right:6%;
}
.other ul li:nth-child(2n) {
	margin-right:0;
}
}
/*btnの設定
---------------------------------------------------------------------------*/
/*ボタンを囲むブロック*/
.btn {
	text-align: center;	/*内容をセンタリング*/
}
/*ボタン*/
.btn, a.btn, button.btn {
	font-size:14px;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 5rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
}
/*ボタンのマウスオン時*/
.btn a:hover, .btn input:hover {
	filter: brightness(1.2);	/*少しだけ明るくする*/
	cursor: pointer;
}
/*listブロック内でのボタン*/
.list .btn a, .list .btn input {
	margin-top: 10px;	/*上にスペースを空ける*/
	display: block;		/*横幅いっぱいに広げる*/
}
a.btn-border {
	border: 1px solid #000;
	border-radius: 0;
	background:none;
}
a.btn-border:hover {
	color: #000;
	background: #ffca3d;
}
a .triangle {
	display: block;
	height: 0;
	width: 0;
	position: absolute;
	bottom: 8px;
	right: 8px;
	border-left: 10px solid transparent;
	border-bottom: 10px solid #ffca3d;
}
/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
}
/*質問*/
.faq dl {
	border: 1px solid #ccc;
	margin-bottom:30px;
	padding:0 30px;
	background:#fff;
}
.faq dt {
	font-size:24px;
	font-weight:bold;
	padding: 15px 0 15px 60px;
	line-height:60px;
	vertical-align:center;
	border-bottom:1px dotted #ccc;
	background-image:url("http://keiroen-hamano.com/wp-content/uploads/2026/09/q_icon.png");
	background-repeat:no-repeat;
	background-size:50px;
	background-position:left center;
}
/*回答*/
.faq dd {
	padding: 15px 0 15px 60px;
	line-height:60px;
	vertical-align:center;
	background-image:url("http://keiroen-hamano.com/wp-content/uploads/2026/09/a_icon.png");
	background-repeat:no-repeat;
	background-size:50px;
	background-position:left center;
}
/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}
@media screen and (max-width:680px) {
.faq dt {
	padding: 30px 0 30px 60px;
	line-height:1.2em;
	background-position:left 24px;
}
.faq dd {
	font-size:16px;
	line-height:1.4em;
	padding: 30px 0 30px 60px;
}
}
/*流れ
---------------------------------------------------------------------------*/
/* =========================================
   共通の枠組み
========================================= */
.cs-card-step-wrapper {
	width: 100%;
	margin: 0 auto 3.5em;
	padding: 10px 0;
}
.cs-card-step-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
/* =========================================
   各ステップ項目（カード＋下部余白）
========================================= */
.cs-card-step-item {
	position: relative;
	padding-bottom: 80px; /* カードとカードの隙間（ここに矢印が入る） */
}
/* 最後のステップは下の隙間をなくす */
.cs-card-step-item:last-child {
	padding-bottom: 0;
}
/* ▼ カード間の「下向き矢印」をCSSで描画 ▼ */
.cs-card-step-item::after {
	content: '';
	position: absolute;
	bottom: 36px; /* 下部余白（48px）の真ん中付近に配置 */
	left: 50%;
	/* 矢印のサイズと線の太さ */
    width: 14px;
	height: 14px;
	border-right: 3px solid #cbd5e1;
	border-bottom: 3px solid #cbd5e1;
	/* 要素を中央にずらし、45度回転させて「∨」の形を作る */
    transform: translateX(-50%) rotate(45deg);
	z-index: 1;
}
.cs-card-step-item:last-child::after {
	display: none;
}
/* =========================================
   カード本体のデザイン
========================================= */
.cs-card-step-box {
	background-color: #ffffff;
	border: 2px solid #e2e8f0; /* 未完了のグレー枠 */
	border-radius: 8px;
	padding: 30px;
	transition: all 0.3s ease; /* ホバーや状態変化のアニメーション */
	overflow:hidden;
}
/* =========================================
   カード内のヘッダー（STEP番号とタイトル）
========================================= */
.cs-card-step-header {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px dashed #e2e8f0; /* タイトル下の破線 */
}
.cs-card-step-num {
	display: inline-block;
	font-size:16px;
	font-weight: 800;
	color:rgb(255, 202, 61);
	background-color: #94a3b8; /* 未完了のグレー */
	padding: 4px 12px;
	border-radius: 20px;
	margin-right: 16px;
	letter-spacing: 0.05em;
	transition: background-color 0.3s ease;
	border:2px solid rgb(255, 202, 61);
}
.cs-card-step-title {
	font-size:26px;
	font-weight: 800;
	color: #1e293b;
	line-height: 1.4;
}
/* =========================================
   カード内の画像
========================================= */
.cs-card-step-photo {
	float:left;
	margin:0 30px 0 0;
	width:30%;
}
/* =========================================
   カード内の説明文
========================================= */
.cs-card-step-desc {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.6;
	margin: 0;
	float:left;
	width:65%;
}
.contact_list_btn {
	display: flex;
	justify-content:left;
}
@media screen and (max-width:680px) {
.contact_list_btn {
	display: flex;
	justify-content: center;
}
}
.contact_list_btn button {
	display:inline-block;
	background:#4a422d;
	padding:10px 50px;
	text-align:center;
	color:#FFF;
	margin:5px;
	border:1px solid;
	cursor:pointer;
}
.contact_list_btn button.mail {
	background-image:url("http://keiroen-hamano.com/wp-content/uploads/2026/09/mail_icon.png");
	background-repeat:no-repeat;
	background-size:17px;
	background-position:25px center;
}
.contact_list_btn button.tel {
	background-image:url("http://keiroen-hamano.com/wp-content/uploads/2026/09/tel_icon.png");
	background-repeat:no-repeat;
	background-size:17px;
	background-position:25px center;
}
/* =========================================
   ステータス別のスタイル変化（完了・現在地）
========================================= */

/* ▼ 完了済（is-completed） ▼ */
.cs-card-step-item.is-completed .cs-card-step-num {
	background-color:#fff; /* バッジの色に */
}
.cs-card-step-item.is-completed::after {
	border-color: rgb(255, 202, 61); /* 次へ続く矢印を青に */
}
/* ▼ 現在地（is-active） ▼ */
.cs-card-step-item.is-active .cs-card-step-num {
	background-color: #2589d0;
}
.cs-card-step-item.is-active .cs-card-step-box {
	border-color: #2589d0; /* カードの枠線を青にして強調 */
	box-shadow: 0 8px 24px rgba(37, 137, 208, 0.15); /* フワッとした影 */
	transform: translateY(-2px); /* 少し上に浮き上がらせる */
}
.document {
	overflow:hidden;
}
.document img {
	width:10%;
	float:left;
	margin-top:20px;
}
.document ul {
	width:85%;
	float:right;
	margin:20px 0 0 0;
	padding:0;
}
/* =========================================
   レスポンシブ対応（スマホ表示時）
========================================= */
@media screen and (max-width: 640px) {
.cs-card-step-item {
	padding-bottom: 60px; /* スマホでは隙間を少し詰める */
}
.cs-card-step-item::after {
	bottom: 26px;
	width: 10px;
	height: 10px;
}
.cs-card-step-box {
	padding: 20px 16px;
}
.cs-card-step-header {
	flex-direction: column;
	align-items: flex-start; /* 番号とタイトルを縦並びにする */
	gap: 8px;
}
.cs-card-step-num {
	font-size:14px;
	margin-right: 0;
}
.cs-card-step-title {
	font-size:24px;
}
.cs-card-step-desc {
	font-size: 0.9rem;
}
.cs-card-step-photo {
	float:none;
	margin:0 30px 0 0;
	width:100%;
}
.cs-card-step-desc {
	font-size:14px;
	color: #475569;
	line-height: 1.6;
	margin: 0;
	float:none;
	width:100%;
}
.document img {
	width:15%;
	float:none;
	margin:20px auto;
	display:block;
}
.document ul {
	width:100%;
	float:none;
	margin:20px 0 0 0;
	padding:0;
}
}
/*テーブル
---------------------------------------------------------------------------*/
table {
	width: 100%;
}
th, td {
	padding: 15px;
	border: 1px solid #ccc;
	text-align:left;
}
th {
	background: #fff9eb;
	text-align:center;
}
thead th {
	background: #fff9eb;
}
.table01 th {
	width: 30%;
	text-align: center;
}
.en {
	font-size: 1.5em;
	font-weight: bold;
	display: inline-block;
	line-height: 1;
	translate: 0 .05em;
	color:#ea0000;
}
.table_design02 {
	border-collapse: collapse;
	width: 100%;
	max-width: 700px;
}
.table_design02 tr {
	background-color: #e6f1f6;
}
.table_design02 tr:nth-child(odd) {
	background-color: #fff;
}
.table_design02 th, .table_design02 td {
	padding: 1em;
}
.table_design02 th {
	font-weight: bold;
	text-align: center;
	width: 20%;
	min-width: 4em;
}
@media screen and (max-width: 640px) {
.table-css01 th, .table-css01 td {
	display: block;
	border-bottom: none;
}
.table-css01 tr:last-child td:last-child {
	border-bottom: 1px solid #ccc;
}
}
@media screen and (max-width: 640px) {
.table-css02 th, .table-css02 td {
	display: block;
	border-bottom: none;
	vertical-align:baseline;
	text-align:left;
}
.table-css02 tr:last-child td:last-child {
	border-bottom: 1px solid #ccc;
}
.table-css02 thead {
	display: none;
}
.table-css02 td:first-child, .table-css03 td:first-child {
	background:#fff9eb;
	font-size:18px;
	font-weight: 500;
}
.table-css02 td:nth-child(2)::before {
	content: "【居室面積】";
}
.table-css02 td:nth-child(3)::before {
	content: "【定員】";
}
.table-css02 td:nth-child(4)::before {
	content: "【料金】";
}
}
/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
	display: block;
}
/*ボタンの設定*/
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}
/*詳細ページ（item.html）で使っている「前のページに戻る」ボタン
---------------------------------------------------------------------------*/
.back {
	text-align: center;
}
.back a {
	text-decoration: none;
	display: inline-block;
	padding: 0.5rem 2rem;	/*ボタン内の余白。上下、左右。*/
	border-radius: 30px;	/*角を丸くする指定。ある程度大きければ適当でいいです。*/
	background: #eee;		/*背景色*/
}
.back a::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f0d9";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 0.8em;	/*アイコンとテキストの間の余白*/
	font-weight: bold;		/*この設定がないとアイコンが出ない場合があります*/
	opacity: 0.5;			/*色を50%だけ出す*/
}
/* パンくずリスト */
div.breadcrumbs {
	margin:0 0 10px;
	padding:0 3%;
	font-size:14px;
}
/* プライバシーポリシー内 */
.list-privacy li {
	list-style: none;
	position: relative;
	padding: 5px 0;
}
.list-privacy li::before {
	content: '●';
	font-size: .5em;
	position: absolute;
	left: -18px;
	top: calc(1em + 4px);
	color: #ffca3d;
}
/*お問合せ
---------------------------------------------------------------------------*/
.wpcf7 {
	max-width: 100%;
}
.wpcf7 input[type="text"], input[type="tel"], .wpcf7 input[type="email"], .wpcf7 textarea, .wpcf7 select {
 padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
	width:100%;
}
.table-contact th, .table-contact td {
	padding: 20px;
	text-align:left;
}
.table-contact th {
	white-space: nowrap;
}
.table-contact p {
	display: inline-flex;
	margin: 0 !important;
	align-items: flex-start;
}
.table-contact .p-br p {
	display: block;
}
.table-contact input[type=text] {
	width: 9em;
	display: inline-block;
	margin-right: .5em;
}
.table-contact .p-br input[type=text] {
	width: 80%;
}
.table-contact tr:nth-of-type(2n) {
	background-color: #f2ece2;
}
.wpcf7-form-control-wrap {
	display: inline !important;
}
.wpcf7 .wpcf7-not-valid-tip {
	font-size: .8em;
}
.table-in {
	background-color:#fff;
}
.table-in th {
	background:#f0f0f0;
}
.table-in td {
	background:#fff;
}
#your-address {
	margin-bottom: 8px;
}
.wpcf7 input[type=submit] {
	color: inherit;
	border: none;
	margin: 40px auto 0;
	display: block;
	padding: 12px;
	font-size: 1.2em;
	width:320px;
	background:#fff;
	border:2px solid #ffca3d;
}
.wpcf7 input[type=submit]:hover {
	color: #fff;
	border: none;
	margin: 40px auto 0;
	display: block;
	padding: 12px;
	font-size: 1.2em;
	width:320px;
	background:#ffca3d;
}
.req::before {
	content: '\5FC5\9808';
	color: #fff;
	background-color: #c63636;
	font-weight: 400;
	font-size: .8em;
	padding: 0 3px;
	border-radius: 3px;
}
@media screen and (max-width: 640px) {
.table-contact {
	width:100%;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-all;
}
.table-contact tr {
	width:auto;
}
.table-contact th, .table-contact td {
	display: block;
}
.table-contact td {
	border-top: none;
}
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
.color-check, .color-check a {
	color: #ff0000 !important;
}
.l {
	text-align: left !important;
}
.c {
	text-align: center !important;
}
.r {
	text-align: right !important;
}
.ws {
	width: 95%;
	display: block;
}
.wl {
	width: 95%;
	display: block;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mt0 {
	margin-top: 0px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.look {
	display: inline-block;
	padding: 0px 10px;
	background: rgba(0,0,0,0.03);
	border: 1px solid #ccc;
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}
.small {
	font-size: 0.75em;
}
.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}
.pc {
	display: none;
}
.dn {
	display: none !important;
}
.block {
	display: block !important;
}
.marker {
	padding:0;
	background: linear-gradient(transparent 50%, #FFEB3B 50%) repeat scroll 0% 0% transparent;
	font-weight: bold;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
.ws {
	width: 48%;
	display: inline;
}
.sh {
	display: none;
}
.pc {
	display: block;
}
}/*追加指定ここまで*/
/*CMS用に追加
---------------------------------------------------------------------------*/
.mb10 {
	margin-bottom: 10px !important;
}
.list .icon-point.bg1 {
	background: #999;
}
#contents .sub .list h4 {
	margin: 0;
}
#contents .sub .list p {
	line-height: 1.5;
	font-size: 0.8rem;
}
/*ページャー*/
.pager {
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	color: #999;
}
.pager a {
	display: inline-block;
	text-decoration: none;
	margin-bottom: 5px;
	padding: 0 10px;
	border: 1px solid #777;
	background: #fff;
	color: #777;
}
.pager a:hover {
	filter: brightness(1.5);
}
.pager span {
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 10px;
	border: 1px solid #ccc;
	background: rgba(0,0,0,0.1);
}
#fixed_contact {display:none;}
/*sp
---------------------------------------------------------------------------*/
@media screen and (max-width:680px) {
.home #logo img {
	width: 45%;	/*ロゴ画像の幅*/
}
.home .cp {
	width:43%;
	height: auto;
	padding-left: 0;
	position: absolute;	/*絶対配置する為の指示*/
	left: 5%;			/*headerブロックに対して左からの配置指定*/
	top: 25%;			/*headerブロックに対して上からの配置指定*/
}
.home header {
	padding-top: 70% !important;
}
.greeting {
	width:80%;
	margin:0 auto 50px;
	display: block;
	align-items: flex-end;
	overflow:hidden;
}
.greeting dl {
	width:100%;
	margin-right:0;
}
.greeting dl dt {
	font-size:20px;
	font-weight:bold;
	line-height:1.4em;
	margin-bottom:30px;
}
.greeting .ph {
	width:70%;
	margin:0 auto;
}
.service {
	background-image:url(images/bg-beige.jpg);
	background-repeat:repeat;
	padding:40px 0 50px;
}
.service_box1 {
	width:100%;
	margin:50px auto;
	overflow:hidden;
}
.service_box1 dl {
	float:none;
	width:80%;
	margin:0 auto 30px;
}
.service_ph01 {
	float:none;
	width:80%;
	margin:0 auto;
}
.service_box2 {
	width:100%;
	margin:50px auto;
	overflow:hidden;
}
.service_box2 dl {
	float:none;
	width:80%;
	margin:0 auto 30px;
}
.service_ph02 {
	float:none;
	width:80%;
	margin:0 auto;
}
.service_box3 {
	width:100%;
	margin:50px auto 0;
	overflow:hidden;
}
.service_box3 dl {
	float:none;
	width:80%;
	margin:0 auto 30px;
}
.service_ph03 {
	float:none;
	width:80%;
	margin:0 auto;
}
.gallery {
	width:80%;
	margin:0 auto 50px;
	padding:10px 0 0;
	background-image: url(images/obj02.png);
	background-size: 90px;
	background-position: 100% 2%;
}
.gallery ul {
	margin:30px 0;
	padding:0;
	overflow:hidden;
	display: flex;
	flex-wrap: wrap;
}
.gallery ul li {
	float: none;
	width: 47%;
	margin-right:6%;
	margin-bottom:6%;
	border: 1px solid #eee;
	padding: 10px;
	text-align: center;
	list-style: none;
}
.gallery ul li:nth-child(3n) {
	margin-right:6%;
}
.gallery ul li:nth-child(2n) {
	margin-right:0;
}
.guide {
	background-image:url(images/bg-beige.jpg);
	background-repeat:repeat;
	padding:30px 10%;
	position:relative;
}
.guide .obj {
	position:absolute;
	width:90px;
	top:-3%;
	left:5%;
}
.guide ul {
	width:90%;
	margin:50px auto;
	padding:0;
	overflow:hidden;
}
.guide ul li {
	width:100%;
	float:none;
	margin:0 auto 30px;
	text-align: center;
	list-style: none;
}
.guide ul li:last-child {
	margin:0 auto;
}
.guide ul li img {
	height:40px;
	display:block;
	margin:0 auto 5px;
}
.access .txt {
	width:100%;
	height:auto;
	float:none;
	background:#4a422d;
	color:#fff;
	padding:50px;
	text-align:center;
}
.access .txt dl dt {
	font-size:14px;
}
.access .txt dl dd {
	font-size:20px;
	line-height:1.2em;
}
.access .map {
	width:100%;
	float:none;
}
#fixed_contact {
	display:block;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    background: rgba(248,246,243,0.9);
    z-index: 9999;
  }
	 #fixed_contact ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
    text-align: center;
  }
	 #fixed_contact ul li {
    list-style: none;
    margin: 0 10px;
    display: inline-block;
  }
	#fixed_contact ul li a { width:180px; display:block; padding:10px; background:#ad9240;}
	#fixed_contact ul li a img { height:20px;}
	#fixed_contact ul li:first-child a { background:#ffca3d;}
}
