@charset "UTF-8";

/*なるべく汎用性の高い順に記載（サイト特有指定ほど下部に記載）*/
/*切替[基本：max568 min569／デザインによっては：768／それ以外は個別・特例的に設定]*/

/* ノーマル指定 */
table{
	border-collapse: separate;
	border-spacing: 0;
	width: 100%;
}
.clear {
	clear: both;
}
.indent{
	text-indent: -1em;
	padding-left: 1em;
}
.tj{
	text-align: justify;/*文字両端ぞろえ*/
}
.marker {
	background: linear-gradient(transparent 60%, #aedfdf 60%);
}
.lesp{
	letter-spacing: -1px;
}
@media (max-width: 768px) {
	.lesp{
		letter-spacing: 0.1px;
	}
}
strong {
	font-weight: normal;
}
/*リンクの位置調整(Btype)*/
a.anchor {
    display: block;
    padding-top: 50px;
    margin-top: -50px;
}
@media screen and (max-width: 568px) {
    a.anchor {
        display: block;
        padding-top: 150px;
        margin-top: -150px;
    }
}

/* 文字の上に点 */
.dot-text{
	position: relative;
}
.dot-text::before{
	position: absolute;
	top: -8px;
	left: 0;
	right: 0;
	margin: auto;
	content: "";
	padding-top: 7px;
	background: -webkit-radial-gradient(circle 6px,orange 50%,transparent 50%);
	background: radial-gradient(circle 6px,orange 50%,transparent 50%);
	background: -moz-radial-gradient(circle 6px,orange 50%,transparent 50%);
}
/* メインビジュアル */
.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;
}
picture.main-v img{
	width: 100vw;
	object-fit: cover;
}
/*
@media (min-width: 569px) {
	picture.main-v img{
		object-fit:none;
		height: 500px;
	}
}
*/
/* ヘッダー */
.header-details{
	font-size: 13px;
	line-height: 1.4;
}
/* フッターコピーライト */
.footer-copy p{
	font-size: 11px;
}
/* フッターメニュー */
ul.footer-menu li a{
	line-height: 1;
	vertical-align: middle;
	display: inline-block;
	white-space: nowrap;
	font-weight:400;
}
ul.footer-menu li::after{
	content: "　/　";
}
ul.footer-menu li:last-child::after{
	content: none;
}
@media (max-width: 568px) {
	ul.footer-menu li::after{
		content: none;
	}
}

/* 各セクション（汎用） */
/*通常greeting*/
/*.greeting {
	padding: var(--v-space) 0 20px 0;
	background-image: url(../img/bg_01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
*/
.sec1 {
	/*ノーマル*/
	padding: var(--v-space) 0;
	background-color: #fff;
}
.sec2 {
	/*ベージュ*/
	padding: 10px 0 70px 0;
	background-color: #eae8e2;
}
.sec3 {
	/*パンフレット背景*/
	padding: var(--v-space) 0;
	background-color: #d1eaea;
}
.sec4 {
	padding: 50px 0 var(--v-space) 0;
	background-color: #645649;
}
.sec5 {
	padding: var(--v-space) 0;
	background-image: url(../img/bg_02.png);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: cover;
}
@media screen and (max-width: 868px) {
	.sec5 {
		background-image: url(../img/bg_02sp.png);
		background-position: bottom center;
	}
}
.sec6 {
	padding: var(--v-space) 0;
	/*background-color: var(--accent-color1);*/
	background-image: url(../img/bg_01.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
.sec7 {
	/**/
	padding: 50px 0;
	background-color: #f0f9f9;
}
/*今回greeting置き換え*/
.sec89 {
	/*V背景上*/
	position: relative;
	padding: var(--v-space) 0 10vw 0;
	/*padding-bottom: 10vw;*/
	background-color: #fff;
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 50% 100%, 0 calc(100% - 10vw));
}
.sec89::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background-image: linear-gradient(to bottom, #fff, #fff);
	clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 50% 100%, 0 calc(100% - 10vw));
	z-index: -1;
	transform: translatey(-5px);
}
.sec98 {
	/*V背景↓*/
	min-height: 100px;
	background-color: #1561d0;
	margin-top: -12vw;
	padding-top: 12vw;
	padding-bottom: 40px;
}



/*PCのみ表示*/
@media screen and (max-width: 568px) {
	.pc{
		display:none;
	}
	.sptx-c {
		text-align: center;
	}
}
/*スマホのみ表示*/
@media screen and (min-width: 569px) {
	.sp {
		display: none;
	}
}
/*ipad表示*/
@media screen and (min-width: 769px) {
	.ipa {
		display: none;
	}
}
@media screen and (max-width: 568px) {
	.ipa {
		display: none;
	}
}
/*任意のみ表示*/
@media screen and (min-width: 769px) {
	.any-min769 {
		display: none;/*769以下表示*/
	}
}
@media screen and (min-width: 900px) {
	.any-min900 {
		display: none;/*900以下非表示*/
	}
}
@media screen and (max-width: 768px) {
	.any-min900 {
		display: none;/*768以上非表示*/
	}
}
@media screen and (max-width: 768px) {
	.any-max768 {
		display: none;/*768以上表示*/
	}
}
/* 内容括り */
img.c-arra{
	margin: 0 auto;
	display:block;
}
.kukuri{
	margin: 5px 0;
	padding: 25px 30px;
	background-color: rgba(255,255,255,0.85);
	border: 4px double #bbb;
}
@media screen and (max-width: 568px){
	.kukuri{
		padding: 10px 15px;
	}
}
.uchi{
	background-color: #fff;
	padding: 15px;
}
.kukuri2 {
	padding: 10px 10px 0px 10px;
	margin: 20px 0 0 0;
	background-color: rgba(255,255,255,0.8);
	border: 1px solid #ccc;
}
/*横並びにする*/
.flex{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
}
.flex2{
	display: flex;
	justify-content: space-between;/*両端揃えで均等に配置*/
	flex-wrap: wrap;
}
/*横並びにする*/
.flex-child01{
	width: 38.5%;
}
.flex-child02{
	width: 58.5%;
}
.flex-child03{
	width: 48.75%;
}
.flex-child04{
	width: 21%;
}
.flex-child05{
	width: 76%;
}
.flex-child06{
	width: 28%;
}
.flex-child07{
	width: 70%;
}
.flex-child08 {
	width: 50%;
}
.flex-child09{
	width: 49.5%;
}
@media screen and (max-width: 868px) {
	.flex-child09 {
		width: 99%;
		margin: 5px auto;
	}
}
@media screen and (max-width: 768px) {
	.flex-child01 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child02 {
		width: 99%;
		margin: 5px auto;
	}
}

@media screen and (max-width: 568px) {
	.flex-child03 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child04, .flex-child06 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child05, .flex-child07 {
		width: 99%;
		margin: 5px auto;
	}
	/*.flex-child08 {
		width: 99%;
		margin: 5px auto;
	}*/
}


/* 背景括り */
div.contentsbg {
	background: rgba(255,255,255,0.8);
	padding: 40px;
	/*border-radius: 10px;*/
}
@media screen and (max-width: 568px) {
	div.contentsbg {
		padding: 10px 15px 15px 15px;
	}
}

/* Gmap */
.fullOuterMap{
	width: 100%;
	position: relative;
	padding:0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height:auto;
	margin-top: -50px;	/*セクションの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;
	}
}

/* 見出し */
h2 {
	margin: 5px 0;
}
h3 {
	margin: 10px 0;
	padding: 3px 0;
	font-size: clamp(21px,1.9vw,23px);
	font-weight: bold;
	line-height: 1.3;
	border-bottom: 1px dashed #777;
}
h4 {
	font-size: clamp(13px,1.6vw,18px);
	font-weight: 600;
	line-height: 1.4;
	margin: 5px 0;
	padding: 3px 0;
	border-bottom: 1px dashed #bbb;
}
h4.ab{
	position: relative;
	display: block;
	padding: 0.2em 0 0.2em 1.4em;
}
h4.ab::before{
	position: absolute;
	top: 0.7em;
	left: 0;
	display: block;
	width: 0.8em;
	height: 0.8em;
	border-radius: 50%;
	background: #176ae4;
	box-shadow: 0.4em -0.4em 0 -1px #93caec;
	content: "";
}
@media screen and (max-width: 568px) {
	h4.ab::before{
		width: 0.7em;
		height: 0.7em;
	}
}
h5{
	font-size: clamp(16px,1.5vw,18px);
	font-weight: 600;
	line-height: 1.2;
	padding: 3px 5px 1px 5px;
	/*background-color: rgba(0, 105, 216, 0.2);*/
	margin: 0;
}
h6{
	font-size: clamp(14px,1.4vw,15px);
	padding: 3px 5px 1px 5px;
	font-weight: 600;
	line-height: 1.3;
	color: #37527b;
	margin-top: 5px;
	background-color: rgba(214, 218, 223, 0.5);
}

/* 文字・余白・色など */
.tx-l {
	text-align: left;
}
.tx-r {
	text-align: right;
}
.tx-r2 {
	text-align: right;
}
.tx-c {
	text-align: center;
}
.tx-c2 {
	text-align: center;
}
.tx-c2jf {
	text-align: center;
}
.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt25{
	margin-top: 25px;
}
.mb00{
	margin-bottom: 0;
}
.mb5{
	margin-bottom: 5px;
}
.mb10{
	margin-bottom: 10px;
}
.mlr10{
	margin-left: 10px;
	margin-right: 10px;
}
.f-10 {
	font-size: 10px;
}
.f-12 {
	font-size: 12px;
}
.f-14 {
	font-size: 14px;
}
.f-16 {
	font-size: 16px;
}
.f-20 {
	font-size: 20px;
}
.f-la {
	font-size: clamp(16px, 1.8vw, 19px);
	line-height: 1.6;
}
.f-xla {
	font-size: clamp(16px, 2vw, 21px);
}
.f-famm {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.f-famgk {
	font-family: 'Kiwi Maru';
}
.lihei1{
	line-height: 1;
}
.lihei14{
	line-height: 1.4;
}
.lihei19{
	line-height: 1.9;
}
.emp {
	font-weight: bold;	/*デザイン的強調 emphasis*/
}
.empcolor {
	color: var(--main-color);	/*サイト主要色*/
}
.accentColor {
	color: var(--accent-color1);	/*サイトアクセント色1*/
}
.accentColor2 {
	color: var(--accent-color2);	/*サイトアクセント色2*/
}
.colorOrange{
	color: #e1a300;
}
.colorRed{
	color: #e81111;
}
.colorPurple{
	color: #5a0797;
}
.colorBlue{
	color: #021494;
}
.colorWhite{
	color: #fff;
}
@media screen and (max-width: 768px) {
	.tx-c2 {
		text-align: left;
	}
}
@media screen and (max-width: 568px) {
	.tx-c2jf {
		text-align: justify;
	}
	.tx-r2 {
		text-align: left;
	}
}

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

/*リンク アンダーライン*/
a.unli{
	text-decoration: underline;
	color: #176ae4;
}
a.unli:hover{
	filter: brightness(130%) contrast(120%);
}

/*見出しに使うアイコン*/
img.himg {
	display: inline-block;
	width: 27px;
	margin-bottom: -3px;
	margin-left:-2px;
}

/*pcとspで画像のサイズ変えたいときの指定*/
img.pcspwid{
	width: 20%;
	margin: 5px auto 0 auto;
}
img.pcspwid2{
	width: 80%;
	margin: 0 auto 10px auto;
}
img.pcspwid3{
	width: 15%;
	margin: 0 auto;
}
@media (max-width: 768px) {
	img.pcspwid{
		width: 15%;
	}
	img.pcspwid3{
		width: 27%;
	}
}
@media (max-width: 568px) {
	img.pcspwid{
		width: 60%;
	}
	img.pcspwid2{
		width: 65%;
		margin: 0 auto;
	}
	img.pcspwid3{
		width: 40%;
	}
}
/*罫線*/
hr{
	height: 1px;
	border: none;
	margin: 20px auto;
}
hr.faqHr{
	height: 0px;
	border: 1px dashed #b7b7b7;
	margin: 20px auto;
}
hr.no{
	margin-top: 30px;
	margin-bottom: 30px;
	border: 1px solid rgba(255,255,255,0);	/*透明*/
}
hr.decoline {
	background-image: url(../img/decoline.png);
	background-position: center center;
	background-repeat: no-repeat;
	height: 60px;
	margin: 10px 0px;
	border:0;
}
hr.decoline2 {
	background-image: url(../img/decoline2.png);
	background-position: center center;
	background-repeat: no-repeat;
	height: 60px;
	margin: 10px 0px;
	border:0;
}
@media (max-width: 568px) {
	hr.no{
		margin-top: 20px;
		margin-bottom: 20px;
	}
}
/*コンテンツ（画像）並べ*/
.line-container {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: center;*/
	gap: 20px;
}
.line-container div {
	width: 100%;
	max-width: calc( (100% - 41px) / 3 );
}
@media (max-width: 768px) {
	.line-container div {
		max-width: calc( (100% - 21px) / 2 );
	}
}
@media (max-width: 568px) {
	.line-container div {
		max-width: unset;
		display: block;
	}
}
/**/
.line-container2 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.line-container2 div {
	width: calc((100% - 31px) / 4);
}
@media (max-width: 768px) {
	.line-container2 div {
		width: calc((100% - 11px) / 2);
	}
}
/*
@media (max-width: 568px) {
	.line-container2 div {
		width: calc(100% - 2px);
		margin-bottom: 10px;
	}
}
*/
/*全幅ギャラリー*/
.line-container5 {
	display: flex;
	flex-wrap: wrap;
}
.line-container5 div.port {
	width: calc(100% / 4);
}
/*
@media (max-width: 968px) {
	.line-container5 div.port {
	width: calc(100% / 3);
	}
}
@media (max-width: 768px) {
	.line-container5 div.port {
	width: calc(100% / 2);
	}
}
*/
/*
@media (max-width: 668px) {
	.line-container5 div.port {
	width: calc(100% / 1);
	}
}
*/
/* 各ブロック横並び */
.flex3{
	display: flex;
	gap: 20px;
	flex-wrap:wrap;
}
.item{
	width: calc((100% - 130px) / 3);	/*3*/
	/*width:49.5%;*/	/*2*/
	height:auto;
}
.box01{
	background-color: #fff;
	border: 15px solid #fff;
}
.box02{
	background-color: #fff1de;
	border: 10px solid #fff1de;
}
.box03{
	background-color: #f0a578;
	border: 10px solid #f0a578;
}
@media (max-width: 768px) {
	.item{
		width: calc((100% - 80px) / 2);
	}
}
@media (max-width: 568px) {
	.item{
		width: 100%;
	}
}
/* 概要・アクセス部分のテーブル */
.info1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 9em;
	color: #000;
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
}
.info3 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 8em;
	color: #000;
}
.info4 {
	border-bottom: 1px dashed #999;
	padding: 5px;
}
@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%;
	}
	.info3 {
		display: block;
		padding: 8px 2px 8px 2px;
		width: 100%;
		background-color: #f4f3f2;
	}
	.info4 {
		display: block;
		padding: 8px 2px;
		width: 99%;
	}
}
/* FAQ */
div.faq2 p.b {
	font-weight: 600;
	color: var(--main-color);
}
div.faq2 p {
	margin-top: 5px;
	line-height: 1.4;
	text-align: left;
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}
@media (max-width: 568px)  {
	div.faq2 p {
		font-size: 15px;
	}
}

/* コンテンツ幅 */
div.haba{
	margin: 0 10%;
	padding: 0;
}
@media (max-width: 768px) {
	div.haba{
		margin: 0;
	}
}
@media (max-width: 568px)  {
}
/**/
div.haba2 {
	margin: 5px 20%;
	padding: 0;
}
@media (max-width: 768px)  {
	div.haba2{
		margin: 0;
		padding: 5px;
	}
}
/**/
div.haba3 {
	margin: 5px 10%;
	padding: 0;
}
@media (max-width: 568px)  {
	div.haba3{
		margin: 0;
	}
}
/*sns*/
div.haba4 {
	margin: 0 30%;
	padding: 0;
}
@media (max-width: 768px)  {
	div.haba4{
		margin: 0 20%;
	}
}
@media (max-width: 568px)  {
	div.haba4{
		margin: 0 5%;
	}
}
/*contact mail*/
div.haba5 {
	margin: 15px 25%;
	padding: 0;
}
@media (max-width: 868px)  {
	div.haba5{
		margin: 15px 20%;
	}
}
@media (max-width: 568px)  {
	div.haba5{
		margin: 4px 0.5%;
	}
}
/* 縁・シャドウ */
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.sideli{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}
ul.sideli li{
	width: calc((100% - 41px) / 3);
	list-style-type: none;
	text-align: center;
	font-size: clamp(12px, 1.2vw, 13px);
	padding: 5px;
	color: #454545;
	background-color: rgb(244, 244, 244);
}
@media (max-width: 768px) {
	ul.sideli li {
		width: calc((100% - 26px) / 2);
	}
}
@media (max-width: 568px) {
	ul.sideli li {
		width: 100%;
	}
}
/*横並び＋下線*/
ul.sideli2{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 20px;
	list-style-type: disc;
	list-style-position: inside;
	margin-top: 5px;
	margin-bottom: 20px;
	padding-left: 0;
}
ul.sideli2 li{
	width: calc((100% - 42px) / 3);
	font-size: clamp(12px, 1.2vw, 13px);
	border-bottom: 1px dashed #999;
}
@media (max-width: 768px) {
	ul.sideli2 li {
		width: calc((100% - 26px) / 2);
	}
}
@media (max-width: 568px) {
	ul.sideli2 li {
		width: 100%;
	}
}
/* 付属文字 */
/*画像クリック文字*/
.details {
	padding: 5px;
	display: block;
	font-size: 12px;
	line-height: 1.4;
}
.details2 {
	display: inline-block;
	font-size: 13px;
	line-height: 1.4;
	margin: 5px 0px;
}
.details3 {
	display: inline-block;
	font-size: 11px;
}
/*---------------- スポット ----------------*/
dt, dd {
	margin: 0;
	box-sizing: border-box;		/*サイズの計算法を変更*/
}
dl {
	display: flex;
	flex-wrap: wrap;
}
dt{
	padding: 5px 3px;
	border-bottom: 1px dashed #999;
	width: 10em;
	font-weight: 600;
}
dd{
	padding: 5px 3px;
	border-bottom: 1px dashed #999;
	width: calc(100% - 10em);
}
@media (max-width: 568px) {
	dt{
		display: block;
		background-color: rgba(209, 234, 227, 0.8);
		width: 100%;
	}
	dd{
		display: block;
		width: 100%;
	}
}
/*リスト　大きめディスク*/
ul.nor{
	list-style: disc;
	margin: 10px 5px 10px 25px;
	line-height: 1.4;
	font-size: 14.5px;
}
ul.nor li::marker{
	font-size: 150%;
	font-weight: bold;
	line-height: 0.8;
	color: #005e20;
}
/*リスト　通常*/
ul.usuallyul{
	list-style: disc;
	margin-left: 15px;
	margin-top: 5px;
}
ul.usuallyul li{
	font-size: 14px;
	line-height: 1.3;
}
/*リスト　下線*/
ul.kasen{
	/*list-style: none;*/
	list-style: disc;
	list-style-position: inside;
	margin-top: 5px;
	padding-left: 0;
	font-size: clamp(12px, 1.2vw, 13px);
}
ul.kasen li{
	line-height: 1.3;
	padding: 4px 2px;
	border-bottom: 1px dashed #999;
}
/*コンテンツ中寄*/
.bg_b {
	background: rgba(236, 236, 236, 0.5);
	margin: 0px 15% 30px 15%;
	padding: 20px;
}
@media screen and (max-width: 768px) {
	.bg_b {
		margin: 0px 4% 30px 4%;
		padding: 10px;
	}
	.bg_b p {
		text-align: justify;
		font-size: 14px;
		line-height: 1.5;
	}
}

.bg_c {
	/*background: rgba(94, 61, 26, 0.95);
	mix-blend-mode: multiply;*//*乗算*/
	margin: 10px 10% 30px 10%;
	padding: 20px;
}
@media screen and (max-width: 768px) {
	.bg_c {
		margin: 0px 0 30px 0;
		padding: 10px;
	}
	.bg_c p {
		text-align: justify;
		font-size: 14px;
		line-height: 1.5;
	}
}
/*強調囲み*/
b.emphasis {
	box-sizing: border-box;
	font-size: clamp(17px, 1.7vw, 20px);
	line-height: 1.5;
	font-weight: 600;
	display: block;
	text-align: center;
	border: 5px double var(--main-color);
	margin: 10px 20%;
	padding: 5px;
}
@media screen and (max-width: 768px) {
	b.emphasis {
		margin: 10px 0;
	}
}
@media screen and (max-width: 568px) {
}
/*文字ボタン*/
.btwi{
	display: block;
	width: 90%;
	margin: 5px auto 15px auto;
margin-top: auto;
}
@media screen and (max-width: 768px) {
	.btwi{
		width: 70%;
	}
}
@media screen and (max-width: 568px) {
	.btwi{
		width: 100%;
	}
}
.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 30px;
	color: #fff;
	line-height: 1.1;
	text-decoration: none;
	transition: 0.3s;
	padding: 0 32px 0 20px;
	border-radius: 20px;
}
.btn07 a {
	background-color: #e4c000;
	border: 1px solid transparent;
	font-size: 11px;
}
.btn07 a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 50%;
}
.btn07 a::after {
	content: '';
	position: absolute;
	top: calc(50% - 1px);
	right: 20px;
	transform: rotate(45deg) translateY(-50%);
	width: 6px;
	height: 6px;
	border-width: 2px 2px 0 0;
	border-style: solid;
	border-color: #fff #fff transparent transparent;
}
.btn07 a:hover {
	background-color: var(--main-color);
}
.btn07 a:hover::before {
	border: 1px solid #f2f2f2;
}
.btn07 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}

/*文字縁取り*/
.fuchidori {
	text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
		-1px 1px 0 #FFF, 1px -1px 0 #FFF,
		0px 1px 0 #FFF,  0-1px 0 #FFF,
		-1px 0 0 #FFF, 1px 0 0 #FFF;
}
/*テーブル*/
table.ttypeA {
	margin: 5px 0;
}
table.ttypeA tr th {
	text-align: left;
	font-size: clamp(14px, 1.6vw, 17px);
	line-height: 1.4;
	padding: 10px;
	/*background-color: rgba(255, 255, 255, 0.6);*/
	border-bottom: 1px solid #acacac;
}
table.ttypeA tr td {
	text-align: right;
	font-size: clamp(14px, 1.6vw, 17px);
	line-height: 1.4;
	padding: 10px;
	/*background-color: rgba(255, 255, 255, 0.6);*/
	border-bottom: 1px solid #acacac;
}
@media screen and (max-width: 768px) {
	table.ttypeA {
		width:99%;
	}
}
/*小・余白少なめ(compact)テーブル*/
table.com-tab {
	margin: 5px 0;
	border-top: 1px solid #c6bcab;
	border-left: 1px solid #c6bcab;
}
table.com-tab tr td {
	font-size: 13px;
	text-align: center;
	line-height: 1.4;
	padding: 5px;
	/*background-color: rgba(255, 255, 255, 0.6);*/
	border-bottom: 1px solid #c6bcab;
	border-right: 1px solid #c6bcab;
}

table.com-tab tr td:first-of-type {
	width: 40%;
}

@media screen and (max-width: 768px) {
	table.com-tab {
		width:99%;
	}
}

/*呼びかけ見出し*/
.heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(20px, 2.5vw, 30px);
	line-height: 1.3;
	letter-spacing: -0.8px;
	text-align: center;
	border: 0;
	color: var(--main-color);
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.heading04::before,
.heading04::after {
	content: '';
	width: 4px;
	height: 40px;
	background-color: #ccc;
}

.heading04::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading04::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
@media screen and (max-width: 568px) {
	.heading04::before {
		margin-right: 17px;
	}
	.heading04::after {
		margin-left: 17px;
	}
}
.heading05 {
	display: flex;
	justify-content: center;
	align-items: center;
	/*font-size: 24px;*/
	font-size: clamp(24px, 2.5vw, 26px);
	line-height: 1.3;
	text-align: center;
	border: 0;
	color: #454545;
}

.heading05::before,
.heading05::after {
	content: '';
	width: 4px;
	height: 40px;
	background-color: #ccc;
}

.heading05::before {
	margin-right: 30px;
	transform: rotate(-35deg)
}
.heading05::after {
	margin-left: 30px;
	transform: rotate(35deg)
}
@media screen and (max-width: 568px) {
	.heading05::before {
		margin-right: 17px;
	}
	.heading05::after {
		margin-left: 17px;
	}
}
/*数字と線を組み合わせた見出しデザイン04*/
.heading14 {
	position: relative;
	padding-left: 60px;
	font-size: 20px;
}

.heading14::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(28, 151, 59, 0.3);
	font-size: 50px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.heading14::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgb(111, 187, 131);
}
/*↑実装の為の打消し*/
h4.heading14 {
	color: #634a43;
	margin: 15px auto;
	border: 0;
}
@media screen and (max-width: 568px){

	h4.heading14 {
		margin: 20px 0;
		font-size: 18px;
	}
}
/*アイコン*/
.svgicon01 {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: sub;
	margin: 0 7px 0 5px;
}
/*吹き出し*/
.balloon1-right {
	position: relative;
	/*display: inline-block;*/
	padding: 7px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #555;
	background: #fff;
	border-radius: 10px;
}
.balloon1-right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #fff;
}

.balloon1-right p {
	margin: 0;
	padding: 0;
}
@media screen and (max-width: 568px) {
	.balloon1-right {
		position: relative;
		/*display: inline-block;*/
		margin: 1.5em 0;
		padding: 7px 10px;
		min-width: 120px;
		max-width: 100%;
		color: #454545;
	}
	.balloon1-right:before {
		content: "";
		position: absolute;
		top: 107%;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-top: 15px solid #fff;
	}
}
/**/
.heading06 {
	position: relative;
	padding-top: 50px;
	padding-bottom: 25px;
	font-size: clamp(28px, 2.7vw, 29px);
	text-align: center;
	font-weight: 400;
	/*font-family: "Montserrat", sans-serif;*/
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	margin-bottom: 10px;
}
.heading06 span {
	position: relative;
	z-index: 2;
}
.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(196, 202, 218, 0.3);
	font-size: clamp(40px,6vw,70px);
	font-style: italic;
}
@media (max-width: 568px)  {
	.heading06::before {
		top: 15px;
	}
}
/**/
.mapa10{
	margin: 10px 10px 10px 2px;
	padding: 10px 10px 10px 2px;
}
@media (max-width: 768px)  {
	.mapa10{
		margin: 10px;
		padding: 10px;
	}
}
/**/
.list-design {
	border: 2px solid #e5bbab;
	border-radius: 10px;
	background:  rgb(255, 255, 255, 0.6);
	list-style: none;
	padding: 0 .8em .5em;
	position: relative;
	margin: 0 auto;
	font-family: sans-serif;
	font-weight: 600;
}
.list-design li {
	border-bottom: 1px dashed #b9b9b9;
	margin-top: 7px;
	padding: .5em 0 .5em 2em;
}
.list-design li:before {
	color: #e5bbab;
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	left : 1em;
	margin: 3px 0;
	position: absolute;
}
.list-design li:last-of-type {
	border-bottom: none;
}
/**/
.kakomi-p01 {
	padding: 2px 10px;
	margin: 0;
	background-color: #ffcb2f;
	border: 1px solid #aeaeae;
	border-radius: 7px;
	color: #000;
	font-weight: 400;
	text-align: center;
	display: inline-block;
font-size: 0.75em;
}
/**/
h2.dech2 {
	text-align: center;
	font-weight: 600;
	font-size:  clamp(28px, 2.7vw, 29px);
	margin-bottom: 50px;
	position: relative;
	padding: 1rem;
}
h2.dech2::before {
	content: "";
	border: 0;
	position: absolute;
	left: calc(50% - 75px);
	background-image: url(../img/dech2.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	width: 150px;
	height: 50px;
	top: 50px;
}
/**/
div.linkukuri {
	padding: 15px;
	border: 1px solid #fff;
	/*box-shadow: 0px 3px 3px 0px rgba(83, 83, 83, 0.5);*/
	border-radius: 15px;
}
/*ページ内リンク リスト*/
.link-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #fff;
}
ul.link-menu li a {
	display: inline-block;
	white-space: nowrap;
	font-size: clamp(14px, 1.5vw, 17px);
}
ul.link-menu li::after {
	content: "　|　";
}
.link-menu li a:hover{
	display:inline-block;
	text-decoration: underline;
	color: #fff5c1;
}
ul.link-menu li:last-child::after{
	content: none;
}
@media screen and (max-width: 568px) {

	.link-menu {
		gap: 0%;
	}
	.link-menu li {
		display:inline-block;
		width: 100%;
		border-bottom: 1px dashed #8cd2c3;
	}
	.link-menu li a{
		display:inline-block;
		padding: 10px 0px;
	}
	ul.link-menu li::after{
		content: none;
	}
}
/**/
.cntnt{
 width:800px; background:#eee; padding:0.5em 0;
}
 .brdr{ width:0; height:0;
 border-top: 40px solid #eee;
 border-right: 400px solid #666;
 border-left: 400px solid #666;
 }
 .ftr{ width:800px; background:#666; 
 color:#fee; padding:0.5em 0; text-align:center; font-size:2em; }





/**/


















