@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%, #ffd066 60%);
	padding: 0 5px;
}
.lesp{
	letter-spacing: -0.1em;
}
@media (max-width: 768px) {
	.lesp{
		letter-spacing: 0em;
	}
}
strong {
	font-weight: normal;
}
/*文字間*/
.tx-les01{
	letter-spacing: -0.5px;
}
/* 文字の上に点 */
.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: 100%;*/
	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.5;
}
/* フッターコピーライト */
.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 {
	padding: 60px 0;
}
.sec1 {
	/*ノーマル*/
	padding: var(--v-space) 0;
	background-color: #fff;
}
.sec2 {
	/*ベージュ*/
	padding: var(--v-space) 0;
	background-color: #f7f6f3;

}
.sec3 {
	padding: 20px 0 var(--v-space) 0;
	background-color: #fff;
	/*clip-path: polygon(0 0 , 100% 0, 100% calc(100% - 50px), 0 100%);*/

}
.sec4 {
	padding: var(--v-space) 0;
	background-color: #9ed9e9;
	/*clip-path: polygon(0 50px , 100% 0, 100% calc(100% - 50px), 0 100%);*/
	/*margin-top: -50px;*/
}
.sec5 {
	padding: var(--v-space) 0;
	background-image: url(../img/bg_01.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	background-color: #fff;
}
.sec6 {
	/*ノーマル*/
	padding: 50px 0 var(--v-space) 0;
	background-color: #fff;
}
.sec7 {
	/**/
	padding: var(--v-space) 0;
	/*background-color: #e8f0ee;*/
	background-image: url(../img/bg_02.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
@media (max-width: 568px) {
	.sec7 {
		background-image: url(../img/bg_02sp.png);
	}
}
/*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: 10px auto;
	padding: 30px;
	border: 4px double #7ccccc;
}
@media screen and (max-width: 568px){
	.kukuri{
		padding: 10px;
	}
}
.kukuri2{
	display:block;
	width:95%;
	margin: 0 auto;
	/*padding: 1rem 1rem 1.5rem;*/
	background:linear-gradient(135deg, #333398 0 100%), repeating-linear-gradient(45deg, #a6a6cd 0px 2px, transparent 2px 4px);
	background-repeat: no-repeat;
	background-size: calc(100% - 0.5rem) calc(100% - 0.5rem);
	background-position: 0 0, 1.5rem 1.5rem;
}
.kukuri2 a{
	display:block;
	color: white;
	text-align:center;
	padding: 10px 20px 20px 10px;
	font-size: clamp(14px,2vw,16px);
}
.kukuri2 p{
	color: white;
	margin:5px;
	text-align:center;
}

@media screen and (max-width: 568px){
	.kukuri2{
		width:100%;
	}
}
.kukuri3{
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.4;
	text-align:center;
	padding: 20px 20px 10px 20px;
	margin: 5px 0;
	border: 1px solid #3680bd;
	border-radius: 10px;
}
@media screen and (max-width: 568px){
	.kukuri3{
		padding: 10px;
		margin: 0;
	}
}
.kukuri4{
	padding: 10px;
	margin: 10px auto;
	background-color: #887061;
	border: 1px solid var(--accent-color2);
}
.kukuri4 p{
	font-size: clamp(16px, 1.7vw, 18px);
	line-height: 1.4;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

/*横並びにする*/
.flex{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
}
.flex2{
	display: flex;
	justify-content: space-between;/*両端揃えで均等に配置*/
	flex-wrap: wrap;
}
/*横並びにする*/
.flex-child01{
	width: 43%;
}
.flex-child02{
	width: 55%;
}
.flex-child03{
	width: 49.5%;
}
.flex-child04{
	width: 15%;
}
.flex-child05{
	width: 85%;
}
.flex-child06{
	width: 40%;
}
.flex-child07{
	width: 58%;
}
.flex-child08 {
	width: 50%;
}
.flex-child09{
	width: 48.75%;
}
@media screen and (max-width: 768px) {
	.flex-child03 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child04 {
		width: 28%;
		margin: 5px auto;
	}
	.flex-child05 {
		width: 70%;
		margin: 5px auto;
	}
	.flex-child06 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child07 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child09 {
		width: 99%;
		margin: 5px auto;
	}
}
@media screen and (max-width: 568px) {
	.flex-child01, .flex-child02 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child04 {
		width: 99%;
		margin: 5px auto;
	}
	.flex-child05 {
		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: -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;
	}
}

/* 見出し */
h2{
	margin: 20px 0;
	font-size: clamp(21px, 2.7vw, 29px);
	font-weight: 400;
}
h3 {
	margin: 20px 0;
	font-size: clamp(20px,1.9vw,23px);
	line-height: 1.4;
	font-weight: 400;
	background-color: #f4f2e2;
	color: var(--main-color);
	padding: 2px 0 1px 10px;
}
/**/
.ttl_background3 {
	font-size: clamp(18px, 1.7vw, 21px);
	line-height: 1.2;
	font-weight: 600;
	overflow: hidden;
	position: relative;
	border-radius: 15px;
	padding: 7px 17px 4px 17px;
}
.ttl_background3::before {
	content: '';
	background-color: #eee3a6;
	opacity: 0.7;
	transform: rotate(-49deg);
	position: absolute;
	bottom: -250px;
	right: -250px;
	width: 300px;
	height: 500px;
}
.zi10{
	z-index:10;
	position: relative;
}
h4 {
	font-size: clamp(16px,1.7vw,19px);
	font-weight: 600;
	line-height: 1.2;
	color: #0a3f99;
	/*border-top: 1px dotted var(--main-color);*/
	/*background-color: rgb(255, 255, 255, 0.5);*/
	padding: 4px 2px 2px 2px;
	margin: 0px 0 5px 0;
}
h4.ab {
	font-size: clamp(16px,1.7vw,19px);
	font-weight: 600;
	line-height: 1.2;
	color: #0a3f99;
	border-top: 1px dotted var(--main-color);
	border-bottom: 1px dotted var(--main-color);
	background-color: rgba(81, 161, 247, 0.4);
	padding: 6px 4px 4px 7px;
	margin: 0px 0 10px 0;
}
h5{
	font-size: clamp(16px,1.6vw,17px);
	font-weight: 600;
	line-height: 1.2;
	/*padding: 3px 3px 6px 3px;*/
	/*background-color: rgba(0, 0, 0, 0.1);*/
	margin: 5px 0 20px 0;
}

h6{
	display: inline-block;
	font-size: clamp(14px,1.4vw,15px);
	font-weight: 600;
	line-height: 1.4;
	color: #2f516c;
	padding: 2px;
	margin-right: 10px;
}
@media (max-width: 768px) {
	h4{
		font-size: 17px;
	}
}




/* 文字・余白・色など */
.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;
}
.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt25{
	margin-top: 25px;
}
.mb00{
	margin-bottom: 0;
}
.mb5{
	margin-bottom: 5px;
}
.mb10{
	margin-bottom: 10px;
}
.ml10{
	margin-left: 10px;
}
.mlr10{
	margin-left: 10px;
	margin-right: 10px;
}
.f-10 {
	font-size: 10px;
}
.f-13 {
	font-size: 13px;
}
.f-14 {
	font-size: 14px;
}
.f-15 {
	font-size: 15px;
}
.f-20 {
	font-size: 20px;
}
.f-la {
	font-size: large;
}
.f-xla {
	font-size: clamp(15px, 2vw, 21px);
}
.f-famm {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.f-famgk {
	font-family: 'Kiwi Maru';
}
.lihei14{
	line-height: 1.4;
}
.lihei12{
	line-height: 1.2;
}
.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: #c82e2e;
}
.colorPurple{
	color: #5a0797;
}
.colorBlue{
	color: #021494;
}
.colorWhite{
	color: #fff;
}
.colorWhite{
	color: #fff;
}
.colorGray1{
	color: #777;
}
@media screen and (max-width: 568px) {
	.tx-c2 {
		text-align: left;
	}
	.tx-r2 {
		text-align: center;
	}
	.f-la {
		font-size: 17px;
	}
}

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

/*リンク アンダーライン*/
a.unli{
	text-decoration: underline;
	color: var(--accent-color1);
}
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: 0 auto;
}
img.pcspwid2{
	width: 10%;
	margin: 0 auto;
}
img.pcspwid3{
	width: 65%;
	margin: 5px auto 5px 10px;
}


img.pcspwid4 {
	width: 80%;
}
img.pcspwid5 {
	width: 90%;
	margin: 0px auto;
}
@media (max-width: 568px) {
	img.pcspwid{
		width: 30%;
	}
	img.pcspwid2{
		width: 30%;
	}
	img.pcspwid3{
		width: 35%;
		margin: 0 auto;
	}

	img.pcspwid4{
		width: 60%;
		padding: 0 15%;
		margin: 0px auto;
	}
	img.pcspwid5{
		width: 100%;
	}
}
/*罫線*/
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: 50px;
	margin: 30px 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: 10px;
}
.line-container div {
	width: 100%;
	max-width: calc( (100% - 20px) / 3 );
	display: flex;
}
@media (max-width: 568px) {
	.line-container div {
		max-width: unset;
		display: block;
	}
}
/**/
.line-container2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 5px;
}
.line-container2 div.lc2 {
	width: calc(33.3% - 5px);
	margin-bottom: 5px;
}

@media (max-width: 768px) {
	.line-container2 div.lc2 {
		width: calc(50% - 10px);
		margin-bottom: 20px;
	}
}
@media (max-width: 568px) {
	.line-container2 div.lc2 {
		width: 100%;
		margin-bottom: 20px;
	}
}
/**/
.line-container3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.line-container3 div {
	width: calc(50% - 5px);
}
@media (max-width: 568px) {
	.line-container3 div {
		width: 100%;
		margin-bottom: 10px;
	}
}
/**/
.line-container4 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*gap: 10px;*/
}
.line-container4 div {
	width: calc(25% - 10px);
}
@media (max-width: 768px) {
	.line-container4 div {
		width: calc(50% - 10px);
		margin-bottom: 10px;
	}
}

/* 各ブロック横並び */
.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: 5.25em;
	/*color: var(--main-color);*/
}
.info2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
.info3 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 6em;
	color: #454545;
}
.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%;
	}
}
/*インフォアイコン*/
.svgicon02 {
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: sub;
	margin: 0 10px 0 5px;
}
/* FAQ */
div.faq2 p.b {
	font-weight: bold;
	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;
}
div.faq2 p.faq-details {
	font-weight: normal;
	padding: 10px;
	font-size: smaller;
	line-height: 1.4;
	text-align: left;
	text-indent: 0em;
	display: block;
	background-color: #fff5d8;
}
@media (max-width: 568px)  {
	div.faq2 p {
		font-size: 15px;
	}
}

/* コンテンツ幅 */
div.haba{
	margin: 0 20%;
	padding: 0;
}

@media (max-width: 768px) {
	div.haba{
		margin: 0 10%;
	}
}
@media (max-width: 568px)  {
	div.haba{
		margin: 0;
	}
}
div.haba2 {
	margin: 0 11%;
	padding: 0;
}
@media (max-width: 568px)  {
	div.haba2{
		margin: 0;
		padding: 2% 0 0 0;
	}
}
div.haba3 {
	margin: 0 30%;
	padding: 0;
}
@media (max-width: 768px)  {
	div.haba3{
		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.sideli{
	display: flex;
	justify-content: start;/*アイテムを先頭に寄せる*/
	align-items: center;
	flex-wrap: wrap;
	gap: 5px;
}
ul.sideli li{
	width: calc((100% - 25px) / 2);
	list-style-type: none;
	text-align: center;
	font-size: clamp(11.5px, 1.5vw, 14px);
	padding: 5px;
	color: #454545;
	background-color: rgb(249, 237, 237);
}
@media (max-width: 568px) {
	ul.sideli li {
		width: calc((100% - 25px) / 2);
	}
}

/* 付属文字 */
/*画像クリック文字*/
.details {
	padding: 5px;
	display: block;
	font-size: 13px;
	line-height: 1.5;
}
@media (max-width: 568px) {
	.details {
		padding: 5px 0;
	}
}

/*---------------- スポット ----------------*/
dt, dd {
	margin: 0;
	box-sizing: border-box;		/*サイズの計算法を変更*/
}
dl {
	display: flex;
	flex-wrap: wrap;
}
dt{
	padding: 4px;
	border-left: 10px solid #a9c0d8;
	border-bottom: 1px dashed #999;
	/*background-color: rgba(255,255,255,0.9);*/
	width: 11em;
}
dd{
	padding: 4px;
	border-bottom: 1px dashed #999;
	/*background-color: rgba(255,255,255,0.9);*/
	width: calc(100% - 11em);
}
@media (max-width: 568px) {
	dt{
		display: block;
		font-weight: bold;
		border-left: 0;
		background-color: rgb(234, 179, 14);
		width: 100%;
		color: #271d1d;
	}
	dd{
		display: block;
		width: 100%;
	}
}

div.c-contents{
	box-sizing: border-box;
	display: block;
	width:80%;
	margin: 0 auto;
	padding: 10px;
	text-align:center;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
	div.c-contents {
		width:100%;
		padding: 5px;
	}
}
/*リスト　大きめディスク*/
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: 20px;
}
ul.usuallyul li{
	font-size: clamp(14px, 1.4vw, 15px);
	line-height: 1.4;
	margin-bottom: 10px;
}
ul.usuallyul li:last-child{
	margin-bottom: 0px;
}
/*コンテンツ中寄*/
.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;
	text-align: center;
	font-size: clamp(15px, 1.7vw, 19px);
	line-height: 1.5;
	color: #454545;
	display: block;
	background: rgb(212, 243, 255);
	border: 5px double #2d72ae;
	/*width: calc(100% - 10px);*/
	margin: 5px auto 15px auto;
	padding: 10px;
}
@media screen and (max-width: 768px) {
	b.emphasis {
		text-align: left;
	}
}

/*文字ボタン*/
.btwi{
	width: 70%;
	margin: 20px auto 5px auto;
}
.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 40px;
	color: #fff;
	font-size: 17px;
	line-height: 1.1;
	text-decoration: none;
	transition: 0.3s;
	/*margin: 0 auto;*/
	/*border-radius: 50px;*/
	padding: 0 32px 0 20px;
}

.c-btn a:hover {
	color: #f2f2f2;
}
.btn07 a {
	background-color: #666;
	border: 1px solid transparent;
	font-size: 14px;
}

.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: #bbda58;
	color: #454545;
}

.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%;
	}
}
/*テーブル SPで価格をキレイにみせる*/
table.ttypeB {
	margin: 5px 0;
}
table.ttypeB tr th {
	text-align: left;
	width: 6em;
	font-size: clamp(12px, 1.3vw, 14px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid #c3a27b;
	background-color: rgba(235, 228, 231, 0.5);
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
table.ttypeB tr td {
	font-size: clamp(12px, 1.3vw, 14px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid #c3a27b;
}
/*味部分*/
/*table.ttypeB tr td:nth-of-type(1) {
	color: var(--accent-color1);
}*/
@media screen and (max-width: 768px) {
	table.ttypeB tr th{
		display: block;
		font-size: 15px;
		background: rgb(244, 242, 239);
	}
	table.ttypeB tr td:nth-of-type(1) {
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 32%;
		font-size: 15px;
	}
	table.ttypeB tr td:nth-of-type(2){
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 34%;
		font-size: 15px;
	}
	table.ttypeB tr td:nth-of-type(3){
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 34%;
		font-size: 15px;
	}
}

/*小・余白少なめ(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: 24px;*/
	font-size: clamp(20px, 2.2vw, 24px);
	line-height: 1.3;
	text-align: center;
	border: 0;
	color: #8a7a6e;
}

.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: clamp(17px, 1.8vw, 20px);
}

.heading14::before {
	content: attr(data-number);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: rgba(0, 156, 191, 0.4);
	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: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: rgb(0, 156, 191);
}
/*↑実装の為の打消し*/
h4.heading14 {
	color: #373737;
	margin: 30px auto 20px auto;
	border: 0;
}
@media screen and (max-width: 568px){
	h4.heading14 {
		margin: 20px 0;
	}
}

/*アイコン*/
.iicon01 {
	display: inline-block;
	width: 27px;
	height: 27px;
	vertical-align: bottom;
	margin: 0 7px 0 5px;
}
.iicon02 {
	display: inline-block;
	width: clamp(16px, 1.8vw, 20px);
	height: clamp(16px, 1.8vw, 20px);
	vertical-align: middle;
	margin: 0 2px 1px 2px;
}
.iicon03 {
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: middle;
	margin: 0 2px 5px 0;
}
/**/
.item-kukuri p {
	text-align: justify;
	font-size: 14.5px;
	line-height: 1.5;
}

/*吹き出し*/
.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;
	}
}
/*受付時間*/
table.tbl01 {
	margin: 5px 0;
}
table.tbl01 tr td {
	text-align: center;
	font-size: clamp(12px, 1.4vw, 15px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid var(--main-color);
}
table.tbl01 tr td:nth-of-type(1) {
	width: 23%;
}
table.tbl01 tr td:nth-of-type(2) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(3) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(4) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(5) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(6) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(7) {
	width: 11%;
}
table.tbl01 tr td:nth-of-type(8) {
	width: 11%;
}
@media screen and (max-width: 568px) {
	table.tbl01 tr td:nth-of-type(1) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(2) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(3) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(4) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(5) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(6) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(7) {
		width: auto;
	}
	table.tbl01 tr td:nth-of-type(8) {
		width: 17%;
	}
}
/**/
.kakomi-p01 {
	padding: 3px 10px 2px 10px;
	margin: 2px 0;
	background-color: #2978bd;
	border: 1px solid #aeaeae;
	border-radius: 20px;
	color: #fff5b5;
	font-size: 0.75em;
	font-weight: 600;
	text-align: center;
	display: inline-block;
}
/**/
nav.nav ul li{
	position: relative;
}
nav.nav ul li a{
	display: block;
	width: 100%;
}
nav.nav ul li a::after,
nav.nav ul li a::before {
	display: block;
	content: "";
	position: absolute;
}
nav.nav ul li a::after {
	bottom: -25%;
	left: 50%;
	width: 5px;
	height: 5px;
	background-color: #fff;
	border-radius: 100%;
}
nav.nav ul li a:hover{
	color: #000;
}
nav.nav ul li a:hover:after {
	background-color: #b5e9f2;
	width: 100%;
	bottom: -25%;
	left: 0;
	border-radius: 5px;
}
@media screen and (max-width: 568px) {
	nav.nav ul li a::after,
	nav.nav ul li a::before {
		display: none;
	}
	nav.nav ul li a::after {
		display: none;
	}
	nav.nav ul li a:hover{
		color: #f2e8b5;
	}
}
/*電球マーク付き枠*/
p.asd {
	position: relative;
	padding: 1.4rem 1.2rem 1.2rem 1.2rem;
	font-size: clamp(15px, 1.6vw, 17px);
	font-weight: 600;
	line-height: 1.6;
	text-align: justify;
	border: 2px solid #bbb;
	background: #fff;
	color: #fff;
	margin-bottom: 5px;
}
p.asd:before,
p.asd:after {
	position: absolute;
	content: '';
}
p.asd:before {
	top: -40px;
	left: calc(50% - 40px);
	width: 80px;
	height: 80px;
	border: 2px solid #bbb;
	border-radius: 50%;
	background: #007fe8;
}
p.asd:after {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #007fe8;
	box-shadow: 0px 3px 3px 0px rgba(30, 30, 30, 0.3);
}
p.asd i {
	font-size: 30px;
	font-size: 2.5rem;
	line-height: 60px;
	position: absolute;
	z-index: 1;
	top: -40px;
	left: calc(50% - 40px);
	width: 80px;
	height: 60px;
	text-align: center;
	color: #ffbf00;
}
p.asd span {
	position: relative;
	z-index: 1;
}
/**/
h4.zxc {
	position: relative;
	padding: 1rem 1.5rem;
	border-bottom: 3px solid #000;
	border-left: 3px solid #000;
	border-radius: 0 0 0 20px;
	margin-bottom: 20px;
}
h4.zxc:before {
	position: absolute;
	right: 50px;
	bottom: -21px;
	width: 0;
	height: 0;
	content: '';
	border-width: 21px 21px 0 0;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
}
h4.zxc:after {
	position: absolute;
	right: 54px;
	bottom: -14px;
	width: 0;
	height: 0;
	content: '';
	border-width: 14px 14px 0 0;
	border-style: solid;
	border-color: #fff transparent transparent transparent;
}
@media (max-width: 569px) {
	h4.zxc {
		padding: 0.5rem 0.6rem 0.5rem 0.8rem;
		line-height: 1.4;
	}
}

/*吹き出し*/
/*right→bottom*/
.balloon1-right {
	position: relative;
	/*display: inline-block;*/
	/*margin: 1.2em 15px 1.2em 0;*/
	margin: 0 15px 0 0;
	padding: 10px 15px;
	min-width: 120px;
	max-width: 100%;
	color: #fff;
	background: #05aee1;
}
.balloon1-right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #05aee1;
}
.balloon1-right p {
	font-size: clamp(16px, 1.7vw, 18px);
	line-height: 1.5;
	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: #fff;
		background: #05aee1;
	}
	.balloon1-right:before {
		content: "";
		position: absolute;
		top: 108%;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-top: 15px solid #05aee1;
	}
}
/**/
.list-design {
  border: 2px solid #99bdde;
  border-radius: 10px;
  list-style: none;
  padding: 0 .8em .5em;
  position: relative;
}
.list-design li {
  border-bottom: 1px dashed #b9b9b9;
  margin-top: 10px;
  padding: .5em 0 .5em 2em;
}
.list-design li:before {
  color: #99bdde;
  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;
}
/**/
.bg_waku{
	background: rgba(255,255,255,0.9);
	padding: 10px;
}


/*リンクの位置調整(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;
    }
}



