@charset "UTF-8";

/*各ページ特有指定（あまり汎用的でないもの）を記載*/
/*切替[基本：max568 min569／デザインによっては：768／それ以外は個別・特例的に設定]*/

/*文字背景色*/
p.tbg01{
	display: inline-block;
	background-color: #ffdade;
	padding: 2px 1px;
}
.marker {
	/*background-color: #ff9;*/
	background: linear-gradient(transparent 60%, #feea9b 60%);	/*文字半分にかかるくらいlinear-gradient(transparent　色の割合, 蛍光ペンの色 色の割合)*/
}
.marker2 {
	background: linear-gradient(transparent 50%, #daeafb 50%);	/*文字半分にかかるくらいlinear-gradient(transparent　色の割合, 蛍光ペンの色 色の割合)*/
}
/*文字間*/
.tx-les01{
	letter-spacing: 0.25em;
}
/*メニュー副題*/
nav.nav ul li::after {
	content: attr(data-en);
	display: block;
	color: var(--main-color);
	font-size: 10px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.1em;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
@media screen and (max-width: 568px) {
	nav.nav ul li::after {
		color: #8dbf46;
	}
}
/*リンクの位置調整(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;
	}
}

/*文字ボタン*/
.btwi{
	width: 60%;
	margin: 30px auto;
}
@media screen and (max-width: 768px) {
	.btwi{
		width: 80%;
	}
}
@media screen and (max-width: 568px) {
	.btwi{
		width: 100%;
	}
}
.c-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 65px;
	color: #fff;
	font-size: 17px;
	line-height: 1.1;
	text-decoration: none;
	transition: 0.3s;
	/*margin: 0 auto;*/
	/*border-radius: 50px;*/
	padding: 0 30px 0 0;
	margin:0 5px;
}

.c-btn a:hover {
	color: #30aaaa;
}
.btn07 a {
	background-color: #30aaaa;
	border: 1px solid #dfdfdf;
	font-size: clamp(15px,2vw,16px);
	border-radius: 10px;
}

/*.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: #ccc #ccc transparent transparent;
}

.btn07 a:hover {
	background-color: #f4f4f4;
	/*border: 1px solid #333;*/
}

.btn07 a:hover::before {
	border: 1px solid #f2f2f2;
}

.btn07 a:hover::after {
	border-color: #f2f2f2 #f2f2f2 transparent transparent;
}


/*テーブル　汎用*/
.col1{
	background-color: #ddd;
}
.col2{
	background-color: #d9eef0;
}
/*一般(usually)テーブル*/
table.u-tab {
	/*width: 80%;*/	/*article class="entry" 内に入れるならいらない*/
	margin: 0px auto;
	/*border-bottom: 1px solid #ccc;
	border-right: 1px solid #ccc;*/
}
table.u-tab tr td{
	font-size: clamp(16px,1.6vw,17px);
	text-align:left;
	border-bottom: 1px solid #ababab;
	line-height: 1.3;
	padding: 15px;
	/*background: rgba(243, 252, 255, 0.85);*/
}
table.u-tab tr td:nth-of-type(1){
	width: 7rem;	/* 1列目のスタイル */
	font-weight: 600;
	background: #ebf2fa;
}
@media screen and (max-width: 800px) {
	table.u-tab {
		width: 100%;
	}
}
@media screen and (max-width: 568px) {
	table.u-tab tr td{
		display:block;
		width: calc( 100% - 20px );
		padding: 10px;
	}
	table.u-tab tr td:nth-of-type(1){
		width: calc( 100% - 20px );	/* 1列目のスタイル */
		display:block;
		background: #ddebfae3;
	}
}

/*テーブル*/
table.ttypeA {
	margin: 5px 0;
}
table.ttypeA tr td {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.4;
	padding: 5px;
	border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
	table.ttypeA {
		width: 100%;
	}
}
/*テーブル SPで価格をキレイにみせる*/
table.ttypeB {
	margin: 5px 0;
}
table.ttypeB tr th {
	text-align: left;
	font-size: clamp(14px, 1.6vw, 17px);
	color: #fff;
	line-height: 1.4;
	padding: 17px 10px;
	border-bottom: 1px solid #8c7257;
}
table.ttypeB tr td {
	text-align: right;
	font-size: clamp(14px, 1.6vw, 17px);
	color: #fff;
	line-height: 1.4;
	padding: 17px 10px;
	border-bottom: 1px solid #8c7257;
}
table.ttypeB tr td:nth-of-type(1) {
	color: #ffebc5;
}
@media screen and (max-width: 768px) {
	table.ttypeB tr th{
		display: block;
	}
	table.ttypeB tr td:nth-of-type(1) {
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 60%;
	}
	table.ttypeB tr td:nth-of-type(2){
		display: inline-block;
		box-sizing: border-box;
		padding: 10px;
		width: 40%;
	}
}
/*文字縁取り*/
.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;
}
.fuchidori2 {
	text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
		-2px 2px 0 #FFF, 2px -2px 0 #FFF,
		0px 2px 0 #FFF,  0 -2px 0 #FFF,
		-2px 0 0 #FFF, 2px 0 0 #FFF;
}
@media screen and (max-width: 568px) {
	.fuchidori-sp {
		text-shadow:2px 2px 0 #f0f0e7, -2px -2px 0 #f0f0e7,
			-2px 2px 0 #f0f0e7, 2px -2px 0 #f0f0e7,
			0px 2px 0 #f0f0e7,  0 -2px 0 #f0f0e7,
			-2px 0 0 #f0f0e7, 2px 0 0 #f0f0e7;
	}
}
/*文字装飾*/
.kakomi-p01{
	padding: 2px 8px; /* 枠と文字の空間 */
	margin: 10px 10px 10px 0px; /* 枠の外の空間 */
	background-color:#e0f2c6; /* 枠の背景色 */
	border:1px solid #aeaeae; /* 枠の線の太さ・種類・色 */
	border-radius:5px; /* 枠の角を丸くする */
	/*box-shadow: 1px 2px 2px #ddd;*/ /*影をいれる*/
	font-family: inherit; /* フォントの種類を継承する */
	/*font-size: 0.75em;*/	/* フォントの大きさ */
	font-size: 0.85em;
	font-weight: 600;
	text-align: center;
	display: inline-block;
}
.kakomi-p02{
	padding:1px 8px; /* 枠と文字の空間 */
	margin:2.5px 5px; /* 枠の外の空間 */
	background-color:#e6bcbc; /* 枠の背景色 */
	border:1px solid #aeaeae;	/* 枠の線の太さ・種類・色 */
	border-radius:5px; /* 枠の角を丸くする */
	/*box-shadow: 1px 2px 2px #ddd;*/	/*影をいれる*/
	font-family:inherit; /* フォントの種類を継承する */
	font-size:0.65em;	/* フォントの大きさ */
	text-align:center;
}
/*会社概要*/
.bg_b{
	max-width:780px;
	margin: 20px auto;
	background: rgba(213, 224, 239, 0.2);/*ちょっと暗め*/
	/*background: rgba(255, 255, 255, 0.6);*//*ちょっと明るめ*/
	padding: 20px;
	/*border: 1px solid var(--accent-color2);
	border-radius: 10px;*/
}
/*年中行事*/
.bg_b2{
	margin: 20px auto;
	background: rgba(255, 255, 255, 0.6);
	padding: 20px;
}
/*NEWS*/
div.wn {
	margin: 10px 0;
	border: 3px double #b8ae86;
	padding: 20px;
	height: 250px;
	overflow: auto;
	background-color: rgba(255,255,255,0.85);
}
dl.wndl {
	display: flex;
	flex-wrap: wrap;
}
dl.wndl dt, dd {
	margin: 0;
	box-sizing: border-box;
	line-height: 1.5;
}
dl.wndl dt {
	color: #95875b;
	padding: 4px;
	border-bottom: 1px dashed #999;
	width: 9em;
	display: table-cell;
	vertical-align: middle;
}
dl.wndl dd {
	padding: 4px;
	border-bottom: 1px dashed #999;
	width: calc(100% - 9em);
}
@media (max-width: 768px)  {
	div.wn {
		margin: 0 0 10px 0;
		height: 470px;
	}
	dl.wndl dt {
		display: block;
		font-weight: bold;
		border: 0;
		width: 100%;
	}
	dl.wndl dd {
		display: block;
		width: 100%;
		letter-spacing: -0.7px;
	}
}
/**/
.heading04 {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(21px, 2.3vw, 30px);
	line-height: 1.4;
	text-align: center;
	border: 0;
	margin: 10px 0;
}

.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;
	}
}


/*マウスホバー時に文字列を表示*/
figure.hover-parent {
	width: 100%;
	height: auto;
	position: relative;
	/*margin-bottom: 30px;*/
	overflow: hidden;
}

figcaption.hover-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,.6);
	opacity: 0;
	color: #fff;
	display: flex;
	align-items: center;
	text-align: center;
	padding: 30px;
}

figure.hover-parent:hover .hover-mask2 {
	opacity: 1;
	transition: all .6s ease;
	padding-bottom: 0px;
}

/*枠*/
.waku{
	background: #fff;
	padding: 10px 25px 25px 25px;
	border-radius: 10px;
	margin-bottom: 8%;
}
/**/
.inmap{
	aspect-ratio: 16 / 9;
}


/**/
.flexwrapper{
	display: -webkit-flex;
	display: flex;
	/*-webkit-justify-content: space-around;
	justify-content: space-around;*/
	justify-content: center;
	gap: 0 1%;
	flex-wrap: wrap;
}
.flexwrapper div.week{
	padding: 0.5% 2%;
	border-right: 1px dashed #ccc;
}
.week1{
	padding: 0.5% 2%;
}
@media screen and (max-width: 568px) {
	.week1{
		border-right: 1px dashed #ccc;
	}
}
/*数字と線を組み合わせた見出しデザイン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: 100px;
	height: 1px;
	background-color: rgb(111, 187, 131);
}
/*↑実装の為の打消し*/
h4.heading14 {
	color: #634a43;
	margin: 35px 0px;
	border-bottom:0;
}
/*icon*/
img.himg {
	display: inline-block;
	width: 50px;
	margin-bottom: -3px;
	margin-left: 3px;
}
.svgicon01 {
	display: inline-block;
	width: 30px;
	height: 30px;
	vertical-align: sub;
	margin: 0 7px 0 5px;
}
.svgicon02 {
	display: inline-block;
	width: 25px;
	height: 25px;
	vertical-align: top;
	margin: 0 10px 0 5px;
}
/*フロー横展開*/
.flow01 {
	padding-left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
ul.flow01 {
	margin-left:0px;
}
.flow01 > li {
	list-style-type: none;
	width: 100%;
	max-width: calc( (100% - 60px) / 4 );
	display: flex;
}

.flow01 > li .icon01 {
	line-height: 2;
	width: 2em;
	height: 2em;
	text-align: center;
	color: #454545;
	background: #efe63a;
	margin: 0 auto 10px;
	display: block;
	border-radius: 100vh;
	position: relative;
}
.flow01 > li dl {
	padding: 20px 15px;
	margin: 0;
	border: 2px solid #f0eebd;
	position: relative;
	background-color:rgba(255,255,255,0.7);
}

.flow01 > li:not(:first-child) dl::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-right: 10px;
	display: inline-block;
	border-top: 4px solid #efe63a;	/*右矢印*/
	border-right: 4px solid #efe63a;
	position: absolute;
	top: calc(50% - 10px);/*矢印の位置*/
	left: -22px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.flow01 > li dl dt {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(16px,1.7vw,17px);
	font-weight: 600;
	color: #454545;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	margin-bottom: 10px;
	text-align: center;
}

.flow01 > li dl dd {
	margin-left: 0;
	font-size: 15px;
	line-height: 1.4;
	text-align: justify;
}

@media screen and (max-width: 768px){
	.flow01 {
		gap: 20px;
	}
	.flow01 > li {
		max-width: unset;
		display: block;
	}
	.flow01 > li:not(:first-child) dl::before {
		display: none;
	}
	.flow01 > li dl dt {
		font-size: 17px;
	}
}
/* solid011 */
.button_solid011 a {
	background: #bb3838;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	max-width: 33%;
	padding: 20px 25px 10px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	font-size: 1.3rem;
	flex-direction: column;
	border-radius: 8px;
}
.button_solid011 a span {
	background: var(--main-color);
	width: 70%;
	text-align: center;
	position: absolute;
	top: -15px;
	filter: drop-shadow(0px 1px 2px #aaa);
	padding: 3px 0;
	font-size: 0.8rem;
	color: #fff;
	border-radius: 5px;
}
.button_solid011 a span:after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border: 5px solid transparent;
	border-top: 5px solid var(--main-color);
}
.button_solid011 a:hover {
	transform: translateY(3px);
}
@media (max-width: 768px) {
	.button_solid011 a {
		max-width: 70%;
	}
}
@media (max-width: 568px) {
	.button_solid011 a {
		max-width: 98%;
	}
}

/**/
.emphasis_design34 {
  background: linear-gradient(135deg, #f88400 50%, #4d9bc1 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.emphasis_design30 {
  color: transparent;
  -webkit-text-stroke: 2px #454545;
  text-shadow: 3px 3px #81bedb;
}

.emphasis_design32 {
font-size: clamp(21px,2.5vw,28px);
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/**/
ul.check {
	font-size: clamp(15px, 1.7vw, 19px);
}
ul.check li {
	position: relative;
	margin-bottom: 10px;
}
ul.check li::before {
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 7px;
	border-left: 3px solid #ff3c00;
	border-bottom: 3px solid #ff3c00;
	transform: rotate(-45deg);
}
/* リストリンクメニュー */
.link-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul.link-menu li a{
	display: inline-block;
	white-space: nowrap;
	font-size: clamp(13px, 1.4vw, 15px);
}
ul.link-menu li:last-child::after{
	content: none;
}
ul.link-menu li::after {
	content: "　|　";
}
.link-menu li a:hover{
	display:inline-block;
	text-decoration: underline;
	color: var(--accent-color2);
}
@media screen and (max-width: 568px) {

	.link-menu {
		gap: 0%;
	}
	.link-menu li {
		display:inline-block;
		width: 100%;
	}
	.link-menu li a{
		display:inline-block;
		padding: 10px 0px;
	}
	ul.link-menu li::after{
		content: none;
	}
}
/*フロー*/
.flow_design02 {
	display: flex;
	justify-content: center;
	align-items: center;
}
.flow_design02 ul {
	padding: 0;
}
.flow_design02 li {
	list-style-type: none;
}
.flow_design02 dd.flow-cc {
	margin-left: 0;
	width: 100%;
}
.flow02 > li {
	padding: 40px 10px;;
}
.flow02 > li:not(:last-child) {
	border-bottom: 3px solid var(--main-color);
	position: relative;
}
.flow02 > li:not(:last-child)::before,
.flow02 > li:not(:last-child)::after {
	content: "";
	border: solid transparent;
	position: absolute;
	top: 100%;
	left: 15%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.flow02 > li:not(:last-child)::before {
	border-width: 22px;
	border-top-color: var(--main-color);
}
.flow02 > li:not(:last-child)::after {
	border-width: 18px;
	border-top-color: #c0e988;/*三角部分の色*/
}
.flow02 > li dl.flow-aa {
	margin: 0;
}
.flow02 > li dl.flow-aa dt.flow-bb {
	font-size: 1.3em;
	font-weight: 600;
	border-bottom: 2px dotted #878787;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	display: flex;
	width: 100%;
}
.flow02 > li dl.flow-aa dt.flow-bb .icon02 {
	font-size: 0.6em;
	color: #fff;
	background: var(--main-color);
	padding: 5px 10px;
	display: inline-block;
	margin-right: 0.5em;
}
@media screen and (max-width: 568px) {
	.flow02 > li dl.flow-aa dt.flow-bb {
		/*background: #fff;*/
	}
}
/**/
b.emphasis {
	box-sizing: border-box;
	font-size: clamp(16px, 1.7vw, 18px);
	line-height: 1.6;
	font-weight: 600;
	display: block;
	border: 3px solid #a8c9f5;
	margin: 10px auto 5px auto;
	padding: 15px;
	border-radius: 10px;
	text-align: justify;
}
b.emphasis2 {
	box-sizing: border-box;
	font-size: clamp(15px, 1.7vw, 18px);
	line-height: 1.6;
	font-weight: 600;
	display: block;
	border: 3px solid #a8c9f5;
	margin: 10px auto 5px auto;
	padding: 15px;
	border-radius: 10px;
	text-align: center;
	background-color: var(--main-color);
	color: #fff;
}
b.emphasis2 i{
	font-size: 2rem;
	text-align: center;
	color: #ffbf00;
	margin-right: 5px;
	vertical-align: text-bottom;
}
@media (max-width: 768px) {
	b.emphasis2 {
		text-align: justify;
		font-size: 16px;
	}
}
/**/
.heading06 {
	/*color: var(--main-color);*/
	position: relative;
	padding-top: 50px;
	padding-bottom: 25px;
	font-size: clamp(26px, 2.9vw, 33px);
	text-align: center;
	font-weight: 400;
	font-family: "Montserrat", sans-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(16, 81, 233, 0.15);
	font-size: clamp(35px,6vw,60px);
	font-style: italic;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}
/*
.heading06::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 40px;
	background-color: rgb(32, 132, 17);
}
*/
@media (max-width: 568px)  {
	.heading06::before {
		top: 15px;
	}
}
/**/
.heading066 {
	color:rgb(255, 255, 255);
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
	font-size: 26px;
	text-align: center;
	font-weight:600;
	font-family: "Montserrat", sans-serif;
	margin-bottom: 10px;
}
.heading066 span {
	position: relative;
	z-index: 2;
}
.heading066::before {
	content: attr(data-en);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(194, 238, 187, 0.3);
	font-size: clamp(27px,6vw,70px);
	font-style: italic;
}
.heading066::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translate(-50%) rotate(30deg);
	width: 1px;
	height: 40px;
	background-color: rgb(255, 255, 255);
}
@media (max-width: 568px)  {
	.heading066::before {
		top: 15px;
	}
}

/* LINE004 */
.button_line004 a {
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 0 auto;
	max-width: 250px;
	padding: 10px 25px;
	color: #fff;
	transition: 0.3s ease-in-out;
	font-weight: 600;
	font-size: clamp(15px, 1.6vw, 17px);
}
.button_line004 a:before,
.button_line004 a:after {
	content: '';
	width: 25px;
	height: 25px;
	border-color: #ffcb00;
	box-sizing: border-box;
	border-style :solid;
	display: block;
	position: absolute;
	transition: all 0.3s ease-in-out;
}
.button_line004 a:before {
	top: -6px;
	left: -6px;
	border-width: 2px 0 0 2px;
	z-index: 5;
}
.button_line004 a:after {
	bottom: -6px;
	right: -6px;
	border-width: 0 2px 2px 0;
}
.button_line004 a:hover:before,
.button_line004 a:hover:after {
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	border-color: #ffcb00;
}
.button_line004 a:hover {
	color: #454545;
	background-color: #ffcb00;
	border-color: #ffcb00;
}
/**/
ul.list04 {
	margin-top: 10px;
	font-size: clamp(16px, 1.4vw, 17px);
	font-weight: 600;
	line-height: 3;
	list-style-type: none;
	column-count: 3;
}
.list04 li {
	position: relative;
	padding: 2px;
	margin: 10px;
	text-align: center;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
	border-radius: 20px;
}
.list04 li:first-child {
	margin: 0px 10px 10px 10px;
}
@media (max-width: 968px)  {
	ul.list04 {
	  column-count: 2;
	}
}
@media (max-width: 768px)  {
	ul.list04 {
	  column-count: 1;
	}
}
/**/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	font-family: Arial, sans-serif;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa dt,.cp_qa dd {
	position: relative;
	padding: 0.7em;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
	border-radius: 0.3em;
}
.cp_qa dt {
	margin: 0 3em 1em 3em;
	background: #e9f3ff;
	border: 0;/*打消し*/
	width: 100%;/*上書き*/
	text-align: justify;
	font-size: clamp(15px,1.6vw,16px);
}
.cp_qa dd {
	margin: 0 3em 3em 3em;
	background: #eef5e5;
	border: 0;/*打消し*/
	width: 100%;/*上書き*/
	text-align: justify;
	font-size: clamp(15px,1.6vw,16px);
}
/* 吹き出し */
.cp_qa dt::before,.cp_qa dd::before{
	position: absolute;
	z-index: 99;
	top: 0.5em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
}
/* 質問吹き出し */
.cp_qa dt::before {
	left: -0.5em;
	border-width: 5px 8.7px 5px 0;
	border-color: transparent #e9f3ff transparent transparent;
}
/* 答え吹き出し */
.cp_qa dd::before {
	right: -0.5em;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #eef5e5;
}
/* ?!アイコン */
.cp_qa dt::after,.cp_qa dd::after {
	font-size: 1.2em;
	position: absolute;
	top: 0;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.2em;
}
/* ?アイコン */
.cp_qa dt::after {
	left: -2.5em;
	margin: 0 0.5em 0 0;
	padding: 0.15em 0.3em;
	content: "Q";
	background: #2e61f7;
}
/* !アイコン */
.cp_qa dd::after {
	right: -2.5em;
	margin: 0 0 0 0.5em;
	padding: 0.15em 0.4em;
	content: "A";
	background: #8ebf47;
	font-weight: 600;
}
/*なぜ必要なの？*/
h4.toku_fuki01 {
	position: relative;
	padding: 1rem 1rem 1rem 1.5rem;
	border-radius: 30px;
	background-color: #fff;
	color: #7b7b7b;
	font-weight: 400;
	font-size: clamp(21px,1.9vw,26px);
	text-align: center;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
h4.toku_fuki01:before,
h4.toku_fuki01:after {
	position: absolute;
	border-radius: 50%;
	background-color: #fff;
	content: "";
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
h4.toku_fuki01:before {
	top: 110%;
	right: 60px;
	height: 15px;
	width: 15px;
}
h4.toku_fuki01:after {
	top: 150%;
	right: 50px;
	height: 10px;
	width: 10px;
}
@media (max-width: 568px)  {
	h4.toku_fuki01:before {
		display: none;
	}
	h4.toku_fuki01:after {
		display: none;
	}
}
/**/
h4.toku_fuki02 {
	position: relative;
	padding: 1rem 1rem 1rem 1.5rem;
	border-radius: 30px;
	background-color: #fff;
	color: #7b7b7b;
	font-weight: 400;
	font-size: clamp(21px,1.9vw,26px);
	text-align: center;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
h4.toku_fuki02:before,
h4.toku_fuki02:after {
	position: absolute;
	border-radius: 50%;
	background-color: #fff;
	content: "";
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
h4.toku_fuki02:before {
	top: 110%;
	left: 40px;
	height: 15px;
	width: 15px;
}
h4.toku_fuki02:after {
	top: 150%;
	left: 30px;
	height: 10px;
	width: 10px;
}
@media (max-width: 568px)  {
	h4.toku_fuki02:before {
		display: none;
	}
	h4.toku_fuki02:after {
		display: none;
	}
}
/*商品案内 product*/
.p-price{
	font-size: 35px;
	line-height: 1;
	font-family: Century Gothic, Arial, "M PLUS 1p", sans-serif;
	margin-right: 2px;
}
/**/
p.pcheck {
	margin: 20px 0;
	position: relative;
	padding-left: 3em;
	font-size: clamp(16px, 1.7vw, 18px);
	line-height: 1.4;
	font-weight: 600;
}
p.pcheck span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 0.5rem;
  color: #fff;
  border-radius: 10px;
  background: #fd8e1f;
}
p.pcheck span::after {
  position: absolute;
  top: calc(50% - 7px);
  right: -11px;
  width: 0;
  height: 0;
  content: '';
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #fd8e1f;
}
/**/
.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;
}
/**/


/*======= お知らせ ======*/
/*NEWS ワク*/
div.news_haba{
	margin: 0 10%;
	padding: 20px 0 50px 0;
}
@media only screen and (max-width: 1068px)  {
	div.news_haba{
		margin: 0 8%;
		padding: 20px 1% 50px 1%;
	}
}
@media only screen and (max-width: 768px)  {
	div.news_haba{
		margin: 0;
		padding: 20px 1% 50px 1%;
	}
}
.newsbg {
    background: #fff;
    padding: 2px 40px 20px 40px;
    border: 3px solid var(--accent-color2);
    border-radius: 8px;
}
@media screen and (max-width: 568px) {
	.newsbg {
        padding: 0 15px 15px 15px;
	}
}

/*NEWS タイトル*/
.news-decoration {
	font-size: clamp(22px, 3vw, 26px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.4;
	color: #444;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700 !important;
	font-style: normal;
}

.news-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	margin-top: 0.6em;
	margin-bottom: 0.2rem;
    border-bottom: 2px solid var(--accent-color2);
	font-weight: bold;
	font-size: 26px;
	margin-left: auto;
	margin-right: auto;
}

.news-decoration + p {
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: var(--main-color);
	font-size: 15px;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.1em;
	text-align: center;
}

@media screen and (max-width: 968px) {
	.news-decoration {
		text-align:center;
	}
	.news-decoration::after {
		margin-right:auto;
		margin-left:auto;
	}
	.news-decoration + p {
		text-align:center;
		margin-bottom: 20px;
	}
}

/*NEWS リスト*/
.news-list{
	list-style: none outside;
	margin: 0;
	padding: 0;
}
.news-list .news-item{
	display: flex;
	flex-wrap: wrap;
	/*flex-wrap: nowrap;　改行なしにするとき*/
	text-decoration: none;
	color: #333;
	border-bottom: 1px dashed #CCC;
	padding: 0 10px 10px 10px;
}
.news-list .news-item:last-child {
	border-bottom: none;
}
.news-list .news-item:first-child a{
	border-bottom: 1px solid #CCC;
}
.news-list .news-item:first-child a:hover{
	color:var(--main-color);
	border-bottom: 1px solid #CCC;
}
.news-list .news-item .news-date{
	margin: 0;
	min-width: 120px;
	font-size: 16px;
	color: var(--accent-color2);
	padding: 0 20px 0 0;
	font-weight: bold;
}
.news-list .news-item .news-title{
	margin: 5px 0 0 0;
	width: 100%;
	font-weight: bold;
	font-size: 1.1em;
}
.news-list .news-item .news-details{
	margin: 15px 0 0 0;
	width: 100%;
}

@media screen and (max-width: 767px){
	.news-list .news-item{
		flex-wrap: wrap;
		/*padding: 0px 0px;*/
	}
	.news-list .news-item .news-date{
		min-width: 100px;
	}
}

.new-icon {
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	color: #fff;
	border: 1px solid var(--accent-color2);
	background-color: var(--accent-color2);
	padding: 2px 5px;
	margin-right: 12px;
	border-radius: 3px;
	vertical-align: middle;
	width: 70px;
	text-align: center;
}

/* 日付の表 */
.news_time-table {
	width: 100%;
	border-collapse: collapse;
	margin: 1em 0;
	font-size: 15px;
	line-height: 1.6em;
}

.news_time-table th,
.news_time-table td {
	border: 1px solid #ccc;
	padding: 8px 10px;
	text-align: left;
}

.news_time-table td[data-label="日付"] {
	background-color: #f7f7f7;
	/*width: 30%;*/
}

.news_time-table th {
	background-color: #f2f2f2;
	color: #333;
}

@media screen and (max-width: 767px) {
	.news_time-table {
		border: none;
	}

	.news_time-table thead {
		display: none;
	}

	.news_time-table tr {
		display: block;
		border: 1px solid #ccc;
		margin-bottom: 0.5em;
		background-color: #fff;
		overflow: hidden;
	}

	.news_time-table td {
		display: block;
		border: none;
		padding: 6px 10px;
		font-size: 15px;
	}

	.news_time-table td[data-label="日付"] {
		background-color: #f7f7f7;
		font-size: 16px;
		width: 100%;
	}

	.news_time-table td[data-label="営業時間"] {
		color: #333;
		padding-top: 4px;
	}

}

/*PCのみ表示*/
@media screen and (max-width: 1024px) {
	.pc{
		display:none;
	}
	.sptx-c {
		text-align: center;
	}
}
/*スマホのみ表示*/
@media screen and (min-width: 569px) {
	.sp {
		display: none;
	}
}
/*タブレットのみ表示*/
@media not all and (min-width: 569px) and (max-width: 1024px) {
	.tab{
		display:none;
	}
}