@charset "utf-8";
/* CSS Document */
/**------------------------------ 
_box _list _item _waku
 ------------------------------**/

/*-------------------------------------
基本装飾 -サイトにより変更-
-------------------------------------*/
:root {
	--base-width: 1100px;
	--over-width-half: calc((100% - var(--base-width)) / 2);
	--ff: 'Meiryo', 'Roboto', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
	--webf: 'Zen Antique Soft', serif;
	--header-height: 80px;
	--fz: 16px;

	--red: 221, 39, 45;
	--black: 0, 0, 0;
	--white: 255, 255, 255;
	--yellow: 255, 239, 0;

	--asp-post: 520/346;
	/**.fw-b.fw-bb*/
	--fw-b: 700;
	--fw-bb: 900;
	/**.pagenation**/
	--pgn-c: rgb(var(--white));
	--pgn-bg: rgb(var(--black));
}

@media screen and (max-width:1100px) {
	:root {
		--over-width-half: 0;
	}
}

@media screen and (max-width:520px) {
	:root {
		--fz: 14px;
		--base-width: 100%;
		--over-width-half: 5%;
		--header-height: 80px;
	}
}

html {
	font-size: var(--fz);
}

body {
	font-family: var(--ff);
	min-width: var(--base-width);
	padding-top: var(--header-height);
	color: rgb(var(--black));
}

/**================================================================================
レイアウト
================================================================================**/

/**------------------------------ 
横並びリスト 均等
box nth column
.boxNC>li
 ------------------------------**/

:root {
	--boxNC_w: 100%;
	--boxNC_m: 30px auto;
	--boxNC_gap: 20px 3%;
	--boxNC_child_w: calc(94% / 3);
}

.boxNC {
	display: flex;
	flex-wrap: wrap;
	width: var(--boxNC_w);
	margin: var(--boxNC_m);

	gap: var(--boxNC_gap);
}

.boxNC>* {
	width: var(--boxNC_child_w);
}

@media screen and (max-width:520px) {
	:root {
		--boxNC_w: 100%;
		--boxNC_m: 20px auto;
		--boxNC_gap: 0 20px;
		--boxNC_child_w: 100%;
	}
}

/**------------------------------ 
横並びリスト 2カラム不均等
box left right
.boxLR>.left+.right
 ------------------------------**/
:root {
	--boxLR_w: 100%;
	--boxLR_m: 30px auto;
	--boxLR_gap: 10px;
	--boxLR_1_w: 30%;
	--boxLR_2_w: calc(40% - var(--boxLR_gap));
	--boxLR_3_w: calc(30% - var(--boxLR_gap));
	--boxLR_jc: flex-start;
	--boxLR_ai: stretch;
	--boxLR_fflow: wrap;
}

.boxLR {
	display: flex;
	flex-flow: var(--boxLR_fflow);
	justify-content: var(--boxLR_jc);
	align-items: var(--boxLR_ai);
	width: var(--boxLR_w);
	margin: var(--boxLR_m);

	gap: var(--boxLR_gap);
}

.boxLR>.LR1 {
	width: var(--boxLR_1_w);
}

.boxLR>.LR2 {
	width: var(--boxLR_2_w);
}

.boxLR>.LR3 {
	width: var(--boxLR_3_w);
}

@media screen and (max-width:520px) {
	:root {
		--boxLR_w: var(--base-width);
		--boxLR_m: 30px auto;
		--boxLR_gap: 10px;
		--boxLR_1_w: 100%;
		--boxLR_2_w: 100%;
		--boxLR_3_w: 100%;
		--boxLR_1_m: 0;
		--boxLR_2_m: 0;
		--boxLR_3_m: 0;
	}

	.boxLR>.LR1 {
		margin: var(--boxLR_1_m);
	}

	.boxLR>.LR2 {
		margin: var(--boxLR_2_m);
	}

	.boxLR>.LR3 {
		margin: var(--boxLR_3_m);
	}

}

/**------------------------------ 
横並びリスト 2カラム不均等 互い違い
box odd even
boxOE>li>.left+.right
 ------------------------------**/
:root {
	--boxOE_w: var(--base-width);
	--boxOE_m: 30px auto;
	--boxOE_gap: 10px;
	--boxOE_1_w: 30%;
	--boxOE_2_w: calc(50% - var(--boxOE_gap));
	--boxOE_3_w: calc(20% - var(--boxOE_gap));
}

.boxOE>* {
	display: flex;
	flex-wrap: wrap;
	width: var(--boxOE_w);
	margin: var(--boxOE_m);

	gap: var(--boxOE_gap);
}

.boxOE>*:nth-child(odd) {
	flex-direction: row;
}

.boxOE>*:nth-child(even) {
	flex-direction: row-reverse;
}

.boxOE>*>.OE1 {
	width: var(--boxOE_1_w);
}

.boxOE>*>.OE2 {
	width: var(--boxOE_2_w);
}

.boxOE>*>.OE3 {
	width: var(--boxOE_3_w);
}

@media screen and (max-width:520px) {
	:root {
		--boxOE_w: var(--base-width);
		--boxOE_m: 20px auto;
		--boxOE_gap: 10px;
		--boxOE_1_w: 100%;
		--boxOE_2_w: 100%;
		--boxOE_3_w: 100%;
	}

	.boxOE>*:nth-child(odd) {
		flex-direction: row;
	}

	.boxOE>*:nth-child(even) {
		flex-direction: row;
	}
}


/**------------------------------ 
画像なしお知らせリスト
.boxNOP>*>a>(time+.em>em+h3)
 ------------------------------**/
.boxNOP a {
	display: flex;
	align-items: center;
	gap: 30px;
}

.boxNOP a:hover h3 {
	text-decoration: underline;
}

@media screen and (max-width:520px) {
	.boxNOP a {
		flex-flow: wrap;
		gap: 10px 8px;
	}

	.boxNOP h3 {
		width: 100%;
		line-height: 1.5;
	}
}

/**================================================================================
装飾
================================================================================**/

/* -------------------------------------
カテゴリボタン
-------------------------------------*/
:root {
	--catBtn_c: rgb(var(--blue));
	--catBtn_bd: 1px solid rgb(var(--blue2));
	--catBtn_bg: rgb(var(--white));
}

.catBtn {
	width: auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
	margin: 40px auto;
	border-left: var(--catBtn_bd);
	border-top: var(--catBtn_bd);

	gap: 0;
}

.catBtn a {
	position: relative;
	display: block;
	padding: 10px;
	text-align: center;
	color: var(--catBtn_c);
	border-right: var(--catBtn_bd);
	border-bottom: var(--catBtn_bd);
	background: var(--catBtn_bg);
}

.catBtn a:hover,
.catBtn a.current {
	color: var(--catBtn_bg);
	background: var(--catBtn_c);
}

@media screen and (max-width: 520px) {
	.catBtn {
		width: 100%;
		gap: 0;
		margin: 20px auto;
	}
}

.termBtn {
	display: flex;
	flex-flow: wrap;
	gap: 15px;
}

.termBtn a {
	flex: 1;
	text-align: center;
	white-space: nowrap;
	padding: 5px 30px 5px 20px;
	color: rgb(var(--blue));
	border: 1px solid rgb(var(--blue));
	border-radius: 50px;
	background: rgb(var(--blue4));
	position: relative;
}

.termBtn a:after {
	position: absolute;
	top: 50%;
	right: 0.5em;
	transform: translateY(-50%);
	content: "→";
	z-index: 5;
	font-size: 0.9rem;
}

.termBtn a:hover {
	background: rgb(var(--blue));
	color: rgb(var(--white));
}

@media screen and (max-width:520px) {
	.termBtn {
		gap: 10px;
	}

	.termBtn a {
		padding: 5px 10px 5px 0px;
	}
}

/* -------------------------------------
文字装飾
-------------------------------------*/
:root {
	/**.edge**/
	--liner_c: #fff552;
	--edge_c: #555555;
	--edge2_c: #555555;
	--edge3_c: #555555;
}

/**黄色マーカー**/
b.liner {
	text-decoration: underline;
	/* 下線 */
	text-decoration-thickness: 0.5em;
	/* 線の太さ */
	text-decoration-color: var(--liner_c);
	/* 線の色 */
	text-underline-offset: -0.2em;
	/* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
	/* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

b.liner2 {
	background: -webkit-linear-gradient(transparent 40%, var(--liner_c) 0%);
	background: linear-gradient(transparent 40%, var(--liner_c) 0%);
}

/*縁くくり*/
.edge {
	text-shadow: 1px 1px 0 var(--edge_c),
		-1px 1px 0 var(--edge_c),
		1px -1px 0 var(--edge_c),
		-1px -1px 0 var(--edge_c);
}

/*縁 2px以上*/
.edge2 {
	text-shadow: 2px 2px 1px var(--edge2_c),
		-2px 2px 1px var(--edge2_c),
		2px -2px 1px var(--edge2_c),
		-2px -2px 1px var(--edge2_c),
		2px 0 1px var(--edge2_c),
		0 2px 1px var(--edge2_c),
		-2px 0 1px var(--edge2_c),
		0 -2px 1px var(--edge2_c);
}

/*縁 枠*/
.edge3 {
	color: transparent;

	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--edge3_c);
}

/* -------------------------------------
写真のエフェクト
-------------------------------------*/
img {
	width: auto;
	height: auto;
}

/**4辺ぼかし：親要素にかける**/
.blur_w {
	position: relative;
	display: inline-block;
}

.blur_w:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: rgba(255, 255, 255, 0);
	box-shadow: inset 0 0 40px #ffffff, inset 0 0 40px #ffffff, inset 0 0 40px #ffffff,
		inset 0 0 40px #ffffff;
}

/**角丸：画像に直接かけれる**/
.radius {
	border-radius: 15px;
}

/**hover：透過**/
a:hover img {
	--opacity: 0.7;
	opacity: var(--opacity);
}

/**hover時画像拡大**/
.scale {
	overflow: hidden;
}

.scale img {
	-webkit-transition: -webkit-transform 0.3s linear;
	-moz-transition: -moz-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	transition: transform 0.3s linear;
}

a:hover .scale img {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}

/**画像トリミング：親要素にwとhを指定する**/
.ojf img {
	width: 100%;
	height: 100%;

	-o-object-fit: cover;
	object-fit: cover;
}

/**-------------------------------------
youtube
-------------------------------------**/
iframe {
	width: 100%;
}

.youtube {
	margin: 30px auto 20px;
}

.youtube iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

@media screen and (max-width: 520px) {
	.youtube {
		margin: 20px auto 10px;
	}
}

/* -------------------------------------
google gmap
-------------------------------------*/
/**地図**/
.gmap iframe {
	width: 100%;
	height: 480px;
}

@media screen and (max-width: 480px) {
	.gmap iframe {
		height: 45vh;
	}
}

/* -------------------------------------
PDF埋め込み src="URL末尾#view=Fit"を入れる
-------------------------------------*/
.pdf_wrap {
	width: 800px;
	height: 500px;
}

.pdf_wrap iframe {
	display: block;
	width: 100%;
	height: 100%;
	margin: 30px auto;
}

@media screen and (max-width: 520px) {
	.pdf_wrap {
		width: 90%;
		height: 60vw;
	}
}

/**================================================================================
サイト用 CSS
================================================================================**/

/**-------------------------------------
アイコン
-------------------------------------**/
.em em,
em.em {
	font-size: 0.8rem;
	display: inline-block;
	text-align: center;
	font-style: normal;
	background: rgb(var(--blue));
	color: rgb(var(--white));
	padding: 5px 15px;
	line-height: 1;
	margin-right: 1px;
}

.em em[data-name="black"] {
	background: rgb(var(--black));
}

.time {
	font-style: normal;
	font-size: 0.8rem;
	display: inline-block;
	white-space: nowrap;
	color: rgba(var(--black), 0.5);
	line-height: 1;
}

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

	.em em,
	em.em {
		padding: 3px 10px;
		min-width: auto;
		font-size: 0.8em;
	}
}

/**-------------------------------------
見出し
-------------------------------------**/
.pageTitle {
	padding: 30px var(--over-width-half);
	background: rgb(var(--black));
	color: rgb(var(--white));
	text-align: left;
	font-size: 2rem;
	line-height: 1.3;
	margin: 0 auto 15px;
	overflow: hidden;
	position: relative;
	font-family: var(--webf);
}

:root {
	--titAd: flex;
	--titAff: column;
	--titAjc: flex-start;
	--titAai: flex-start;
	--titAta: left;
	--titAgap: 0;
	--titAfz: 2em;
	--titAc: rgb(var(--white));
	--titAm: 0 auto 40px;
	--titAp: 20px 40px;
	--titAlh: 1.5;
	--titABg: rgb(var(--black));
	--titAw: fit-content;
}

.titA {
	display: var(--titAd);
	justify-content: var(--titAjc);
	align-items: var(--titAai);
	text-align: var(--titAta);
	gap: var(--titAgap);
	flex-flow: var(--titAff);
	font-size: var(--titAfz);
	color: var(--titAc);
	margin: var(--titAm);
	padding: var(--titAp);
	font-family: var(--webf);
	line-height: var(--titAlh);
	font-family: var(--webf);
	background: var(--titABg);
	width: var(--titAw);
	border: var(--titAbd);
}

:root {
	--titBfz: 1.5rem;
	--titBc: var(--black);
	--titBm: 0 0 30px;
	--titBta: left;
	--titBbg: none;
	--titBls: 0;
	--titBp: 0;
	--titBlh: 1.3;
	--titBw: auto;
}

.titB {
	width: var(--titBw);
	font-size: var(--titBfz);
	color: var(--titBc);
	margin: var(--titBm);
	text-align: var(--titBta);
	background: var(--titBbg);
	padding: var(--titBp);
	letter-spacing: var(--titBls);
	position: relative;
	line-height: var(--titBlh);
	font-family: var(--webf);
}


@media screen and (max-width:520px) {
	.pageTitle {
		background-size: 200px auto;
		background-position: center left -60px;
		font-size: 1.5rem;
		text-shadow: 2px 2px 5px rgba(var(--blue2), 0.7), -2px -2px 5px rgba(var(--blue2), 0.7);
	}

	:root {
		--titAfz: 1.7rem;
		--titAm: 0 auto 20px;
		--titAlh: 1.3;
		--titAp: 15px;
		--titAgap: 5px;
	}

}

/**-------------------------------------
ボタン
-------------------------------------**/
:root {
	--btnAfz: 1em;
	--btnAw: 360px;
	--btnAc: rgb(var(--white));
	--btnAbg: rgb(var(--red));
	--btnAbd: 1px solid rgba(var(--blue3), 1);
	--btnAm: 60px auto 1px;
	--btnAp: 15px 1em;
	--btnAjc: center;
	--btnAta: center;
}

.btnA {
	position: relative;
	display: flex;
	justify-content: var(--btnAjc);
	align-items: center;
	padding: var(--btnAp);
	margin: var(--btnAm);
	width: var(--btnAw);
	border: var(--btnAbd);
	background: var(--btnAbg);
	color: var(--btnAc);
	font-family: var(--eng), var(--ff);
	font-size: var(--btnAfz);
	text-align: var(--btnAta);
	font-weight: bold;
}

.btnA:after {
	position: absolute;
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
	content: "→";
	z-index: 5;
	font-size: 0.9rem;
}

.btnA.current,
.btnA:hover {
	border-color: 1px solid rgb(var(--white));
	background: rgb(var(--white));
	color: var(--btnAbg);
}

@media screen and (max-width: 520px) {
	:root {
		--btnAw: clamp(100%, 100%, 90vw);
	}

}

/**================================================== 
 テーブル
================================================== **/

/* -------------------------------------
テーブル
-------------------------------------*/
.table {}

.table table {
	width: 100%;
}

.table :is(th, td) {
	padding: 15px;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(var(--blue), 0.2);
	white-space: nowrap;
}

.table th {
	width: 20%;
}

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

	.table :is(table, tbody, tr, th, td) {
		display: block;
	}

	.table :is(th, td) {
		padding: 10px 0;
		white-space: unset;
	}

	.table th {
		width: 100%;
		color: rgb(var(--blue));
	}
}

/**------------------------------ 
パンくず
 ------------------------------**/
.rank-math-breadcrumb {
	width: var(--base-width);
	margin: 15px auto;
	font-size: 0.8em;
}

@media screen and (max-width:520px) {
	.rank-math-breadcrumb {
		width: 90%;
	}
}

/**================================================== 
header

読み込み時=.white付与。
スクロールすると.white消える。
================================================== **/
header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	flex-flow: wrap;
	width: 100%;
	height: 80px;
	z-index: 100;
	background: rgb(var(--red));
	color: rgb(var(--white));
	padding: 5px var(--over-width-half);
}

header .mark h1 {
	font-size: 0.8rem;
}

header .mark img {
	width: auto;
	height: 40px;
}


/**------------------------------ 
ハンバーガーjqueryなし
 ------------------------------**/
.hamburger {
	--size: 44px;
	position: fixed;
	top: calc((80px - var(--size)) / 2);
	right: calc((80px - var(--size)) / 2);
	display: flex;
	height: var(--size);
	width: var(--size);
	justify-content: center;
	align-items: center;
	z-index: 90;
	background: rgb(var(--white));
	color: rgb(var(--red));
	box-shadow: 0 0 0 1px rgb(var(--red));
	border-radius: 50px;
}

#hamburger-check {
	display: none;
}

/**タップされる前 open**/
.hamburger:after {
	content: "MENU";
	font-size: 10px;
	position: absolute;
	bottom: 2px;
	font-weight: bold;
	letter-spacing: -1px;
}

.hamburger span {
	position: absolute;
	height: 3px;
	width: 25px;
}

.hamburger span:before,
.hamburger span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: rgb(var(--red));
	position: absolute;
}

.hamburger span:before {
	top: -10px;
}

.hamburger span:after {
	top: -2px;
}

/**タップされたとき close**/
#hamburger-check:checked~.hamburger:after {
	content: "CLOSE";
}

#hamburger-check:checked~.hamburger span {
	background-color: rgba(var(--red), 0);
}

#hamburger-check:checked~.hamburger span::before {
	top: -5px;
	transform: rotate(45deg);
}

#hamburger-check:checked~.hamburger span::after {
	top: -5px;
	transform: rotate(-45deg);
}

/**------------------------------ 
	ハンバーガー中身
	 ------------------------------**/
header nav .gnav {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: rgb(var(--red));
	color: rgb(var(--white));
	transition: all 0.5s;
	/*アニメーション設定*/

	font-size: 1.2em;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 25px;
	padding: 100px 30px 20px;
	margin: 0;
}

#hamburger-check:checked~.gnav {
	left: calc(100% - 360px);
	/*メニューを画面内へ*/
}

@media screen and (max-width: 520px) {
	header {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		gap: 10px;
		flex-flow: wrap;
		width: 100%;
		z-index: 100;
	}

	header .mark {}

	header .mark img {
		height: 35px;
	}

	#hamburger-check:checked~.gnav {
		left: 0;
		/*メニューを画面内へ*/
	}
}

/**================================================== 
 スマホfixボタン
================================================== **/

.sp_fix {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	display: flex;
	align-items: stretch;
	z-index: 50;
	font-size: 0.9rem;
	color: rgb(var(--white));
}

.sp_fix :is(.h-tel, .h-toi) {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
	padding: 10px 0;
	flex: 1;
	font-size: 1.2rem;
	font-weight: bold;
}

.sp_fix .h-tel {
	background: rgb(var(--black));
	border-left: 1px solid rgb(var(--white));
}

.sp_fix .h-toi {
	background: rgb(var(--red));
}

.sp_fix :is(.h-tel, .h-toi) svg {
	width: 15px;
	height: 20px;
	fill: rgb(var(--white));
}

/**================================================== 
 footer
================================================== **/
.pagetop {
	--size: 57px;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 5px;
	border: 2px solid rgb(var(--black));
	background: rgb(var(--white));
	width: var(--size);
	height: var(--size);
	border-radius: 50px;
	font-size: 10px;
	font-weight: bold;
	line-height: 1;
	position: fixed;
	right: 5%;
	bottom: 50px;
	z-index: 50;
}

.pagetop:before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	border-left: 2px solid rgb(var(--black));
	border-top: 2px solid rgb(var(--black));
	transform: rotate(45deg);
}


footer {
	padding: 50px var(--over-width-half) 1px;
	color: rgb(var(--blue));
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 40px;
}

footer .mark {
	width: 400px;
}

footer .mark h1 {
	color: rgb(var(--white));
	font-weight: bold;
	background: rgb(var(--red));
	text-align: center;
	margin: 0 1rem 5px;
}

footer .mark img {
	width: 100%;
}

footer nav {}

footer nav .sitemap {
	display: flex;
}

footer nav .sitemap a {
	display: block;
	font-weight: bold;
	padding: 0 20px;
	line-height: 1.3
}

footer nav .sitemap a+a {
	border-left: 1px solid rgb(var(--black));
}

.copyright {
	margin: 54px 0;
	background: rgba(var(--black), 0.8);
	color: rgb(var(--white));
	padding: 20px var(--over-width-half);
	font-size: 0.8em;
	display: flex;
	align-items: center;
	justify-content: center;
}

.copyright .sns {
	display: flex;
	align-items: center;
	gap: 20px;
}

.copyright .sns svg {
	fill: rgba(var(--white), 0.6);
	width: 34px;
	height: 34px;
}

.copyright .sns a:hover svg {
	fill: rgb(var(--white));
}

@media screen and (max-width:520px) {
	.pagetop {
		--size: 44px;
		right: 5px;
		bottom: 60px;
	}

	footer {
		padding: 50px var(--over-width-half) 1px;

	}


	footer .mark {
		width: 200px;
	}

	footer nav {
		grid-area: sitemap;

		display: flex;
		justify-content: flex-end;
		gap: 15px;
	}

	.copyright {
		margin: 40px 0 0;
		flex-flow: column-reverse;
		padding: 20px var(--over-width-half) 70px;
	}
}

/**================================================== 
 TOP
================================================== **/
/**------------------------------ 
ヒーロー
 ------------------------------**/
.hero {
	width: 100%;
	height: auto;
}

.hero img {
	width: 100%;
	height: auto;
}

/**------------------------------ 
画期的
 ------------------------------**/
.home-about {
	padding: 80px var(--over-width-half);
	background: rgb(var(--black));
	color: rgb(var(--white));
	position: relative;
	text-align: center;
	overflow: hidden;

	--titABg: rgb(var(--white));
	--titAc: rgb(var(--black));
}

.home-about:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/top_bg01.webp) no-repeat right bottom / 50% auto;
	opacity: 0.4;
	z-index: 1;
}

.home-about:after {
	content: "";
	position: absolute;
	top: 0;
	left: 40%;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 300px solid transparent;
	border-left: 0 solid transparent;
	border-top: 1000px solid rgb(var(--black));
	border-bottom: 0;
	z-index: 2;
}

.home-about>* {
	position: relative;
	z-index: 3;
}

.home-about h3 {
	font-family: var(--webf);
	font-size: 2rem;
	text-shadow: 3px 3px 10px rgb(var(--black)), -3px -3px 10px rgb(var(--black));
}

.home-about h3 strong {
	font-size: 1.5em;
	color: rgb(var(--yellow));
	font-weight: normal;
	line-height: 1.0;
}

@media screen and (max-width:520px) {
	.home-about {
		padding: 40px var(--over-width-half) 80px;

		--titAai: center;
		--titAta: center;
	}

	.home-about:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: url(../images/top_bg01.webp) no-repeat right bottom / 100% auto;
		opacity: 0.4;
		z-index: 1;
	}

	.home-about:after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-right: 200px solid transparent;
		border-left: 0 solid transparent;
		border-top: 500px solid rgb(var(--black));
		border-bottom: 0;
		z-index: 2;
	}

	.home-about h3 {
		font-size: 1.7rem;
	}
}

/**------------------------------ 
システム
 ------------------------------**/
.home-system {
	width: 980px;
	margin: 60px auto;

	--titAw: 100%;
	--titAm: 0;
	--titAta: center;
	--titAai: center;
}

.list-check {}

.list-check li {
	font-weight: bold;
	font-size: 1.5rem;
	color: rgb(var(--black));
	font-weight: bold;
	border: 2px solid rgb(var(--black));
	display: flex;
	align-items: center;
	position: relative;
	gap: 15px;
	padding: 5px 15px;
	margin: 15px 0;
}

.list-check strong {
	font-size: 1.3em;
	color: rgb(var(--red));
	font-family: var(--webf);
}

.list-check li i {
	display: block;
	width: 70px;
	opacity: 0.5;
}

@media screen and (max-width:520px) {
	.home-system {
		width: 90%;
		margin: 40px auto;
	}

	.list-check li {
		flex-flow: column;
		gap: 0;
		margin: 30px 0 0;
	}

	.list-check li i {
		width: 50px;
		transform: translateY(-20px);
		background: rgb(var(--white));
		opacity: 1;
	}

	.list-check li p {
		transform: translateY(-10px);
	}

	.list-check strong {
		font-size: 1.2em;
		line-height: 1;
	}
}

/**------------------------------ 
 ------------------------------**/

.home-price {
	padding: 80px var(--over-width-half);
	background: url(../images/top_bg02.webp) no-repeat center / cover;
	position: relative;
	color: rgb(var(--white));
	text-align: center;

	--titBfz: 2rem;
	--titBta: center;
	--titBc: rgb(var(--white));
}

.home-price:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 150px solid transparent;
	border-left: 150px solid transparent;
	border-top: 40px solid rgb(var(--white));
	border-bottom: 0;
	z-index: 3;
}

.home-price:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(var(--black), 0.7);
	mix-blend-mode: multiply;
	z-index: 1;
}

.home-price>* {
	position: relative;
	z-index: 2;
}

.home-price dl {
	border: 1px solid rgb(var(--white));
	padding: 20px 50px;
	text-align: center;
	display: inline-block;
	font-size: 1.2rem;
	background: rgb(var(--white));
	color: rgb(var(--black));
	font-weight: bold;
	box-shadow: 10px 10px 0 0 rgb(var(--red));
}

.home-price dd {
	font-size: 2.5em;
	font-weight: bold;
	color: rgb(var(--red));
}

.home-price dd small {
	font-size: 1.8rem;
}

@media screen and (max-width:520px) {
	.home-price {
		padding: 80px var(--over-width-half) 40px;
	}

	.home-price dl {
		width: 100%;
		padding: 20px;
	}
}

/**------------------------------ 
実績
 ------------------------------**/

.home-news {
	margin: 1px 0 0;
	padding: 80px var(--over-width-half);
	background: rgba(var(--black), 0.8);
	background: rgba(var(--black), 0.05);

	--titAw: 100%;
	--titAai: center;

	--titBfz: 2rem;
}

.home-news_list {
	--boxNC_m: 60px auto 30px;
	--boxNC_gap: 50px 3%;
	--boxNC_child_w: calc(94% / 3);
}

.list-news>* {
	background: rgb(var(--white));
	position: relative;
	box-shadow: 0 0 5px 1px rgba(var(--black), 0.1);
}

.list-news a {
	display: block;
	padding: 0 0 20px;
}

.list-news picture {
	display: block;
	width: 100%;
	aspect-ratio: var(--asp-post);
}

.list-news picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list-news p {
	margin: 15px 15px 0;
}

.list-news h3 {
	background: rgb(var(--red));
	color: rgb(var(--white));
	padding: 8px 15px;
	font-weight: bold;
}


@media screen and (max-width:520px) {
	.home-news {
		padding: 30px var(--over-width-half);
		overflow: hidden;

		--titBm: 0 auto 15px;

		--btnAm: 30px auto 1px;
	}

	.home-news_list {
		flex-flow: wrap;
		--boxNC_m: 30px auto 10px;
		--boxNC_gap: 15px;
		--boxNC_child_w: 100%;
	}

	.list-news h3 {
		font-size: 1.2rem;
	}
}


.archive-news {
	padding: 60px var(--over-width-half);
}

@media screen and (max-width:520px) {
	.archive-news {
		padding: 40px var(--over-width-half);
	}
}

/**================================================== 
投稿の詳細 
================================================== **/

.the_content {
	flex: 1;
	margin: 1px auto 100px;
	background: rgb(var(--white));
	position: relative;
}

.the_content .category {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-flow: wrap;
	gap: 1px;
	margin: 0 0 30px;
}

.the_content .category .time {
	margin-right: 30px;
}

.the_content h1,
.the_content h2,
.the_content h3,
.the_content h4,
.the_content h5,
.the_content h6 {
	margin: 1em 0;
}

.the_content h1.titA {
	margin: 40px auto;
}

.the_content h1.the_title {
	display: flex;
	align-items: center;
	gap: 20px;

	font-size: 1.6em;
	margin: 0 0 40px;
	line-height: 1.5;
	text-align: left;
	color: rgb(var(--blue));
	font-weight: bold;
}

.the_content h1.the_title i {
	--size: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	width: var(--size);
	height: var(--size);
	background: rgb(var(--red));
	color: rgb(var(--white));
	text-align: center;
	border-radius: 50px;
	font-size: 12px;
}


.the_content p {
	margin: 0.8em 0;
	line-height: 2;
}

.the_content h1 {
	font-size: 1.6rem;
}

.the_content h2 {
	font-size: 1.5rem;
}

.the_content h3 {
	font-size: 1.4rem;
}

.the_content h4 {
	font-size: 1.3rem;
}

.the_content h5 {
	font-size: 1.2rem;
}

.the_content h6 {
	font-size: 1.1rem;
}

.the_content .wp-block-button__link {
	background: rgb(var(--blue));
}

.the_content .wp-block-button .wp-block-button__link.is-style-outline:not(.has-background),
.the_content .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background) {
	background: rgb(var(--white));
}

.the_content .wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color),
.the_content .wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color) {
	color: rgb(var(--blue));
}

.the_content iframe {
	display: block;
	aspect-ratio: 16/9;
	width: 100%;
	height: auto;
	margin: 1em 0;
}

.the_content .wp-block-image {
	margin: 1em 0;
}


@media screen and (max-width:520px) {
	.the_content {
		margin-bottom: 40px;
	}

	.the_content h1.titB {
		font-size: 26px;
	}
}


/**================================================== 
 
contct
================================================== **/
.contact-tel {
	padding: 60px var(--over-width-half);
}

.contact-tel_box {
	width: 100%;
	background: rgba(var(--red), 0.1);
	padding: 20px 40px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 1rem;
}

.contact-tel_box dt {
	font-weight: bold;
	font-size: 18px;
}

.contact-tel_box {
	font-size: 50px;
	line-height: 1.5;
	color: rgb(var(--red));
	font-weight: bold;
}

.contact-tel_box p {
	line-height: 2;
}

.contact-tel_waku {
	border: 1px dashed rgba(var(--black), 0.2);
	padding: 30px;
	text-align: center;
	position: relative;
}

.contact-tel_waku:before {
	content: "From overseas";
	font-size: 60px;
	font-weight: bold;
	color: rgba(var(--black), 0.2);
	position: absolute;
	top: -30px;
	right: 0;
	line-height: 1;
}

@media screen and (max-width:520px) {
	.contact-tel {
		padding: 30px var(--over-width-half);
	}

	.contact-tel_box {
		padding: 20px 15px;
		margin: 0 auto 30px;
	}

	.contact-tel_box dt {
		font-size: 1rem;
	}

	.contact-tel_box {
		font-size: 30px;
		line-height: 1.5;
	}

	.contact-tel_waku {
		padding: 30px 15px;
		text-align: left;
	}

	.contact-tel_waku:before {
		font-size: 30px;
		top: -13px;
	}
}


/**================================================== 
 snow monkey form
================================================== **/
.contact-form {
	width: var(--base-width);
	margin: 60px auto;

	--titAta: center;
	--titAjc: center;
	--titAai: center;
	--titABg: none;
	--titAc: rgb(var(--black));
}

.form .smf-form--simple-table .smf-item {
	display: flex;
	padding: 0;
	margin: 2px 0;
	/*flex-flow: column;*/
}

.form .smf-form--simple-table .smf-item__col {
	flex: 1 1 auto
}

.form .smf-form--simple-table .smf-item__col--label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-flow: wrap;
	gap: 15px;
	padding: 15px;
	flex: none;
	max-width: none;
	width: 30%;
	color: rgb(var(--black));
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	background: rgba(var(--red), 0.05);
}

.form .smf-checkbox-control {
	padding: 5px 0;
	display: block;
}

.form .smf-item__description {
	background: rgb(var(--red));
	color: rgb(var(--white));
	border-radius: 3px;
	padding: 3px 10px;
	font-size: 12px;
	font-weight: normal;
	margin: 0;
}

.form .smf-form--simple-table .smf-item__col--controls {
	flex: 1;
	padding: 15px;
	line-height: 1;
}

.form .smf-error-messages {
	color: rgb(var(--red));
}

.form .smf-form .smf-item [data-invalid="1"] {
	border-color: rgba(var(--red), 1);
}

.form div[data-name="agree"] {
	text-align: center;
}

.form input[name="addpost"] {
	width: 10em;
}

.form p {
	line-height: 2;
}

.form {
	--size: 300px;
	--_lighter-color-gray: rgb(var(--red));
	--_form-control-border-color-focus: rgb(var(--red));

	background-image: none;
}

.form .smf-action .smf-button-control__control {
	--_color-text: rgb(var(--white));
	--_form-control-border-color: rgb(var(--red));
	width: var(--size);
	background-image: none;
}

.form .smf-action .smf-button-control__control:hover {
	--_color-text: rgb(var(--red));
	--_form-control-border-color-hover: rgb(var(--red));
	--_lighter-color-gray: rgb(var(--white));
}

.form .smf-complete-content {
	text-align: center;
}

.form .smf-error-messages {
	color: rgb(var(--red));
}

.pp-wrap {
	width: 100%;
	height: 200px;
	background: #fff;
	margin: 15px auto;
	overflow-y: auto;
	border: 1px solid #aaa;
	padding: 15px;
}

.pp-wrap :is(h2, h3) {
	font-weight: bold;
	font-size: 1.1rem;
	margin: 2em 0 0.5rem;
}

.pp-wrap h2 {
	text-align: center;
	margin: 1rem 0;
}


@media screen and (max-width:520px) {
	.contact-form {
		width: 90%;
		margin: 30px auto;
	}

	.form .smf-form--simple-table .smf-item {
		display: flex;
		flex-flow: column;
	}

	.form .smf-form--simple-table .smf-item__col--label {
		font-size: 1rem;
		padding: 15px 15px;
		margin: 0 0 5px;
		width: 100%;
	}

	.form .smf-form--simple-table .smf-item__col--controls {
		padding: 10px 15px;
	}

	.form .smf-radio-buttons-control__control {
		display: flex;
		gap: 20px;
	}

	.form .smf-select-control__control {
		width: 100%;
	}

	.form {
		--size: 100%;
	}

	.form .smf-complete-content {
		text-align: left;
	}
}


.bg-attc{
	background:url(../images/dot.png) repeat center,
		url(../images/bg1.webp) no-repeat center / cover;
	background-attachment: fixed;
	width: 100%;
	height: 50vh;
}