@charset "utf-8";
/* CSS Document */

/* ************************************************************************ 
 *	
 *	BASE CSS
 *	
 * ************************************************************************ */
/* ------------------------------------------- */
/* = HTML
/* ------------------------------------------- */

html,body {
	text-size-adjust: none;
	overflow-x: hidden;
}
*{
	position: relative;
}
*, *::before, *::after {
	box-sizing: border-box;
}
/* ------------------------------------------- */
/* = BASE
/* ------------------------------------------- */
:root {
	/* 基本色 */
	--primary-color: #65bfa1;
	--green: #65bfa1;
	--blue: #84bae5;
	--orange: #fac769;

	--greenbg: #d0ebe2;
	--gray: #fbfbf7;

	--base_line_height: 1.6;
	--base_line_height2: 2;

	--kadomaru: 10px;
	--sp_header_height: 60px;

	/* layout_1の高さ */
	--layout_1_pc_header_height: 100px;
	--layout_1_nav_height: 60px;
	--layout_1_nav_total_height: 170px;

	--inner_width: 1200px;
	--border: #c5c59b;
	--greenhover: #4cab89;
	--bluehover: #6aa5dc;

	--shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
	--shadow-md: 0 10px 25px rgba(0,0,0,0.1);
}
/* ------------------------------------------- */
/* = BODY
/* ------------------------------------------- */
body {
	margin: 0;
	padding: 0;
	width:100%;
	height:100%;
	word-wrap: break-word;
	overflow-x:hidden;
	letter-spacing:0.05em;
	font-size: 18px;
	line-height:var(--base_line_height);
	color:#5d5d5d;
}
@media print, screen and ( min-width : 1200px ) {
	body.layout_1{
		padding-top: 0;
	}
	.page_contents{
		font-size: 17.5px;
		line-height:var(--base_line_height);
	}
}
@media ( max-width : 1200px ) {
	body{
		font-size: 15px;
		padding-top: var(--sp_header_height);
		line-height:var(--base_line_height);
	}
}
/* ------------------------------------------- */
/* = 読み込み時のainmation 
/* ------------------------------------------- */
body {
	/* 遷移時間を定義 */
	transition: opacity .5s ease-out; 
	opacity: 1; 
}

body.is-loading {
	/* 初期状態の透明を強制 */
	opacity: 0.1 !important; 
}

/* ------------------------------------------- */
/* = Font
/* ------------------------------------------- */
body,
select,
input,
textarea,
button,
a{
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 600;
	font-style: normal;
}
.contents_wrapper{
	font-weight: 500;

}
h1,
h2,
h3,
h4,
h5,
h6{
	font-weight: 600;
	letter-spacing:0.1em;
	display:block;
	overflow: hidden;
}
/* ------------------------------------------- */
/* = IMG
/* ------------------------------------------- */
img{
	vertical-align: bottom;
	max-width:100%;
	height:auto;
	backface-visibility: hidden;
	margin:0;
	line-height:0;

}
/* ------------------------------------------- */
/* = LINK
/* ------------------------------------------- */
a{
	color: var(--primary-color);
	text-decoration:underline;
}

a:hover{
	text-decoration: none;
	color:#444;
}
/* ------------------------------------------- */
/* = FORM
/* ------------------------------------------- */
input[type="email"],
input[type="tel"],
input[type="text"],
textarea,
select{
	margin:0;
	padding:0.6em;
	border:1px solid var(--border);
	box-sizing:border-box;
	font-size:100%;
	width:400px;
	max-width: 100%;
	box-shadow: inset 2px 2px 5px 0px rgba(115, 115, 115, 0.1);
	border-radius: 2px;
}
@media ( max-width : 896px ) {
	input[type="email"],
	input[type="tel"],
	input[type="text"],
	textarea,
	select{
		width:100%;
	}
}
textarea{
	width:100%;
}
select{
	background:#fff;
	padding:0.5em;
	font-size:100%;
	color:#2c304e;
}
/* ------------------------------------------- */
/* = プレースホルダ
/* ------------------------------------------- */
input::placeholder {
	color: #84bae5;
	font-size: 90%;
	opacity: 1;
	transition: color 0.5s ease, opacity 0.5s ease;
}
input:focus::placeholder {
	color: transparent;
	opacity: 0;
}

/* ------------------------------------------- */
/* = submit
/* ------------------------------------------- */
input[type="submit"],
input[type="button"]{
	border:none;
	padding:1em 3em;
	color: #fff;
	font-size:105%;
	line-height:100%;
	cursor: pointer;
	margin:0.5em;
	border-radius: 2em;
	letter-spacing:0.2em;
	font-weight:var(--font-bold);
}
input[type="submit"]{
	background:var(--primary-color);
}
input[type="button"].back_button{
	background:#555;
}
input[type="submit"]:hover,
input[type="button"]:hover{
	opacity: 0.6;
}
#file-upload-area{
	border:1px dotted var(--border);
	padding:1em;
	background:#fff;
}
/* ------------------------------------------- */
/* = ラジオボタン、チェックボックス
/* ------------------------------------------- */
@media ( max-width : 896px ) {
	.wpcf7-form-control-wrap:has(.wpcf7-radio),
	.wpcf7-form-control-wrap:has(.wpcf7-checkbox) {
		border:1px dotted var(--border);
		display:block;
		padding:1em;
	}
	.wpcf7-list-item{
		display:block;
		width:100%;
		padding:0.3em 0;
	}
}
.wpcf7-list-item input[type="radio"],
.wpcf7-list-item input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.wpcf7-list-item-label {
	display: inline-block;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

/* ------------------------------------------- */
/* = ラジオボタン
/* ------------------------------------------- */
.wpcf7-radio .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid #aaa;
	background:#fff;
	border-radius: 50%;
}
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::before{
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-color: white;
	border-radius: 50%;
}
/* ------------------------------------------- */
/* = チェックボックス
/* ------------------------------------------- */
.wpcf7-checkbox .wpcf7-list-item-label::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	border: 2px solid var(--border);
	background:#fff;
	border-radius: 4px;
}
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
	border-color: var(--primary-color);
	background-color: var(--primary-color);
}
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
	content: '';
	position: absolute;
	top: 45%;
	height: 10px;
	width: 6px;
	border: solid white;
	border-width: 0 2px 2px 0;
	background: none;
}
/* ------------------------------------------- */
/* = スマホ・PCでの表示切り替
/* ------------------------------------------- */
@media ( max-width : 1200px ) {
	.pc_only{
		display:none !important;
	}
}
@media print, screen and ( min-width : 1200px ) {
	.sp_only{
		display:none !important;
	}
}
/* ------------------------------------------- */
/* = clearfix
/* ------------------------------------------- */
br.clear{
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	line-height: 0;
	margin: 0;
}
.gallery:after,
.clearfix:after,
section:after{
	content: "";
	display: block;
	clear: both;
	height:0;
}
/* ------------------------------------------- */
/* = hover anime
/* ------------------------------------------- */
@media ( min-width : 896px ) {
	input[type="submit"],
	.contents_css a img,
	.fade,
	.link_block{
		transition: all 0.5s; 
		opacity: 1;
		z-index: 1;
	}
	input[type="submit"]:hover,
	.contents_css a img:hover,
	.fade:hover,
	.link_block:hover{
		opacity: 0.5;
	}
}
/* ------------------------------------------- */
/* = fadein
/* ------------------------------------------- */
.fadein {
	transition: all 0.7s;
	opacity: 0;
	position: relative;
	top:2em;
}
.fadein_start{
	top:0em;
	opacity: 1 !important;
}
/* ------------------------------------------- */
/* = youtube
/* ------------------------------------------- */
#youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
#youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* ------------------------------------------- */
/* = ボタンの通常デザイン
/* ------------------------------------------- */
.link_block{
	text-decoration: none;
	display:block;
	user-select: none;
	overflow: hidden;
}
a.back_button,
a.button{
	display:inline-block;
	user-select: none;
	color:#fff;
	text-align:center;
	border-radius: 2em;
	padding:0.9em 4em 0.9em 4em;
	letter-spacing:0.1em;
	text-decoration: none;
	font-size:100%;
	line-height:var(--base_line_height);
	background:var(--primary-color);
	z-index:1;
	opacity: 1;
	transition: all 0.5s;
}
a.back_button:hover,
a.button:hover{
	opacity: 0.5;
}
a.back_button:before{
	content: '\f104'; /* 左矢印 */
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 20px;
}
a.button2,
a.post-edit-link{
	user-select: none;
	display:inline-block;
	text-align:center;
	border-radius: 2em;
	padding:0.7em 3em 0.7em 3em;
	letter-spacing:0.1em;
	text-decoration: none;
	font-size:95%;
	line-height:var(--base_line_height);
	border:2px solid var(--primary-color);
	color: var(--primary-color);
	background:#fff;
	z-index:1;
	transition: all 0.5s; 
}
a.post-edit-link:hover,
a.button2:hover{
	background:var(--primary-color);
	color:#fff;
}
a.block_link{
	display:block;
	font-size:100%;
	line-height:var(--base_line_height);
	color:var(--primary-color);
	border-radius: 5px;
	padding:1em;
	padding-left:2.5em;
	letter-spacing:0.1em;
	text-decoration: none;
	background:var(--gray);
	border:2px solid var(--green);
	z-index:1;
	margin:0.5em 0;
	font-weight:600;
	transition: all 0.5s; 

}
a.block_link:after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:1em;
	left:1em;

}
a.block_link:hover{
	background:var(--primary-color);
	color:#fff;
}
/* ------------------------------------------- */
/* = 電話番号
/* ------------------------------------------- */
a.tel_number span{
	font-size:55%;
	display:inline-block;
	top:-0.2em;
}
/* ------------------------------------------- */
a.tel_number{
	letter-spacing:0.05em;
	display:block;
	text-align:center;
	font-size:180%;
	line-height:100%;
	white-space: nowrap;
}
@media print, screen and ( min-width : 896px ) {
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}
@media print, screen and ( min-width : 1200px ) {
	.head_tel a.tel_number{
		color:currentColor;
		font-size:138%;
		line-height:100%;
		text-align:left;
	}
}
@media ( max-width :896px ) {
	a.tel_number{
		font-size:155%;
		line-height:100%;
		background:var(--gray);
		border-radius: 2em;
		padding:0.6em 0;
		padding-left:0.5em;
		cursor: pointer;
		display:inline-block;
		text-align:center;
		border:1px solid var(--primary-color);
		margin-inline: auto;
		width:330px;
	}
	a.tel_number:hover{
		color:var(--primary-color);
	}
}
.tel_info{
	line-height:var(--base_line_height);
	letter-spacing:0.05em;
	font-weight:600;
	display:block;
}
@media print, screen and ( min-width : 1200px ) {
	.tel_info{
		font-size:12px;
		line-height:var(--base_line_height);
	}
}
@media ( max-width :1200px ) {
	.head_information .tel_info{
		font-size:90%;
		padding-top:1em;
	}
}

/* ------------------------------------------- */
/* = 検索フォーム
/* ------------------------------------------- */
.bordernone {
	border: none;
	padding: 0;
	margin: 0;
	display: flex;
	width: 100%;
}

.screen-reader-text,
.legend_title{
	display: none;
}
.search-form {
	display: flex;
	align-items: stretch;
	width: 100%;
	border: none;
	padding: 0;
	margin: 0;
	gap: 0; 
	isolation: isolate; 
	z-index: 5;
}
/* 高さ指定 */
.search-form input[type="search"],
.search-form input[type="submit"] {
	height: 40px;
	line-height: 40px;
}
.search-form input[type="search"] {
	flex: 1;
	border-radius: 30px 0 0 30px;
	border: none;
	background: #e4f0f0;
	margin: 0;
	outline: none;
	-webkit-appearance: none;
	padding-left:1em;
	min-width:200px;
}

.search-form input[type="submit"] {
	width: 80px;
	border-radius: 0 30px 30px 0;
	border: none;
	background: var(--blue);
	margin: 0; 
	margin-left: -1px; 
	padding: 0;
	cursor: pointer;
	font-size:90%;
	box-shadow: none;
}
@media ( max-width : 1200px ) {
	.search-form{
		position: fixed;
		top: var(--sp_header_height);
		right:0;
		width:100%;
		max-width:500px;
		background:#85bae6;
		padding:25px 30px;
		border-radius: 0px 0px 10px 10px;
	}
	.search-form input[type="submit"] {
		background: var(--orange);
	}
	.search-form input[type="search"] {
		background: #fff;
	}
}
/* ************************************************ 
 *	
 *	layout
 *	
 * ************************************************ */
#main{
	width:100%;
	overflow:hidden;
}
/* inner_block-------------------- */
.inner_block{
	margin-inline: auto;
	width: var(--inner_width);
}
@media ( max-width : 1250px ) {
	.inner_block{
		width: 90%;
	}
}
@media ( max-width : 896px ) {
	.inner_block{
		width: 85%;
	}
}
/* スペースの指定-------------------- */
.home section{
	padding:75px 0;
}
@media ( max-width : 1250px ) {
	.home section{
		padding:50px 0;
	}
}
@media print, screen and ( min-width : 1200px ) {
	.contents_wrapper section{
		margin-bottom:50px;
	}
}
@media ( max-width : 1200px ) {
	.contents_wrapper section{
		margin-bottom:50px;
	}
}
section.pdb0{
	padding-bottom:0px;
}
section.pd0{
	padding:0px !important;
}
/* ************************************************ 
 *	
 *	コンテンツブロック
 *	
 * ************************************************ */
.contents_wrapper{
	padding:50px 0;
}
.page_contents{
	display: flex;
	flex-direction: column; /* スマホでは上から順に表示 */
	gap: 50px;
}
@media screen and (min-width: 1000px) {
	.contents_wrapper{
		padding:70px 0;
	}
	.page_contents {
		flex-direction: row-reverse;
		align-items: flex-start;
	}
	#content {
		flex: 1; /* 残りの幅を全部使う */
		min-width: 0;
	}
	#sidebar {
		flex: 0 0 24%; /* サイドバーは固定 */
	}
}
@media ( max-width : 1000px ) {
	#content {
		margin-bottom:50px;
	}
	#sidebar {
		display:none;
	}
}
/* ------------------------------------------- */
/* = 投稿は1カラム
/* ------------------------------------------- */
.blog_contents{
	margin-inline: auto;
	max-width:896px;
}

/* ************************************************************************ 
 *	
 *	HEADER
 *	
 * ************************************************************************ */
/* ------------------------------------------- */
/* = 検索アイコン
/* ------------------------------------------- */
.sp_search_icon{
	background:#daeaf7;
	z-index:5;
	cursor: pointer;
	cursor: hand;
	width: var(--sp_header_height);
	height: var(--sp_header_height);
	overflow:hidden;
	display:block;
	color:var(--blue);
	padding:5px 0;
	font-size:11px;
	text-align:center;
	letter-spacing:0em;
}
.sp_search_icon:before{
	display:block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f002';
	font-size:21px;
	line-height:31px;
}
.sp_search_icon.is-open{
	background:var(--bluehover);
	color:#fff;
}
/* ------------------------------------------- */
/* = hunberger
/* ------------------------------------------- */
#nav-toggle {
	z-index:5;
	background:var(--green);
	cursor: pointer;
	cursor: hand;
	width: var(--sp_header_height);
	height: var(--sp_header_height);
	padding:10px 15px;
	overflow:hidden;
}
.nav_open #nav-toggle{
	background:var(--greenhover);
}
#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 30px;
	background: #fff;
	left: 15px;
	transition: .35s ease;
}
#nav-toggle:after {
	content: "MENU";
	position: absolute;
	bottom: 8px;
	left: 0;
	display: block;
	width:100%;
	font-size:11px;
	text-align:center;
	color:#fff;
}
.nav_open #nav-toggle:after {
	content: "CLOSE";
}
.nav_open #nav-toggle span {
	background: #fff;
}
.nav_open #nav-toggle:after{
	opacity: 1;
}
#nav-toggle span:nth-child(1) {
	top: 13px;
}
#nav-toggle span:nth-child(2) {
	top: 21px;
}
#nav-toggle span:nth-child(3) {
	top: 29px;
}
.nav_open #nav-toggle span:nth-child(1) {
	top: 20px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.nav_open #nav-toggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.nav_open #nav-toggle span:nth-child(3) {
	top: 20px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}
/* ------------------------------------------- */
/* = header
/* ------------------------------------------- */
#header{
	width:100%;
	z-index:10;
	line-height:100%;
	background:#fff;
}
#header .header_inner{
	position: relative;
	display:flex;
	justify-content: space-between;
	align-items: center;
	gap:15px;
	margin-inline: auto;
	background:#fff;
}
#header .logo{
	line-height:100%;
	font-size:100%;
	flex-shrink: 0;
	flex-grow: 0;
}
#header .logo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
@media print, screen and ( min-width : 1200px ) {
	#header.layout_1 .header_inner{
		height:var(--layout_1_pc_header_height);
	}
	/* 右側メニュー */
	#header .header_inner .head_information{
		display:flex;
		justify-content: flex-end;
		align-items: center;
		gap:50px;
	}
	.head_tel{
		margin-right:-10px;
		padding:10px 0;
	}
	.head_tel:before {
		content: "";
		position: absolute;
		top: 0;
		bottom:0;
		left: -25px;
		display: block;
		width: 1px;
		background:var(--primary-color);
		z-index:4;
	}
	#global-nav {
		position: relative;
		width: 100%;
		z-index: 9;
	}
	/* 固定---------------------- */
	body.sticky_fixed #global-nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9999;
		background: #fff; /* 背景を白に */
		box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 軽い影 */
		
		/* アニメーション：上から下にスライド */
		transform: translateY(0);
		transition: transform 0.4s ease;
		animation: navIn 0.4s forwards;
	}
	@keyframes navIn {
		from { transform: translateY(-100%); }
		to { transform: translateY(0); }
	}
	/* 非表示----------------------- */
	.sp_search_icon,
	#nav-toggle{
		display:none;
	}
}
@media ( max-width : 1200px ) {
	#header{
		position: fixed;
		top: 0px;
		left:0%;
	}
	#header .header_inner{
		height:var(--sp_header_height);
		padding:0;
		width:100%;
		z-index:100;
	}
	/* logo */
	#header .logo {
		max-width: 210px;
		padding-left:2.5%;
	}
	.head_information.sp_only{
		border-top:2px dashed var(--primary-color);
		text-align:center;
		padding-top:30px;
	}
	/* icon */
	#header .header_inner .head_information{
		display:flex;
		justify-content: flex-end;
		align-items: center;
		gap:0px;
	}
	.search-form{
		opacity: 0;
		visibility: hidden; 
		transition: all 0.4s ease;
	}
	.search-form.is-active {
		opacity: 1;
		visibility: visible;
	}
}

/* ------------------------------------------- */
/* = header navigation
/* ------------------------------------------- */
#nav_block{
	position: relative;
}
.menu a{
	display:block;
	line-height:var(--base_line_height);
	transition: all 0.5s;
	text-decoration: none;
}
.menu a:hover{
	opacity: 1; 
}
.menu a span{
	font-size:80%;
}

/* ========================================================= */
/* 共通スタイル (PC環境 1200px以上) */
/* ========================================================= */
@media print, screen and ( min-width : 1200px ) {
	/* ========================================================= */
	/* LAYOUT 1
	/* ========================================================= */
	#header.layout_1 #global-nav {
		background: var(--primary-color);
	}
	#header.layout_1 #nav_block ul.menu {
		display:flex;
		justify-content: space-between;
		width: 100%;
	}
	#header.layout_1 #nav_block ul.menu > li {
		width: 100%;
		font-size:95%;
	}
	#header.layout_1 #nav_block ul.menu:before {
		content: "";
		position: absolute;
		top: 0;
		bottom:0;
		left: 0;
		display: block;
		width: 1px;
		background: #fff;
		z-index:4;
	}
	#header.layout_1 #nav_block ul.menu > li:before {
		content: "";
		position: absolute;
		top: 0;
		bottom:0;
		right: 0;
		display: block;
		width: 1px;
		background: #fff;
		z-index:4;
	}
	#header.layout_1 #nav_block ul.menu > li > a {
		white-space: nowrap;
		line-height:var(--layout_1_nav_height);
		z-index:3;
		color:#fff;
		background: var(--primary-color);
		text-align:center;
	}
	#header.layout_1 #nav_block ul.menu > li > a span{
		font-size:100%;
		line-height:var(--base_line_height);
	}

	#header.layout_1 #nav_block ul.menu > li > a:hover {
		background:#4dac89;
	}

	/* ========================================================= */
	/* LAYOUT 1 サブメニューのスタイル
	/* ========================================================= */
	#header.layout_1 #global-nav .header-nav-child {
		position: absolute;
		top: calc(10px + var(--layout_1_nav_height));
		left: 1px;
		width: calc(100% + 18px);
	}
	#global-nav .header-nav-child {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease-out;
	}
	#header.layout_1 #nav_block .sub-menu{
		margin-right:20px;
	}
	#header.layout_1 #nav_block .sub-menu > li{
		border-bottom:1px solid #fff;
	}
	#header.layout_1 #nav_block .sub-menu > li:first-child{
		border-radius: 10px 10px 0px 0px ;
		overflow:hidden;
	}
	#header.layout_1 #nav_block .sub-menu > li:last-child{
		border-bottom:none;
		border-radius: 0px 0px 10px 10px ;
		overflow:hidden;
	}
	#header.layout_1 #nav_block .sub-menu > li > a{
		padding:0.6em 0.5em 0.6em 1.6em;
		text-align:left;
		font-size:95%;
		line-height:140%;
		background-color:#d0ebe2;
		color:currentColor;
	}
	#header.layout_1 #nav_block .sub-menu > li > a:hover{
		background-color:#aad9c8;
	}
	/* 孫まで出ます */
	#header.layout_1 #nav_block .grandchild-menu{
		display:none;
	}
	/* アイコンの指定 */
	#header.layout_1 #nav_block .sub-menu > li > a:before{
		display:inline-block;
		font-family: "Font Awesome 6 Free"; 
		font-weight: 900; 
		content: '\f0da';
		position: absolute;
		top:0.6em;
		left:0.5em;
		transition: all .5s;
		color:var(--primary-color);
	}
	.menu_close {
		background: var(--primary-color);
		display: inline-block;
		width: 2em;
		height: 2em;
		border: 1px solid #fff; /* 背景が濃い色なら白枠の方が綺麗かもです */
		position: absolute;
		bottom: 0px;
		right: 0px;
		transition: all .5s;
		border-radius: 50%;
		cursor: pointer;
		z-index: 10;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease-out, all 0.5s;
	}
	#header.layout_1 #global-nav .menu-item-has-children.is-active .menu_close {
		opacity: 1;
		visibility: visible;
	}
	/* アイコン部分は擬似要素で指定します */
	.menu_close::before {
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		content: '\f077'; /* 最初から上を向いている 'chevron-up' */
		color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%); /* 真ん中に配置 */
		font-size: 0.8em;
	}

	/* 画像必要ない */
	#nav_block ul.menu > li a div.thumb-box{
		display:none;
	}
}
@media ( max-width : 1200px ){
	#global-nav {
		background-color: #d4ede4;
		position: fixed;
		top: var(--sp_header_height);
		left: 0%;
		width: 100%;
		height: 100svh;
		overflow: auto;
		z-index: 4;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-50px);
		transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
	}
	.nav_open_side #global-nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
	}
	.global-nav_inner{
		margin:0em auto;
		width: min(90%, 700px);
		padding-top:50px;
		padding-bottom:160px;
	}
	#nav_block ul.menu > li > a span{
		display:block;
		color:#fff;
		text-align: justify;
	}
	#nav_block .sub-menu,
	.menu_close{
		display:none;
	}
}
@media ( max-width : 1200px ) and ( min-width : 786px ){
	#nav_block .menu{
		margin-bottom:2em;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap:20px;
	}
	#nav_block ul.menu > li{
		border-radius: 5px;
		overflow:hidden;
	}
	#nav_block ul.menu > li{
		background: var(--green);
	}
	#nav_block ul.menu > li:nth-child(even){
		background: var(--blue);
	}
	#nav_block ul.menu > li > a span{
		display:block;
		padding:1em;
		font-size:100%;
		line-height:var(--base_line_height);
	}
}
@media ( max-width : 768px ){
	#nav_block .menu{
		margin-bottom:2em;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap:15px;
	}
	#nav_block ul.menu > li{
		border-radius: 5px;
		overflow:hidden;
	}
	#nav_block ul.menu > li{
		background: var(--blue);
	}
	#nav_block ul.menu > li:nth-child(4n+2),
	#nav_block ul.menu > li:nth-child(4n+3) {
		background: var(--green);
	}
	#nav_block ul.menu > li > a span{
		display:block;
		padding:0.8em;
		font-size:95%;
		line-height:var(--base_line_height);
	}
}
.menu .betumado:after,
.sitemap .betumado:after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f35d';
	color:var(--primary-color);
	transition: all .5s;
	font-size:13px;
	margin-left:0.5em;
}
/* ************************************************************************ 
 *	
 *	FOOTER
 *	
 * ************************************************************************ */
/* ------------------------------------------- */
/* = page top
/* ------------------------------------------- */
.page_top{
	display:block;
	z-index:3;
}

@media print, screen and ( min-width : 1200px ) {
	.page_top{
		position: fixed;
		bottom: -10px;
		right: 10px;
		transition: all .5s ease;
		opacity: 0;
		z-index:2;
		cursor: pointer;
	}
	/* スクロールで表示 */
	.scrollstart60 .page_top{
		position: fixed;
		bottom: 10px;
		right: 10px;
		opacity: 1;
	}
}
@media ( max-width : 1200px ) {
	.page_top{
		display:none;
	}
}
/* -------------------------------------------------------------------- */
/* = sitemap
/* -------------------------------------------------------------------- */
ul.sitemap h3{
	color:var(--primary-color);
	margin-bottom:1em;
	font-size:110%;
	line-height:var(--base_line_height);
	letter-spacing:0.05em;
}
ul.sitemap a{
	color:currentColor;
	text-decoration:none;
	text-align: justify;
}
ul.sitemap a span{
	font-size:80%;
}
ul.sitemap li li{
	padding-left:1em;
	padding-bottom:0.7em;
}
ul.sitemap li li:before{
	content: '・';
	position: absolute;
	left: 0;
	top: 0%;
}
ul.sitemap a:hover{
	color:var(--primary-color);
	text-decoration:underline;
}

/* -------------------------------------------------------------------- */
/* = footer sitemap
/* -------------------------------------------------------------------- */
#footer ul.sitemap{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	font-size:85%;
	line-height:var(--base_line_height);
}
@media ( max-width : 750px ) {
	#footer ul.sitemap{
		grid-template-columns: repeat(2, 1fr);
		font-size:95%;
		line-height:var(--base_line_height);
	}
	ul.sitemap li li{
		padding-bottom:1em;
	}

}
/* -------------------------------------------------------------------- */
/* = page sitemap
/* -------------------------------------------------------------------- */
/* -------------------------------------------------------------------- */
/* = ご予約について
/* -------------------------------------------------------------------- */
.yoyaku{
	background:#eff8f5;
	padding-top:50px;
	text-align:center;
}
.yoyaku h2.title2{
	margin-bottom:0px;
}
/* ------------------------------------------- */
/* = 診療時間
/* ------------------------------------------- */
.shinryou{
	line-height:180%;
	white-space: nowrap;
	letter-spacing:0.05em;
}
.shinryou .small{
	font-size:90%;
	letter-spacing:0em;
}
.shinryou .jikan{
	font-weight:800;
	color:var(--primary-color);
	font-size:120%;
}
@media screen and ( min-width : 896px ) {
	.yoyaku{
		border-radius: 10px;
		padding:3.5em 0;
	}
	.yoyaku_block{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
		font-size:110%;
		line-height:var(--base_line_height);
		padding-top:2em;
		gap:3%;
		margin-left:-1%;
	}
	.yoyaku_block_img{
		width:28%;
	}
	.shinryou{
		padding:0 15px 15px 15px;
		margin-bottom:1em;
		text-align:left;
		border-bottom:1px dashed var(--border);
	}
	.yoyaku_block .tel_number{
		padding:0 15px 0px 15px;
		margin-right:-0.5em;
		font-size:200%;
		text-align:left;
	}
}

@media ( max-width : 1200px ) and ( min-width : 896px ) {
	.yoyaku_block{
		font-size:1.5vw;
	}
}
@media print, screen and ( max-width : 896px ) {
	.yoyaku {
		margin-bottom: 100px; 
		margin-left: calc(-50vw + 50%);
		width: 100vw;
	}
	.shinryou .small{
		display:block;
		font-size:80%;
	}
	.yoyaku_block{
		padding-top:30px;
	}
	.shinryou{
		font-size:110%;
		padding-bottom:10px;
	}
	.shinryou p{
		margin-bottom:10px;
	}
	.yoyaku_block_img{
		transform: translate(0%, 30%);
		width: 70%;
		max-width: 400px;
		margin-inline: auto;
	}
}
/* -------------------------------------------------------------------- */
/* = footer
/* -------------------------------------------------------------------- */
#footer{
	background:#f9f8f3;
}
#footer > *{
	z-index:1;
}
.footer_infotmation{
	padding:80px 0;
}

/* -------------------------------------------------------------------- */
/* = footer 1
/* -------------------------------------------------------------------- */
#footer.footer_1:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 520px;
	width: 100vw;
	z-index:0;
	background:url(image/foot_bg_pc.jpg) 50% 0% no-repeat;
	-moz-background-size:cover;
	background-size:cover;
}
@media ( max-width : 896px ) {
	#footer.footer_1:after{
		background:url(image/foot_bg_sp.jpg) 50% 0% no-repeat;
		-moz-background-size:100% 100%;
		background-size:100% 100%;
		height:600px;
	}
}
.footer_1 .foot_img{
	position: absolute;
	top: -30px;
	right: -5%;
	max-width:43%;
}

.footer_1 .f_info{
	margin-bottom:50px;
}
@media ( max-width : 896px ) {
	.footer_1 .f_info .logo img{
		width:250px;
	}
	.footer_1 .foot_img{
		position: absolute;
		right: -8%;
	}
}
.footer_1 .foot_nihonkai{
	background: rgba(255, 255, 255, 0.9);
	padding:40px 0;
}
/* logo--------------------------------- */
@media print, screen and ( min-width : 896px ) {
	.footer_1 .foot_nihonkai_logo{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 60px;
		margin-bottom:30px;
	}
	.footer_1 .f_sitemap{
		width:90%;
		margin-inline: auto;
	}
}
@media ( max-width : 896px ) {
	.footer_1 .foot_nihonkai_logo{
		display: block;
	}
	.footer_1 .foot_nihonkai_logo li{
		text-align:center;
		margin-bottom:20px;
	}
	.footer_1 .foot_nihonkai_logo li img{
		width:220px;
	}
}
/* sitemap--------------------------------- */
@media ( max-width : 896px ) {
	.footer_1 .f_sitemap{
		font-size:95%;
	}
}
/* -------------------------------------------------------------------- */
/* = nihonkai_banner
/* -------------------------------------------------------------------- */
.foot_nihonkai_banner a{
	border-radius: 10px;
	overflow:hidden;
	display:block;
}
/* banner--------------------------------- */
.foot_nihonkai_banner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-inline: auto;
	max-width: 900px;

}
@media ( min-width : 600px ) {
	.foot_nihonkai_banner {
		gap: 40px;
	}
	.foot_nihonkai_banner li {
		width: calc((100% - 160px) / 4);
	}
}
@media ( max-width : 600px ) {
	.foot_nihonkai_banner {
		gap: 20px;
	}
	.foot_nihonkai_banner li {
		width: calc((100% - 40px) / 2);
	}
}

/* ------------------------------------------- */
/* = copyright
/* ------------------------------------------- */
.foot_copyright{
	padding:50px 5%;
	text-align:center;
	font-size:70%;
}
/* ************************************************ 
 *	
 *	pager
 *	
 * ************************************************ */
.pager{
	text-align:center;
}
.page-numbers{
	display:flex;
	justify-content: center;
	align-items: center;
	gap:15px;
	margin-bottom:10px;
}
.page-numbers a,
.page-numbers span.current{
	display:block;
	text-decoration: none;
	background:#fff;
	line-height:50px;
	width:50px;
	padding:0;
	border:1px solid var(--primary-color);
	text-align:center;
	border-radius: 50%;
	color:var(--primary-color);
	transition: all 0.5s; 
}
@media ( max-width : 896px ) {
	.page-numbers{
		gap:8px;
	}
	.page-numbers a,
	.page-numbers span.current{
		line-height:40px;
		width:40px;
	}
}
.page-numbers.next,
.page-numbers.prev{
	width:5em;
	border-radius: 6px;
	border:none;
	font-size:100%;
}
.pager a:hover,
.pager span.current{
	background:var(--primary-color);
	color:#fff;
}

/* ************************************************ 
 *	
 *	ページタイトル
 *	
 * ************************************************ */
.page-title{
	background:var(--gray);
	overflow:hidden;
}
@media print{
	.page-title{
		padding:50px 0;
		margin-bottom:50px;
	}
}
.page-title .inner_block{
	z-index:1;
	padding:80px 0;
}
@media only screen and ( max-width : 1000px ) {
	.page-title .inner_block{
		padding:50px 0px 50px 0px;
	}
}
/* 背景画像------------------------------------------- */
.page-title .inner_block:after{
	display:block;
	content: '';
	z-index:-1;
	width:350px;
	max-width:30%;
}
@media print, screen and ( min-width : 1000px ) {
	.page-title .inner_block:after{
		position: absolute;
		top:10px;
		right:-5%;
		bottom:10px;
		height:100%;
	}
}
@media only screen and ( max-width : 1000px ) {
	.page-title .inner_block:after{
		max-width:35%;
		position: absolute;
		top:90px;
		right:-10%;
		aspect-ratio: 1 / 1;
	}
}
.page-title .inner_block.about:after,
.page-title .inner_block.parent-about:after{
	background:url(image/pt/about.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.facility:after,
.page-title .inner_block.parent-facility:after{
	background:url(image/pt/facility.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.staff:after,
.page-title .inner_block.parent-staff:after{
	background:url(image/pt/doctor-staff.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.information:after,
.page-title .inner_block.parent-information:after{
	background:url(image/pt/information.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.doctor-staff:after,
.page-title .inner_block.parent-doctor-staff:after{
	background:url(image/pt/doctor-staff.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.news:after{
	background:url(image/pt/news.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.page-title .inner_block.medical:after,
.page-title .inner_block.parent-medical:after{
	background:url(image/pt/medical.jpg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
/* メインブロック------------------------------------------- */
.pt_main{
	padding:50px 0px 20px 0px;
	z-index:2;
}

@media ( max-width : 896px ) {
	.pt_main{
		padding:50px 0px 20px 0px;
	}
}
/* 文字サイズ------------------------------------------- */
.pt_main:before{
	display:block;
	content: '';
	width:100%;
	height:20px;
	background:url(image/line.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
	position: absolute;
	top:0;
	left:0%;
}
.page-title h1,
.page-title p{
	text-align:center;
	display:block;
	font-size:200%;
	line-height:140%;
	z-index:1;
	text-align:center;
	letter-spacing:0.1em;
	padding:0 5%;
	text-shadow:
		1px 1px 0 var(--gray), -1px -1px 0 var(--gray),
		-1px 1px 0 var(--gray), 1px -1px 0 var(--gray),
		0px 1px 0 var(--gray), 0px -1px 0 var(--gray),
		-1px 0px 0 var(--gray), 1px 0px 0 var(--gray);
}
.eng_title{
	display:block;
	text-align:center;
	padding-top:0.8em;
	font-size:110%;
	font-weight:700;
	color:var(--primary-color);
	line-height:100%;
	text-transform:uppercase;
	letter-spacing:0.1em;
	text-shadow:
		1px 1px 0 var(--gray), -1px -1px 0 var(--gray),
		-1px 1px 0 var(--gray), 1px -1px 0 var(--gray),
		0px 1px 0 var(--gray), 0px -1px 0 var(--gray),
		-1px 0px 0 var(--gray), 1px 0px 0 var(--gray);
}

.page-title p.parent-label{
	font-size:110%;
	line-height:140%;
	letter-spacing:0.2em;
	margin-top:1em;
	padding-top:1em;
	color:var(--primary-color);
	font-weight:700;
	text-shadow: 
	1px 1px 0 #fff, -1px -1px 0 var(--gray), 
	-1px 1px 0 #fff, 1px -1px 0 var(--gray);
}
.page-title p.parent-label:before{
	display:inline-block;
	content: '';
	position: absolute;
	top:0em;
	left:50%;
	width:200px;
	margin-left:-100px;
	border-bottom:2px dashed var(--primary-color);
}
@media only screen and ( max-width : 1000px ) {
	.pt_main:before{
		height:14px;
	}
	.page-title h1,
	.page-title p{
		font-size:150%;
		line-height:140%;
	}
	.page-title p.parent-label{
		font-size:90%;
		line-height:140%;
	}
	.eng_title{
		font-size:90%;
		line-height:140%;
	}
}

/* ------------------------------------------- */
/* = サブメニュー
/* ------------------------------------------- */
@media print, screen and ( min-width : 1000px ) {
	.page_title_menu_list{
		display:none;
	}
}
.page_title_menu_list{
	margin-top:1em;
	overflow:hidden;
	border-radius: 5px;
	background:#fff;
}
.pt_sub_open_button{
	border:none;
	display:block;
	width:100%;
	background: var(--primary-color);
	padding:0 20px;
	color:#fff;
	font-size:90%;
	line-height:50px;
	cursor: pointer;
}

/* アイコンの指定 */
.pt_sub_open_button:after{
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\2b';
	display: inline-block;
	position: absolute;
	top: 12px;
	right: 18px;
	background:#fff;
	font-size:16px;
	line-height:100%;
	padding:5px;
	color:var(--primary-color);
	cursor: pointer;
	border-radius: 2px;
}
.pt_sub{
	display:none;
}
.pt_sub_open_button.is-active:after{
	content: '\f068';

}

/* ------------------リスト（サイドバーと共通）------------------------- */
.pt_sub li,
.side-child-level li{
	border-bottom:1px dashed var(--border);
}
.pt_sub li:last-child,
.side-child-level > li:last-child,
.side-grandchild-level > li:last-child{
	border:none;
}
.side-child-level li:first-child{
	border-top:1px dashed var(--border);
}
.pt_sub a,
.side-child-level > li > a{
	padding:15px 15px 15px 40px;
	color:currentColor;
	font-size:95%;
	line-height:var(--base_line_height);
	display:block;
	text-decoration: none;
}
@media print, screen and ( min-width : 896px ) {
	.side-child-level > li > a{
		color:currentColor;
		font-size:90%;
		line-height:var(--base_line_height);
	}
}

.pt_sub a{
	font-size:95%;
	line-height:var(--base_line_height);
}
.pt_sub span,
.side-child-level > li > a span{
	font-size:80%;
	line-height:100%;
}
.pt_sub a:before,
.side-child-level > li > a:before{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:15px;
	left:20px;
	transition: all .5s;
	color:var(--primary-color);
}
.pt_sub a.betumado:after,
.side-child-level > li > a.betumado:after,
.side-grandchild-level > li > a.betumado:after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f35d';
	color:var(--primary-color);
	transition: all .5s;
	font-size:12px;
	margin-left:0.5em;
}
/* サイドバー色違い */
.side-child-level a{
	background: var(--gray);
	transition: all 0.3s; 
}
.side-child-level a:hover{
	background: var(--primary-color);
	color:#fff;
}
.side-child-level a:hover:before{
	color:#fff;
}

/* ************************************************ 
 *	
 *	sidebar
 *	
 * ************************************************ */
ul.side-top-level{
	border-bottom:2px solid var(--border);
}
ul.side-top-level > li{
	border-top:1px dashed var(--border);
}

ul.side-top-level > li:first-child{
	border-top:2px solid var(--border);
}
/* 親 */
ul.side-top-level li > .parent > a{
	font-size:100%;
	line-height:var(--base_line_height);
	display:block;
	padding:20px 0px 20px 30px;
	transition: all .5s;
	text-decoration: none;
	color:currentColor;
	display:block;
}
ul.side-top-level li.active-family > .parent > a{
	background: var(--gray);
	color:var(--primary-color);
}
ul.side-top-level li > .parent > a:hover{
	background: var(--gray);
	color:var(--primary-color);
}
ul.side-top-level li > .parent > a:before{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:22px;
	left:10px;
	color:var(--primary-color);
}
/* 孫リンク（サイドメニューのみ） */
.side-grandchild-level > li > a{
	padding:10px 10px 10px 60px;
	color:currentColor;
	font-size:90%;
	line-height:var(--base_line_height);
	display:block;
	text-decoration: none;
	background: #f2f2ec;
}
.side-grandchild-level > li > a span{
	font-size:80%;
	line-height:100%;
}
.side-grandchild-level > li > a:before{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:12px;
	left:40px;
	transition: all .5s;
	color:var(--border);
}


/* ************************************************ 
 *	
 *	パンくず
 *	
 * ************************************************ */
#breadcrumb{
	font-size:75%;
	position: relative;
	padding-top:1.5em;
	color:#aaa;
	font-weight:500;
}
#breadcrumb .inner_block{
	overflow:hidden;
}
#breadcrumb br{
	display:none;
}
#breadcrumb a{
	color:#aaa;
	font-weight:500;
}
#breadcrumb a:hover{
	color: var(--primary-color);
}
@media print{
	#breadcrumb{
		display:none;
	}
}

/* ************************************************ 
 *	
 *	contents_css
 *	
 * ************************************************ */
/* ------------------------------------------- */
/* = TABLE
/* ------------------------------------------- */
.contents_css table th,
.contents_css table td{
	padding:0.3em;
	vertical-align:top;
	text-align:left;
	font-size:95%;
	line-height:160%;
}
.contents_css table.contentstb{
	border-collapse: collapse;
	border-spacing: 0;
	width:100%;
	border:1px solid var(--border);
	background:#fff;
}
.contents_css table.contentstb th,
.contents_css table.contentstb td{
	border:1px solid var(--border);
	padding:0.5em;
	vertical-align:middle;
	text-align:left;
}
.contents_css table.text_center th,
.contents_css table.text_center td{
	text-align:center;
}
.contents_css table.contentstb th{
	background:var(--gray);
	font-weight:600;
}

@media ( max-width : 896px ) {
	.contents_css.contentstb table{
		font-size:90%;
	}
}
@media ( max-width : 896px ) {
	.scroll{
		overflow: auto;　
		white-space:nowrap;
	}
	.scroll table th,
	.scroll table td{
		white-space:nowrap;
	}
	.scroll::-webkit-scrollbar{
		height: 5px;
	}
	.scroll::-webkit-scrollbar-track{
		background: #F1F1F1;
	}
	.scroll::-webkit-scrollbar-thumb {
		background: #BCBCBC;
	}
	.scroll:before {
		content: '横スクロール ≫';
		position: -webkit-sticky; /* Safari用 */
		position: sticky;
		left: 0; /* 左端に張り付く */
		display: inline-block;
		
		background: var(--border);
		color: #fff;
		font-size: 11px;
		padding: 4px 10px;
		border-radius: 0 20px 20px 0;
		z-index: 2;
		margin-bottom: 5px;
	}
}
/* ------------------------------------------- */
/* = テキスト装飾
/* ------------------------------------------- */
.contents_css hr{
	border-top:1px dashed var(--border);
	margin:50px 0;
}
.top_info p{
	line-height:220%;
	text-align: justify;
}
.contents_css p{
	line-height:220%;
	text-align: justify;
	margin-bottom:2em;
}
/* ページだけ */
@media print, screen and ( min-width : 1200px ) {
	.page_css,
	.single_txt{
		font-size:95%;
		line-height:var(--base_line_height);
	}
}
/* ページだけ */
@media print, screen and ( min-width : 896px ) {
	.page_css p{
		margin-left:1em;
	}
}
small, .small{
	font-size:80%;
	line-height:130%;
}
sup{
	font-size:50%;
}
.bold{
	font-weight:bold;
}
.red{
	color: #ff4949 !important;
}
.font90{
	font-size:90%;
	line-height:160%;
}
.text_center{
	text-align:center !important;
}
.text_right{
	text-align:right !important;
}
.mb05{
	margin-bottom:0.5em !important;
}
.mb0{
	margin-bottom:0em !important;
	}
.mb1{
	margin-bottom:1em !important;
	}
.mb2{
	margin-bottom:2em !important;
	}
.mb3{
	margin-bottom:3em;
	}
.mb4{
	margin-bottom:4em;
	}
.mb5{
	margin-bottom:5em;
	}
.indent1em{
	padding-left:1em;
	text-indent:-1em;
}
.indent1em .block_link{
	padding-left:3.5em !important;
}
.indent2em{
	padding-left:2em;
	text-indent:-2em;
}
.indent2em .block_link{
	padding-left:4.5em !important;
}
.indent3em{
	padding-left:2.5em;
	text-indent:-2.5em;
}
.indent3em .block_link{
	padding-left:5.5em !important;
}
.indent5em{
	padding-left:5em;
	text-indent:-5em;
}
.indent5em .block_link{
	padding-left:7.5em !important;
}
.indent7em{
	padding-left:7em;
	text-indent:-7em;
}
.indent7em .block_link{
	padding-left:9.5em !important;
}
.mb1em{
	margin-bottom:1.5em;
}
.pd1{
	padding:1em;
}
.pl1{
	padding-left:1em;
}


/* ------------------------------------------- */
/* = ページ内タイトル
/* ------------------------------------------- */
#main_title{
	background: var(--gray);
	border:1px solid var(--border);
	padding:2em;
	padding-left:3em;
	position: relative;
	border-radius: 5px;
	margin-bottom:2em;
}
#main_title h1,
#main_title h2 {
	font-size:170%;
	line-height:var(--base_line_height);
	letter-spacing:0.15em;
}
#main_title h1:before,
#main_title h1:after,
#main_title h2:before,
#main_title h2:after{
	display:none;
}

@media only screen and ( max-width : 896px ){
	#main_title{
		padding:1.8em;
		padding-left:2em;
	}
	#main_title h1,
	#main_title h2{
		font-size:130%;
		line-height:var(--base_line_height);
	}
}
#main_title:after{
	content: "";
	display: block;
	position: absolute;
	top:0.5em;
	bottom:0.5em;
	left:0.5em;
	width:3px;
	background: var(--primary-color);
}
.category_title,
.block_title,
.contents_css h2,
.contents_css h3{
	position: relative;
	margin-bottom:1em;
	padding-bottom:0.8em;
	font-size:140%;
	line-height:var(--base_line_height);

}
@media only screen and ( max-width : 896px ){
	.contents_css h2,
	.contents_css h3{
		font-size:120%;
		line-height:var(--base_line_height);
	}
	.category_title,
	.block_title{
		font-size:120%;
		line-height:var(--base_line_height);
	}
}
.category_title::before,
.block_title::before,
.contents_css h2::before,
.contents_css h3::before{
	content: "";
	display: block;
	position: absolute;
	bottom:0;
	left:0;
	width:40%;
	height:3px;
	background: var(--primary-color);
	z-index:1;
}
.category_title::after,
.block_title::after,
.contents_css h2::after,
.contents_css h3::after{
	content: "";
	display: block;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	background: var(--primary-color);
	opacity: 0.5;
	height:3px;
}
.contents_css #main_title h1,
.contents_css #main_title h2 {
	margin:0;
	padding:0;
}
.contents_css h4{
	position: relative;
	background: var(--gray);
	padding:0.8em;
	padding-left:1.5em;
	border-radius: 5px;
	margin-bottom:1em;
	font-size:120%;
	line-height:var(--base_line_height);
}
@media only screen and ( max-width : 896px ){
	.contents_css h4{
		font-size:110%;
		line-height:var(--base_line_height);
	}
}
.contents_css h4::after{
	content: "";
	display: block;
	position: absolute;
	top:0.5em;
	bottom:0.5em;
	left:0.5em;
	width:3px;
	background: var(--primary-color);
}
.contents_css h5{
	margin-bottom:0.8em;
}
.contents_css h5,
.contents_css dt{
	position: relative;
	font-weight:bold;
	padding:0.6em;
	padding-left:30px;
	border-bottom:1px solid #aaa;
	font-size:115%;
	line-height:var(--base_line_height);
}
@media only screen and ( max-width : 896px ){
	.contents_css h5,
	.contents_css dt{
		font-size:105%;
		line-height:var(--base_line_height);
	}
}

.contents_css h5::after,
.contents_css dt::after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:0.6em;
	left:0.5em;
	color:var(--primary-color);
}
.contents_css h6,
.contents_css h7{
	border-bottom:3px solid var(--primary-color);
	padding-bottom:0.5em;
	margin-bottom:1em;
	display:block;
	font-size:110%;
	line-height:var(--base_line_height);
}
@media only screen and ( max-width : 896px ){
	.contents_css h5,
	.contents_css h6,
	.contents_css h7{
		font-size:105%;
		line-height:var(--base_line_height);
	}
}
/* ------------------------------------------- */
/* = リスト
/* ------------------------------------------- */
.contents_css ol,
.contents_css ul{
	margin-top:0.8em;
}
.contents_css ol li,
.contents_css ul li{
	line-height:160%;
	margin-bottom:0.8em;
}
.contents_css ol li:ast-child,
.contents_css ul li:ast-child{
	padding-bottom:0em;
}

/* ------------------------------------------- */
/* = アイコンリスト
/* ------------------------------------------- */

.contents_css ul.icon_list li,
.contents_css ul.list li{
	position: relative;
	background:none;
	padding:0.8em;
	padding-left:1.5em;
	border-bottom:1px dashed var(--border);
	margin-bottom:0em;
}
.contents_css ul.icon_list li::after,
.contents_css ul.list li::after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:0.9em;
	left:10px;
	color:var(--primary-color);
}
.contents_css ul.list{
	background-color:#fcfcfc;
	border-radius: var(--kadomaru);
	padding:2em;
}
.contents_css ul.list li{
	border-bottom:1px solid var(--border);
	margin-bottom:0em;
}
.contents_css ul.list li:last-child{
	border:none;
}
.text_link{
	padding-left:1.5em;
}
.text_link:before{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top:0.1em;
	left:10px;
	color:var(--primary-color);
}
/* ------------------------------------------- */
/* = ドットリスト
/* ------------------------------------------- */
.single_txt ul li,
.contents_css ul.icon_list2 li{
	position: relative;
	background:none;
	padding:0.2em 0em 0.2em 1.5em;
}
.single_txt ul li::after,
.contents_css ul.icon_list2 li::after{
	content: "";
	display: block;
	position: absolute;
	top:0.8em;
	left:0.5em;
	width:8px;
	height:8px;
	background:#aaa;
	border-radius:50%;
}
.contents_css dd{
	padding-left:1.6em;
	padding-bottom:1em;
	padding-top:0.6em;
	line-height:200%;
}
.contents_css dd:last-child{
	padding-bottom:0em;
}
.contents_css ol{
	margin-left:2em;
}
.single_txt ul,
.single_txt ol{
	margin-bottom:2em;
}
/* ------------------------------------------- */
/* = ページリンク
/* ------------------------------------------- */
table.page_link,
table.page_link td,
table.page_link th{
	border:none;
}
table.page_link td,
table.page_link th{
	padding:0;
}
table.page_link td a,
table.page_link th a{
	margin:5px;
}
table.page_link td a,
table.page_link th a,
ul.page_link_list a,
.facility_link a{
	display:block;
	user-select: none;
	text-align:center;
	border-radius: 5px;
	padding:0.8em;
	padding-right:2em;
	letter-spacing:0.1em;
	text-decoration: none;
	font-size:85%;
	line-height:var(--base_line_height);
	color:currentColor;
	background-color:var(--gray);
	border:1px solid #f5f5f5;
	z-index:1;
	opacity: 1;
	transition: all 0.5s;
}
table.page_link td a:hover,
table.page_link th a:hover,
ul.page_link_list a:hover,
.facility_link a:hover{
	color:#fff;
	background-color: var(--primary-color);
}
/* アイコンの指定 */
table.page_link td a:after,
table.page_link th a:after,
ul.page_link_list a:after,
.facility_link a:after{
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0d7';
	display: inline-block;
	position: absolute;
	top: 0.8em;
	right: 1em;
	color:var(--primary-color);
	transition: all 0.5s;
}

table.page_link td a:hover:after,
table.page_link th a:hover:after,
ul.page_link_list a:hover:after,
.facility_link a:hover:after{
	color:#fff;
}
/* ------------------------------------------- */
/* = 横並び
/* ------------------------------------------- */
ul.page_link_list{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 10px;
}
.contents_css ul.page_link_list li{
	margin:0;
}

@media only screen and ( max-width : 896px ){
	ul.page_link_list{
		gap: 5px;
	}
}
/* ------------------------------------------- */
/* = ブロック
/* ------------------------------------------- */
.blue_block,
.adress_block,
#blue_block,
#adress_block{
	background:#eff8f5;
	padding:2em;
	border-radius:5px;
}
@media ( max-width : 1000px ) {
	.blue_block,
	.adress_block,
	#blue_block,
	#adress_block{
		padding:2em;
	}
}
.blue_block h4,
.adress_block h4,
#blue_block h4,
#adress_block h4{
	background-color:#fff;
}
.adress_block span,
#adress_block span{
	color:var(--primary-color);
	display:inline-block;
	font-size:120%;
	line-height:var(--base_line_height);
	font-weight:700;
	margin:5px 0;
}
.waku_block{
	background-color:var(--gray);
	border:1px solid var(--border);
	padding:1em;
	border-radius:5px;
}
.blue_block h5,
.adress_block h5,
#blue_block h5,
#adress_block h5{
	padding-top:0;
}
.contents_css .blue_block h5::after,
.contents_css .adress_block h5::after,
.contents_css #blue_block h5::after,
.contents_css #adress_block h5::after{
	position: absolute;
	top:0.1em;
}


/* ------------------------------------------- */
/* = 画像リスト
/* ------------------------------------------- */
.img_blocks{
	background-color:var(--gray);
	text-align:center;
	border-radius:5px;
	padding:3%;
	font-weight:700;
	font-size:90%;
	line-height:var(--base_line_height);
}
/* ------------------------------------------- */
/* = 画像リスト
/* ------------------------------------------- */
.img_caption,
.img_left span,
.img_right span{
	font-weight:700;
	font-size:80%;
	line-height:160%;
	text-align:center;
	display:block;
	padding:0.8em;
}
@media print, screen and ( min-width : 896px ) {
	.img_left{
		width:40%;
		float:left;
		margin-right:5%;
		margin-bottom:30px;
	}
	.img_right{
		width:40%;
		float:right;
		margin-left:5%;
		margin-bottom:30px;
	}
}
@media only screen and ( max-width : 896px ){
	.img_left,
	.img_right{
		max-width:400px;
		margin-left:auto;
		margin-right:auto;
		margin-bottom:30px;
	}
}
/* ------------------------------------------- */
/* = 画像リスト
/* ------------------------------------------- */
.flex_item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	margin-bottom: 50px;
}
.flex_item img {
	flex-shrink: 0;
	max-width: 350px;
	width:35%;
}
.flex_item .text {
	flex-grow: 1; /* 残りの幅をすべてテキストが使う */
}

/* スマホでは縦並びにする */
@media screen and (max-width: 768px) {
	.flex_item {
		flex-direction: column;
	}
	.flex_item img {
		width: 100%;
		max-width:400px;
		margin-left:auto;
		margin-right:auto;
	}
}
/* ------------------------------------------- */
/* = 画像リスト
/* ------------------------------------------- */
.colum_2_img{
	margin:30px 0;
}
.contents_css .colum_2_img li{
	padding:0;
	margin:0;
}
@media print, screen and ( min-width : 749px ) { /* 896pxと被らないよう+1 */
	.colum_2_img {
		display: grid;
		grid-template-columns: 1fr 1fr; /* 2枚固定 */
		gap: 30px; /* 上下左右15px */
	}

	.colum_2_img img {
		width: 100%;
		height: auto; /* 高さを自動にすると歪みません */
		aspect-ratio: 3 / 2; /* 比率を固定したい場合はこれ（例 3:2） */
		object-fit: cover;
	}
}
@media only screen and ( max-width : 750px ){
	.colum_2_img {
		display: grid;
		grid-template-columns: 1fr; /* 1枚ずつ縦並び */
		gap: 30px 0; /* 縦の隙間だけ10px開ける */
		max-width: 500px;
		margin: 0 auto;
	}
}

/* ************************************************ 
 *	
 *	BLOG
 *	
 * ************************************************ */
p.edit_link{
	text-align:center;
	margin:1em;
}
@media print{
	p.edit_link{
		display:none;
	}
}
/* ------------------------------------------- */
/* = 中身
/* ------------------------------------------- */
.single_box{
	margin-bottom:50px;
}
.single_box .entry_title h1,
.single_box .entry_title h2{
	padding:1em 0;
}
.single_box .entry_title h1{
	font-size:160%;
	line-height:var(--base_line_height);
}
.single_box .entry_title h2{
	font-size:140%;
	line-height:var(--base_line_height);
}
.single_box .entry_days{
	background:var(--gray);
	color:var(--primary-color);
	font-size:90%;
	line-height:var(--base_line_height);
	font-weight:600;
	padding:0.6em;
	display:block;
}
.single_txt{
	padding:2em 0;
	display: flow-root;
}
.single_box .entry-tax{
	border-top:1px solid var(--border);
	text-align:right;
	padding:1em;
	font-size:90%;
	line-height:var(--base_line_height);
}
.single_box .entry-tax a{
	display:inline-block;
	font-size:90%;
	line-height:var(--base_line_height);
	border-radius: 5px;
	padding:0.3em 1em;
	text-decoration: none;
	font-size:100%;
	border:2px solid var(--primary-color);
	color: var(--primary-color);
	background:#fff;
	margin-left:0.5em;
	transition: all 0.5s; 
}
.single_box .entry-tax a:hover{
	background:var(--primary-color);
	color:#fff;
}
.single_back{
	padding-top:50px;
}
@media print, screen and ( min-width : 896px ) {
	.single_back{
		padding-top:100px;
	}
}


/* ------------------------------------------- */
/* = この記事の添付ファイル
/* ------------------------------------------- */
.contents_wrapper section.tenpu{
	margin-bottom:50px;
	padding:2em;
	background: var(--gray);
}
.tenpu h2{
	font-size:110%;
}
ul.tenpu_list{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 896px) {
	ul.tenpu_list{
		grid-template-columns: 1fr;
	}
	.contents_wrapper section.tenpu{
		padding:2em 0;
	}
	.contents_wrapper section.tenpu:after{
		content: "";
		display: inline-block;
		position: absolute;
		top: 0em;
		bottom:0em;
		margin-left: calc(-50vw + 50%);
		width: 100vw;
		height: 100%;
		background:var(--gray);
		z-index:-1;
	}
}
ul.tenpu_list li {
	display: flex;
}
ul.tenpu_list li a {
	display: block;
	color: currentColor;
	width: 100%;
	height: 100%;
	line-height: 140%;
	padding: 1em 1em 1em 75px;
	text-decoration: none;
	border-radius: 5px;
	background: #fff;
	border:1px solid var(--border);
}
ul.tenpu_list li a::after {
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: '\f019';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	font-size: 40px;
	line-height: 1;
	color: var(--primary-color);
}


.dete_size{
	font-size:80%;
	color:#aaa;
}
/* ------------------------------------------- */
/* = 前後のリンク
/* ------------------------------------------- */
ul.single_navigation {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom:50px;
}
ul.single_navigation li {
	flex: 1;
	max-width: 45%;
}
.previous_post_link {
	text-align: left;
	margin-right: auto;
}
.next_post_link {
	text-align: right;
	margin-left: auto;
}
@media screen and (max-width: 767px) {
	ul.single_navigation {
		flex-direction: column; /* 縦並びにする */
		gap: 15px;
	}
	ul.single_navigation li {
		max-width: 100%; /* スマホでは横幅いっぱい */
		width: 100%;
	}
}
/* --- li a の基本設定を変更 --- */
ul.single_navigation li a {
	display: flex;
	align-items: center;
	height: 100%;
	border-radius: 50px;
	color: currentColor;
	text-decoration: none;
	transition: background 0.5s;
	background: var(--gray);
	font-size: 90%;
	padding: 15px 20px; /* パディングを均等に */
	position: relative; /* absoluteを使う場合は必要ですが、今回は使いません */
}

ul.single_navigation li a:hover {
	background: #fff;
}
/* --- 前の記事（左寄せ・アイコンが左） --- */
.previous_post_link a {
	justify-content: flex-start; /* 左寄せ */
	text-align: left;
}
.previous_post_link a::before {
	content: '\f104';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-right: 15px; /* テキストとの間に隙間を作る */
	color: var(--primary-color);
	/* position: absolute; は削除 */
}

/* --- 次の記事（右寄せ・アイコンが右） --- */
.next_post_link a {
	justify-content: flex-end; /* 右寄せ（これが text-align:right の代わり！） */
	text-align: right;
}
.next_post_link a::after {
	content: '\f105';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	margin-left: 15px; /* テキストとの間に隙間を作る */
	color: var(--primary-color);
	/* position: absolute; は削除 */
}


/* ------------------------------------------- */
/* = 戻る
/* ------------------------------------------- */
.blog_contents .more{
	padding-top:30px;
}


/* ------------------------------------------- */
/* = ブログ基本
/* ------------------------------------------- */
blockquote{
	background: var(--gray);
	border:1px solid #fff;
	padding:2em;
	color:#555;
	margin-bottom:1em;
	font-size:90%;
}
blockquote p{
	line-height:160%;
	margin-bottom:0em !important;
}
.wp-caption{
	max-width:100%;
	background: var(--gray);
}
.wp-caption img{
	width:100%;
}
p.wp-caption-text{
	font-size:80%;
	padding:1em;
	color:#666;
	margin:0 !important;
}
.alignleft,
img.alignleft {
	display: inline;
	float: left;
	margin-right: 5%;
	max-width:45%;
}
.alignright,
img.alignright {
	display: inline;
	float: right;
	margin-left: 5%;
	max-width:45%;
}
.aligncenter,
img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignleft,
.alignright,
.aligncenter {
	margin-top:0.5em;
	margin-bottom: 1em;
}
.alignnone{
	float:none;
}

/* 記事がないとき */
.no_post{
	text-align:center;
	padding:6em 0em;
	width:100%;
}
.no_post p{
	margin-bottom:2em;
}
.no_post .button{
	font-size:90%;
}


/* ************************************************ 
 *	
 *	コンテンツリスト
 *	
 * ************************************************ */

.page_list li {
	border-radius: 5px;
	overflow: hidden;
	transition: all 0.5s;
}
.page_list .link_block:hover{
	opacity: 1;
}
.page_list .link_block h3 span{
	display:block;
}
.page_list .link_block h3 span.sub-t{
	font-size:70%;
	line-height: var(--base_line_height);
	padding-top:0.5em;
}
.page_list .link_block.betumado h3 span.main-t:after{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f35d';
	color:#f5f5f5;
	font-size:80%;
	margin-left:0.5em;
}
.page_list li img {
	width: 100%;
	display: block;
}
.contents_css ul.page_list,
.contents_css ul.page_list li{
	margin:0;
}
.contents_css .page_list li h3{
	font-size: 105%;
	line-height: var(--base_line_height);
	color: #fff;
	padding: 1.3em;
	margin: 0;
	transition: all 0.5s; 
}
.page_list.colum_4 li h3 {
	font-size: 100%;
	line-height: var(--base_line_height);
}
@media (max-width: 896px) {
	.page_list li h3 {
		font-size: 110%;
		line-height: var(--base_line_height);
	}
	.page_list.colum_4 li h3 {
		font-size: 100%;
		line-height: var(--base_line_height);
		padding:1em;
		letter-spacing:0.05em;
	}
}
/*  .contents_css上書き------------------------------ */
.contents_css .page_list li{
	padding:0;
}
.contents_css .page_list li h3:before,
.contents_css .page_list li h3:after{
	display:none;
}
/* ------------------------------------------- */
/* = リストのレイアウト
/* ------------------------------------------- */
/* --- Gridレイアウト（3カラム） --- */
.page_list.colum_3 {
	display: grid;
	gap: clamp(25px, 3vw, 50px);
	grid-template-columns: repeat(3, 1fr);
}
@media print, screen and ( min-width : 896px ) {
	.page_list.colum_3 li{
		background: var(--green);
	}
	.page_list.colum_3 li:hover{
		background: var(--greenhover);
	}
	.page_list.colum_3 li:nth-child(even){
		background: var(--blue);
	}
	.page_list.colum_3 li:nth-child(even):hover{
		background: var(--bluehover);
	}
}
@media (max-width: 896px) and (min-width: 550px) {
	.page_list.colum_3{
		grid-template-columns: repeat(2, 1fr);
	}
	.page_list.colum_3 li {
		background: var(--blue);
	}
	.page_list.colum_3 li:hover{
		background: var(--bluehover);
	}
	.page_list.colum_3 li:nth-child(4n+2),
	.page_list.colum_3 li:nth-child(4n+3) {
		background: var(--green);
	}
	.page_list.colum_3 li:nth-child(4n+2):hover,
	.page_list.colum_3 li:nth-child(4n+3):hover {
		background: var(--greenhover);
	}
}

@media screen and (max-width: 550px) {
	.contents_css ul.page_list.colum_3 {
		grid-template-columns: 1fr;
	}
	.contents_css ul.page_list.colum_3 li{
		margin-bottom:10px;
	}
	.page_list.colum_3 li{
		background: var(--green);
	}
	.page_list.colum_3 li:hover {
		background: var(--greenhover);
	}
	.page_list.colum_3 li:nth-child(even){
		background: var(--blue);
	}
	.page_list.colum_3 li:nth-child(even):hover{
		background: var(--bluehover);
	}

}
/* ------------------------------------------- */
/* = ページ内の3カラム
/* ------------------------------------------- */
#content .page_list.colum_3{
	gap: clamp(10px, 2vw, 20px);
}

/* ------------------------------------------- */
/* = ページ内の4カラム
/* ------------------------------------------- */
.page_list.colum_4 {
	display: grid;
	gap: clamp(10px, 2vw, 20px);
	grid-template-columns: repeat(4, 1fr);
}
@media print, screen and ( min-width : 1000px ) {
	.page_list.colum_4 li{
		background: var(--blue);
	}
	.page_list.colum_4 li:hover{
		background: var(--bluehover);
	}
	.page_list.colum_4 li:nth-child(8n+2),
	.page_list.colum_4 li:nth-child(8n+4),
	.page_list.colum_4 li:nth-child(8n+5),
	.page_list.colum_4 li:nth-child(8n+7) {
		background: var(--green);
	}
	.page_list.colum_4 li:nth-child(8n+2):hover,
	.page_list.colum_4 li:nth-child(8n+4):hover,
	.page_list.colum_4 li:nth-child(8n+5):hover,
	.page_list.colum_4 li:nth-child(8n+7):hover {
		background: var(--greenhover);
	}
}
@media (max-width: 1000px) and (min-width: 550px) {
	.page_list.colum_4{
		grid-template-columns: repeat(3, 1fr);
	}
	.page_list.colum_4 li{
		background: var(--green);
	}
	.page_list.colum_4 li:hover{
		background: var(--greenhover);
	}
	.page_list.colum_4 li:nth-child(even){
		background: var(--blue);
	}
	.page_list.colum_4 li:nth-child(even):hover{
		background: var(--bluehover);
	}

}
@media screen and (max-width: 550px) {
	.page_list.colum_4{
		grid-template-columns: repeat(2, 1fr);
	}
	.page_list.colum_4 li {
		background: var(--blue);
	}
	.page_list.colum_4 li:hover{
		background: var(--bluehover);
	}
	.page_list.colum_4 li:nth-child(4n+2),
	.page_list.colum_4 li:nth-child(4n+3) {
		background: var(--green);
	}
	.page_list.colum_4 li:nth-child(4n+2):hover,
	.page_list.colum_4 li:nth-child(4n+3):hover {
		background: var(--greenhover);
	}
}
/* ------------------------------------------- */
/* = hover
/* ------------------------------------------- */
.zoom_img {
	display: block;
	overflow: hidden; /* ここで確実にはみ出しを消す */
	width: 100.5%;
	aspect-ratio: 500 / 350;
	position: relative; /* 念のため */
	isolation: isolate; /* Safari対策 */
}

.zoom_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease; /* transitionを滑らかに */
	display: block;
	backface-visibility: hidden;
	filter: blur(0)
}

/* hoverの指定 */
.link_block:hover .zoom_img img {
	transform: scale(1.1);
	opacity: 1;
}

/* ************************************************ 
 *	
 *	投稿一覧
 *	
 * ************************************************ */
.search-count{
	font-size:100%;
	padding:2em 0;
	margin:1em 0 2em 0;
	background:var(--gray);
	border-radius: 5px;
	color: var(--primary-color);
	text-align:center;
}
.loop_post{
	border-top:1px solid var(--border);
	margin-bottom:50px;
}
.loop_post li{
	border-bottom:1px solid var(--border);
	padding:2em 5%;
}
.loop_post li:hover{
	background:var(--gray);
}
.loop_post li a{
	color:currentColor;
	text-decoration:none;
}
.loop_post li a:hover{
	color:var(--primary-color);
	text-decoration:underline;
}
.loop_post li h2{
	font-size:110%;
	line-height:var(--base_line_height);
	margin-bottom:0.5em;
	padding-left:1.5em;
	color:currentColor;
}
@media (max-width: 896px) {
	.loop_post li h2{
		font-size:115%;
		line-height:var(--base_line_height);
	}
}
.loop_post li h2:before{
	display:inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f305';
	position: absolute;
	top:0.1em;
	left:0;
	color:var(--primary-color);
}
.loop_post .entry_day{
	font-size:90%;
	line-height:var(--base_line_height);
	font-weight:600;
	color:var(--primary-color);
}
.excerpt_text{
	font-size:90%;
	line-height:var(--base_line_height);
	font-weight:500;
	color:#5d5d5d;
	margin-top:0.3em;
}
@media (max-width: 896px) {
	.loop_post .entry_day{
		font-size:80%;
		line-height:var(--base_line_height);
	}
}

/* ************************************************ 
 *	
 *	ページの検索フォーム
 *	
 * ************************************************ */
section.search_form_section{
	background:var(--gray);
	border-radius: var(--kadomaru);
	padding:1.5em;
	font-weight:600;
	border:2px solid var(--primary-color);
	font-size:90%;
}
.search_form_section input[type="text"]{
	width:100%;
}
.form_button{
	padding-top:1em;
}
/* 独自のチェックボックスを作成 */
.form_check_block label input[type="checkbox"] {
	display: none;
}
.form_check_block {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 0.5em;
}

.form_check_block label {
	display: flex;
	align-items: center;
	cursor: pointer;
	color: #555;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 3px;
	padding: 0.5em 1.5em;
	margin: 0;
	white-space: nowrap;
}

.form_check_block label::before {
	content: "";
	width: 20px;
	height: 20px;
	margin-right: 8px;
	border: 2px solid #dcdcdc;
	border-radius: 4px; /* 少しだけ丸める */
	background: #fff;
	display: inline-block;
	transition: 0.2s;
}

/* チェックが入った時のボックス */
.form_check_block label:has(input:checked){
	border:1px solid var(--primary-color);
}
.form_check_block label:has(input:checked)::before {
	background:var(--primary-color);
	border-color: var(--primary-color);
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"%3E%3Cpath fill="white" d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/%3E%3C/svg%3E'); /* 白いチェックマーク */
	background-size: 80%;
	background-repeat: no-repeat;
	background-position: center;
}
.search_form dt{
	font-size:111%;
	font-weight:700;
}

@media print, screen and ( min-width : 786px ) {
	.search_form{
		display:flex;
		align-items: stretch;
		flex-wrap: wrap;
		overflow:hidden;
	}
	.search_form dt,
	.search_form dd{
		padding:1.5em;
		margin:0;
		display: flex; /* 中身を上下中央にするため */
		align-items: center; /* 中身のテキストを上下中央に */
	}
	.search_form dt{
		flex-basis: 30%;
		border-bottom:1px dashed var(--border);
	}
	.search_form dd{
		flex-basis: 70%;
		border-bottom:1px dashed var(--border);
	}
}

@media ( max-width : 786px ) {
	section.search_form_section{
		padding:1em;
	}
	.search_form dt{
		padding:1em;
	}
	.search_form dd{
		padding:0em 1em 1em 1em;
		border-bottom:1px dashed var(--border);
	}
}
/* ************************************************ 
 *	
 *	TOP
 *	
 * ************************************************ */
.top_contents:after{
	display:block;
	content: '';
	width:100%;
	height:26px;
	position: absolute;
	top:-13px;
	left:0%;
	background:url(image/line.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
	z-index:-1;
}
@media ( max-width : 896px ) {
	.top_contents:after{
		height:16px;
		position: absolute;
		top:-8px;
	}
}
/* ------------------------------------------- */
/* = お知らせ
/* ------------------------------------------- */
.home section.top_content_block{
	padding:50px 0;
}
.home section.top_content_block .single_txt{
	padding:0;
}
.news_emergency,
.news_normal{
	box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* 軽い影 */
}
.news_emergency,
.news_normal{
	border: 2px solid #be2400;
	border-radius: 5px;
	background: #be2400;
	overflow: hidden;
}
.news_emergency h2,
.news_normal h2{
	padding: 1em;
	color: #fff;
	font-size: 120%;
	text-align: center;
	margin: 0;
}
.news_main {
	background: #fff;
	padding: 1.5em;
	line-height:200%;
	font-size:90%;
}
.news_normal{
	border:2px solid var(--primary-color);
}
.news_normal h2{
	background: var(--primary-color);
}
/* ------------------------------------------- */
/* = トップページお知らせリスト共通
/* ------------------------------------------- */
.list_news{
	border-top:1px dashed var(--border);
}
.list_news a{
	padding:1em;
	color:currentColor;
	border-bottom:1px dashed var(--border);
}
.list_news .entry_days{
	font-size:95%;
	color:#7d7d7d;
	margin:0;
}
.list_news dt .entry_cat{
	display:inline-block;
	min-width:10em;
	text-align:center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	background-color: var(--primary-color);
	color:#fff;
	border-radius: 1em;
	font-size:80%;
	top:0.1em;
	display:none;
}
.list_news dt{
	display:flex;
	justify-content: space-between;
	align-items: center;
	width:100%;
}

@media print, screen and ( min-width : 896px ) {
	.list_news a{
		display:flex;
	}
	.list_news dt{
		flex-basis: 6em;
	}
	/* 指定があれば表示 */
	.list_news dt .entry_cat{
		width:10em;
		text-align:center;
	}
	.list_news dd{
		flex: 1; /* 残りの幅を全部使う */
		min-width: 0;

	}
}
@media ( max-width : 896px ) {
	.list_news dt{
		font-size:90%;
	}
	.list_news a{
		line-height:var(--base_line_height);
	}
}
/* ------------------------------------------- */
/* = もっと見るボタン
/* ------------------------------------------- */
.more{
	padding-top:10px;
	text-align:center;
}
.more .button{
	margin:0;
}

/* layout_1------------------------------------------- */
.top_news.layout_1:before{
	display:block;
	content: '';
	background:url(image/top/blog_img.png) 100% 100% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
	position: absolute;
	bottom:20px;
	right:-5%;
	width:35%;
	height:100%;
}
@media only screen and ( max-width : 896px ) {
	section.top_news.layout_1{
		padding-bottom:100px;
	}
	.top_news.layout_1:before{
		position: absolute;
		bottom:-30px;
		right:-10%;
		width:100%;
		height:130px;
	}
}
@media print, screen and ( min-width : 896px ) {
	.top_news.layout_1 .list_news a{
		padding-left:3.5em;
	}
	.top_news.layout_1 .list_news a:hover{
		background-color:  rgba(251, 251, 247, 0.6);
		padding-left:4.5em;
	}
	.top_news.layout_1 .list_news .link_block:hover{
		opacity: 1;
	}
}
.top_news.layout_1 .list_news a:before{
	display:inline-block;
	content: '';
	width:8px;
	height:8px;
	background-color: var(--orange);
	color:#fff;
	border-radius: 50%;
	position: absolute;
	top:50%;
	left:1.5em;
	margin-top:-4px;
}
@media only screen and ( max-width : 896px ) {
	.top_news.layout_1 .list_news a{
		padding-left:2em;
	}
	.top_news.layout_1 .list_news a:before{
		position: absolute;
		left:0.5em;
	}
}


/* ------------------------------------------- */
/* = テキストバナー
/* ------------------------------------------- */
.text_banner {
 	display: flex;
	/* 横方向の中央寄せ */
	justify-content: center; 
	align-items: center;
	border: 2px solid var(--primary-color);
	gap: 30px;
	border-radius: 5px;
	color: currentColor;
	background-color: var(--gray);
	max-width: 800px;
	margin-inline: auto;
	padding: 1em 2em;
	z-index:2;
	box-shadow: var(--shadow-sm);
}
.text_banner .text {
	flex-grow: 0; 
	text-align: left;
}
.text_banner h3 {
	position: relative;
	padding-left: 20px; /* アイコン用の余白 */
	color: var(--primary-color);
	font-size: 130%;
	margin: 0;
	line-height: var(--base_line_height);
}
.text_banner p{
	text-align: justify;
}
.text_banner img {
	flex-shrink: 0;
	width: 90px;
	height: auto;
}

/* スマホ用：縦並びにして中央寄せにするのもアリです */
@media (max-width: 1000px) {
	.text_banner{
		padding: 1.5em 2em;
		font-size:100%;
		gap: 10px;
	}
	.text_banner img{
		flex-basis:60px;
		width:60px;
		height: auto;
	}
}
.text_banner h3:after {
	display: inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	position: absolute;
	top: 52%;
	transform: translateY(-50%);
	left: 0;
	transition: all .5s;
	color: var(--primary-color);
}
.text_banner p{
	font-size:80%;
	line-height:var(--base_line_height);
	padding-top:5px;
	padding-left:20px;
	color:currentColor;
}

/* ------------------------------------------- */
/* = 紹介状をお持ちの方へ
/* ------------------------------------------- */
section.top_text_banner_1_secton{
	padding:0;
}
.top_text_banner_1{
	display: flex;
	flex-direction: column; 
	justify-content: center;
	align-items: center;
	height:250px;
}
.top_text_banner{
	margin-inline: auto;
	width: 100%;
	max-width: 1100px;
}
@media print, screen and ( min-width : 896px ) {
	.top_text_banner{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 40px;
		margin-inline: auto;
	}
}
@media ( max-width : 896px ) {
	.top_text_banner li:first-child{
		margin-bottom:20px;
	}
}
/* ------------------------------------------- */
/* = 紹介状をお持ちの方へ　リンク
/* ------------------------------------------- */
section.top_text_banner_1_secton a.link_block{
	border: 2px solid var(--primary-color);
	border-radius: 5px;
	color: var(--primary-color);
	text-align:center;
	background-color:#fff;
	padding: 1.5em;
	z-index:2;
	box-shadow: var(--shadow-sm);
	transition: all .5s ease-out; 
}
section.top_text_banner_1_secton a.link_block h3{
	font-size: 120%;
	line-height: var(--base_line_height);
}
section.top_text_banner_1_secton a.link_block h3:before {
	display: inline-block;
	font-family: "Font Awesome 6 Free"; 
	font-weight: 900; 
	content: '\f0da';
	margin-right:0.5em;
}
section.top_text_banner_1_secton a.link_block:hover{
	background-color: var(--primary-color);
	opacity: 1;
	color:#fff;
}
@media ( max-width : 896px ) {
	section.top_text_banner_1_secton a.link_block h3{
		font-size: 110%;
		line-height: var(--base_line_height);
	}
	.top_text_banner li:first-child{
		margin-bottom:20px;
	}
}
/* ------------------------------------------- */
/* = 画像
/* ------------------------------------------- */
.top_text_banner_1:after,
.top_text_banner_1:before{
	z-index:0;
}
.top_text_banner_1:after{
	content: '';
	position: absolute;
	left: -10%;
	top: 0;
	bottom: -30px;
	width: 50%;
	min-height: 100%;
	background:url(image/top/top_view_03.png) 0% 100% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.top_text_banner_1:before{
	content: '';
	position: absolute;
	top: -20%;
	right: -10%;
	bottom: 0;
	min-height: 100%;
	width: 35%;
	max-width:280px;
	background:url(image/top/top_view_04.png) 100% 0% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
@media ( max-width : 896px ) {
	.top_text_banner_1:after{
		max-width: 400px;
		width:100%;
	}
	.top_text_banner_1:before{
		position: absolute;
		top: -10%;
		right: -25%;
		bottom: 0;
		width: 45%;
		max-width: 230px;
	}

}
/* ------------------------------------------- */
/* = 背景グレー
/* ------------------------------------------- */
@media screen{
	.top_info__list:before,
	.gray_bg:before{
		content: "";
		display: inline-block;
		position: absolute;
		top: 0em;
		bottom:0em;
		margin-left: calc(-50vw + 50%);
		width: 100vw;
		height: 100%;
		background:var(--gray);
		z-index:-1;
	}
	.gray_bg .text_banner{
		background-color: #fff;
	}
}
/* ------------------------------------------- */
/* = 特殊タイトル
/* ------------------------------------------- */
.title{
	text-align:center;
	margin-bottom:1em;
	letter-spacing:0.2em;
}
.title2{
	text-align:center;
	margin-bottom:1em;
	letter-spacing:0.05em;
}
h2.title,
h2.title2{
	padding-top:1.3em;
	font-size:170%;
	line-height:var(--base_line_height);
}
h3.title,
h3.title2{
	padding-top:0.8em;
	font-size:150%;
	line-height:var(--base_line_height);
}
.title:after,
.title2:after{
	display:block;
	content: '';
	width:100%;
	height:23px;
	position: absolute;
	top:0;
	left:0%;
}
.contents_css h2.title,
.contents_css h2.title2{
	padding-top:1.6em;
	font-size:160%;
	line-height:var(--base_line_height);
}
.contents_css h3.title,
.contents_css h3.title2{
	padding-top:1.6em;
	font-size:140%;
	line-height:var(--base_line_height);
}
.contents_css h2.title:after,
.contents_css h3.title:after,
.contents_css h2.title2:after,
.contents_css h3.title2:after{
	height:20px;
	opacity: 1; 
}

.contents_css h2.title:before,
.contents_css h3.title:before,
.contents_css h2.title2:before,
.contents_css h3.title2:before{
	display:none;
}

.title:after{
	background:url(image/title_bg1.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.title2:after{
	background:url(image/title_bg2.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.contents_css h2.title:after,
.contents_css h3.title:after{
	background:url(image/title_bg1.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
.contents_css h2.title2:after,
.contents_css h3.title2:after{
	background:url(image/title_bg1.svg) 50% 50% no-repeat;
	-moz-background-size:contain;
	background-size:contain;
}
@media ( max-width : 1200px ) {
	.title:after,
	.title2:after{
		height:18px;
	}
	.contents_css h2.title:after,
	.contents_css h3.title:after,
	.contents_css h2.title2:after,
	.contents_css h3.title2:after{
		height:18px;
	}
}
@media ( max-width : 896px ) {
	h2.title,
	h2.title2{
		padding-top:1.5em;
		font-size:150%;
		line-height:var(--base_line_height);
	}
	h3.title,
	h3.title2{
		padding-top:1.5em;
		font-size:130%;
		line-height:var(--base_line_height);
	}
	.title:after,
	.title2:after{
		height:18px;
	}
	.contents_css h2.title,
	.contents_css h2.title2{
		padding-top:1.6em;
		font-size:120%;
		line-height:var(--base_line_height);
	}
	.contents_css h3.title,
	.contents_css h3.title2{
		padding-top:1.6em;
		font-size:120%;
		line-height:var(--base_line_height);
	}
}
/* ------------------------------------------- */
.marutitle{
	font-size:100%;
	line-height:var(--base_line_height);
	color:#fff;
	text-align:center;
	border-radius: 2em;
	padding:0.3em 0;
	letter-spacing:0.1em;
	background:var(--primary-color);
	margin-bottom:0.8em;
}
.marutitle.green{
	background:var(--primary-color);
}
.marutitle.orange{
	background:var(--orange);
}
/* ------------------------------------------- */
/* = 妊娠率グラフ
/* ------------------------------------------- */
.graph-wrapper {
	display: flex;
	max-width: 800px;
	margin: 60px auto; /* 上に数値が出るので余白を確保 */
	height: 300px; /* グラフ本体の高さを固定 */
}

/* 左側目盛り */
.graph-y-axis {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: right;
	padding-right: 10px;
	color: #666;
	font-size: 12px;
	height: 100%; /* 300pxに合わせる */
	box-sizing: border-box;
}

.graph-y-axis span {
	line-height: 1;
	height: 0; /* 文字の高さに左右されず、点として配置 */
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

/* グラフ本体 */
.graph-main {
	flex: 1;
	display: flex;
	align-items: flex-end;
	border-left: 2px solid var(--border);
	border-bottom: 2px solid var(--border);
	position: relative;
	height: 100%;
	
	/* 背景の横線：60%を6分割（10%刻み）する場合、100% / 6 = 16.66% */
	background-image: linear-gradient(to top, #eee 1px, transparent 1px);
	background-size: 100% 16.666%; 
	background-position: bottom;
}
.graph-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	position: relative; /* ラベル配置の基準 */
}
.graph-bar-area {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.graph-bar {
	width: 35px;
	background: var(--primary-color);
	position: relative;
	transition: height 1s ease;
	border-radius: 4px 4px 0 0;
}
/* 棒の上の数値 */
.graph-val {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	font-size: 13px;
	color: var(--primary-color);
	white-space: nowrap;
}
/* ラベル位置：グラフの外（下）に配置 */
.graph-label {
	position: absolute;
	top: 100%; /* graph-mainの底辺から開始 */
	left: 0;
	right: 0;
	padding-top: 10px;
	text-align: center;
	font-size: 11px;
	color: #333;
	line-height: 1.2;
}
/* スマホ対応 */
@media (max-width: 600px) {
	.graph-label {
		font-size: 10px;
		transform: scale(0.9);
	}
	.graph-bar {
		width: 25px;
	}
}
/* ------------------------------------------- */
/* = ログイン中（管理バー表示時）のみ適用
/* ------------------------------------------- */
@media print, screen and ( min-width : 1200px ) {
	body.admin-bar.sticky_fixed #global-nav {
		top:  32px;
	}
}
/* スマホ・タブレット（管理バーが46pxになる場合があるため調整） */
@media (max-width: 1200px) and  (min-width: 782px) {
	body.admin-bar #header {
		position: fixed;
		top: 32px; /* 782px以上は32px */
	}
	body.admin-bar #global-nav,
	body.admin-bar .nav_open_side #global-nav {
		top: calc(var(--sp_header_height) + 32px);
	}
}
@media screen and (max-width: 782px) {
    #wpadminbar {
        display: none !important;
    }
    html {
        margin-top: 0 !important;
    }
    body.admin-bar {
        margin-top: 0 !important;
    }
}

/* ------------------------------------------- */
/* = 印刷用CSS
/* ------------------------------------------- */
@media print {
	#header, 
	footer, 
	#sidebar, 
	.single_navigation, 
	#searchform,
	.form_button,
	.sp-nav-toggle,
	#global-nav,
	.yoyaku{
		display: none !important;
	}

	/* 2. レイアウトを「1カラム」に強制リセット */
	body {
		width: 100% !important;
		background: #fff !important;
		font-size:13px !important;
	}
	.page_contents,
	.top_news_block,
	.contents_wrapper,
	.inner_block {
		display: block !important; /* Flexを解除 */
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}

	#content {
		width: 100% !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	img, table, canvas, svg {
		max-width: 100% !important;
		height: auto !important;
	}

	/* 4. 改ページの設定（見出しの直後で切れないように） */
	h1, h2, h3, h4, h5, h6 {
		page-break-after: avoid;
		page-break-inside: avoid;
	}
	
	table, figure {
		page-break-inside: avoid;
	}

	/* 5. 背景色や線を印刷させる設定（ブラウザ設定を上書き） */
	* {
		-webkit-print-color-adjust: exact !important;
		print-color-adjust: exact !important;
		color-adjust: exact !important;
	}

	/* 6. 隠していたアクセシビリティ用テキストがあれば表示させる（任意） */
	.screen-reader-text {
		display: none; /* 印刷でも不要ならそのままでOK */
	}

	.yoyaku{
		display: none !important;
	}
}

/* ************************************************ 
 *	
 *	SLIDE
 *	
 * ************************************************ */
:root {
	--slide-height: calc(100svh - var(--layout_1_nav_total_height));
	--slide-height2: calc(100svh - var(--layout_1_nav_height));
	--slide-height3 : calc(100svh - var(--sp_header_height));
	--slide-height4 : calc(100svh - var(--sp_header_height) - 250px);
}
section.top_slide {
	padding:0px; 
	z-index: -1;
	width: 100%;
	background:var(--gray);
	text-align: center;
}
/* ------------------------------------------- */
/* = 高さ指定
/* ------------------------------------------- */
@media screen and (min-width: 1401px) {
	section.top_slide,
	.slideshow-container,
	.scene,
	.full-img {
		height: var(--slide-height);
	}
}
/* ミニPCでは高さを広げる */
@media screen and (max-width: 1400px) and (min-width: 1201px) {
	section.top_slide,
	.slideshow-container,
	.scene,
	.full-img {
		height: var(--slide-height2);
	}
}
/* タブレットは100％にならないように */
@media ( max-width : 1200px ) and ( min-width : 796px ) {
	section.top_slide,
	.slideshow-container,
	.scene,
	.full-img {
		height: var(--slide-height3);
		max-height:500px;
	}
}
@media ( max-width : 796px ) {
	section.top_slide,
	.slideshow-container,
	.scene,
	.full-img {
		height: var(--slide-height4);
		min-height:350px;
	}
}

/* ------------------------------------------- */
/* = フォント指定
/* ------------------------------------------- */
.slideshow-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	font-size: clamp(16px, 3.4vw, 35px);
}

@media ( max-width : 768px ) {
	.slideshow-container {
		/* clamp(最小値, 推奨値, 最大値) */
		/* 例: 最小16px, 基本4.5vw, 最大24px */
		font-size: clamp(16px, 4.5vw, 24px); 
	}
}
/* ------------------------------------------- */
/* = シーン：テキスト
/* ------------------------------------------- */
.scene {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0; /* 最初は隠しておく */
	visibility: hidden;
}
.text-scene{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-inline: auto;
	max-width:900px;
	width:80%;
}
.slide-text,
.slide-img{
	display: flex;
}
.slide-text{
	z-index:3;
	word-break: keep-all; /* 単語の途中で改行させない */
	overflow-wrap: normal;
}
@media print, screen and (min-width: 768px) {
	.slide-img{
		width: 35%;
		padding:4vh 0;
	}
	.slide-text {
		width: 65%;
	}
	.slide-img img{
		width: 100%;
	}
	.scene-2 .text-scene,
	.scene-4 .text-scene{
		flex-direction: row-reverse; 
	}
	.scene-1 .slide-text,
	.scene-3 .slide-text {
		align-self: flex-end;
	}
	.scene-1 .slide-img,
	.scene-3 .slide-img {
		align-self: flex-start;
	}
	.scene-2 .slide-text {
		align-self: flex-start;
	}
	.scene-2 .slide-img,
	.scene-4 .slide-img {
		align-self: flex-end;
	}
	.scene-3 .slide-text {
		justify-content:flex-end;
	}
}
@media ( max-width : 768px ) {
	.text-scene {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%; 
		padding-block: 20px; 
		box-sizing: border-box;
		gap: 15px;
		width: 80%;

	}
	/* 2. 画像エリア：高さに上限を作る */
	.slide-img {
		width: 100%;
		/* max-height を 30vh 固定ではなく、もう少し柔軟にする */
		max-height: 25vh; 
		flex-shrink: 1; /* 枠が狭いときは画像が縮むようにする */
		display: flex;
		justify-content: center;
	}
	.slide-img img {
		height: auto;
		max-height: 100%; /* 親の25vhを超えないように */
		width: auto;
		max-width: 50%; /* 少し小さくすると余白感が生まれます */
		object-fit: contain;
	}
	.slide-text {
		width: 100%;
		height: auto;
	}
	/* シーン2と4だけ、中身の順番をコントロール */
	.scene-2 .slide-img,
	.scene-4 .slide-img {
		order: 2;
	}
	.scene-2 .slide-text,
	.scene-4 .slide-text {
		order: 1;

	}
	.scene-1 .slide-text,
	.scene-3 .slide-text {
		justify-content:flex-end;
		text-align:right;
	}
	.scene-1 .slide-img,
	.scene-3 .slide-img {
		justify-content:flex-start;
	}
	.scene-2 .slide-text,
	.scene-4 .slide-text {
		justify-content:flex-start;
	}
	.scene-2 .slide-img,
	.scene-4 .slide-img {
		justify-content:flex-end;
	}
	.scene-2 .slide-text{
		flex-direction: column;
		text-align:left;
	}
}
/* spanを縦に並べる場合--------------------------- */
.scene-1 .slide-text{
	flex-direction: column;
}
/* ------------------------------------------- */
/* = シーン：受付画像
/* ------------------------------------------- */
.full-img {
	width: 100%;
	overflow: hidden; /* はみ出た分を隠す */
}
.full-img img {
	width: 100%;
	height:100%;
	object-fit: cover; /* 枠いっぱいに広げる */
	display: block;
}
/* ------------------------------------------- */
/* = シーン：ロゴ
/* ------------------------------------------- */
.slide-logo{
	max-width:400px;
	width:60%;
}
.slide-logo img{
	width:100%;
}
/* ------------------------------------------- */
/* = よくあるご質問
/* ------------------------------------------- */
.contents_css dl.faq dt{
	margin-bottom:0.5em;
	padding:0.8em;
	padding-left:45px;
}
.contents_css dl.faq dt:after,
.contents_css dl.faq dd:after{
	content: 'Q';
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	font-weight: bold;
	font-weight:900;
	font-size:15px;
	background: var(--orange);
	width:36px;
	line-height:36px;
	text-align:center;
	position: absolute;
	top:0.75em;
	left:0;
}
.contents_css dl.faq dd:after{
	content: 'A';
	position: absolute;
	top:15px;
	left:15px;
	background:var(--primary-color);
}

.contents_css dl.faq dd{
	border:1px solid #f5f5f5;
	background:var(--gray);
	padding:20px 15px 20px 60px !important;
	margin-bottom:1em;
	border-radius: 5px;
}
