@charset "UTF-8";

/*なるべく汎用性の高い順に記載（サイト特有指定ほど下部に記載）*/

/* ノーマル指定 */
table{
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
.clear {
	clear: both;
}

/* メインビジュアル */
.hero-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
	width: 100%;
	background-color: #fff;
}

picture.main-v{
	margin:0 auto;
	display: block;
	position: relative;
	box-sizing: border-box;
}

@media (min-width: 569px) {
	picture.main-v img{
		object-fit:none;
		height: 500px;
	}
}




/* 各セクション（汎用） */
.sec1 {
	padding: var(--v-space) 0;
	background-color: #fff;
}
.greeting {
	padding: 0px 0 var(--v-space) 0;
	background-color: #ffd900;
}
/*PCのみ表示*/
@media screen and (max-width: 568px) {
	.pc{
		display:none;
	}
}

/*スマホのみ表示*/
@media screen and (min-width: 568px) {
	.sp {
		display: none;
	}
}

/* 内容括り */
.ss-contents {
	margin: 40px 0;
}
.s-contents {
	margin: 20px 0 0 0;
}
/* 背景括り */
div.contentsbg {
	background: rgba(255,255,255,0.85);
	padding: 40px;
	border-radius: 20px;
}
@media screen and (max-width: 568px) {
	div.contentsbg {
		padding: 10px 10px 15px 10px;
	}
}

/* Gmap */
.fullOuterMap{
	width: 100%;
	position: relative;
	padding:0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height:auto;
	margin-top: -70px;	/*セクションのbottomに被せる*/
}
.fullInner{
	width:100%;
}
.gmp {
	position: relative;
	padding-bottom: 45%;
	height: 0;
	overflow: hidden;
}
.gmp iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

@media screen and (max-width: 568px) {

	.gmp {
	position: relative;
	padding-bottom: 100%;
	height: 0;
	overflow: hidden;
	}
}

/* 見出し */
h3 {
	padding: 0 5px;
	font-size: 25px;
	font-weight: normal;
	line-height: 1.4;
	color: #fff;
	/*background-color: rgba(255,255,255,0.9);*/
	background-color: #134988;
	/*border-top: 5px double #c00;
	border-bottom: 5px double #c00;*/
	font-family: "Montserrat", sans-serif;
}

/* 文字・余白・色など */
.tx-r {
	text-align: right;
}
.tx-c {
	text-align: center;
}
.tx-c2 {
	text-align: center;
}

.mb00{
	margin-bottom: 0;
}
.top-mg10{
	margin-top: 10px;
}
.top-mg20{
	margin-top: 20px;
}


.mlr10{
	margin-left: 10px;
	margin-right: 10px;
}
.f-20 {
	font-size: 20px;
}
.f-la {
	font-size: large;
}
.f-xla {
	font-size: x-large;
}
.f-famm {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.lihei14{
	line-height: 1.4;
}
.emp {
	font-weight: bold;	/*デザイン的強調 emphasis*/
}
.empcolor {
	color: #ad1100;
}

@media screen and (max-width: 568px) {
	.tx-c2 {
		text-align: left;
	}
}




/*リンクオンマウス時アンダーライン*/
a.onmouse:hover{
	text-decoration: underline;
	color:#454545;
}

/*リンク アンダーライン*/
a.unli{
	text-decoration: underline;
	color:#e68200;
}
a.unli:hover{
	color:#ffbc64;
}

/*pcとsmで画像のサイズ変えたいときの指定*/
img.pcsmwid{
	width: 55%;
	margin:5px 0px;
}

/*罫線*/
hr{
	border:1px dashed #a2a2a2;
}
hr.decoline {
	background-image: url(../img/decoline.png);
	background-position: center center;
	background-repeat: no-repeat;
	height: 40px;
	/*margin: 30px 0px;*/
	border:0;
}

/* 各ブロック横並び */
.flex{
	display: flex;
}
.item{
	/*width:32.5%;*/	/*3*/
	width:49.5%;	/*2*/
	height:auto;
}
.between{
	justify-content: space-between;
	margin-bottom:10px;
}

.box01{
	background-color: #fffcde;
	border: 10px solid #fffcde;
}
.box02{
	background-color: #fff1de;
	border: 10px solid #fff1de;
}
.box03{
	background-color: #f0a578;
	border: 10px solid #f0a578;
}

/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5em;
	color: #3a382f;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.info1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.info2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
/* FAQ */
div.faq2 p.b {
	font-weight: bold;
	color: #c00;
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}



/*コンテンツ　左右分割*/
.left{
	width:49%;
	float: left;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.right{
	width:49%;
	float: right;
	background-repeat: no-repeat;
	background-position: bottom right;
}
.left73 {
	width: 68%;
	float: left;
	margin-right: 2%;
}
.right73 {
	width: 30%;
	float: left;
}
@media screen and (max-width: 740px) {
	.left {
		width: 100%;
		margin-bottom: 10px;
	}
	.right {
		width: 100%;
	}
	.left73, .right73 {
		width: 100%;
		margin: 0 !important;
		padding: 0 !important;
	}

}

/* コンテンツ幅 */
div.haba{
	margin: 0 15%;
	padding: 2% 0 0 0;
}
@media (max-width: 569px)  {
	div.haba{
		margin: 0;
		padding: 2% 0 0 0;
	}
}

/* 縁・シャドウ */
img.photobox {
	border: 8px solid #FFFFFF;
	box-shadow: 5px 5px 10px #c0c0c0;
	-webkit-box-shadow: 5px 5px 10px #c0c0c0;
	-moz-box-shadow: 5px 5px 10px #c0c0c0;
}

/* リスト項目　横並び */
ul.sidelist3 {
	box-sizing: border-box;
	width:100%;
	margin: 0 auto;
}
ul.sidelist3 li {
	box-sizing: border-box;		/*サイズの計算法を変更*/
	list-style-type: none;
	float: left;
	--widthA: calc(100% - 30px);	/* marginの分 */
	--widthB: calc(var(--widthA) / 3);
	width: var(--widthB);
	margin: 5px;
	text-align: left;
	text-decoration: none;
	font-size: 13px;
	padding: 5px;
	color:#fff;
	background-color: rgb(19, 73, 136);
}
ul.sidelist3 li:last-child {
	--widthC: calc(var(--widthB) * 2);
	--widthD: calc(var(--widthC) + 10px);
	width: var(--widthD);
}
@media (max-width: 568px) {
	ul.sidelist3 li {
		width: 97%;
	}
	ul.sidelist3 li:last-child {
		width:97%;
	}
}


/*---------------- スポット ----------------*/
/* 付属文字 */
.details {
	padding: 10px;
	display: block;
	font-size: 13px;
	line-height: 1.5;
}
.details2 {
	padding: 5px;
	display: block;
	font-size: 12px;
	line-height: 1.5;
}
.mb-30{
	margin-bottom: -30px;
}
dt, dd {
	margin: 0;
	box-sizing: border-box;		/*サイズの計算法を変更*/
}
dl {
	display: flex;
	flex-wrap: wrap;
}
dt{
	padding: 4px;
	border-left: 5px solid #c00;
	border-bottom: 1px dashed #999;
	background-color: #fff;
	width: 10em;
	font-weight: 600;
}

dd{
	padding: 4px;
	border-bottom: 1px dashed #999;
	background-color: #fff;
	width: calc(100% - 10em);
}
@media (max-width: 569px) {
	dt{
		display: block;
		font-weight: bold;
		border-left: 0;
		background-color: rgb(234, 179, 14);
		width: 100%;
	}
	dd{
		display: block;
		width: 100%;
	}
}





b.emphasis {
	box-sizing: border-box;
	text-align: center;
	font-size: x-large;
	line-height: 1.3;
	font-weight: normal;
	color: #c00;
	display: block;
	background: #fff;
	border: 5px double #c00;
	width: calc(100% - 10px);
	margin: 10px auto;
	padding: 10px;
}
@media screen and (max-width: 568px) {
	b.emphasis {
		font-size: 19px;
	}
}

/* 動画 */
.responsive-video {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}