@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%, #f8c288 60%);	/*文字半分にかかるくらいlinear-gradient(transparent　色の割合, 蛍光ペンの色 色の割合)*/
}
.marker2 {
	background: linear-gradient(transparent 50%, #eff4f9 50%);	/*文字半分にかかるくらいlinear-gradient(transparent　色の割合, 蛍光ペンの色 色の割合)*/
}
/*文字間*/
.tx-les01{
	letter-spacing: 0.25em;
}
/*メニュー副題*/
nav.nav ul li::before {
	content: attr(data-en);
	display: block;
	color: #a4c53f;
	font-size: 10px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.2em;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}
/*定義リスト1*/
/*
dt, dd {
	margin: 0;
	box-sizing: border-box;
}
dl {
	display: flex;
	flex-wrap: wrap;
}
dt{
	color: #d30000;
	padding: 4px;
	border-left: 10px solid #a9c0d8;
	border-bottom: 1px dashed #999;
	background-color: rgba(255,255,255,0.9);
	width: 15em;
}

dd{
	padding: 4px;
	border-bottom: 1px dashed #999;
	background-color: rgba(255,255,255,0.9);
	width: calc(100% - 15em);
}
@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%;
	}
}
*/
/*定義リスト2*/
/*dt, dd {
	margin: 0;
	box-sizing: border-box;
}
dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
dt{
	font-weight: 600;
	font-size: clamp(13px, 1.5vw, 14px);
	padding: 2px;
	border-bottom: 1px dashed #999;
	width: 6rem;
}
dd{
	font-size: clamp(13px, 1.5vw, 14px);
	padding: 2px;
	border-bottom: 1px dashed #999;
	width: calc(100% - 6rem);
}
@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%;
	}
}
*/

/*文字ボタン*/
.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(15px,1.5vw,16px);
	text-align:left;
	border-bottom: 1px solid var(--accent-color2);
	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: var(--main-color);*/
}
@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: 7px;
	}
	table.u-tab tr td:nth-of-type(1){
		width: calc( 100% - 20px );	/* 1列目のスタイル */
		display:block;
		background: #cde4af;
	}
}

/*テーブル*/
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:1px 8px; /* 枠と文字の空間 */
	margin:2.5px 5px; /* 枠の外の空間 */
	background-color:#f7efad; /* 枠の背景色 */
	border:1px solid #aeaeae; /* 枠の線の太さ・種類・色 */
	border-radius:5px; /* 枠の角を丸くする */
	/*box-shadow: 1px 2px 2px #ddd;*/ /*影をいれる*/
	font-family:inherit; /* フォントの種類を継承する */
	font-size:0.65em;	/* フォントの大きさ */
	text-align:center;
}
.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(223, 223, 223, 0.3);
	padding:20px;
	/*border: 1px solid var(--accent-color2);
	border-radius: 10px;*/
}
/*採用情報*/
.bg_b2{
	max-width:780px;
	margin: 20px auto;
	background: rgba(255, 255, 255, 0.5);
	padding:20px;
	/*border: 1px solid var(--accent-color2);
	border-radius: 10px;*/
}
/**/
.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;
	/*color: var(--main-color);*/
	margin: 10px 0;
	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;
	}
}


/*マウスホバー時に文字列を表示*/
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;
	}
}


/**/

.d-tit{
	margin: 15px 0;
	padding: 10px;
	font-weight: 600;
	font-size: 120%;
	border-bottom: 3px solid #777;
	position: relative;
}
.d-tit::before {
	position: absolute;
	right: 0;
	bottom: 3px;
	left: 0;
	display: block;
	height: 1px;
	margin: 0 auto;
	content: "";
	background: #777;
}
.d-hosoku{
	margin: 15px 0;
	padding: 5px;
	font-size: 80%;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

/*吹き出し*/
/*top*/
.balloon1-top {
	position: relative;
	display: inline-block;
	margin: 1em 0 1.25em 0;
	padding: 10px 20px 20px 20px;
	min-width: 120px;
	max-width: 100%;
	color: #454545;
	background: #eee539;
}

.balloon1-top:before {
	content: "";
	position: absolute;
	top: -27px;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-bottom: 15px solid #eee539;
}

.balloon1-top p {
	line-height: 1.5;
	margin: 0 5px;
	padding: 0;
}
/*right→bottom*/
.balloon1-right {
	position: relative;
	/*display: inline-block;*/
	/*margin: 1.5em 15px 1.5em 0;*/
	padding: 15px;
	min-width: 120px;
	max-width: 100%;
	color: #454545;
	background: #fbff8f;
	border-radius: 10px;
}

.balloon1-right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #fbff8f;
}

.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: 15px;
		min-width: 120px;
		max-width: 100%;
		color: #454545;
		background: #fbff8f;
	}
	.balloon1-right:before {
		content: "";
		position: absolute;
		top: 105%;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-top: 15px solid #fbff8f;
	}
}
/**/
rt {
	font-size: 0.7em; /* 文字サイズを大きく */
}
/*数字と線を組み合わせた見出しデザイン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: sub;
	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;
	}
}
/**/
.pripol{
	font-size: clamp(13px, 1.3vw, 14px);
	line-height: 1.3;
	text-align: justify;/*文字両端ぞろえ*/
}
/* 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;
}

/**/
div.linkukuri{
	margin: 10px auto;
	padding: 15px;
	/*background: repeating-linear-gradient(135deg, #0d7b4b, #0d7b4b 2px, #0c7546 2px, #0c7546 4px);*/
	border: 1px solid #ccc;
	/*box-shadow: 0px 3px 3px 0px rgba(83, 83, 83, 0.5);*/
	border-radius: 15px;
}
.haba-cource{
	margin: 0 15%;
	padding: 10% 0;
}


/**/
p.subti{
	font-size: clamp(15px, 1.5vw, 16px);
	color: var(--accent-color1);
	line-height: 1.4;
	margin: 10px 15px;
}

/**/
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;*/
	}
}
/**/
.slide-container {
	width: 100%;
        margin: 0 auto;
	display: flex;
	align-items: center;
	/*height: 340px;*/
	overflow: hidden;
	/*flex-direction: row;*/
}
.slide-wrapper {
	display: flex;
	/*flex-direction: row;*/
	animation: slide-flow 20s infinite linear 1s both;
	/*animation: slide-flow 30s infinite linear 1s backwards;*/
}
.slide{
	width: 300px;
	object-fit: cover;
	border: 1px solid #ddd;
}
@keyframes slide-flow {
	0% {transform: translateX(0);}
	100% {transform: translateX(-100%);}
}


.slide-paused:hover .slide-wrapper {
	animation-play-state: paused;
}
.slide-paused:hover .slide-wrapper img:hover {
	opacity: .8;
	cursor: grabbing;
}

/**/
ul.list04 {
  margin-top: 10px;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
  list-style-type: none;
  column-count: 6;
}
.list04 li {
  position: relative;
  padding-left: 17px;
  /*padding-top: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;*/
}
/*.list04 li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 14px;
  top: 0em;
  left: 6px;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
  border-right: 3px solid var(--accent-color2);
  border-bottom: 3px solid var(--accent-color2);
}*/
.list04 li::after {
  content: "■";
  position: absolute;
  /*top: .2em;*/
  left: 0;
  width: 15px;
  height: 15px;
  /*border: 1px solid #9c9c9c;
  border-radius: 2px;*/
}
@media (max-width: 768px)  {
	ul.list04 {
	  column-count: 4;
	}
}
@media (max-width: 568px)  {
	ul.list04 {
	  column-count: 3;
	}
}
/**/
.heading06 {
	color:rgb(32, 132, 17);
	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;
}
.heading06 span {
	position: relative;
	z-index: 2;
}
.heading06::before {
	content: attr(data-en);
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	color: rgb(32, 132, 17, 0.2);
	font-size: clamp(27px,6vw,70px);
	font-style: italic;
}
.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;
}
/**/
.imagesha {
	position: relative;
	margin: 10px auto;
	width: 60%;
}
.imagesha::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(100% - 15px);
	height: calc(100% - 15px);
	border-image-source: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(0 0 0 / 0) 0, rgba(0 0 0 / 0) 6px);
	border-image-slice: 15;
	border-image-repeat: round;
	border-style: solid;
	border-width: 15px;
}
@media (max-width: 568px)  {
	.imagesha {
		width: 90%;
	}
	.imagesha::after {
		content: '';
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		border-image-source: repeating-linear-gradient(45deg, #fff, #fff 3px, rgba(0 0 0 / 0) 0, rgba(0 0 0 / 0) 6px);
		border-image-slice: 12;
		border-image-repeat: round;
		border-style: solid;
		border-width: 12px;
	}
}
/**/
h4.areaTitle {
  font-size: clamp(14px,1.4vw,16px);
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px dashed #555;
  border-top: 0;
  background-color: #F5F5F5;
  padding: 2px;
  margin: 0 0 10px 0;
  color: #555;
}
.area {
  padding: clamp(15px, 7vw, 20px) 0;
  background-color: #F5F5F5;
}
.afooter {
  color: #444;
font-size: 13px;
}
/*リンクの位置調整(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;
    }
}





