@charset "UTF-8";
/*
Theme Name: MY THEME 
Author: Zenshin
Description: オリジナルテーマ
Version: 1.0
*/

/* フォント */
@font-face {
	font-family: '';
	src: url('HannariMincho-Regular.woff2') format('woff2'),
		url('HannariMincho-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

.font-red {
	color: #ff0000;
}

.font-blue {
	color: blue;
}

.font-bold {
	font-weight: bold;
}

body {
	font-family: 'HannariMincho', serif;
}


img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.img-full img {
	width: 100%;
	height: auto;
	text-align: center;
	vertical-align: bottom;
}


@media screen and (max-width: 780px) {
	.flex_res {
		flex-direction: column;
		align-items: center;
	}
}

.flex_hanyo {
	display: flex;
	justify-content: center;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.flex-base {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3%;
}

.alignleft {
	float: left;
	margin-left: 0;
	margin-right: 1em;
}

.alignright {
	float: right;
	margin-left: 1em;
	margin-right: 0;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

.wp-block-categories.aligncenter,
.wp-block-latest-posts.aligncenter,
.wp-block-archives.aligncenter,
.wp-block-tag-cloud.aligncenter,
.wp-block-latest-comments.aligncenter,
.wp-block-rss.aligncenter {
	text-align: center;
}

figure {
	margin-left: 0;
	margin-right: 0;
}

body {
	box-sizing: border-box;
}

body *,
body *::before,
body *::after {
	box-sizing: inherit;
}

ul {
	padding-inline-start: 1rem;
}

pre {
	font-family: unset;
}

/* 変数 */
:root {
	--f1: 2.44em;
	/* 39.04px */
	--f2: 1.95em;
	/* 31.2px */
	--f3: 1.56em;
	/* 24.96px */
	--f4: 1.25em;
	/* 20px */
	--f5: 1em;
	/* 16px */
	--f6: 0.8em;
	/* 12.8px */

	--f7: 0.66em;
	/* 12.8px */

	--basecolor: #63a211;
	/* 基本色 */
	--gradient: linear-gradient(81.7deg, rgba(34, 126, 34, 1) 8.1%, rgba(99, 162, 17, 1) 86.5%);

	--myfont: "Noto Sans JP", sans-serif;
	--myw: 720px;
	/*標準幅*/
}


/* フォント */
/* body {
	font-family: var(--myfont);
	font-size: 21px;
} */

p {
	line-height: 1.8;
	font-size: var(--f5);
}


h1 {
	font-size: var(--f1);
	font-weight: 300;
}

h2 {
	font-size: var(--f3);
	margin-block-start: 0;
}

h3 {
	font-size: var(--f3);
}

h4 {
	font-size: var(--f4);
}

h5 {
	font-size: var(--f5);
}

h6 {
	font-size: var(--f6);
}

.text_item_double_L {
	width: 55%;
	padding: 30px 0;
	margin: 0 auto;
}

.text_item_double_L p {
	font-size: 18px;
}

.text_img_double_R {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45%;
	padding: 30px 0;
	margin-left: 8%;
}

.text_img_double_R img {
	vertical-align: middle;
}

.title_wrapper {
	margin-right: 50%;
}

.title_img {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}

.top_assist_text {
	font-size: 14px;
	/* margin-top: 35px; */
}

@media screen and (max-width: 780px) {
	.text_item_double_L {
		width: 100%;
		display: flex;
		flex-direction: column;
		/* 要素を縦方向に並べる */
		justify-content: center;
		/* 横方向（左右方向）の中央揃え */
		align-items: center;
		/* 縦方向（上下方向）の中央揃え */
		padding: 0;
	}

	.text_img_double_R {
		width: 70%;
		margin-left: 0;
		margin-bottom: 10px;
	}

	.title_img {
		width: 70%;
		margin: 20px 0 30px 0;
	}

	.text_item_double_L p {
		font-size: 14px;
	}

	.title_wrapper {
		width: 100%;
		display: flex;
		flex-direction: column;
		/* 要素を縦方向に並べる */
		justify-content: center;
		/* 横方向（左右方向）の中央揃え */
		align-items: center;
		/* 縦方向（上下方向）の中央揃え */
	}

	.osirase_img {
		width: 50%;
	}
}


/* 横幅 */
body {
	margin: 0;
}


.alignfull {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.alignwide {
	margin-top: 5%;
	padding-left: 25%;
	padding-right: 25%;
}

/*スマホ*/
@media (max-width: 600px) {
	.alignwide {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media (min-width: 1320px) {}


/*配置*/
.center {
	text-align: center;
}

.space-between {
	justify-content: space-between;
}

/* ポジション */
.relative {
	position: relative;
}

.top {
	vertical-align: top;
}

/*リンク*/
a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: inherit;
	opacity: 0.7;
}

/*色*/
.white {
	color: white;
}

.red {
	color: red;
}

.green {
	color: green;
}

.grey {
	background-color: #F2F2F2;
	padding-bottom: 5%;
}

.white-bg {
	background-color: white;
}

/*スマホ限定/PC限定*/
/*フッターの画像切替のみに使用 bootstrapのxlに対応*/

@media only screen and (max-width:768px) {
	.sp-md {
		display: block;
	}

}

/*-----マージン共通-----*/
.margin_hanyo {
	margin-top: 120px;
}

.margin_hanyo_sub2 {
	margin-top: 100px;
}

.margin_right_pc {
	margin-right: 20px;
}

.margin_hanyo_bottom {
	margin-bottom: 5%;
}

@media screen and (max-width: 780px) {
	.margin_hanyo {
		margin-top: 50px;
	}

	.margin_hanyo_sub {
		margin-top: 10px;
	}

	.margin_hanyo_sub2 {
		margin-top: 50px;
	}

	.margin_top_res {
		margin-top: 15px;
	}

	.margin_right_pc {
		margin-right: 0;
	}
}

p {
	font-size: 21px;
}

.sp {
	display: none !important;
}

.sm {
	display: none !important;
}

@media only screen and (max-width: 768px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}
}

@media only screen and (max-width: 560px) {
	.sm {
		display: block !important;
	}

	.extra {
		display: none !important;
	}
}

/* #header  */
@media only screen and (min-width: 769px) {
	.hamburger-menu {
		display: none;
	}
}

.enjiiro {
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	color: #c43d3d;
	font-weight: bold;
	font-size: 22px;
}

@media only screen and (max-width: 768px) and (min-width: 500px) {
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 60px;
		width: 60px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #A32F2F;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
	}

	.menu-btn span:before {
		bottom: 8px;
	}

	.menu-btn span:after {
		top: 8px;
	}

	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 80;
		background-color: #A32F2F;
	}

	.menu-content ul {
		padding: 70px 10px 0;
	}

	.menu-content ul li.top-wh {
		list-style: none;
	}

	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 15px;
		box-sizing: border-box;
		color: #ffffff;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}

	.menu-content ul li.top-enji a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 3px #A32F2F;
		border-right: solid 3px #A32F2F;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 22px;
	}

	.menu-content ul li.top-wh a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #ffffff;
		border-right: solid 2px #ffffff;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}

	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		background-color: rgba(75, 75, 75, 0.75);
		transition: all 0.5s;
	}

	#menu-btn-check:checked~.menu-content {
		left: 0;
	}
}

.top-wh a {
	border-bottom: 1px solid #ffffff;
}

.selected {
	color: #A32F2F !important;
	position: relative;
	font-weight: bold;
	border-bottom: 1px solid #A32F2F !important;
}

.selected::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 3px #A32F2F !important;
	border-right: solid 3px #A32F2F !important;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 22px;
}

#menu-btn-check:checked~.menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked~.menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check {
	display: none;
}

@media only screen and (max-width: 500px) and (min-width: 0px) {
	.menu-btn {
		position: fixed;
		top: 10px;
		right: 10px;
		display: flex;
		height: 40px;
		width: 40px;
		justify-content: center;
		align-items: center;
		z-index: 90;
		background-color: #A32F2F;
	}

	.menu-btn span,
	.menu-btn span:before,
	.menu-btn span:after {
		content: '';
		display: block;
		height: 3px;
		width: 20px;
		border-radius: 3px;
		background-color: #ffffff;
		position: absolute;
	}

	.menu-btn span:before {
		bottom: 8px;
	}

	.menu-btn span:after {
		top: 8px;
	}

	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 80;
		background-color: #A32F2F;
	}

	.menu-content ul {
		padding: 70px 10px 0;
	}

	.menu-content ul li.top-wh {
		list-style: none;
	}

	.menu-content ul li.top-enji {
		border-bottom: solid 1.5px #A32F2F;
		list-style: none;
	}

	.menu-content ul li a {
		display: block;
		width: 100%;
		font-size: 14px;
		box-sizing: border-box;
		color: #ffffff;
		text-decoration: none;
		padding: 9px 15px 10px 0;
		position: relative;
	}

	.menu-content ul li.top-enji a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 3px #A32F2F;
		border-right: solid 3px #A32F2F;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 22px;
	}

	.menu-content ul li.top-wh a::before {
		content: "";
		width: 7px;
		height: 7px;
		border-top: solid 2px #ffffff;
		border-right: solid 2px #ffffff;
		transform: rotate(45deg);
		position: absolute;
		right: 11px;
		top: 16px;
	}

	.menu-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		z-index: 80;
		background-color: rgba(75, 75, 75, 0.75);
		transition: all 0.5s;
	}

	#menu-btn-check:checked~.menu-content {
		left: 0;
	}

	.enjiiro {
		text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
		color: #c43d3d;
		font-weight: bold;
		font-size: 16px;
	}
}










.head_item {
	position: absolute;
	z-index: 2;
	display: flex;
	margin: 0;
	padding: 0;
	width: 100%;
	top: 0;
}

.head_item li {
	margin: 0;
	padding: 0;
}

.head_item img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	margin: 0;
	padding: 0;
	opacity: 0.9;
	transition: opacity 1.0s ease;
}

.head_item img:hover {
	opacity: 1;
}

.myhead {
	background-color: rgba(255, 255, 255, 0.1);
}

.border-left {
	position: relative;
	display: inline-block;
	/* コンテンツの幅に合わせる */
}

.border-left::before {
	content: '';
	position: absolute;
	width: 1px;
	/* 線の長さ（左右合計80%） */
	height: 70%;
	/* 線の太さ */
	background: #4d4d4d;
	/* 線の色 */
}

.border-left::before {
	left: 0;
	top: 15%;
}

.w-50 {
	width: 50%;
}

.w-20 {
	width: 20%;
}

.w-15 {
	width: 15%;
}

.w-30 {
	width: 30%;
}

.flex-end {
	display: flex;
	justify-content: flex-end;
}

.top-button {
	gap: 8%;
	padding-right: 3%;
}

.head_item {
	align-items: center;
}

.flex-evenly {
	display: flex;
	justify-content: space-evenly;
}

.myhead {
	margin: 2% 0;
}

.respo-font {
	font-size: 1.4vw;
	padding: 0 2%;
}

.respo-font-sub {
	font-size: 0.85vw !important;
}

.style-none,
.list-none {
	list-style: none;
	padding: 0;
	margin: 0;
}

.style-none {
	display: none;
}

.hover-item:hover .style-none {
	display: block;
}

.hover-item {
	position: relative;
}

.style-none {
	content: '';
	position: absolute;
	white-space: nowrap;
}

.style-none li {
	background-color: #81041A;
	color: #FFFFFF;
	padding: 10px;
}

.mini-pad li {
	padding: 10px 20px;
}

.inline-block {
	display: inline-block;
}

.facebook-icon img {
	width: 20%;
	margin: 1% 0 1% 15%;
	vertical-align: top;
}

.top-icon img {
	width: 80%;
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.top-icon {
		width: 50% !important;
	}

	.sp-icon {
		margin-right: 30%;
	}

	.sp-icon img {
		width: 30px;
	}
}

@media only screen and (max-width: 560px) {
	.top-icon {
		width: 65% !important;
	}

	.sp-icon {
		margin-right: 25%;
	}

	.sp-icon img {
		width: 30px;
	}
}

@media only screen and (max-width: 380px) {
	.top-icon img {
		width: 100%;
	}
}

/* #endregion */

/* #footer  */

.access-tel p {
	font-size: initial !important;
}

.center p {
	font-size: initial !important;
	margin-top: initial !important;
}

.foot1 {
	width: 48%;
	height: auto;
	display: flex;
}

.foot-icon {
	width: 150px;
	height: auto;
	margin-left: auto;
	margin-top: 4rem;
}

.foot2 {
	width: 21%;
	height: 400px;
}

.access-tel {
	font-size: 1rem !important;
	padding-top: 4rem;
}

.access-tel p {
	font-size: 1rem !important;
	margin: 0;
	padding: 0;
}

.map {
	padding-top: 2rem;
}

.foot3 {
	width: 48%;
	height: 400px;
}

.footer-menu {
	padding-top: 10%;
	padding-left: 30%;
}

.footer-menu li {
	font-size: 16px;
	line-height: 1.8;
}

.foot4 {
	width: 19%;
	height: 400px;
}

.foot-flex {
	display: flex;
	width: 100%;
	flex: 0 0 88%;
	background-position: top;
	padding: 0;
	flex-wrap: wrap;
}

.myfoot center {
	width: 100%;
	flex: 0 0 12%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	min-height: 0;
}

iframe {
	max-width: 100%;
	height: auto;
}


.myfoot {
	position: relative;
	background: url('./image/top/foot-bg.png') no-repeat top center;
	background-size: cover;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: visible;
	aspect-ratio: 1980 / 596;
	display: flex;
	flex-direction: column;
}

.myfoot2 {
	position: relative;
	background: url('./image/contact/foot-bggg.png') no-repeat top center;
	background-size: cover;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: visible;
	aspect-ratio: 1980 / 596;
	display: flex;
	flex-direction: column;
}

/* フッターボタン */
.js-backToTop {
	position: fixed;
	right: 40px;
	bottom: 40px;
	width: 65px;
	height: 65px;
	background: #fff;
	border: none;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 9999;
	transition: box-shadow 0.2s;
}

.js-backToTop:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.arrow-up {
	display: block;
	width: 16px;
	height: 16px;
	border-left: 1.5px solid #a94442;
	border-bottom: 1.5px solid #a94442;
	transform: rotate(134deg)translateY(-3px)translateX(3px);
	margin-bottom: 0px;
}

/* re */
@media only screen and (max-width: 500px) {
	.js-backToTop {
		width: 50px;
		height: 50px;
		right: 20px;
		bottom: 20px;
	}
}



@media only screen and (max-width: 1290px) {
	.footer-menu {
		padding-top: 15%;
		padding-left: 30%;
	}
}

@media only screen and (max-width: 960px) {
	.footer-menu {
		padding-top: 20%;
		padding-left: 30%;
	}
}

@media only screen and (max-width: 730px) {
	.footer-menu li {
		font-size: 16px;
		line-height: 1.8;
		width: auto;
	}

	.footer-menu {
		padding-top: 3.7rem;
		padding-left: 20%;
	}

	.foot2 {
		width: 32%;
		height: 400px;
	}

	.foot3 {
		width: 48%;
		height: 400px;
	}

	.foot4 {
		width: 0%;
		height: 400px;
	}
}

@media only screen and (max-width: 469px) {
	.access-tel p {
		font-size: 14px !important;
	}

	.footer-menu li {
		font-size: 14px;
	}

	.footer-menu {
		padding-top: 3.7rem;
		padding-left: 16%;
	}

	.center p {
		font-size: 14px !important;
	}
}

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

	.footer-menu {
		padding-top: 3.7rem;
		padding-left: 12%;
	}
}

/* #endregion */

/* #top  */

.top-img {
	position: relative;
	z-index: 1;
	margin-top: -34px;
}

top-text {}

.news-container {
	width: 15%;
	margin: 0;
}

.news-title {
	margin-top: 0px;
	margin-left: 80px;
}

.news-content {
	height: 450px;
	width: 1000px;
}

.lines {
	width: 100%;
	height: 1px;
	background-color: #e6e6e6;
	height: 2px;
}

.news1-img {
	position: absolute;
	margin-right: 58%;
	margin-bottom: 15%;
}

.news1 {
	position: absolute;
	margin-right: 40%;
	margin-bottom: 26%;
}

.news2-img {
	position: absolute;
	margin-left: 5%;
	margin-bottom: 15%;
}

.news2 {
	position: absolute;
	margin-left: 23%;
	margin-bottom: 26%;
}

.news3-img {
	position: absolute;
	margin-right: 58%;
	margin-top: 17%;
}

.news3 {
	position: absolute;
	margin-right: 40%;
	margin-top: 9%;
}

.news4-img {
	position: absolute;
	margin-left: 5%;
	margin-top: 17%;
}

.news4 {
	position: absolute;
	margin-left: 23%;
	margin-top: 9%;
}

.tri {
	display: none;
}

.itiran {
	display: flex;
	align-items: center;
	height: 65px;
	width: 210px;
	font-weight: bold;
	font-size: 21px;
	background-color: #A32F2F;
	padding: 0 30px;
	margin: 0 10% 5% 70%;
}

.bg-white {
	background-color: #C0545B;
}

.radius14 {
	border-radius: 14px;
}

.green-font {
	color: #C0545B;
	font-weight: bold !important;
}

.title {

	font-size: 30px;
	margin: 2% 0 3%;
}

.vertical-title {
	writing-mode: vertical-lr;
	font-size: 24px;
	margin: 0;
}

.line {
	border-right: 2px solid #A32F2F;
	padding-right: 0;
}

.title-mini {
	text-align: center;
	font-weight: bold;
	font-size: 21px;
	margin-left: 5%;
}

.sub-enji {
	background-color: #A32F2F;
	padding: 1% 30px;
	white-space: nowrap;
}

.sub-title {
	font-family: "Century Gothic", sans-serif;
	font-size: 16px;
	font-style: italic;
	font-weight: normal;
}

.overview {
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 80px;
}

.wrapper {
	display: flex;
	width: 100%;
	box-sizing: border-box;
}

.case_item-wrapper-top {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	flex-direction: column;
	width: 70%;
	margin-bottom: 4%;
}

.case_item-wrapper-top .case_item:nth-last-child(-n+2) {
	border-bottom: 1.4px solid #e8e8e8;
}

.right-space {
	width: 15%;
}

.font1 {
	font-size: 36px;
}

.font2 {
	font-size: 22px;
}



.sub-enji {
	display: flex;
	align-items: center;
	height: 65px;
	width: 210px;
	font-weight: bold;
	font-size: 21px;
	background-color: #A32F2F;
	padding: 0 30px;
	margin: 8% auto;
	z-index: 10;
}

.about-pad {
	padding: 2%;
}

.black {
	color: #000000;
}

.item-center {
	align-items: center;
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.blog-container {
	padding: 3% 2%;
	align-items: center;
	height: 48%;
}

.job-container {
	padding: 1% 15px;
}

.ABOUT {
	display: flex;
	background: url('./image/top/about-bg.png') no-repeat right center;
	background-size: 90% auto;
	aspect-ratio: 1774 / 1095;
	margin: 4% auto;
	margin-bottom: 8%
}

.FUNERAL {
	display: flex;
	background: url('./image/top/funeral-bg.png') no-repeat right center;
	background-size: 90% auto;
	aspect-ratio: 1761 / 1094;
	margin: 4% auto;
	margin-bottom: 8%
}

.about-fl {
	display: flex;
	flex-direction: column;
	width: 28%;
	margin: 8% 4%;
}

.about-img-fl {
	width: 56%;
	aspect-ratio: 1071 / 833;
	display: flex;
	flex-direction: column;
}

.about-img2 img {
	width: 100%;
	height: auto;
}

.about-img3 {
	width: 80%;
	margin: 0 auto;
}

.about-container {
	width: 16%;
}

.HISTORY {
	display: flex;
	background: url('./image/top/history-bg.png') no-repeat left center;
	background-size: 90% auto;
	aspect-ratio: 1765 / 1094;
	margin: 4% auto;
	margin-bottom: 8%
}

.history-fl {
	display: flex;
	flex-direction: column;
	width: 28%;
	margin: 8% 4%;
}

.history-img-fl {
	width: 56%;
	aspect-ratio: 1071 / 833;
	display: flex;
	flex-direction: column;
}

.history-img2 img {
	width: 100%;
	height: auto;
}

.history-img3 {
	width: 80%;
	margin: 0 auto;
}

.history-container {
	width: 16%;
	display: grid;
	align-items: start;
	justify-items: end;
}

@media only screen and (max-width: 1090px) and (min-width: 920px) {
	.font1 {
		font-size: 32px !important;
	}

	.sub-title {
		font-size: 18px !important;
	}

	.about-fl p,
	.history-fl p {
		font-size: 18px;
	}
}

@media only screen and (max-width: 920px) and (min-width: 784px) {
	.font1 {
		font-size: 28px !important;
	}

	.sub-title {
		font-size: 16px !important;
	}

	.about-fl p,
	.history-fl p {
		font-size: 16px;
		line-height: 1.6rem;
	}

	.about-fl,
	.history-fl {
		margin: 6% 4%;
	}
}

@media only screen and (max-width: 784px) and (min-width: 588px) {
	.font1 {
		font-size: 24px !important;
	}

	.sub-title {
		font-size: 14px !important;
	}

	.about-fl p,
	.history-fl p {
		font-size: 14px;
		line-height: 1.5rem;
	}

	.about-fl,
	.history-fl {
		width: 36%;
		margin: 5% 4%;
	}

	.about-img3,
	.history-img3 {
		width: 60%;
	}

	.about-img-fl,
	.history-img-fl {
		width: 50%;
	}

	.about-container,
	.history-container {
		width: 14%;
	}
}

@media only screen and (max-width: 588px) and (min-width: 440px) {
	.font1 {
		font-size: 16px !important;
	}

	.about-fl p,
	.history-fl p {
		font-size: 14px;
		line-height: 1.4rem;
	}

	.about-fl,
	.history-fl {
		width: 42%;
		margin: 8% 4% 4% 4%;
	}

	.about-img3,
	.history-img3 {
		display: none;
	}

	.about-img-fl {
		width: 46%;
	}

	.about-container {
		width: 12%;
	}

	.history-img-fl {
		width: 46%;
	}

	.history-container {
		width: 12%;
	}
}

@media only screen and (max-width: 440px) and (min-width: 0px) {
	.font1 {
		font-size: 16px !important;
	}

	.sub-title {
		display: none;
	}

	.about-fl p,
	.history-fl p {
		font-size: 14px;
		line-height: 1rem;
	}

	.about-fl,
	.history-fl {
		width: 46%;
		margin: 7% 1% 4% 3%;
	}

	.about-img3,
	.history-img3 {
		display: none;
	}

	.about-img-fl {
		width: 46%;
	}

	.about-container {
		width: 8%;
	}

	.history-img-fl {
		width: 46%;
	}

	.history-container {
		width: 8%;
	}
}

@media only screen and (max-width: 784px) and (min-width: 620px) {
	.sub-enji {
		height: 50px;
		width: 170px;
		font-size: 18px;
		padding: 0 25px;
		margin: 10% auto;
	}
}

@media only screen and (max-width: 620px) and (min-width: 500px) {
	.sub-enji {
		height: 40px;
		width: 140px;
		font-size: 16px;
		padding: 0 18px;
		margin: 14% auto;
	}
}

@media only screen and (max-width: 500px) and (min-width: 0px) {
	.sub-enji {
		height: 30px;
		width: 120px;
		font-size: 14px;
		padding: 0 15px;
		margin: 16% auto;
	}
}

～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ .contact-img {
	position: absolute;
}

.contact-con {
	background: url('./image/top/contact-bg.png') no-repeat top center;
	background-size: cover;
	position: relative;
	width: 100%;
	height: auto;
	margin: 0 auto;
	margin-bottom: 0;
	aspect-ratio: 1980 / 378;
}

.trigger-point {
	display: none;
}

@media only screen and (max-width: 786px) {
	.sentence {
		font-size: 1.2rem;
	}
}

@media only screen and (max-width: 653px) {
	.sentence {
		font-size: 1.0rem;
	}
}

@media only screen and (max-width: 547px) {
	.sentence {
		font-size: 14px;
	}
}

@media only screen and (max-width: 486px) {
	.sentence {
		font-size: 14px;
	}

	.trigger-point {
		display: block;
	}
}


.sentence {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 40px;
	color: white;
	padding: 70px 0;
	margin: 0;
}

.inquiry {
	position: relative;
	display: flex;
	justify-content: center;
	height: 70px;
	align-items: center;

	background-color: transparent;
	color: white;
	border: 1.5px solid #ffffff;
	width: 100%;
	max-width: 500px;
	border-radius: 0px;
	margin: 0 auto;
	cursor: pointer;
	transition: background-color 0.3s;
}

.margin20 {
	margin-top: 24.5em;
	margin-bottom: 2em;
}

.w-53 {
	width: 53%;
}

.area-container {
	width: 80%;
	margin: 2% auto;
}

.w-45 {
	width: 45%;
}

.wrap {
	flex-wrap: wrap;
	white-space: wrap;
}

.font40 {
	font-size: 40px;
}

.bold {
	font-weight: bold;
}

.white {
	color: #FFFFFF;
}

.pad20 {
	padding: 20px 0;
}

.pad3 {
	padding: 3% 0;
}

.pad5 {
	padding: 5% 0;
}

.w-31 {
	width: 31%;
}

.left {
	text-align: left;
}

.gap0 {
	gap: 0;
}

.pad15 {
	padding: 15px;
}

.button {
	margin: 3% 0;
}

.w-33 {
	width: 33%;
}

.bottom3 {
	margin-bottom: 3%;
}

.font16 {
	font-size: 16px;
}

.button-image img {
	width: 20%;
}

.news-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border-top: 2px solid#e6e6e6;
	border-bottom: 2px solid #e6e6e6;
	margin-bottom: 15px;
}

.news-tag {
	text-align: center;
	padding: 2px 25px;
	border-radius: 25px;
}

.circle {
	padding: 4px 10px;
	border-radius: 25px;
}

@media only screen and (max-width: 600px) {
	.w-40-extra {
		width: 75% !important;
	}

	.news-content {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.circle {
		padding: 4px 9px;
	}
}

@media only screen and (max-width: 1200px) {
	.w-53 {
		width: 100%;
	}
}

@media only screen and (max-width: 950px) and (min-width: 769px) {

	.button-image img {
		width: 30%;
	}
}

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

	.w-50,
	.footer-menu {
		width: 100% !important;
	}

	.sp-center {
		justify-content: center;
		text-align: center !important;
	}

	.sp-column {
		flex-direction: column;
	}

	.job-container {
		padding: 5px;
	}
}

@media only screen and (max-width: 768px) and (min-width: 561px) {

	.button-image img {
		width: 30%;
	}

	.point-container {
		width: 90%;
	}

	.w-31,
	.sp-w-80,
	.w-48 {
		width: 80% !important;
		margin: 20px auto;
	}

	.blog-container {
		margin: 20px 0;
	}

	.font40 {
		font-size: 32px;
	}
}

@media only screen and (max-width: 560px) and (min-width: 0px) {
	.title {
		width: 100%;
	}

	.button-image img {
		width: 55%;
	}

	p {
		font-size: 18px;
	}

	.font40,
	.other-family {
		font-size: 28px;
	}

	.title,
	.title-kakko {
		font-size: 24px;
	}

	.font16,
	.font16 p {
		font-size: 14px;
	}

	.w-31,
	.sp-w-80,
	.w-48 {
		width: 90% !important;
		margin: 10px auto;
	}

	.blog-container {
		margin: 10px 0;
	}
}

/* トップ　レスポ */



@media only screen and (max-width: 1200px) and (min-width: 870px) {
	.itiran {
		margin: 0 10% 5% 65%;
	}
}

@media only screen and (max-width: 870px) and (min-width: 784px) {
	.itiran {
		height: 65px;
		width: 210px;
		font-size: 21px;
		padding: 0 30px;
		margin: 0 10% 5% 60%;
	}
}

@media only screen and (max-width: 784px) and (min-width: 620px) {
	.itiran {
		height: 50px;
		width: 170px;
		font-size: 18px;
		padding: 0 25px;
		margin: 0 10% 5% 60%;
		white-space: nowrap;
	}
}

@media only screen and (max-width: 620px) and (min-width: 500px) {
	.itiran {
		height: 40px;
		width: 140px;
		font-size: 16px;
		padding: 0 18px;
		margin: 0 10% 5% 59%;
		white-space: nowrap;
	}
}

@media only screen and (max-width: 500px) and (min-width: 0px) {
	.itiran {
		height: 30px;
		width: 120px;
		font-size: 14px;
		padding: 0 15px;
		margin: 0 4% 5% 50%;
		white-space: nowrap;
	}
}

@media only screen and (max-width: 820px) and (min-width: 680px) {
	.overview span {
		font-size: 18px;
	}
}

@media only screen and (max-width: 680px) and (min-width: 500px) {
	.overview span {
		font-size: 18px;
	}
}

@media only screen and (max-width: 500px) and (min-width: 320px) {
	.trinone {
		display: none;
	}

	.tri {
		display: block;
		width: 85%;
		margin: 0 auto;
		font-size: 18px;
		text-align: left;
	}

}


@media only screen and (max-width: 1088px) and (min-width: 856px) {
	.case_item-wrapper-top {
		grid-template-columns: 1fr;
		width: 80%;
	}

	.case_item-wrapper-top .case_item:nth-last-child(2) {
		border-bottom: none;
	}
}

@media only screen and (max-width: 856px) and (min-width: 578px) {
	.news-top-img {
		margin-bottom: 8vh;
	}

	.case_item-wrapper-top {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper-top .case_item:nth-last-child(2) {
		border-bottom: none;
	}
}

@media only screen and (max-width: 578px) and (min-width: 450px) {
	.news-top-img {
		margin-bottom: 6vh;
	}

	.case_item-wrapper-top {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper-top .case_item:nth-last-child(2) {
		border-bottom: none;
	}

	.thumbnail img {
		width: 7.6em;
		height: auto;
		margin: 1em;
	}

	.content {
		padding-top: 1em;
	}

	.content p {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 450px) {
	.news-top-img {
		margin-bottom: 4vh;
	}

	.case_item-wrapper-top {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper-top .case_item:nth-last-child(2) {
		border-bottom: none;
	}

	.thumbnail img {
		width: 5.6em;
		height: auto;
		margin: 1em;
	}

	.content {
		padding-top: 1em;
	}

	.content p {
		margin-bottom: 0;
		font-size: 0.8rem;
	}

	.content h3 {
		font-size: 0.8rem;
	}
}

@media only screen and (max-width: 1070px) {
	.news-title {
		margin-left: 60px;
	}

	.foon1 {
		font-size: 2.2rem;
	}

	.font2 {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 924px) {
	.news-title {
		margin-left: 30px;
	}

	.font1 {
		font-size: 1.8rem;
	}

	.font2 {
		font-size: 1.1rem;
	}
}

@media only screen and (max-width: 655px) {
	.news-title {
		margin-left: 10px;
	}

	.font1 {
		font-size: 1.4rem;
	}

	.font2 {
		font-size: 0.9rem;
	}
}

@media only screen and (max-width: 415px) {
	.news-title {
		margin-left: 5px;
	}

	.font1 {
		font-size: 1rem;
	}

	.font2 {
		font-size: 0.7rem;
	}
}

/* #endregion */

/* #×  */

.container {
	width: 80%;
	margin: 5% auto;
	max-width: 100% !important;
}

.light-green-font {
	color: #00FF00;
}

.other-family {
	font-family: "Futura Hv BT", sans-serif;
	font-size: 40px;
}

.page-top {
	margin-top: 0 !important;
}

.page-bottom {
	padding-bottom: 2% !important;
}

.pad2-3 {
	padding: 2% 3%;
}

.bottom0 {
	padding-bottom: 0;
}

.before-underline {
	position: relative;
}

.before-underline::before {
	content: '';
	position: absolute;
	left: -2.935vw;
	bottom: -2px;
	width: 1.6vw;
	height: 1px;
	background-color: #C0545B;
}

.table-width {
	width: 80%;
	margin: 3% auto;
}

.weight-normal {
	font-weight: normal;
}

.border-bottom-green {
	font-weight: normal;
	border-bottom: 2px solid #C0545B;
	vertical-align: top;
	padding: 1% 0 1% 2%;
}

.border-bottom-ash {
	border-bottom: 1px solid #e6e6e6;
	padding: 1% 0 1% 2%;
}

.pad-same {
	padding: 1% 0 1% 2%;
}

.table-bottom {
	border-bottom: none;
}

.font24 {
	font-size: 24px;
	font-weight: bold;
}

.w-80 {
	width: 80%;
	margin: 3% auto;
}

.transparent {
	color: transparent;
}

.bg-ash {
	background-color: #F7F7F7;
}

.font30 {
	font-size: 30px;
}

.w-40 {
	width: 40%;
}

.w-60 {
	width: 60%;
}

.right {
	text-align: right;
}

.w-70 {
	width: 70%;
}

.w-48 {
	width: 48%;
}

.gap4 {
	gap: 4%;
}

.gap10 {
	gap: 10px;
}

.w-fit {
	width: fit-content;
	min-width: 250px;
}

.nowrap {
	flex-wrap: nowrap;
}

.highlighter {
	background: linear-gradient(transparent 50%, #FCF47B 50%);
	width: fit-content;
}

@media only screen and (max-width: 915px) and (min-width: 561px) {
	.w-fit {
		width: 80%;
		margin: auto;
		min-width: 0;
	}

	.nowrap {
		flex-direction: column;
	}
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
	.w-60 {
		padding: 0;
		width: 80%;
		margin: auto;
	}

	.w-40 {
		width: 75%;
		margin: auto;
	}
}

@media only screen and (max-width: 1067px) and (min-width: 769px) {
	.font24 {
		font-size: 2.2vw;
	}
}

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

	.border-side {
		position: static;
	}

	.w-60 {
		padding: 0;
		width: 100%;
	}

	.w-40 {
		width: 80%;
		margin: auto;
	}

	.w-40 img {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.container {
		width: 90% !important;
		margin: 2% auto;
	}

	.font24 {
		font-size: 20px;
	}

	.font30 {
		font-size: 24px;
	}

	.left-title {
		font-size: 26px;
	}

	.table-width {
		width: 90%;
		margin: 2% auto;
	}
}

@media only screen and (max-width: 560px) {
	.container {
		width: 96% !important;
		margin: 10px auto;
	}

	.font24 {
		font-size: 18px;
	}

	.font30 {
		font-size: 20px;
	}

	.left-title {
		font-size: 22px;
		margin: 10px 0 50px;
	}

	.sp-100 {
		width: 80% !important;
		margin: auto;
	}

	.sm-column {
		flex-direction: column;
	}

	.gap4 {
		gap: 10px;
	}

	.border-bottom-ash,
	.border-bottom-green {
		padding: 5%;
	}

	.border-bottom-green {
		background-color: #C0545B;
		color: white;
	}

	.table-width {
		width: 95%;
		margin: 1% auto;
	}

	.table-width tbody tr {
		display: flex;
		flex-direction: column;
		text-align: center;
	}

	.sm-margin0 {
		margin: 0;
	}

	.w-fit {
		width: 95%;
		margin: auto;
		min-width: 0;
	}

	.nowrap {
		flex-direction: column;
	}

	.recruit-container {
		width: 95% !important;
	}
}

@media only screen and (max-width: 341px) {
	.highlighter {
		font-size: 5.865vw;
	}
}

/* #endregion */

/* #年間行事  */

.overview {
	padding-bottom: 5%;
}

.events-title {
	padding-bottom: 1%;
	padding-left: 10%;
}

.events-content {
	padding-bottom: 3%;
}

.events-text {
	list-style: none;
	padding-left: 13%;
	padding-bottom: 5%;
}

.events-text li {
	display: flex;
	align-items: center;
	padding-bottom: 0.5%;
}

.events-text li::before {
	content: "";
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: #c0545b;
	margin-right: 0.1em;
	flex-shrink: 0;
}



.days div {
	position: relative;
	width: 75%;
	margin: 0 auto;
	padding: 2% 0 5% 1%;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.f70 {
	font-size: 14px;
}

.f80 {
	font-size: 80%;
}

.f90 {
	font-size: 90%;
}

.f95 {
	font-size: 95%;
}

.f100 {
	font-size: 100%;
}

.f110 {
	font-size: 110%;
}

.f120 {
	font-size: 120%;
}

.f150 {
	font-size: 140%;
}

.f170 {
	font-size: 170%;
}

.borderline {
	border-bottom: 2px solid #c0545b;
}


.space {
	display: inline-block;
	width: 30%;
}

.space-left30 {
	position: absolute;
	left: 30%;
}

.space-left55 {
	position: absolute;
	left: 55%;
}

.space-top50 {
	position: absolute;
	top: 50%;
}

.bg-grey {
	background-color: #f6f6f6;
}

.events-name {
	position: absolute;
	width: 35%;
	font-size: 100%;
	top: 139%;
	left: 35%;
}

.events-detail {
	position: absolute;
	width: 35%;
	font-size: 100%;
	top: 139%;
	left: 55%;
}

.p-d-2 {
	padding-bottom: 2%;
}

.p-d-3 {
	padding-bottom: 3%;
}

.p-d-6 {
	padding-bottom: 6%;
}

.p-d-16 {
	padding-bottom: 16%
}

.p-d-15 {
	padding-bottom: 15%
}

.p-d-20 {
	padding-bottom: 24%
}

.trigger-point {
	display: none;
}

.appearance,
.app {
	display: none;
}

/*-----年間行事re-----*/
@media only screen and (max-width: 400px) and (min-width: 0px) {
	.van {
		display: none;
	}

	.app {
		display: inline;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 561px) {
	.overview {
		margin-top: 6vh;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
	.days div {
		position: relative;
		width: 85%;
		margin: 0 auto;
		padding: 2% 0 5% 1%;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.f150 {
		font-size: 1.1rem;

	}

	.f110 {
		font-size: 1.0rem;
	}

	.space-left30 {
		left: 25%;
	}

	.space-left55 {
		left: 45.5%;
	}

	.events-text {
		padding-left: 8%;
	}
}

@media only screen and (max-width: 768px) and (min-width: 714px) {
	.days div {
		position: relative;
		width: 90%;
		margin: 0 auto;
		padding: 2% 0 5% 1%;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.f170 {
		font-size: 1.8rem;
	}

	.f150 {
		font-size: 1.0rem;
	}

	.f120 {
		font-size: 1.2rem;
	}

	.f110 {
		font-size: 14px;
	}

	.f95 {
		font-size: 14px;
	}

	.f90 {
		font-size: 14px;
	}

	.f-min {
		font-size: 14px !important;
	}

	.space-left {
		left: 30%;
	}

	.space-left28 {
		left: 28%;
	}

	.space-left55 {
		left: 47%;
	}

	.events-text {
		padding-left: 5%;
		font-size: 0.8rem;
	}
}

@media only screen and (max-width: 714px) and (min-width: 486px) {
	.overview {
		margin-top: 3vh;
	}

	.days div {
		position: relative;
		width: 92%;
		height: 28vw;
		margin: 0 auto;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.f170 {
		font-size: 1.3rem;
	}

	.f150 {
		font-size: 1.0rem;
	}

	.f120 {
		font-size: 0.9rem;
	}

	.f110 {
		font-size: 14px;
	}

	.f95 {
		font-size: 14px;
	}

	.f90 {
		font-size: 14px;
	}

	.f-min {
		font-size: 14px !important;
	}

	.space-left {
		left: 2%;
	}

	.space-left28 {
		left: 2%;
	}

	.space-left35 {
		left: 24%;
	}

	.space-left40 {
		left: 32%;
	}

	.events-text {
		padding-left: 4%;
		font-size: 0.5rem;
	}

	.br-sp {
		display: block;
	}

	.events-text li::before {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		background-color: #c0545b;
		margin-right: 0.1em;
		flex-shrink: 0;
	}
}

@media only screen and (max-width: 486px) and (min-width: 0px) {
	.overview {
		margin-top: 3vh;
	}

	.days div {
		position: relative;
		width: 92%;
		height: 28vw;
		margin: 0 auto;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}

	.events-text li::before {
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
		background-color: #c0545b;
		margin-right: 0.1em;
		flex-shrink: 0;
	}

	.f170 {
		font-size: 1.3rem;
	}

	.f150 {
		font-size: 1.0rem;
	}

	.f120 {
		font-size: 0.9rem;
	}

	.f110 {
		font-size: 14px;
	}

	.f95 {
		font-size: 14px;
	}

	.f90 {
		font-size: 14px;
	}

	.f-min {
		font-size: 14px !important;
	}

	.space-left {
		left: 2%;
	}

	.space-left28 {
		left: 2%;
	}

	.space-left35 {
		left: 4%;
	}

	.space-left40 {
		left: 40%;
	}

	.events-text {
		padding-left: 4%;
		font-size: 0.5rem;
	}

	.br-sp {
		display: block;
	}

	.trigger-point {
		display: block;
	}

	.appearance {
		display: block;
	}

	.vanish {
		display: none;
	}

	.space-left20 {
		padding-left: 22%;
	}

	.space-left21 {
		padding-left: 42%;
	}

	.space-left41 {
		left: 4% !important;
	}
}

/* #endregion */

/* #お問い合わせ  */
/*　#お問い合わせ()　*/

.contact-img {
	width: 100%;
	height: auto;
}

.contact-img img {
	width: 70%;
	height: auto;
	display: block;
	margin: 0 auto;
	margin-top: 14%;
}

.contact-container {
	width: 70%;
	height: auto;
	margin: 0 auto;
	padding: 4vw;
	background-color: #fbf8e9;
	border-radius: 15px;
}


/*-----お問い合わせre-----*/

@media only screen and (max-width: 1670px) and (min-width: 1230px) {
	.contact-container {
		margin-top: 4vw;
	}
}

@media only screen and (max-width: 1230px) and (min-width: 1186px) {
	.contact-container {
		margin-top: 4vw;
	}
}

@media only screen and (max-width: 1186px) and (min-width: 1024px) {

	.contact-container {
		width: 70%;
		margin: 0 auto;
		margin-top: 3vw;
		background-color: #fbf8e9;
		border-radius: 15px;
	}
}

@media only screen and (max-width: 1024px) and (min-width: 769px) {
	.contact-container {
		width: 80%;
		margin: 0 auto;
		margin-top: 2vw;
		background-color: #fbf8e9;
		border-radius: 15px;
	}
}

@media only screen and (max-width: 960px) and (min-width: 900px) {
	.contact-container {
		margin-top: 2vw;
	}
}

@media only screen and (max-width: 900px) and (min-width: 830px) {
	.contact-container {
		margin-top: 1vw;
	}
}

@media only screen and (max-width: 830px) and (min-width: 769px) {
	.contact-container {
		margin-top: 0vw;
	}
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.contact-container {
		width: 80%;
		margin: 0 auto;
		margin-top: 0vw;
		background-color: #fbf8e9;
		border-radius: 15px;
	}
}

@media only screen and (max-width: 715px) and (min-width: 561px) {
	.contact-container {
		margin-top: 0vw;
	}
}

@media only screen and (max-width: 560px) and (min-width: 500px) {
	.contact-container {
		width: 80%;
		margin: 0 auto;
		margin-top: 0vw;
		background-color: #fbf8e9;
		border-radius: 15px;
	}
}

@media only screen and (max-width: 500px) and (min-width: 400px) {
	.contact-container {
		margin-top: 0vw;
	}
}

@media only screen and (max-width: 500px) {
	.contact-container {
		position: relative;
		width: 80%;

		margin: 0 auto;
		margin-top: 0vw;
		background-color: #fbf8e9;
		border-radius: 15px;
	}

	.contact-container ul {
		padding-left: 5vh;
	}
}

/* #お問い合わせ  */
.wpcf7 p {
	margin: 0;
	padding: 0;
}

.contact {
	width: 100%;
	margin: 0;
	background: #fbf8e9;
	border-radius: 15px;
	padding: 0;
	box-sizing: border-box;
}

.contact>div {
	align-items: flex-start;
	margin-bottom: 18px;
	display: flex;
	min-width: 180px;
}

.checkbox-group label {
	margin-right: 0 !important;
	min-width: 150px !important;
}

input[type="checkbox"] {
	width: 23px;
	height: 23px;
}

.contact label,
.checkbox-group p {
	min-width: 180px;
	font-weight: bold;
	font-size: 1.2rem;
	margin-right: 2vw;
	text-align: left;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

.contact>div>div {
	flex-grow: 1;
	width: 100%;
	box-sizing: border-box;
}

/* ======= ここを修正！ ======= */
.checkbox-group>div,
.checkbox-group .wpcf7-checkbox {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/* 左寄せの決め手 */
	gap: 24px;
	/* チェックボックスの間隔を適度に */
	text-align: left;
	/* 念のため左寄せ指定 */
	width: 100%;
}

/* ========================== */

.contact input[type="text"],
.contact input[type="tel"],
.contact input[type="email"] {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #bbb;
	border-radius: 5px;
	font-size: 1rem;
	box-sizing: border-box;
}

.contact textarea {
	width: 100%;
	padding: 8px 10px;
	border: 1px solid #bbb;
	border-radius: 5px;
	min-height: 80px;
	font-size: 1rem;
	box-sizing: border-box;
	resize: none;
}

.contact input[type="submit"] {
	display: block;
	width: 120px;
	margin: 4vw auto 0;
	padding: 10px 0;
	background: #c5d400;
	color: #222;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: bold;
	letter-spacing: 0.2em;
	cursor: pointer;
	transition: background 0.2s;
}

.contact input[type="submit"]:hover {
	background: #b0be00;
}

/* re */

@media only screen and (max-width: 750px) {
	.contact>div {
		flex-direction: column;
	}
}

@media only screen and (max-width: 1345px) and (min-width: 520px) {
	.checkbox-group .wpcf7-checkbox {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1em;
		justify-items: start;
		/* ←左寄せ追加 */
	}
}

@media only screen and (max-width: 520px) and (min-width: 450px) {
	.checkbox-group .wpcf7-checkbox {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5em;
		justify-items: start;
		/* ←左寄せ追加 */
	}

	.checkbox-group label {
		margin-right: 0 !important;
		min-width: 120px !important;
	}
}

@media only screen and (max-width: 450px) {
	.checkbox-group .wpcf7-checkbox {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 0.5em;
		justify-items: start;
		/* ←左寄せ追加 */
	}
}


/* #endregion */

/* #歩み */

.ayumi-top {
	position: relative;
	margin-top: -34px;
	margin-bottom: 16vh;
}

.ayumi-overview {
	width: 82%;
	margin: 0 auto;
}

.ayumi-overview p {
	padding-bottom: 4vh;
	margin-bottom: 0;
}

.ayumi-img {
	display: flex;
	justify-content: space-between;
	gap: 1%;
	width: 82%;
	margin: 0 auto;
	margin-top: 6vh;
	margin-bottom: 10vh;
}

.ayumi-img img {
	width: calc((100% - 20px) / 3);
	object-fit: cover;
}

.chiefpriest-title {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 2%;
	font-size: 2rem;
}

.chiefpriest {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 4%;
	display: flex;
}

.chiefpriest-img {
	width: 36%;
}

.chiefpriest-itroduce {
	width: 64%;
}

.chiefpriest div img {
	width: 100%;
	height: auto;
	padding: 0 10% 16%;
}

.chiefpriest-name {
	font-size: 1.5rem;
	margin-top: 4%;
	margin-bottom: 4%;
}

.bio-container {
	background-color: #fdf1ef;
	border-radius: 10px;
	padding: 3% 5% 3%;
	margin-right: 5%;
}

.biography {
	position: relative;
	font-size: 1.5rem;
	padding-bottom: 7%;
}

.biography::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	margin-bottom: 5%;
	background: repeating-linear-gradient(to right, #333 0 5px, transparent 5px 10px);
}

.bio-inner {
	font-size: 1rem;
}

.chiefpriest-namae,
.chiefpriest2 {
	display: none;
}


/*-----歩みre-----*/

@media only screen and (max-width: 1024px) and (min-width: 640px) {
	.ayumi-top {
		margin-bottom: 8vh;
	}
}

@media only screen and (max-width: 840px) and (min-width: 640px) {
	.ayumi-overview p {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.ayumi-img {
		display: flex;
		flex-direction: column;
		width: 82%;
		margin: 0 auto;
		margin-top: 6vh;
		margin-bottom: 10vh;
		gap: 15px;
	}

	.ayumi-img img {
		width: 90%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 640px) {
	.ayumi-top {
		margin-bottom: 5vh;
	}

	.ayumi-overview p {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.ayumi-img {
		display: flex;
		flex-direction: column;
		width: 82%;
		margin: 0 auto;
		margin-top: 4vh;
		margin-bottom: 8vh;
		gap: 15px;
	}

	.ayumi-img img {
		width: 85%;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 956px) and (min-width: 561px) {
	.chiefpriest {
		width: 90%;
	}

	.chiefpriest-title {
		width: 80%;
		margin-bottom: 4%;
		font-size: 2rem;
		text-align: center;
	}

	.chiefpriest div img {
		padding: 0 14% 4%;
	}

	.biography {
		font-size: 1.3rem;
	}

	.chiefpriest-namae {
		display: block;
		width: 100%;
		font-size: 1.3rem;
		margin: 0 auto;
		padding: 0 10% 12%;
	}

	.chiefpriest-name {
		display: none;
	}
}

@media only screen and (max-width: 560px) {
	.chiefpriest-spa {
		width: 20%;
	}

	.chiefpriest-img {
		width: 25%;
	}

	.bio-inner {
		font-size: 1rem;
		margin: 0 auto;
	}

	.chiefpriest-itroduce {
		margin: 0 auto;
	}

	.biography {
		display: flex;
		width: 35%;
		font-size: 1.5rem;
		padding: 0;
		justify-content: center;
		align-items: center;
	}

	.chiefpriest-itroduce {
		width: 90%;
		margin-bottom: 10%;
		background-color: #fdf1ef;
		border-radius: 10px;
		padding: 4% 6% 4%;
	}

	.biography::after {
		display: none;
	}

	.chiefpriest2 {
		display: block;
		width: 80%;
		margin: 0 auto;
	}

	.chiefpriest {
		display: none;
	}

	.chiefpriest-namae {
		display: block;
		font-size: 14px;
		white-space: nowrap;
	}

	.chiefpriest-title {
		width: 80%;
		margin-bottom: 4%;
		font-size: 1.6rem;
		text-align: center;
	}

	.chiefpriest-iP {
		display: flex;
		margin-bottom: 2%
	}
}



/* #教え */

.precept-top {
	position: relative;
	margin-top: -34px;
	margin-bottom: 14vh;
}

.precept-container {
	display: flex;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 6vh;
}

.precept-img {
	float: left;
	width: 38%;
	min-width: 378px;
	height: auto;
}

.precept-content {
	margin-top: 1vh;
	padding-left: 7vh;
}

.precept-content p {
	font-size: 0.9rem;
	padding-bottom: 2vh;
}

.precept-page1 {
	border-top: 1.5px solid #e8e8e8;
	border-bottom: 1.5px solid #e8e8e8;
	width: 70%;
	margin: 0 auto;
	display: flex;
}

.precept-page2,
.precept-page3 {
	border-bottom: 1.5px solid #e8e8e8;
	width: 70%;
	margin: 0 auto;
	display: flex;
}

.precept-page1 img {
	margin: 2em;
	width: 9.5em;
}

.precept-page2 img,
.precept-page3 img {
	margin: 2em;
	width: 9.5em;
}

.leftside {
	width: 50%;
	display: flex;
}

.rightside {
	width: 50%;
	display: flex;
}

.flex-column {
	width: 55%;
	display: flex;
	flex-direction: column;
	margin: 3em 0 0 0;
}

.space05 {
	display: inline-block;
	width: 1.5em;
	height: 1px;
}

.f09 {
	font-size: 1rem;
}

.redfont {
	color: #c0535a;
}

.date {
	margin: 0;
	padding-bottom: 0.8em;
}

.date-content {
	line-height: 1.5;
	word-wrap: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

/* re */
@media only screen and (max-width: 1088px) and (min-width: 856px) {
	.precept-top {
		margin-bottom: 6vh;
	}

	.precept-img {
		min-width: 300px;
		height: auto;
	}

	.precept-container {
		width: 80%;
	}
}

@media only screen and (max-width: 856px) and (min-width: 460px) {
	.precept-top {
		margin-bottom: 4vh;
	}

	.precept-container {
		display: block;
	}

	.precept-img {
		float: left;
		min-width: 200px;
		height: auto;
		padding: 0 1em 1em 0;
	}

	.precept-container {
		width: 85%;
	}

	.precept-content {
		padding-left: 0;
	}
}

@media only screen and (max-width: 460px) {
	.precept-top {
		margin-bottom: 4vh;
	}

	.precept-container {
		width: 85%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.precept-content p {
		padding-bottom: 0;
	}

	.precept-img {
		display: flex;
		justify-content: center;
	}

	.precept-img img {
		max-width: 100%;
		width: 240px;
		height: auto;
		display: block;
	}

	.precept-content {
		padding-left: 0;
	}
}

/* #endregion */

/* #お知らせ */

.news-top-img {
	position: relative;
	margin-top: -34px;
	margin-bottom: 12vh;
}

.case_item-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	flex-direction: column;
	width: 70%;
	margin: 0 auto;
	margin-bottom: 8vh;
}

.case_item {
	display: flex;
	width: 100%;

	border-top: 1.4px solid #e8e8e8;
	box-sizing: border-box;
}

.case_item-wrapper .case_item:nth-last-child(-n+2) {
	border-bottom: 1.4px solid #e8e8e8;
}

.case_item a {
	display: flex;
	text-decoration: none;
	color: inherit;
	width: 100%;
}

.meta {
	display: flex;
	flex-direction: column;
}

.thumbnail img {
	width: 9.6em;
	height: auto;
	margin: 2em;
	display: block;
}

.content {
	display: flex;
	flex-direction: column;
	padding-top: 2em;
	min-width: 0;
	flex: 1;
	width: 100%;
	max-width: 260px;
}

.content .label {
	display: inline-block;
	background: #eee;
	color: #333;
	padding: 4px 8px;
	font-size: 12px;
	margin-bottom: 8px;
}

.dates {
	font-size: 1.0rem;
	color: #000000;
	margin: 0;
	padding: 0;
}

.content h3 {
	font-size: 1.0rem;
	color: #c0545b;
	margin: 0;
	padding: 0;
}

.content p {
	font-size: 1.0rem;
}

.content .excerpt {
	color: #444;
	word-break: break-all;
	overflow-wrap: break-word;
	white-space: normal;
}

.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0.5em;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 8vh auto 10vh;
}

.pagination .page-numbers.current {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	margin: 0 4px;
	text-decoration: none;
	background-color: #C0545B;
	color: #ffffff;
}

.pagination .page-numbers.current:hover {
	background-color: #b43a43;
}

.space06 {
	display: inline-block;
	width: 0.4em;
	height: 1px;
}

/* re */
@media only screen and (max-width: 1088px) and (min-width: 856px) {
	.case_item-wrapper {
		grid-template-columns: 1fr;
		width: 80%;
	}

	.case_item-wrapper .case_item:nth-last-child(2) {
		border-bottom: none;
	}
}

@media only screen and (max-width: 856px) and (min-width: 578px) {
	.news-top-img {
		margin-bottom: 8vh;
	}

	.case_item-wrapper {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper .case_item:nth-last-child(2) {
		border-bottom: none;
	}
}

@media only screen and (max-width: 578px) and (min-width: 450px) {
	.news-top-img {
		margin-bottom: 6vh;
	}

	.case_item-wrapper {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper .case_item:nth-last-child(2) {
		border-bottom: none;
	}

	.thumbnail img {
		width: 7.6em;
		height: auto;
		margin: 1em;
	}

	.content {
		padding-top: 1em;
	}

	.content p {
		margin-bottom: 0;
	}
}

@media only screen and (max-width: 450px) {
	.news-top-img {
		margin-bottom: 4vh;
	}

	.case_item-wrapper {
		grid-template-columns: 1fr;
		width: 85%;
	}

	.case_item-wrapper .case_item:nth-last-child(2) {
		border-bottom: none;
	}

	.thumbnail img {
		width: 5.6em;
		height: auto;
		margin: 1em;
	}

	.content {
		padding-top: 1em;
	}

	.content p {
		margin-bottom: 0;
		font-size: 0.8rem;
	}

	.content h3 {
		font-size: 0.8rem;
	}
}

/* #endregion */

/* service */

.w-88 {
	width: 88%;
}

.w-10 {
	width: 10%;
	line-height: 1.0;
	font-family: "Century Gothic", sans-serif;
	font-style: italic;
}

.ex-margin-left {
	width: 88%;
	margin-left: 11%;
}

.flex-start {
	display: flex;
	justify-content: flex-start;
}

.pad-over {
	width: 50%;
	padding: 2% 4%;
	transform: translate(-2.935vw, -5.334vw);
}

.service-margin {
	margin: 8% auto;
}

.w-48-extra {
	width: 48%;
}

.w-48-extra img {
	width: 100%;
}

.pad-over-extra {
	width: 80%;
	padding: 2% 4%;
	transform: translate(-2.935vw, -5.334vw);
}

.w-33 img {
	width: 100%;
}

@media only screen and (max-width: 768px) {
	.pad-over-extra {
		width: 95%;
	}
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.pad-over {
		width: 80%;
	}
}

@media only screen and (max-width: 560px) {
	.ex-margin-left {
		width: 90%;
		margin: auto;
	}

	.pad-over {
		width: 95%;
	}

	.w-33,
	.w-48-extra {
		width: 80%;
		margin: 10px auto;
	}
}

/* recruit */
.required-srt {
	color: #FF0000;
}

.bg-form {
	width: 25%;
}

.border-form {
	width: 72%;
}

.wpcf7-spinner {
	display: none;
}

.cform {
	width: 100%;
}

.vertical-top {
	vertical-align: top;
}

.border-form input,
.border-form textarea {
	border: none;
	background-color: #F2F2F2;
}

.long input {
	width: 100%;
}

.short input {
	width: 15%;
}

textarea {
	width: 100%;
}

.font16 p {
	font-size: 16px;
}

.bottom5 {
	padding-bottom: 5%;
}

.sending-button {
	text-align: center;
	margin: 5% 0 0;
}

.btn-flat-border {
	background-color: #C0545B;
	border: none;
	color: white;
	font-weight: bold;
	padding: 1% 4%;
}

.policy-scrollable {
	overflow-y: scroll;
	height: 250px;
	background-color: #FFFFFF;
	border: 2px solid #C0545B;
	padding: 20px;
}

.font-ash {
	color: #999999;
	font-weight: 300;
}

.vertical-bottom {
	vertical-align: bottom;
}

@media only screen and (max-width: 1200px) and (min-width: 769px) {
	.short input {
		width: 30%;
	}
}

@media only screen and (min-width: 769px) {
	.trigger-point {
		display: none;
	}

	.sp {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	.sp-none {
		display: none;
	}

	.pc {
		display: none;
	}
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.short input {
		width: 50%;
	}
}

@media only screen and (max-width: 560px) {
	.sm-border {
		border-bottom: 1px solid #e6e6e6;
		padding: 5% !important;
	}

	.cform tr {
		display: flex;
		flex-direction: column;
	}

	.bg-form,
	.border-form {
		width: 100%;
	}

	.border-form input {
		width: 100%;
	}

	.short input {
		width: 50%;
	}
}

/* contact */

.comment {
	width: 80%;
	margin: auto;
}

/* news */

.w-40-extra {
	width: 40%;
}

.pad5-0-0 {
	padding: 5% 0 0;
}

.w-82 {
	width: 82%;
	margin: 0 auto;
}

.margin-5-a {
	margin: 5% auto;
}

.nav-links {
	width: 100%;
}

#nav-links {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 5%;
}

#nav-links li {
	color: #C0545B;
}

#nav-links .current {
	background-color: #C0545B;
	color: white;
	padding: 1px 10px;
}

.sumbnail {
	text-align: center;
}

.news_content {
	margin: 20px 0;
}

.news_image_inner img {
	border-radius: 14px;
}

.news_image_inner {
	text-align: center;
}

.border-green {
	border: 1px solid #C0545B;
	border-radius: 14px;
	padding: 10px;
}

@media only screen and (min-width: 1001px) {
	.news_image_inner img {
		width: 23vw;
		height: 15vw;
		object-fit: cover;
		overflow: hidden;
	}
}

@media only screen and (max-width: 1000px) and (min-width: 561px) {
	.post-content {
		width: 90%;
	}

	.sp-1000-w-80 {
		width: 80%;
	}

	.news_image_inner {
		text-align: center;
	}

	.border-green {
		padding: 20px;
	}
}

@media only screen and (max-width: 560px) {
	.post-content {
		width: 95%;
	}

	.sp-1000-w-80 {
		width: 90%;
	}

	.border-green {
		padding: 10px;
	}
}

/* blog */
.trigger-tags {
	display: none;
}

@media only screen and (max-width: 1100px) and (min-width: 1001px) {
	.trigger-tags {
		display: block;
	}
}

@media only screen and (max-width: 560px) {
	.trigger-tags {
		display: block;
	}
}

/* 追加・修正 */
.m-b-30 {
	margin-bottom: 30px;
}

.w-100-image img {
	width: 100%;
}

.border-bottom-green-single {
	position: relative;
	display: inline-block;
	text-align: center;
	width: 100%;
	margin: 20px 0;
	font-weight: bold;
}

.border-bottom-green-single::after {
	position: absolute;
	content: '';
	background-color: #C0545B;
	bottom: -25px;
	left: 25%;
	height: 2px;
	width: 25%;
	background-position: bottom center;
	background-size: 50%;
	transform: translateX(50%);
}

.post_single_content {
	margin-top: 5%;
	background-color: #FFFFFF;
	border: 2px solid #C0545B;
	border-radius: 20px;
	padding: 5%;
}


.post-content {
	width: 80%;
	margin: 0 auto;
	padding: 5% 0;
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.border-bottom-green-single::after {
		position: absolute;
		content: '';
		background-color: #C0545B;
		bottom: -15px;
		left: 0;
		height: 2px;
		width: 50%;
		background-position: bottom center;
		background-size: 50%;
		transform: translateX(50%);
	}
}

@media only screen and (max-width: 560px) {
	.border-bottom-green-single::after {
		position: absolute;
		content: '';
		background-color: #C0545B;
		bottom: -10px;
		left: -50%;
		height: 2px;
		width: 100%;
		background-position: bottom center;
		background-size: 50%;
		transform: translateX(50%);
	}
}

@media only screen and (max-width: 400px) {
	.trigger-single {
		display: block !important;
	}
}

.trigger-single {
	display: none;
}

.slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.arrow {
	position: absolute;
	top: 50%;
	font-size: 40px;
	/* 矢印のサイズ */
	color: white;
	opacity: 0.6;
	cursor: pointer;
	z-index: 3;
	transform: translateY(-50%);
}

.left-arrow {
	left: 10px;
}

.right-arrow {
	right: 10px;
}

/* 半透明の背景とホバー時に色を濃く */
.arrow:hover {
	opacity: 1;
}

.foot-icon img {
	width: 100%;
}

.scroll-button {
	width: 80%;
	margin: auto;
	display: none;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.scroll-button a {
	white-space: nowrap;
}

@media only screen and (max-width: 768px) and (min-width: 561px) {
	.scroll-button {
		width: 90%;
	}
}

@media only screen and (max-width: 560px) {
	.scroll-button {
		width: 95%;
	}
}

.pad-3-10 {
	padding: 3px 15px;
}

.active {
	display: flex;
}

/* 可児修正分 */
@media only screen and (max-width: 560px) {
	.foot-flex {
		display: flex;
		flex-direction: column;
	}

	.foot1,
	.foot2,
	.foot3 {
		width: 90%;
		margin: auto;
		height: auto !important;
	}

	.foot3 {
		margin-top: 4%;
		margin-bottom: 2%;
	}

	.footer-re {
		width: 100%;
		text-align: center;
	}

	.footer-re li {
		background-color: #ffffff;
		margin-bottom: 10px;
	}

	.footer-re li a {
		color: #A32F2F;
		font-size: 18px !important;
	}

	.footer-menu {
		padding-top: 0 !important;
		padding-left: 0 !important;
		margin: auto;
	}
}

@media only screen and (max-width: 450px) {
	.foot1 {
		flex-direction: column;
	}

	.foot-icon {
		width: 40% !important;
		margin: auto;
		margin-top: 5%;
	}

	.access-tel {
		padding-top: 0;
		width: 90%;
		margin: auto;
	}

	.access-tel p {
		font-size: 18px !important;
	}
}


/* test */

.profile-container {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 48px;
	margin-top: 40px;
	flex-wrap: wrap;
}

.profile {
	text-align: center;
	width: 320px;
	margin-bottom: 40px;
}

.profile img {
	width: 240px;
	height: 240px;
	object-fit: cover;
	border-radius: 50%;
	border: 3px solid #ececec;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
	margin-bottom: 24px;
}

.profile-name {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 8px;
	letter-spacing: 2px;
}

.profile-role {
	font-size: 1.2rem;
	margin-bottom: 6px;
}

.profile-sub {
	font-size: 1rem;
	color: #444;
	margin-top: 8px;
}

/* スマホ（幅600px以下）で縦並び */
@media (max-width: 600px) {
	.profile-container {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.profile {
		width: 90vw;
		max-width: 350px;
		margin-bottom: 32px;
	}

	.profile img {
		width: 60vw;
		max-width: 200px;
		height: 60vw;
		max-height: 200px;
	}
}


.section {
	margin-left: 12vw;
	margin-top: 48px;
}

.section-title {
	font-size: 2.2rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}

.section-title::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 30px;
	background: #a32b2b;
	margin-top: 6px;
	margin-right: 16px;
	border-radius: 2px;
}

.custom-list {
	list-style: none;
	padding: 0;
	margin: 0 0 48px 0;
}

.custom-list li {
	display: flex;
	align-items: center;
	/* 中央揃えを強制 */
	margin-bottom: 32px;
	font-size: 1.3rem;
	line-height: 1.8;
	/* 日本語が綺麗に揃う値 */
}

.custom-list li::before {
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	background: #a32b2b;
	margin-right: 18px;
	/* margin-top: 6px; ←これを削除 */
	vertical-align: middle;
	border-radius: 2px;
	/* 角丸が必要なら追加 */
	flex-shrink: 0;
	/* 小さくならないよう固定 */
}

.custom-list a {
	text-decoration: none;
	color: #222;
	transition: color 0.2s;
}

.custom-list a:hover {
	color: #a32b2b;
}

@media (max-width: 600px) {
	.section {
		margin-left: 6vw;
		margin-top: 32px;
	}

	.section-title {
		font-size: 1.3rem;
		margin-bottom: 18px;
	}

	.custom-list li {
		font-size: 1rem;
		margin-bottom: 18px;
	}
}

.otoki-text {
	list-style: none;
	padding-left: 13%;
	padding-right: 13%;
	padding-bottom: 5%;
}

@media (max-width: 600px) {
	.otoki-text {
		font-size: 16px;
	}
}



/*test */
.block {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin: 60px 0;
	padding: 0 5%;
	gap: 40px;
	position: relative;
}

.block__image {
	flex: 1.2;
}

.block__image img {
	width: 100%;
	border-radius: 20px;
	object-fit: cover;
	display: block;
}

.block__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	position: relative;
}

.block__label {
	color: #142f4b;
	font-weight: bold;
	margin-bottom: 18px;
	letter-spacing: 0.1em;
	font-size: 1.1em;
}

.vertical-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 1.1em;
	margin-bottom: 20px;
	border-right: 2px solid #ba5050;
	padding-right: 10px;
}

.block__text {
	font-size: 0.95em;
	margin-bottom: 20px;
	max-width: 320px;
}

.block__circle-img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 18px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.block__circle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.block__btn {
	display: inline-block;
	background: #ba5050;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	padding: 12px 40px;
	font-size: 1.1em;
	letter-spacing: 0.1em;
	margin-top: 20px;
	transition: background 0.2s;
	text-align: center;
}

.block__btn:hover {
	background: #942c2c;
}

.block--reverse {
	flex-direction: row-reverse;
}

@media (max-width: 900px) {
	.block {
		flex-direction: column;
		gap: 0;
		margin: 40px 0;
		padding: 0 2%;
	}

	.block--reverse {
		flex-direction: column;
	}

	.block__content,
	.block__image {
		width: 100%;
		max-width: 100%;
		align-items: center;
	}

	.block__label {
		margin-bottom: 12px;
		font-size: 1em;
	}

	.block__text {
		max-width: 100%;
		font-size: 0.97em;
		text-align: left;
	}

	.block__circle-img {
		margin-bottom: 18px;
		width: 120px;
		height: 120px;
	}
}

@media (max-width: 600px) {
	.block {
		margin: 32px 0;
		padding: 0 0;
		gap: 0;
		background: #000;
	}

	.block__image img,
	.block__image {
		width: 100vw;
		max-width: 100vw;
		border-radius: 0;
	}

	.block__circle-img {
		width: 90vw;
		height: 90vw;
		max-width: 280px;
		max-height: 280px;
	}

	.block__btn {
		margin: 40px auto 0;
		display: block;
		font-size: 1.1em;
		width: 70vw;
		min-width: 180px;
		max-width: 320px;
		padding: 18px 0;
		border-radius: 3px;
	}

	.vertical-text {
		font-size: 1em;
		border-right: 2px solid #ba5050;
		padding-right: 10px;
		margin-bottom: 10px;
	}
}