﻿@charset "UTF-8";
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: container */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}
body {
	height: 100%;
	margin: 0;
	padding: 0;
}
article {
	width: 100%;
	margin: 0 auto;
	padding: clamp(20px, 3vw, 50px) 20px;
}
article,
.breadCrumb ul,
header #header_inner {
	max-width: 1240px;
}
.lower section:nth-last-of-type(1) {
	padding-bottom: clamp(30px, 6vw, 60px);
}
.lower .container article {
	max-width: 1086px;
}
footer #footer_sitemap_box li:before,
.table_daily_program th:before,
.faq_box .question:before,
.faq_box .answer:before,
.search_box .search_text .search_btn:after,
.search_box .search_select:after {
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: var(--fa-display, inline-block);
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}
:root {
	--color_yellow: #fcd033;
	--color_yellow_l: #FFF8C0;
	--color_green: #63c8b4;
	--color_green_l: #DFEDD0;
	--color_blue: #71b7eb;
	--color_blue_l: #E0ECF8;
	--color_orange: #feb080;
	--color_orange_l: #ffecc3;
	--color_red: #ff9191;
	--color_red_l: #FFDFDF;
}
/*--------------------------------------- header */
header {
	position: fixed;
	background-color: transparent;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background: rgb(255 255 255 / 90%);
	backdrop-filter: blur(20px);
	transition: background-color 0.2s;
}
header #header_inner {
	width: 100%;
	margin: 0 auto;
	padding: 10px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.body_common header #header_inner {
	background-color: transparent;
	display: flex;
}
header #header_logo {
	flex-basis: 300px;
	/* ロゴの幅 */
	margin: 0;
	padding: 0;
	line-height: 0;
	vertical-align: middle;
}
header #header_contents {}
header #header_logo a {
	display: inline-block;
	padding: 10px 0;
}
header #header_logo img {
	width: 100%;
	vertical-align: middle;
}
@media screen and (min-width:1001px), print {

}
@media screen and (max-width:1000px) {
	header #header_inner {
		padding: 0 60px 0 10px;
		/* sp_menu幅確保 */
	}
}
/* header_contents */
#header_menu_top {
	text-align: right;
}
#header_menu_top ul {
	margin: 0;
	padding: 0;
	line-height: 1;
	list-style: none;
}
#header_menu_top li {
	display: inline-block;
	vertical-align: middle;
}
#header_menu_top li a {
	color: #ffffff;
	background-color: #B59C83;
	display: block;
	padding: 6px clamp(8px, 1.5vw, 19px);
	text-decoration: none;
}
#header_menu_lower {
	padding: 20px 0 10px;
}
#header_menu_lower ul {
	margin: 0;
	padding: 0;
	line-height: 1;
	display: flex;
	list-style: none;
	gap: clamp(15px, 1.5vw, 30px);
}
#header_menu_lower li {}
#header_menu_lower li a {
	text-decoration: none;
}
#header_menu_lower li a {
	transition: color 0.2s;
}
@media screen and (max-width:1000px) {
	#header_menu_lower {
		display: none;
	}
}
/*--------------------------------------- sp_menu */

.sp_menu {
	overflow-y: scroll;
	max-height: 100%;
}
@media screen and (min-width:1001px), print {
	.sp_menu_btn, .sp_menu {
		display: none;
		/*display: inline-block;
		box-sizing: border-box;*/
	}
}
@media screen and (max-width:1000px) {
	.sp_menu_btn, .sp_menu_btn span {
		display: inline-block;
		box-sizing: border-box;
	}
}
.sp_menu_btn {
	position: relative;
	width: 60px;
	height: 60px;
	padding: 0;
	background-image: url('./img/icon_menu_btn_open.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40px;
	cursor: pointer;
}
.sp_menu_btn.close {
	background-image: url('./img/icon_menu_btn_close.png');
}
.sp_menu_btn {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1002;
}
.sp_menu {
	position: fixed;
	z-index: 1000;
	right: -100%;
	top: 0;
	width: 380px;
	max-width: 100%;
	height: 100%;
	padding: 60px 0px;
	background-color: #f3f2ec;
	box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.2);
	overflow-y: auto;
	opacity: 0;
	transition: right 0.2s;
}
@media screen and (max-width:480px) {
	.sp_menu {
		width: 100%;
	}
}
.sp_menu.menu_fixed {
	right: 0;
	opacity: 10;
}
.sp_menu_bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	display: none;
}
.sp_menu_bg.bg_fixed {
	display: block;
	background-color: transparent;
}
#sp_menu_logo {
	padding: 10px 60px 10px 10px;
}
.sp_menu_navi {
	padding: 20px 15px;
}
.sp_menu.menu_fixed {
	right: 0;
	opacity: 10;
}
.sp_menu_bg {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	display: none;
}
.sp_menu_bg.bg_fixed {
	display: block;
	background-color: transparent;
}
.sp_menu_navi ul {
	margin: 0;
	padding: 0;
	line-height: 1;
	list-style: none;
}
.sp_menu_navi ul li {
	border-top: 1px solid #eaeaea;
}
.sp_menu_navi ul li:first-child {
	border-top: none;
}
.sp_menu_navi ul li a {
	text-decoration: none;
	display: block;
	padding: 20px 0;
}
/*--------------------------------------- page_top */
#page_top {
	padding: 0;
	margin: 0;
	z-index: 100;
}
#page_top span {
	display: block;
	background-image: url(./img/pgtp.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width:clamp(90px, 8vw, 150px);
	height:clamp(90px, 8vw, 150px);
}
#page_top a {
	display: block;
}
#page_top a:hover {
	animation: fuwafuwa 1.1s linear 0s infinite alternate;
}

@keyframes korokoro {
	0%   { transform: translate(0%, 0%); }
	5%   { transform: translate(10%, 0%) rotate(10deg); }
	25%  { transform: translate(20%, 0%) rotate(20deg); }
	30%  { transform: translate(-10%, 0%) rotate(-10deg); }
	35%  { transform: translate(-15%, 0%) rotate(-15deg); }
	45%  { transform: translate(10%, 0%) rotate(10deg); }
	50%  { transform: translate(15%, 0%) rotate(15deg); }
	60%  { transform: translate(-5%, 0%) rotate(-5deg); }
	65%  { transform: translate(-7%, 0%) rotate(-7deg); }
	75%  { transform: translate(0%, 0%) rotate(0deg); }
	100% { transform: translate(0%, 0%) rotate(0deg); }
}
@keyframes fuwafuwa {
	0%   { transform: translate(0%, 0%); }
	10%  { transform: translate(0%, -5%); }
	20%  { transform: translate(0%, -10%); }
	30%  { transform: translate(0%, -3%); }
	40%  { transform: translate(0%, 0%); }
	50%  { transform: translate(0%, -5%); }
	60%  { transform: translate(0%, -10%); }
	70%  { transform: translate(0%, -3%); }
	100% { transform: translate(0%, 0%); }
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
		transform: scale(1.0);
	}
	50%, 70% {
		transform: scale(0.95);
	}
}
@keyframes ponyon {
	0% {
		-webkit-transform: scale(1, 1) translate(0%, 0%);
		transform: scale(1, 1) translate(0%, 0%)
	}

	15% {
		-webkit-transform: scale(0.9, 0.9) translate(0%, 5%);
		transform: scale(0.9, 0.9) translate(0%, 5%)
	}

	30% {
		-webkit-transform: scale(1.3, 0.8) translate(0%, 10%);
		transform: scale(1.3, 0.8) translate(0%, 10%)
	}

	50% {
		-webkit-transform: scale(0.8, 1.3) translate(0%, -10%);
		transform: scale(0.8, 1.3) translate(0%, -10%)
	}

	70% {
		-webkit-transform: scale(1.1, 0.9) translate(0%, 5%);
		transform: scale(1.1, 0.9) translate(0%, 5%)
	}

	100% {
		-webkit-transform: scale(1, 1) translate(0%, 0%);
		transform: scale(1, 1) translate(0%, 0%)
	}
}
/*--------------------------------------- contact_list */
.contact_list {

}
.contact_list article {
	padding-top: 0;
}
.contact_list_box {
	background-color: #fff;
	border-radius: clamp(10px, 0.5vw, 30px);
	padding: clamp(20px, 2vw, 30px) 20px;
}
.contact_list .columnBox {
	justify-content: center;
	text-align: center;
}
.contact_list .contact_box {
	color: #fff;
	line-height: 1.4;
	text-align: center;
	padding: clamp(50px, 4vw, 80px) 20px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin: 0 auto;
}
.contact_list span {
	display: inline-block;
}
.contact_list .contact_box .title {
	font-size: clamp(16px, 2vw, 24px);
	padding-bottom: 10px;
	display: block;
}
.contact_list .contact_box_1 {
	background-image: url(./img/btn_bg-01.jpg);
}
.contact_list .text_box {
	position: relative;
	padding-left: clamp(70px, 7vw, 100px);
	max-width: 750px;
	margin: 0 auto;
}
.contact_list .text_box:before {
	content:"";
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(./img/icon_contact.png);
	background-size: 100%;
	background-repeat: no-repeat;
	width: clamp(60px, 7vw, 90px);
	height: clamp(60px, 7vw, 90px);
}
.contact_list .text_box:after {
	content:"";
}
.contact_list .text {
	background-color: #fefaf4;
	padding: 20px;
	border-radius: clamp(10px, 0.5vw, 30px);
}
.contact_list .text_add {
	font-size: 0.9em;
}
.contact_list .contact_btn {
	font-size: clamp(18px, 2vw, 26px);
	padding-top: 20px;
	display: block;
}
.contact_list .contact_btn a {
	font-weight: bold;
	line-height: 1.2;
	width: clamp(280px, 28vw, 320px);
	display: inline-block;
	padding: clamp(10px, 1vw, 15px) clamp(20px, 2vw, 30px);
	backdrop-filter: blur(20px);
	border-radius: 100em;
	border: 2px solid #dad9d9;
	text-decoration: none;
	transition: background-color 0.2s;
}
.contact_list .contact_btn_white a {
	color: #333;
	background-color: #ffffff;
}
.contact_list .contact_btn_white a:hover{
	background-color: #f0f0f0;
}
.contact_list .contact_btn_white i{
	color: #27B3C8;
}
.contact_list .contact_btn_blue a {
	color: #fff;
	background-color: #27B3C8;
}
.contact_list .contact_btn_blue a:hover{
	background-color: #259fb2;
}
.contact_list .contact_btn_blue i{
	color: rgb(255 255 255 / 70%);
}
@media screen and (min-width:720px) {
	.contact_list .columnBox .column {

	}
}
@media screen and (max-width:719px) {
	.contact_list .contact_box_2 {
		margin-top: 12px;
	}
}
/*--------------------------------------- footer */
footer {
	max-width: 100%;
	/* フッタ幅100% */
	/* max-width: 1280px; フッタ最大幅1280px */
}

.footerBox_1 {
	background-color: #ffffff;
}
footer #footer_sitemap_box {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
footer #footer_logo {

}
footer #footer_logo img {
	width: 100%;
	max-width: 210px;
}
footer #footer_sitemap_box {
	flex-basis: 800px;
}
footer #footer_sitemap_box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
}
footer #footer_sitemap_box ul li {
	padding-top: 20px;
}
footer #footer_sitemap_box ul li ul {
	padding-top: 10px;
}
footer #footer_sitemap_box ul li ul li {
	padding: 10px 20px 5px;
	position: relative;
	font-size: 14px;
}

footer #footer_sitemap_box ul li ul li:before {
	content:"\f105";
	left: 5px;
	top: 10px;
	margin-top: 0.25em;
	position: absolute;
	font-size: 0.625em;
}
footer #footer_sitemap_box a {
	text-decoration: none;
}
footer .footerBox_2 {

}
.footerBox_2 article {

}
#footer_info {
	font-size: 14px;
}
#footer_info .organization_name {
	font-size: clamp(16px, 2vw, 21px);
}
.bnr_list ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2vw;
	padding: 0;
	margin: 0;
	list-style: none;
}
.bnr_list li {

}
footer #copyright {
	font-size: 0.7em;
	padding: 20px 0;
	text-align: center;
}
@media screen and (min-width:780px) {
	footer #footer_sitemap_box ul {
		display: flex;
		flex-wrap: wrap;
		gap: 2vw
	}
	footer #footer_sitemap_box ul li ul {
		display: block;
	}
}
@media screen and (max-width:779px) {
	.footerBox_1 article{
		padding: 20px 20px;
	}
	footer #footer_sitemap_box {
		display: block;
	}
	footer #footer_logo {
		padding: 0 20px 20px;
		margin: 0 auto;
		text-align: center;
	}
}
/*--------------------------------------- columnBox */
@media screen and (min-width:720px), print {
	.columnBox {
		display: flex;
		gap: 2vw;
		width: 100%;
	}
	.align_center {
		align-items: center;
	}
	.columnBox .column {

	}
	.w20 {
		flex-basis: 20%;
	}
	.w30 {
		flex-basis: 30%;
	}
	.w40 {
		flex-basis: 40%;
	}
	.w50 {
		flex-basis: 50%;
	}
	.w60 {
		flex-basis: 60%;
	}
	.w70 {
		flex-basis: 60%;
	}
}
@media screen and (max-width:719px) {
	.columnBox .column {
		padding-bottom: 20px;
	}
	.columnBox .column:last-child {
		padding-bottom: 0;
	}
}
/*--------------------------------------- sideContaints */

#side {
	padding: 10px 20px 30px;
	background-color: rgb(255 255 255 / 80%);
	border-radius: clamp(10px, 0.5vw, 30px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	position: -webkit-sticky;
	/*Safari*/
	position: sticky;
	top: 100px;
}
#side .menu_title {
	font-weight: bold;
	font-size: 1.1em;
	padding: 1em 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
}
#side ul {
	list-style: none;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
#side ul li {
	border-top: 1px solid #dddddd;
	position: relative;
}
#side ul li:first-child {
	border-top: none;
}
#side li a {
	color: #333;
	font-size: 0.95em;
	text-decoration: none;
	display: block;
	padding: 0.5em 0.5em 0.5em 2em;
	transition: color 0.2s, background-position 0.2s;
	background-image: url(img/icon_arrow.png);
	background-repeat: no-repeat;
	background-position: 0.5em center;
}
#side li a:hover {
	color: #777;
	background-position: 0.8em center;
}
#side li.current a {
	background-color: #f7f0e9;
}
@media screen and (min-width:720px) {
	.columnBox .column_main {
		flex-basis: 750px;
	}
	.columnBox .column_side {
		flex-basis: calc( 1046px - 750px - 2vw);
	}
}
@media screen and (max-width: 719px) {
	.columnBox .column_side {
		padding: 1em 0 0;
		clear: both;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: common_setting */

img {
	max-width: 100%;
	height: auto !important;
	width/***/
	: auto;
}
table td img {
	max-width: 100%;
	height: auto !important;
}
iframe {
	max-width: 100%;
}
.google_map {
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
}
.google_map iframe {
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}
.containerInner_default ol li {
	margin-top: 1em;
}
.text_center{
	text-align: center;
}
@media screen and (min-width:720px) {
	.only_pc {
		display: block!important;
	}
	.only_sp {
		display: none!important;
	}
}
@media screen and (max-width:719px) {
	.only_pc {
		display: none!important;
	}
	.only_sp {
		display: block!important;
	}
}
/*--------------------------------------- font */

html {
	font-size: 62.5%;
}
body {
	font-family: 'Zen Maru Gothic', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	color: #42413d;
	font-size: clamp(14px, 2vw, 16px);
	line-height: 2;
	letter-spacing: 0.05rem;
	background-color: #fefaf4;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	background-image: url(./img/bg_cat.png);
	background-size: 100% auto;
}
@media screen and (max-width:719px) {
	html, body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
	body {
		line-height: 1.6;
	}
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
	line-height: 1.4;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {

}
.lower h1 {
	font-weight: bold;
	padding: 0.5em 0;
	margin: 0 auto;
	text-align: center;
	font-size: clamp(20px, 3vw, 48px);
}
h2 {
	font-weight: bold;
	padding: 0.5em 0;
	margin: 0 auto;
	font-size: clamp(20px, 2vw, 32px);
	position: relative;
}
h2:after {
	content: "";
	display: block;
	margin-top: 1vw;
	width: clamp(45px, 5vw, 120px);
	border-bottom: clamp(1px, 1vw, 6px) dotted #b59c83;
}
.columnBox .column h2:first-child {
	padding-top: 0;
}
/* h:変更した場合はstyle_editor.cssにも反映すること */

h3 {
	font-size: clamp(16px, 2vw, 24px);
}
h4 {
	font-size: clamp(15px, 2vw,21px);
}
h5 {
	font-size: 1.1em;
}
h6 {
	font-size: 1em;
}
.lower h3 {
	clear: both;
	line-height: 1.4;
	margin-bottom: 1em;
	font-weight: bold;
	padding: 2em 20px 2em 2em;
	position: relative;
}
.lower h3:before {
	content:"";
	display: block;
	width: 4em;
	height: 4em;
	position: absolute;
	z-index: -1;
	top: 50%;
	left: 0;
	margin-top: -2em;
	border-radius: 100%;
	background-color: #ffffff;
}
h4 {
	clear: both;
	font-weight: bold;
	line-height: 1.5;
	margin: 1em 0;
	padding: 0.5em 15px;
	border-left: 7px solid #B59C83;
	background-color: #ffffff;
}
h5 {
	clear: both;
	font-weight: bold;
	margin: 0.5em 0 1em;
	line-height: 1.5;
	padding: 5px 12px;
	border-top: 2px solid #B59C83;
	border-bottom: 1px solid #ddd;
	background-color: #ffffff;
}
h6 {
	clear: both;
	line-height: 1.5;
	font-weight: bold;
	margin: 0.5em 0 1em;
}
.bold {
	font-weight: bold;
}
/*--------------------------------------- color */

a {
	color: #42413d;
}
a:hover {
	color: #333333;
}
a:hover img {
	opacity: 0.8;
}
.white {
	color: #FFFFFF;
}
.black {
	color: #000000;
}
.red {
	color: #d2202f;
}
.blue {
	color: #40559F;
}
.bg_white {
	background-color: #FFFFFF;
}
.bg_black {
	background-color: #000000;
}
.bg_lightgrey {
	background-color: #F9F9F9;
}
.bg_grey {
	background-color: #EFEFEF;
}
.bg_blue {
	background-color: #40559F;
	color: #FFFFFF;
}
.bg_lightblue {
	background-color: #F3F7F9;
}
.bg_red {
	background-color: #d2202f;
	color: #FFFFFF;
}
.bg_lightred {
	background-color: #FFD9DE;
}
.bg_pink {
	background-color: #f7d8ea;
}
.bg_yellow {
	background-color: #FFF599;
}
.bg_green {
	background-color: #60D795;
	color: #FFFFFF;
}
.bg_lightgreen {
	background-color: #C5FFDF;
}
.bg_cream {
	background-color: #FFFFFA;
}
.bg_gradient_1 {
	color: #ffffff;
	background: #B59C83;
	background: -moz-linear-gradient(-45deg, #B59C83 0%, #00a0e8 80%, #00a0e8 100%);
	background: -webkit-linear-gradient(-45deg, #B59C83 0%, #00a0e8 80%, #00a0e8 100%);
	background: linear-gradient(135deg, #B59C83 0%, #00a0e8 80%, #00a0e8 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B59C83', endColorstr='#00a0e8', GradientType=1);
}
.bg_gradient_1 a {
	color: #ffffff;
}
/*--------------------------------------- btn */

.btn,
.editor-style-btn1 {
	text-align: center;
	display: block;
	padding: 0.5em 0;
}
.btn a,
.editor-style-btn1 a {
	padding: 8px 20px;
	padding-right: 30px;
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.5;
	background-color: #ffffff;
	border: 2px solid #dad9d9;
	border-radius: 100em;
	text-decoration: none;
	display: inline-block;
	transition: color 0.2s,background-color -.2s;
}
.btn a:hover,
.editor-style-btn1 a:hover {
	color: hsl(230deg 5% 22% / 70%);
	background-color: rgb(255 255 255 / 80%);
}
.btn_arrow a {
	background-image: url(img/icon_arrow.png);
	background-repeat: no-repeat;
	background-position: center right 10px;
	padding: 8px 30px;
	min-width: 200px;
	transition: background-position 0.2s,color 0.2s,background-color -.2s;
}
.btn_arrow a:hover {
	background-position: center right 15px;
}
.btn_size_s a {
	width: 100%;
	max-width: 180px;
}
.btn_size_m a {
	width: 100%;
	max-width: 375px;
}
/* CMSエディター：ボタン */
.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3), -1px -1px 5px rgba(0, 0, 0, 0.3);
}
/*--------------------------------------- table */

table {
	border-collapse: collapse;
}
table th, table td {
	border: 1px solid #eaeaea;
}
table th {
	text-align: left;
}
table[border="0"], table[border="0"] th, table[border="0"] td {
	border: none;
}
table[border="1"], table[border="1"] th, table[border="1"] td {
	border: none;
	border-top: 1px solid #eaeaea;
}
table[border="1"] {
	border-bottom: 1px solid #eaeaea;
}
table[border="1"] th table[border="0"] td, table[border="1"] td table[border="0"] td {
	border: none;
}
@media screen and (min-width: 720px), print {
	.table_style_1 tr:nth-child(2n+1) td {
		background-color: #eeeeee;
	}
}
@media screen and (max-width:719px) {
	.sp_table td, .sp_table th, .sp_table tr {
		display: block;
		width: 100%!important;
	}
}
table.responsive, table.responsive2c {
	border-collapse: collapse;
	font-size: 0.95em;
}
table.responsive[border="0"], table.responsive[border="0"] th, table.responsive[border="0"] td, table.responsive2c[border="0"], table.responsive2c[border="0"] th, table.responsive2c[border="0"] td {
	border: none;
}
@media screen and (max-width: 719px) {
	table.responsive, table.responsive2c {
		max-width: 100%;
	}
	table.responsive td, table.responsive th {
		display: block;
		width: 100% !important;
	}
	table.responsive2c td, table.responsive2c th {
		float: left;
		width: 50% !important;
	}
	table.responsive td img, table.responsive2c td img {
		max-width: 100%;
		height: auto;
	}
	.scroll_box {
		max-width: 100%;
		white-space: nowrap;
		overflow-x: auto;
		position: relative;
		border-right: 1px solid #eaeaea;
		box-shadow: 0px 0px 0px 1px #eaeaea inset;
	}
	.scroll_box:before {
		content: "";
		padding: clamp(40px, 3vw, 60px);
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		background-image: url('./img/img_scroll.png');
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-color: rgb(74 140 108 / 70%);
		border-radius: 10px;
		transition: opacity 0.5s;
		opacity: 1;
	}
	.scroll_box.touch:before {
		opacity: 0;
	}
}
table.responsive[border="0"] td table:not([border="0"]) th, table.responsive[border="0"] td table:not([border="0"]) td, table.responsive2c[border="0"] td table:not([border="0"]) th, table.responsive2c[border="0"] td table:not([border="0"]) td {
	border: 1px solid #dddddd;
}
@media screen and (max-width: 480px) {
	.sp_table[border="0"] td table:not([border="0"]) th, .sp_table[border="0"] td table:not([border="0"]) td {
		display: table-cell;
		width: auto !important;
		border-left: none;
		border-top: none;
	}
	table.responsive2c td, table.responsive2c th {
		width: 100% !important;
	}
}
/*--------------------------------------- list_text */

.list_text, .list_text li {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}
.list_text {
	padding: clamp(20px, 2vw, 30px) 0;
}
.list_text li a {
	text-decoration: none;
	display: block;
	position: relative;
}
.list_text li .listBox {
	width: 100%;
	border-bottom: 1px solid #dad9d9;
}
.list_text li a:before {
	content: "";
	background-color: #fff;
	background-image: url(img/icon_arrow.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	width: clamp(24px, 3vw, 40px);
	height: clamp(24px, 3vw, 40px);
	border: 2px solid #dad9d9;
	border-radius: 100%;
	top: 50%;
	right: 0;
	margin-top: clamp(-20px, -2vw, -15px);
	transition: right 0.2s,background-color 0.2s;
}
.list_text li a:hover:before {
	right: 5px;
	background-color: rgb(255 255 255 / 80%);
}
.list_text li a .listBox {
	padding-right: 60px;
}
.list_text li:first-child .listBox {
	border-top: 1px solid #dad9d9;
}
.list_text li .date {
	font-size: 0.9em;
	padding-right: 10px;
}
.list_text li .category {
	font-size: 0.9em;
}
.list_text li .category span {
	line-height: 1.4;
	margin-top: 5px;
	padding: 2px 10px;
	text-align: center;
	display: inline-block;
}
.list_text li .category_1 span {
	background-color: #f3efe6;
}
.list_text li .category_2 span {
	background-color: #d9eaf6;
}
@media screen and (min-width: 481px), print {
	.list_text li .listBox {
		display: flex;
		justify-content: space-between;
		padding: 20px 0;
	}
	.list_text li .date {
		flex-basis: 7em;
	}
	.list_text li .category  {
		flex-basis: 7em;
	}
	.list_text li .text {
		flex-basis: calc( 100% - 12em );
	}
}
@media screen and (max-width: 480px) {
	.list_text li .listBox {
		padding: 10px 0;
		display: block;
	}
	.list_text li .listBox .text {
		padding-top: 12px;
		display: block;
	}
}
/*--------------------------------------- list_thumbnail */

.list_thumbnail {
	width: 100%;
	padding: 1em 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.list_thumbnail li {
	padding: 0;
	margin: 0;
	border-radius: clamp(10px, 0.5vw, 30px);
	background-color: #fff;
}
.list_thumbnail li a {
	display: block;
	text-decoration: none;
}
.list_thumbnail .listBox {
	display: block;
	position: relative;
}
.list_thumbnail .thumbnail {
	display: block;
	overflow: hidden;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	border: 2px solid transparent;
	border-bottom: none;
	border-radius: clamp(10px, 0.5vw, 30px) clamp(10px, 0.5vw, 30px) 0 0;
}
.list_thumbnail .thumbnail span {
	padding: 30% 0;
	aspect-ratio: 3/2;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.5s ease-out;
}
.list_thumbnail li a:hover .thumbnail span {
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail .icon {
	position: relative;
	margin-top: clamp(-40px, -2vw, -20px);
}
.list_thumbnail .icon span {
	width: clamp(40px, 4vw, 80px);
	height: clamp(40px, 4vw, 80px);
	display: inline-block;
	background-size: 90% auto;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #fff;
	border-radius: 100%;
}
.list_thumbnail .dateBox {
	display: block;
	font-size: 0.9em;
	padding: 0 clamp(10px, 2vw, 20px);
}
.list_thumbnail .date, .list_thumbnail .new {
	margin: 5px;
	display: inline-block;
	vertical-align: middle;
}
.list_thumbnail .date {
	padding: 0.1em 0;
}
.list_thumbnail .title {
	display: block;
	padding: clamp(10px, 2vw, 20px);
	font-size: clamp(14px, 2vw, 18px);
	font-weight: bold;
	line-height: 1.4;
}
.list_thumbnail .text {
	display: block;
	font-size: 0.9em;
}
@media screen and (min-width: 1200px), print {
	.list_thumbnailC6 li {
		width: calc( calc(100% - 60px) / 6);
	}
}
@media screen and (min-width: 480px), print {
	.list_thumbnail {
		gap: 20px;
	}
	.list_thumbnailC2 li {
		width: calc( calc(100% - 20px) / 2);
	}
	.list_thumbnailC3 li {
		width: calc( calc(100% - 40px) / 3);
	}
	.list_thumbnailC4 li {
		width: calc( calc(100% - 60px) / 4);
	}
	.list_thumbnailC5 li {
		width: calc( calc(100% - 80px) / 5);
	}
}
@media screen and (min-width: 480px) and (max-width: 1199px) {
	.list_thumbnailC6 li {
		width: calc( calc(100% - 40px) / 3);
	}
}
@media screen and (min-width: 780px), print {
	.list_thumbnail .title_box {
		display: flex;
	}
	.list_thumbnail .icon {
		text-align: right;
		padding-left: clamp(10px, 2vw, 20px);
	}
}
@media screen and (max-width: 779px) {
	.list_thumbnail .title_box {
	}
	.list_thumbnail .icon {
		display: block;
		text-align: center;
		
	}
	.column_thumbnail {
		width: 35.2%;
	}
}
@media screen and (min-width: 480px) and (max-width: 779px) {
	.list_thumbnail {
		gap: 2em;
	}
	.list_thumbnail li {
		width: calc( calc(100% - 2em) / 2);
	}
}
@media screen and (max-width: 479px) {
	.list_thumbnail {
		gap: 1em;
	}
	.list_thumbnail li	{
		width: calc( calc(100% - 1em) / 2);
	}
}
.list_thumbnailC1 li {
	width: 100%;
}
/*--------------------------------------- fadein */
/* fadein */
.fadein {
	opacity: 0.1;
	transform: translate(0, 3vw);
	transition: transform 1200ms;
	-moz-transition-delay: 200ms;
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	-ms-transition-delay: 200ms;
	transition: opacity 1s, transform 1s;
}
.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}
.left-to-right {
	opacity: 0.1;
	transform: translateX(-3vw);
	transition: opacity 1s, transform 1s;
}
.left-to-right.scrollin {
	opacity: 1;
	transform: translate(0);
}
.right-to-left {
	opacity: 0.05;
	transform: translateX(3vw);
	transition: opacity 1s, transform 1s;
}
.right-to-left.scrollin {
	opacity: 1;
	transform: translate(0);
}
.down-to-top {
	opacity: 0.1;
	transform: translateY(3vw);
	transition: opacity 1s, transform 1s;
}
.down-to-top.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.top-to-down {
	opacity: 0.1;
	transform: translateY(-3vw);
	transition: opacity 1s, transform 1s;
}
.top-to-down.scrollin {
	opacity: 1;
	transform: translateY(0);
}
.wipe-animation {
	background-color: #ffffff;
	overflow: hidden;
	position: relative;
}
.wipe-animation:before {
	content: "";
	display: block;
	position: absolute;
	right:0;
	top:0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
}
.wipe-animation.scrollin:before {
	animation: wipe 1s forwards;
}
@keyframes wipe {
	from {
		width: 100%;
	}
	to {
		width: 0;
	}
}
/*--------------------------------------- breadCrumb */

.breadCrumb {
	font-size: 0.9em;
}
.breadCrumb ul {
	padding: 0.5em 20px;
	margin: 0 auto;
}
.breadCrumb li {
	display: inline;
}
.breadCrumb li a {
	background: transparent url(img/icon_arrow.png) no-repeat scroll right center;
	margin-right: 2px;
	padding-right: 16px;
	text-decoration: none;
}
/*--------------------------------------- pagetop link */

#pgtp {
	border-bottom: solid 1px #b5c3df;
}
#pgtp p {
	text-align: right;
	padding: 20px 0 16px;
}
/*--------------------------------------- pager */

.pager_box {
	clear: both;
	text-align: center;
	margin-top: 15px;
}
.pager_box .pager {
	width: 2.5em;
	display: inline-block;
	border: 1px solid #BFBFBE;
	border-radius: 3px;
}
.pager_box .pager a {
	display: block;
	width: 100%;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.pager_box .pager a:link, .pager_box .pager a:visited {
	color: #333333;
	text-decoration: none;
}
.pager_box .pager a:hover, .pager_box .pager a:active {
	background: #F1F1F1;
	text-decoration: none;
}
.pager_box .pager_current {
	background: #F1F1F1;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.pager_box .pager_dot {
	width: 1.5em;
	display: inline-block;
}
.pager_box .pager_space {
	width: 1em;
	display: inline-block;
	padding-left: 0.2em;
	padding-right: 0.2em;
}
.pager_box .pager_first {
	display: inline-block;
}
.pager_box .pager_last {
	display: inline-block;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: cms common */

.invisible {
	display: none;
}
a.tooltiplink {
	display: inline-block;
	margin: 1px 3px 0;
	padding: 1px 3px 0;
	border: 2px solid #C7C7C7;
	background-color: #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
	text-decoration: none;
	color: #FFFFFF;
	font-size: 1.0em;
	font-weight: bold;
}
#input-table a.tooltiplink:link, #input-table a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
#input-table a.tooltiplink:hover, #input-table a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}
a.tooltiplink:link, a.tooltiplink:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
}
a.tooltiplink:hover, a.tooltiplink:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: none;
}
p.tooltipbox {
	position: absolute;
	top: 100px;
	left: 20px;
	font-size: 1.0em;
	margin: 0;
	padding: 10px;
	min-width: 100px;
	min-height: 30px;
	color: #FFFFFF;
	background: #075698;
	border: 2px solid #075698;
	border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table p.tooltipbox a:link, #input-table p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}
#input-table p.tooltipbox a:hover, #input-table p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}
p.tooltipbox a:link, p.tooltipbox a:visited {
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}
p.tooltipbox a:hover, p.tooltipbox a:active {
	font-weight: bold;
	color: #DDDDDD;
	text-decoration: underline;
}
/* comment form */

.comment_box {
	width: 100%;
	margin: 0 0 15px;
	padding: 0;
	border-collapse: collapse;
	border: solid 1px #cccccc;
	background: #eeeeee;
}
.comment_box th, .comment_box td {
	padding: 10px;
}
.comment_id {
	width: 10%;
	text-align: left;
	white-space: nowrap;
}
.comment_name {
	width: 70%;
	text-align: left;
}
.comment_regist {
	width: 20%;
	text-align: right;
	vertical-align: bottom;
	white-space: nowrap;
	font-size: 0.8em;
	color: #aaaaaa;
}
.comment_box td {
	padding-top: 0;
}
.comment_text {
	padding: 15px;
	background: #ffffff;
}
.icon_comment {
	text-align: right;
}
.icon_comment a {
	padding-left: 30px;
	background: url(./icon_comment.gif) no-repeat left center;
}
/* twitter widget */

#twtr-hd h3, #twtr-hd h4, .twtr-widget h3, .twtr-widget h4, .twtr-widget p, .twtr-widget-profile h3, .twtr-widget-profile h4 {
	clear: none;
	margin: auto;
	padding: auto;
	font-size: auto;
	color: auto;
	border: none;
	background-image: none;
}
/* twitter tweet button */

iframe.twitter-share-button {
	width: 115px!important;
}

/* scroll-box */

.scroll-box {
	font-size: 0.9em;
	width: 96%;
	height: 200px;
	border: 1px solid #cccccc;
	overflow: auto;
	background-color: #ffffff;
}
.scroll-box .content {
	width: 100%;
	height: 100%;
	padding: 10px;
}
/*--------------------------------------- cms form */
.form_flow {
	margin: 20px 0;
	padding: 0;
	list-style: none;
	line-height: 1.4;
}
.form_flow li {
	position: relative;
}
.form_flow li span {
	background-color: #fff;
	border: 2px solid #ddd;
	border-radius: 100em;
	padding: 5px clamp(10px, 1vw, 20px) ;
	width: 100%;
	display: block;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
}
.form_flow li {

}
.form_flow li.current span {
	color: #fff;
	background-color: #B59C83;
	border: 2px solid #B59C83;
}

@media screen and (min-width:501px), print {
	.form_flow {
		display: flex;
		justify-content: center;
		gap: 10px;
	}
	.form_flow li:before {
		content: "";
		display:block;
		width:10px;
		border-bottom: 4px solid #ddd;
		position: absolute;
		top: 50%;
		left: -10px;
		margin-top: -2px;
	}
	.form_flow li:first-child:before {
		display: none;
	}
}
@media screen and (max-width:500px) {
	.form_flow li {
		padding-bottom: 10px;
	}
	.form_flow li:before {
		content: "";
		display:block;
		height: 10px;
		border-left: 4px solid #ddd;
		position: absolute;
		top: -10px;
		left: 50%;
		margin-left: -2px;
	}
	.form_flow li:first-child:before {
		display: none;
	}
}
.contact_msg {
	font-size: 0.9em;
	margin: 0 auto;
}
.contact_msg_complete {
	padding: 40px;
	box-shadow: inset 0 0 0 2px #f0f0f0;
}
.contact_msg .editor-style-btn1 {
	float: right;
}
.contact_msg .editor-style-btn1:after {
	content: "";
	display: block;
	width: 100%;
	clear: both;
}
.error_box {
	font-size: 0.95em;
	margin: 0 auto;
	background-color: #fff7f6;
	box-shadow: 1px 0px #e5e5e5, -1px 0px #e5e5e5;
	padding: 20px 5%;
}
.error_box .error {
	color: #e72719;
	font-weight: bold;
	padding-bottom: 10px;
	border-bottom: 2px solid #e72719;
}
.error_box .error_msg {
	margin-top: 20px;
}
.contact form {
	text-align: center;
}
#input-table {
	display: block;
	width: 100%;
	max-width: 100%;
}
#input-table table {
	width: 100%;
	padding: 5px;
	margin: 0 auto 20px;
	border: none;
	box-shadow: inset 0 0 0 2px #f0f0f0;
	background-color: #ffffff;
}
#input-table table li {
	margin-left: 0;
}
#input-table table th {
	width: 35%;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgba(0, 0, 0, 0);
	text-align: left;
	border: none;
	position: relative;
	vertical-align: top;
}
#input-table table td {
	padding-left: 10px;
}
#input-table table tr {
	transition: background-color linear 0.2s;
	border-top: 1px solid #ccc;
}
#input-table table tr:hover {
	background-color: rgba(0, 0, 0, 0.05);
}
#input-table table tr:first-child {
	border-top: 5px solid #f0f0f0;
}
#input-table table tr:last-child {
	border-top: 2px solid #f0f0f0;
}
.input_required, .input_not_required:before {
	font-size: 0.9em;
	padding: 5px 6px;
	line-height: 1;
	display: inline-block;
	color: #ffffff;
	background-color: #B59C83;
	border-radius: 5px;
	position: absolute;
	right: 10px;
	top: 25px;
}
.input_not_required:before {
	color: #ffffff;
}
.input_not_required:before {
	content: "任意";
	background-color: #adadad;
	text-align: center;
}
#input-table .error_msg, #input-table .error_msg_js {
	padding: 5px 5px 5px 20px;
	background: url(./img/form_error.gif) left 10px no-repeat;
}
#input-table table td {
	padding: 20px 30px;
	border: none;
	text-align: left;
}
#input-table table tr:last-child td {
	text-align: center;
}
#input-table div.formcomment {
	clear: both;
	margin-left: 7px;
	margin-top: 3px;
}
#input-table table td ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
input[type="text"], input[type="password"] {
	border: 0;
	padding: 4px;
	border: solid 1px #ccc;
	max-width: 100% !important;
	resize: none;
	border-radius: 5px;
}
.body_textbook_form input[type="text"] {
	margin-bottom: 10px;
}
#input-table table .form_input_addnumber {
	width: 40% !important;
}
#input-table table textarea {
	padding: 10px;
	width: 96% !important;
	border: solid 1px #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
input:focus, input:textarea {
	border: solid 1px #414D99;
}
.input_button {
	font-family: 'Zen Maru Gothic', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size: clamp(16px, 2vw, 21px);
	font-weight: normal;
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	color: #333;
	line-height: 1.2;
	width: clamp(280px, 28vw, 320px);
	display: inline-block;
	padding: clamp(10px, 1vw, 15px) clamp(20px, 2vw, 30px);
	background-color: #ffffff;
	border-radius: 100em;
	border: 2px solid #dad9d9;
	text-decoration: none;
	display: inline-block;
}

.input_button a {
	color: #333333;
}
#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}
#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #ddd;
	padding: 10px;
	background: #ffffff;
}
/* セパレーター */

#input-table table tr.input-formgroup-blank th {
	background: #F0F0F0;
	border: none;
}
#input-table table tr.input-formgroup {
	padding-top: 20px;
}
#input-table table tr.input-formgroup th {
	text-align: left;
	border: none;
	padding: 10px 0 5px 50px;
	background-image: url(./img/icon_arrow_down.png);
	background-repeat: no-repeat;
	background-position: 5px 10px;
	background-color: #074D93;
	/* セパレーターth背景色 */
	border-top: 2px solid #EEEEEE;
	border-left: 2px solid #EEEEEE;
	border-right: 2px solid #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0 / 5px 5px 0 0;
}
#input-table table tr.input-formgroup th.formgroup-closed {
	background-image: url(./img/icon_arrow_down.png);
	background-repeat: no-repeat;
	background-position: 5px 10px;
	border-bottom: 2px solid #EEEEEE;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
#input-table table tr.input-formgroup th:hover {
	cursor: pointer;
	filter: alpha(opacity=90);
	opacity: 0.90;
	-moz-opacity: 0.90;
	-ms-filter: "alpha(opacity=90)";
}
#input-table table tr.input-formgroup span.input-formgroup-title {
	display: block;
	color: #FFFFFF;
	/* セパレータータイトル文字色 */
	font-size: 1.3em;
	/* セパレータータイトル文字サイズ */
	padding-bottom: 5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text {
	position: relative;
	display: block;
	color: #FFFFFF;
	/* セパレーター説明文文字色 */
	padding: 0 5px 0 1em;
	margin: 5px 10px 10px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before {
	position: absolute;
	top: 0.5em;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	background: #FFFFFF;
	content: "";
	border-radius: 1px;
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:visited, #input-table table tr.input-formgroup span.input-formgroup-text a:link {
	color: #FFFFFF;
	/* セパレーター説明文内リンク色1 */
	text-decoration: underline;
}
#input-table table tr.input-formgroup span.input-formgroup-text a:hover, #input-table table tr.input-formgroup span.input-formgroup-text a:active {
	color: #66FFFF;
	/* セパレーター説明文内リンク色2 */
	text-decoration: underline;
}
#input-table .table_confirm th {
	padding: 20px 10px!important;
	width: 20%;
}
#input-table .table_confirm td {
	text-align: left!important;
}
@media screen and (max-width:719px) {
	#input-table table {
		width: 100%;
		border-collapse: collapse;
		border-bottom: 1px solid #CCCCCC;
	}
	#input-table table th, #input-table table td {
		width: 100%;
		display: block;
		border-top: none;
		text-align: left;
	}
	#input-table table th {
		padding: 6px 45px 6px 12px;
		background: #eeeeee none repeat scroll 0 0;
		font-weight: normal;
	}
	#input-table table td {
		padding-bottom: 20px;
	}
	#input-table table td:after {
		content: "";
		display: block;
		clear: both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		width: 96%;
		max-height: 24vw;
		font-size: 110%;
	}
	.input_required, .input_not_required:before {
		position: absolute;
		right: 10px;
		font-size: 0.8em;
		top: 6px;
	}
}
@media screen and (max-width:479px) {
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: pages */

.msg {
	margin: 20px auto;
}
.section_size_s article {
	max-width: clamp(640px, 42vw, 790px);
}
.bg_grad {
	background-image: url(./img/bg_grad.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1400px auto;
	background-attachment: fixed;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: top */

/* section_main_img */

.section_main_img {
	position: relative;
	text-align: center;
	padding: clamp(20px, 3vw, 50px) 20px 0;
}
.section_main_img article {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}
.section_main_img .slide_img .text {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: clamp(10px, 0.5vw, 30px);
}
.section_main_img .text img{
	margin: 0 auto;
	border-radius: clamp(10px, 0.5vw, 30px);
}
.section_main_img .slide_img a:hover img { 
	opacity: 1;
}
/* column_news_list */
.column_news_box {
	align-items: center;
}
.column_news_box .column_news_title {
	flex-basis: 350px;
	text-align: center;
}
.column_news_box .column_news_list {
	flex-basis: 800px;
}

@media screen and (min-width: 720px), print {


}
@media screen and (max-width:719px) {
	.column_news_box .column_news_list .btn {
		margin-top: 20px;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 中ページ共通 */

/* page_link */
.page_link ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (min-width:750px), print {
	.page_link li {
		display: inline-block;
		margin-bottom: 10px;
		margin-right: 10px;
	}
	.page_link li a {
		padding: 10px 20px;
		border: 1px solid #eaeaea;
	}

}
@media screen and (max-width:749px) {
	.page_link {
		border: 1px solid #eaeaea;
	}
	.page_link li a {
		padding: 5px 10px;
		border-top: 1px solid #eaeaea;
	}
	.page_link li:first-child a {
		border-top: none;
	}
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: business */
.info_text {
	background-color: rgb(255 255 255 / 80%);
	margin-top: clamp(10px, 2vw, 20px);
	padding: clamp(10px, 2vw, 20px);
}

.list_thumbnail .color_yellow {
	background-color: var(--color_yellow_l);
}
.list_thumbnail .color_green {
	background-color: var(--color_green_l);
}
.list_thumbnail .color_blue {
	background-color: var(--color_blue_l);
}
.list_thumbnail .color_orange {
	background-color: var(--color_orange_l);
}
.list_thumbnail .color_red {
	background-color: var(--color_red_l);
}
.inner_main_img_grid {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	background-color: rgb(255 255 255 / 80%);
	border-radius: clamp(10px, 0.5vw, 30px);
}
.inner_main_img_grid .inner_main_img_title {
	padding: 20px 20px 20px clamp(20px, 3vw, 40px);
	display: flex;
	align-items: center;
	flex-basis: calc(60% - 30px);
}
.inner_main_img_grid .inner_main_img_title h2 {
	margin: 0;
	padding: 0;
}
.inner_main_img_box .inner_main_img {
	flex-basis: 40%;
}
.inner_main_img_box .inner_main_img span {
	padding: 30% 0;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.5s ease-out;
	border-radius: 0 clamp(10px, 0.5vw, 30px) clamp(10px, 0.5vw, 30px) 0;
}
.inner_main_img_box .inner_main_img img {
	vertical-align: middle;
}
.inner_main_img_box.color_yellow {
	background-color: var(--color_yellow_l);
}
.inner_main_img_box.color_green {
	background-color: var(--color_green_l);
}
.inner_main_img_box.color_blue {
	background-color: var(--color_blue_l);
}
.inner_main_img_box.color_orange {
	background-color: var(--color_orange_l);
}
.inner_main_img_box.color_red {
	background-color: var(--color_red_l);
}
.container_color_yellow h2:after {
	border-bottom: clamp(1px, 1vw, 6px) dotted var(--color_yellow);
}
.lower .container_color_yellow h3:before {
	background-color: var(--color_yellow_l);
}
.container_color_yellow h4 {
	border-left: 7px solid var(--color_yellow);
	background-color: var(--color_yellow_l);
}
.container_color_yellow h5 {
	border-top: 2px solid var(--color_yellow);
	background-color: var(--color_yellow_l);
}
.container_color_green h2:after {
	border-bottom: clamp(1px, 1vw, 6px) dotted var(--color_green);
}
.lower .container_color_green h3:before {
	background-color: var(--color_green_l);
}
.container_color_green h4 {
	border-left: 7px solid var(--color_green);
	background-color: var(--color_green_l);
}
.container_color_green h5 {
	border-top: 2px solid var(--color_green);
	background-color: var(--color_green_l);
}
.container_color_blue h2:after {
	border-bottom: clamp(1px, 1vw, 6px) dotted var(--color_blue);
}
.lower .container_color_blue h3:before {
	background-color: var(--color_blue_l);
}
.container_color_blue h4 {
	border-left: 7px solid var(--color_blue);
	background-color: var(--color_blue_l);
}
.container_color_blue h5 {
	border-top: 2px solid var(--color_blue);
	background-color: var(--color_blue_l);
}
.container_color_orange h2:after {
	border-bottom: clamp(1px, 1vw, 6px) dotted var(--color_orange);
}
.lower .container_color_orange h3:before {
	background-color: var(--color_orange_l);
}
.container_color_orange h4 {
	border-left: 7px solid var(--color_orange);
	background-color: var(--color_orange_l);
}
.container_color_orange h5 {
	border-top: 2px solid var(--color_orange);
	background-color: var(--color_orange_l);
}
.container_color_red h2:after {
	border-bottom: clamp(1px, 1vw, 6px) dotted var(--color_red);
}
.lower .container_color_red h3:before {
	background-color: var(--color_red_l);
}
.container_color_red h4 {
	border-left: 7px solid var(--color_red);
	background-color: var(--color_red_l);
}
.container_color_red h5 {
	border-top: 2px solid var(--color_red);
	background-color: var(--color_red_l);
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: faq */
.faq_list {
	padding-bottom: 1em;
}
.faq_box {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}
.faq_box .question {
	cursor: pointer;
	clear: both;
	font-weight: bold;
	line-height: 1.5;
	padding: 0.5em clamp(50px, 3vw, 60px) 15px 3em;
	background-color: rgb(255 255 255 / 80%);
	border-radius: 10px 10px 0 0;
	font-size: clamp(15px, 2vw,21px);
}
.faq_box .answer {
	display: none;
	padding: 20px;
	padding-left: 2.5em;
	border: 2px solid rgb(255 255 255 / 80%);
	border-radius: 0 0 10px 10px;
	background-color: #f7f0e9;
}
.faq_box .question,
.faq_box .answer {
	position: relative;
}
.faq_box .question:before,
.faq_box .answer:before {
	color: #666;
	left: 20px;
	position: absolute;
}
.faq_box .question:before {
	content: "\51";
	top: 0.7em;
}
.faq_box .answer:before {
	content: "\41";
	top: 25px;
}
.faq_box .question:after {
	content: "";
	background-image: url(img/icon_arrow_bottom.png);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	width: clamp(24px, 2vw, 30px);
	height: clamp(24px, 2vw, 30px);
	border: 2px solid #dad9d9;
	border-radius: 100%;
	top: 50%;
	right: 10px;
	margin-top: clamp(-12px, -2vw, -15px);
}
.faq_box .question.current:after {
	background-image: url(img/icon_arrow_top.png);
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: news */
.lower .containerInner_news article {
	max-width: 790px;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: search_box */
.search_box {
	width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	padding: clamp(20px, 3vw, 40px) 0;
}
.search_box .search_text,
.search_box .search_select {
	flex: 1;
}
.search_box input,
.search_box select {
	font-family: var(--font_basic);
}
.search_box .search_text form {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	overflow: hidden;
	border-radius: 3px;
	box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
	background-color: #ffffff;
}
.search_box .search_text label {
	flex: 1;
}
.search_box .search_text input[type="text"] {
	width: 100%;
	height: 45px;
	padding: 5px 15px;
	border: none;
	box-sizing: border-box;
	background-color: #ffffff;
	font-size: 14px;
	outline: none;
}
.search_box .search_text .search_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 45px;
	border: none;
	background-color: transparent;
	cursor: pointer;
	position: relative;
}
.search_box .search_text .search_btn:after {
	content: "\f002";
	font-size: 1.2em;
}
.search_box .search_select {
	position: relative;
}
.search_box .search_select select {
	appearance: none;
	height: 45px;
	padding: 0.4em calc(0.8em + 40px) 0.4em 0.8em;
	border: none;
	border-radius: 3px;
	box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
	background-color: #fff;
	color: #333333;
	font-size: 14px;
	cursor: pointer;
}
.search_box .search_select:before {
	content: "";
	position: absolute;
	display: block;
	right: 2.8em;
	height: 45px;
	border-left: 1px solid #dddddd;
}
.search_box .search_select:after {
	content: "\f107";
	position: absolute;
	right: 1.2em;
	top: 50%;
	margin-top: -0.3em;
	font-size: 0.8em;
	pointer-events: none;
}
.search_box .search_select select {
	width: 100%;
}

@media screen and (min-width:750px), print {



}
@media screen and (max-width:749px) {
	.search_box {
		flex-direction: column;
	}

}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: member */
/* 一覧ページ */
.list_member {

}
.list_member li {
	display: flex;
}
.list_member .title {
	border-bottom: 1px dashed #ddd;
	margin-bottom: clamp(10px, 2vw, 15px);
	text-align: center;
}
.list_member .listBox {
	display: flex;
	flex-direction: column;
	padding-bottom: clamp(10px, 2vw, 15px);
}
.list_member .member_field_box {
	flex-grow: 1;
}
.list_member .member_field {
	padding: 0 clamp(10px, 2vw, 20px) clamp(5px, 1vw, 10px);
	display: block;
	font-size: 0.9em;
	line-height: 1.4;
}
.list_member .member_title_gyosei {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	padding-top: 10px;
}
.list_member .member_title_gyosei .tag a {
	border: 1px solid #ecebef;
	padding: clamp(2px, 1vw, 4px) clamp(5px, 1vw, 8px);
	line-height: 1;
	display: block;
	border-radius: 5px;
	transition: background-color 0.1s;
}
.list_member .member_title_gyosei .tag a:hover {
	background-color: #ecebef;
}
.list_member .btn {
	padding: 10px clamp(10px, 2vw, 20px) clamp(5px, 1vw, 10px);
}
.list_member .btn a {
	min-width: auto;
	display: inline-block;
}
.list_member .member_link_box {
	display: flex;
	justify-content: end;
	gap: 5px clamp(2px, 1vw, 5px);
	padding: clamp(10px, 1vw, 20px) clamp(10px, 2vw, 20px) clamp(5px, 1vw, 10px);
}
.list_member .member_link_box a {
	color: #fff;
	background-color: #42413d;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(30px, 3vw, 40px);
	height: clamp(30px, 3vw, 40px);
	border-radius: 100%;
	text-decoration: none;
	line-height: 1;
	font-size: 0.9em;
	transition: background-color 0.2s;
}
.list_member .member_link_box a:hover {
	background-color: #27B3C8;
}

@media screen and (min-width: 641px) and (max-width: 1000px) {
	.list_member {
		gap: 10px
	}
	.list_member li {
		width: calc( calc(100% - 20px) / 3);
	}
}
@media screen and (max-width: 640px) {
	.list_member {
		gap: 10px;
	}
	.list_member li {
		width: calc( calc(100% - 10px) / 2);
	}

}
/* 詳細ページ */
.member_info_box {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	background-color: #fff;
	padding: 20px;
	border-radius: clamp(10px, 0.5vw, 30px);
}
.member_info_box .member_title {
	flex: 1;
}
.member_info_box .member_link_box {
	font-size: clamp(16px, 2vw, 20px);
	display: flex;
	gap: 5px 10px;
	padding: clamp(10px, 2vw, 20px) 0;
}
.member_info_box .member_link_box a {
	color: #fff;
	background-color: #42413d;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	border-radius: 100%;
	text-decoration: none;
	line-height: 1;
	transition: background-color 0.2s;
}
.member_info_box .member_link_box a:hover {
	background-color: #27B3C8;
}
.member_info_box {

}
.member_info_box .member_img {
}
.member_info_box .member_img img {
	max-height: 300px;
	vertical-align: middle;
	border-radius:clamp(10px, 0.5vw, 30px);
}
.member_profile {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 2vw, 30px);
	padding: clamp(20px, 2vw, 30px) 0;
}
.member_profile .member_field_title {
	border-bottom: 1px solid #ddd;
	font-weight: bold;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.member_profile .member_field_text {

}
.member_profile .member_title_gyosei .member_field_text {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding-top: 10px;
}
.member_profile .member_title_gyosei .member_field_text .tag a {
	border: 1px solid #ecebef;
	padding: 5px 12px;
	line-height: 1;
	display: block;
	border-radius: 5px;
	text-decoration: none;
	background-color: #fff;
	transition: background-color 0.1s;
}
.member_profile .member_title_gyosei .member_field_text .tag a:hover {
	background-color: #ecebef;
}
.member_profile .member_msg {
	background-color: #fff;
	border-radius: clamp(10px, 0.5vw, 30px);
	padding: clamp(20px, 2vw, 30px);
}
@media screen and (min-width:750px), print {
	.member_info_box .member_info {
		flex-basis: 400px;
	}
	.member_profile .member_field {
		flex-basis: calc(50% - clamp(20px, 2vw, 30px) );
	}
	.member_profile .member_field_100 {
		flex-basis: 100%;
	}
	.member_info_box .member_img {
		text-align: right;
	}

}
@media screen and (max-width:749px) {
	.member_info_box {
		flex-direction: column;
	}
	.member_profile {
		flex-direction: column;
	}
	.member_info_box .member_img {
		text-align: center;
	}

}