﻿@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;
	background-color: #fafafa;
}
article {
	width: 100%;
	margin: 0 auto;
	padding: clamp(20px, 3vw, 40px) 20px clamp(30px, 4vw, 60px);
	z-index: 2;
	position: relative;
}
.section_s article {
	max-width: 790px;
}
article, .breadCrumb ul {
	max-width: 1140px;
}
.lower .container article {
	max-width: 1240px;
}
:root {
	--font_basic: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	--font_icon: 'Font Awesome 6 Free';
	--font_color: #040000;
	--color_main: #12356d;
	--color_main_rgb: 18 53 109;
	--color_accent_1: #1fabdd;
	--color_accent_1_rgb: 18 53 109;
	--color_accent_2: #b0125f;
	--color_accent_2_rgb: 176 18 95;
	--color_sub: #4164af;
	--color_sub_rgb: 65 100 175;
	--radius: 10px;
	--gap: clamp(20px, 3vw, 40px);
	--gap_s: clamp(10px, 2vw, 25px);
}

/*--------------------------------------- header */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	font-weight: 500;
	z-index: 999;
	background-color: rgb(250 250 250 / 90%);
	backdrop-filter: blur(20px);
	transition: background-color 0.2s;
}
header #header_inner {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: var(--gap) 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.body_common header #header_inner {
	background-color: transparent;
	display: flex;
}
header #header_logo {
	margin: 0;
	padding: 0;
	line-height: 0;
	vertical-align: middle;
}
header #header_contents {
	display: flex;
	align-items: center;
}
header #header_logo a {
	display: inline-block;
}
header #header_logo img {
	width: 100%;
	vertical-align: middle;
}
@media screen and (min-width:1001px), print {
	header #header_logo {
		flex-basis: 300px;
	}
}
@media screen and (max-width:1000px) {
	header #header_logo {
		display: flex;
		align-items: center;
		flex-basis: 200px;
		height: 60px;
	}
	header #header_inner {
		padding: 0 60px 0 10px;
		/* sp_menu幅確保 */
	}
}
/* header_menu_main */

#header_menu_main {}
#header_menu_main ul {
	margin: 0;
	padding: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	gap: 2px clamp(10px, 2vw, 30px);
}
#header_menu_main li {
	font-size: clamp(14px, 1vw, 16px);
	position: relative;
}
#header_menu_main .li_arrow {
	padding-right: 0.8em;
}
#header_menu_main .li_arrow:after {
	content: "\f107";
	color: var(--color_main);
	font-family: var(--font_icon);
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -0.3em;
	font-size: 0.8em;
}
#header_menu_main li a {
	color: var(--font_color);
	text-decoration: none;
	font-size: clamp(15px, 1vw, 16px);
	display: block;
	padding: 5px;
	transition: color 0.2s;
}
#header_menu_main li.li_accent,
#header_menu_main li.li_sub {
	padding: 10px 0;
}
#header_menu_main li.li_accent a,
#header_menu_main li.li_sub a {
	color: #ffffff;
	padding: clamp(12px, 1vw, 15px) clamp(20px, 2vw, 30px);
	border-radius: 100em;
}
#header_menu_main li.li_accent a {
	background: linear-gradient(135deg, rgb(0 76 132 / 1) 0%, rgb(var(--color_accent_2_rgb) / 1) 100%);
}
#header_menu_main li.li_sub a {
	background: linear-gradient(135deg, var(--color_sub) 0%, var(--font_color) 100%);
}
/*@media screen and (min-width:1201px) and (max-width:1420px) {
	#header_menu_main ul {
		gap: 2px clamp(10px, 2vw, 10px);
	}
	#header_menu_main li a {
		font-size: clamp(12px, 1vw, 13px);
	}
}
@media screen and (max-width:1200px) {
	#header_menu_main ul {
		gap: 2px clamp(2px, 2vw, 2px);
	}
	#header_menu_main li a {
		font-size: clamp(12px, 1vw, 13px);
	}
}*/

/* header_menu_sub */
#header_menu_sub {
}
#header_menu_sub ul {
	margin: 0;
	line-height: 1;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	list-style: none;
	gap: 5px clamp(5px, 1vw, 10px);
}
#header_menu_sub li {
	font-size: clamp(14px, 1vw, 15px);
	letter-spacing: 0.05em;
	position: relative;
	text-align: center;
	min-width: 120px;
}
#header_menu_sub li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 7px 10px;
	transition: color 0.2s;
	background-color: var(--color_main);
	border-radius: 100em;
}
#header_menu_sub li.li_recruit a {
	background-color: var(--color_sub);
}
#header_menu_sub li.li_csr a {
	background-color: #50b140;
}
/*@media screen and (min-width:1201px) and (max-width:1420px) {
	#header_menu_sub ul {
	}
	#header_menu_sub li {
		font-size: clamp(12px, 1vw, 13px);
		min-width:7vw;
	}
}
@media screen and (max-width:1200px) {
	#header_menu_sub li {
		font-size: clamp(11px, 1vw, 12px);
		min-width:6vw;
	}
}*/
@media screen and (max-width:1000px) {
	#header_menu_main,
	#header_menu_sub {
		display: none;
	}
}
/*--------------------------------------- sp_menu */

.sp_menu {
	overflow-y: scroll;
	max-height: 100%;
}
.sp_menu .header_menu_main_list {
	padding: 20px;
}
.sp_menu .header_menu_main_list .search_box_navi .search_select_title a {
	color: var(--font_color);
}
.sp_menu .btn {
	padding-top: 20px;
}
.sp_menu .hours {
	text-align: center;
}
.sp_menu .hours span {
	display: inline-block;
	font-size: 0.9em;
	line-height: 1.4;
	padding-right: 10px;
}
.sp_menu_btn {
	position: relative;
	width: 60px;
	height: 60px;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	line-height: 1;
	text-align: center;
}
.sp_menu_btn .sp_menu_btn_box span {
	display: block;
}
.sp_menu_btn .sp_menu_btn_icon {
	width: 30px;
	height: 9px;
	position: relative;
}
.sp_menu_btn .sp_menu_btn_icon:before,
.sp_menu_btn .sp_menu_btn_icon:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	border-top: 1px solid var(--color_main);
	position: absolute;
	transform-origin: 0 50%;
	left: 0;
	transition: 0.1s transform;
}
.sp_menu_btn .sp_menu_btn_icon:before {
	top: 0;
}
.sp_menu_btn .sp_menu_btn_icon:after {
	bottom: 0;
}
.sp_menu_btn.close .sp_menu_btn_icon:before {
	transform: rotate(20deg);
	top: -2px;
}
.sp_menu_btn.close .sp_menu_btn_icon:after {
	transform: rotate(-20deg);
	bottom: -2px;
}
.sp_menu_btn .sp_menu_btn_title:before {
	content: "menu";
	font-size: 0.8em;
}
.sp_menu_btn.close .sp_menu_btn_title:before {
	content: "close";
}
.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%;
	min-height: 100vh;
	padding: 60px 0px;
	background-color: #ffffff;
	box-shadow: -5px 0px 10px rgb(0 0 0 / 0.2);
	overflow-y: auto;
	opacity: 0;
	transition: right 0.2s;
}
@media screen and (min-width:1001px), print {
	.sp_menu_btn, .sp_menu {
		display: none;
	}
}
@media screen and (max-width:1000px) {

}
@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: 0 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.4;
	list-style: none;
}
.sp_menu_navi ul li a {
	color: var(--font_color);
	text-decoration: none;
	display: block;
	padding: 12px 0;
}
.sp_menu_navi .sp_menu_sub {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding-top: 20px;
}
.sp_menu_navi .sp_menu_sub li {
	flex-basis: 240px;
}
.sp_menu_navi .sp_menu_sub li a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 7px 10px;
	transition: color 0.2s;
	background-color: var(--color_main);
	border-radius: 100em;
	text-align: center;
}
.sp_menu_navi .sp_menu_sub li.li_recruit a {
	background-color: var(--color_sub);
}
.sp_menu_navi .sp_menu_sub li.li_csr a {
	background-color: #50b140;
}
/*--------------------------------------- page_top */

#page_top {
	margin: 0;
}
#page_top a {
	position: relative;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(14px, 2vw, 20px);
	width: clamp(45px, 5vw, 60px);
	height: clamp(45px, 5vw, 60px);
	background-color: rgb(255 255 255 / 50%);
}
.body_recruit #page_top a {
	background-color: transparent;
}
/*--------------------------------------- footer */

footer {
	max-width: 100%;
}
footer a {
	color: var(--font_color);
	text-decoration: none;
}
footer article {}
.footerBox_1 {}
.footerBox_1 article {
	padding: clamp(40px, 5vw, 60px) 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}
footer .footer_logo {padding-bottom: 1em;}
footer .footer_logo img {
	width: 100%;
	max-width: clamp(200px, 17vw, 320px);
}
footer .footer_nav table {
	width: 100%;
}
footer .footer_nav table td {
	padding: 0;
}
footer .footer_nav ul {
	list-style: none;
	margin: 0 auto;
	padding: 0;
	line-height: 1;
	letter-spacing: 0.1em;
}
footer .footer_nav ul li {
	padding-bottom: 2em;
}

.footerBox_2 {
	background-image: url(./img/copyright_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
#copyright {
	font-size: clamp(12px, 1vw, 13px);
	text-align: center;
}
@media screen and (min-width:720px) {
	footer .footer_nav {
		flex-basis: 540px;
	}
}
@media screen and (max-width:749px) {

}
/*--------------------------------------- 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:749px) {
	.columnBox .column {
		padding-bottom: 20px;
	}
	.columnBox .column:last-child {
		padding-bottom: 0;
	}
}
/*--------------------------------------- sideContaints */

#side {
	padding: var(--gap_s);
	background-color: rgb(255 255 255 / 80%);
	border: 1px solid #f0f0f0;
	-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: 130px;
	border-radius: var(--radius);
}
#side .menu_title {
	font-weight: bold;
	font-size: 1.1em;
	padding: 0 0  10px;
	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 {
	position: relative;
	padding-bottom: 2px;
}
#side li a {
	color: var(--font_color);
	font-size: 0.95em;
	text-decoration: none;
	display: block;
	padding: 0.5em 0.5em 0.5em 2em;
	transition: color 0.2s;
	position: relative;
	border-radius: 5px;
}
#side li a:before {
	content: "\f105";
	font-weight: 600;
	font-family: var(--font_icon);
	color: var(--color_main);
	left: 10px;
	top: 10px;
	position: absolute;
	font-size: 0.8em;
	margin-top: 0.12em;
}
#side li a:hover {
	color: var(--color_main);
}
#side li.current a {
	background-color: var(--color_main);
	color: #ffffff;
}
#side li.current a:before {
	color: #ffffff;
}
@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 */

ul {
	padding-left: 1.3em;
}
table ul {
	margin-top: 0;
}
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;
}
/*--------------------------------------- font */

html {
	font-size: 62.5%;
}
body {
	font-family: var(--font_basic);
	color: var(--font_color);
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.8;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	overflow-wrap: break-word;
	background-color: #f8f8f8;
}
@media screen and (max-width:749px) {
	html, body {
		-webkit-text-size-adjust: 100%;
		-webkit-overflow-scrolling: touch;
	}
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
	position: relative;
	line-height: 1.4;
	margin: 0;
	padding: 0;
	z-index: 2;
}
h1:before, h2:before, h3:before, h4:before, h5:before, h6:before {
	content: "";
	display: block;
	clear: both;
}
.lower h1,
h2 {
	color: var(--color_main);
	font-weight: bold;
	padding: 0.5em 0;
	margin: 0 auto;
	font-size: clamp(18px, 2vw, 28px);
	position: relative;
}
.columnBox .column h2:first-child {
	padding-top: 0;
}
@media screen and (max-width:749px) {}
/* h:変更した場合はstyle_editor.cssにも反映すること */
h3 {
	clear: both;
	color: var(--color_sub);
	font-size: clamp(18px, 2vw, 34px);
	line-height: 1.4;
	font-weight: bold;
	padding: 20px 0;
	position: relative;
}
h4 {
	color: var(--color_sub);
	font-size: clamp(16px, 2vw, 24px);
	clear: both;
	font-weight: bold;
	line-height: 1.5;
	padding: 20px 0;
}
h5 {
	font-size: 1.1em;
	color: var(--color_main);
	clear: both;
	font-weight: bold;
	line-height: 1.5;
	padding: 10px 0;
}
h6 {
	font-size: 1em;
	color: var(--color_main);
	clear: both;
	line-height: 1.5;
	font-weight: bold;
	padding: 10px 0;
}
.body_common h3 {
	color: var(--color_main);
}
.body_common h4 {
	color: var(--color_sub);
}
.body_common h5 {
	color: var(--color_main);
}
.body_common h6 {
	color: var(--color_main);
}
/*--------------------------------------- color */

a {
	color: var(--color_main);
	text-decoration: none;
}
a:hover {
	color: var(--color_accent_1);
}
a:hover img {
	opacity: 0.8;
}
.white {
	color: #FFFFFF;
}
.black {
	color: #000000;
}
.red {
	color: #d2202f;
}
.blue {
	color: #40559F;
}
.bg_color_main {
	color: #ffffff;
	background-color: var(--color_main);
}
.bg_color_main_high {
	background-color: rgb(var(--color_main_rgb) / 0.05);
}
.bg_color_white {
	background-color: #ffffff;
}

/*--------------------------------------- bg_circle */
.bg_circle_box {
	position: relative;
}
.bg_circle_box article {
}
.bg_circle_l,
.bg_circle_r {
	position: absolute;
	z-index: 1;
	width: clamp(40px, 15vw, 350px);
	aspect-ratio: 1 / 2.5;
	background-size: auto 100%;
	opacity: 0.6;
}
.body_train .bg_circle_l,
.body_train .bg_circle_r,
.body_common .bg_circle_l,
.body_common .bg_circle_r  {
	opacity: 1;
}
.bg_circle_size_L {
	width: clamp(80px, 31vw, 580px);
}
.bg_circle_l {
	left: 0;
	background-image: url(./img/bg_circle_l.png);
	background-position: center right;
}
.bg_circle_l_2 {
	background-image: url(./img/bg_circle_l_2.png);
}
.bg_circle_r {
	right: 0;
	background-image: url(./img/bg_circle_r.png);
	background-position: center left;
}
.bg_circle_r_2 {
	background-image: url(./img/bg_circle_r_2.png);
}
.bg_circle_center {
	top: 50%;
	transform: translateY(-50%);
}
.bg_circle_top {
	top: 0%;
	transform: translateY(-50%);
}
.bg_circle_bottom {
	bottom: 0;
	transform: translateY(50%);
}
.bg_circle_multiply {
	z-index: 1;
	mix-blend-mode: multiply;
}
/*--------------------------------------- bg_grad */
.bg_grad_1,
.bg_grad_2 {
	position: relative;
}
.bg_grad_1:before,
.bg_grad_2:before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}
.bg_grad_1:before {
	background: linear-gradient(135deg, var(--color_main) 0%, var(--color_accent_1) 100%);
}
.inner_img_top.bg_grad_1:before {
	background: none;
}
.bg_grad_2:before {
	background: linear-gradient(135deg, var(--color_accent_2) 0%, #de75a3 100%);
}
.inner_content.bg_grad_1:after,
.inner_content.bg_grad_2:after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: 40% auto;
	background-repeat: no-repeat;
	mix-blend-mode: multiply;
	opacity: 35%;
	z-index: 1;
}
.inner_content.bg_grad_1:after {
	background-image: url(./img/bg_circle_r_2.png);
	background-position: right top 2em;
}
.inner_content.bg_grad_2:after {
	background-image: url(./img/bg_circle_l_2.png);
	background-position: left top 2em;
}
.bg_grad_1,
.bg_grad_1 h1, .bg_grad_1 h2, .bg_grad_1 h3, .bg_grad_1 h4, .bg_grad_1 h5, .bg_grad_1 h6,
.bg_grad_2,
.bg_grad_2 h1, .bg_grad_2 h2, .bg_grad_2 h3, .bg_grad_2 h4, .bg_grad_2 h5, .bg_grad_2 h6 {
	color: #ffffff;
}

.bold {
	font-weight: bold;
}

.title_L {
	font-size: clamp(48px, 3vw, 195px);
	letter-spacing: 0.05em;
}
.title_en {
	font-weight: bold;
	font-size: clamp(15px, 3vw, 24px);
	letter-spacing: 0.05em;
}
.title_circle {
	position: relative;
	line-height: 1;
}
.title_circle:before {
	content: "";
	position: relative;
	display: inline-block;
	vertical-align: baseline;
	width: 0.8em;
	margin-right: 0.5em;
	aspect-ratio: 1/1;
	background-image: url(./img/icon_circle_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.title_grad_1 {

}
.title_grad_1 span {
	/*background: linear-gradient(135deg,  var(--color_sub) 10%,var(--color_main) 40%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;*/
	text-shadow:1px 1px 0 #444, -1px -1px 0 #444,-1px 1px 0 #444, 1px -1px 0 #444,0px 1px 0 #444,  0-1px 0 #444,-1px 0 0 #444, 1px 0 0 #444;
}
.title_grad_2 span {
	background: linear-gradient(to right, #ffffff 10%, #4164af 50%, #ffffff 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/*--------------------------------------- padding */

.pad_t50 {
	padding-top: clamp(20px, 3vw, 50px);
}
/*--------------------------------------- btn */

.btn, .editor-style-btn1, .editor-style-btn2, .editor-style-btn1_arrow, .editor-style-btn2_arrow {
	display: block;
	padding: 0.5em 0;
	text-align: center;
}
.btn a, .editor-style-btn1 a, .editor-style-btn2 a, .editor-style-btn1_arrow a, .editor-style-btn2_arrow a {
	padding: clamp(13px, 2vw, 17px) 20px;
	font-size: clamp(14px, 2vw, 16px);
	line-height: 1.5;
	background-color: #ffffff;
	border-radius: 100em;
	text-decoration: none;
	display: inline-block;
	transition: color 0.2s, background-color -.2s;
	text-align: center;
	position: relative;
}
.btn a, .editor-style-btn1 a, .editor-style-btn1_arrow a {
	border: 2px solid;
}
.btn_accent a, .editor-style-btn2 a, .editor-style-btn2_arrow a {
	color: #ffffff;
	background-color: var(--color_main);
}

.btn_arrow a, .editor-style-btn1_arrow a, .editor-style-btn2_arrow a {
	padding-right: 2.4em;
}
.btn_arrow a:after, .editor-style-btn1_arrow a:after, .editor-style-btn2_arrow a:after {
	content: "\f105";
	font-size: 0.8em;
	font-family: var(--font_icon);
	position: absolute;
	right: 1.4em;
	top: 50%;
	margin-top: -0.4em;
	transition: right 0.2s;
}
.btn a:after, .editor-style-btn1 a:after, .editor-style-btn1_arrow a:after {
	color: var(--color_main);
}
.btn_accent a:after, .editor-style-btn2_arrow a:after {
	color: #ffffff;
}
.btn_arrow a:hover:after, .editor-style-btn1_arrow a:hover:after, .editor-style-btn2_arrow a:hover:after {
	right: 15px;
}
.btn_size_s a {
	width: 100%;
	max-width: 180px;
}
.btn_size_m a {
	font-size: clamp(14px, 2vw, 18px);
	width: 100%;
	max-width: 300px;
	height: 60px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
/* CMSエディター：ボタン */

.editor-style-text1 {
	color: #ffffff;
	text-shadow: 1px 1px 5px rgb(0 0 0 / 0.3), -1px -1px 5px rgb(0 0 0 / 0.3);
}
.btn a, .editor-style-btn1 a, .editor-style-btn2 a, .editor-style-btn1_arrow a, .editor-style-btn2_arrow a {
	min-width: 200px;
}

/*--------------------------------------- text  */
.text_center {
	text-align: center;
}
@media screen and (min-width: 480px) {
	.text_center_pc {
		text-align: center;
	}
	.text_left_pc {
		text-align: left;
	}
	.text_right_pc {
		text-align: right;
	}
}
@media screen and (max-width: 479px) {
	.text_center_sp {
		text-align: center;
	}
	.text_left_sp {
		text-align: left;
	}
	.text_right_sp {
		text-align: right;
	}
}
.margin_top_s {
	margin-top: var(--gap_s);
}
hr {
	border: none;
	border-bottom: 1px solid #ffffff;
	margin: var(--gap) 0 var(--gap_s);
}
.box_style_1 {
	background-color: #ffffff;
	padding: var(--gap_s);
	border-radius: var(--radius);
}
@media screen and (min-width:720px), print {
	.only_pc {
		display: block!important;
	}
	.only_sp {
		display: none!important;
	}
}
@media screen and (max-width:749px) {
	.only_pc {
		display: none!important;
	}
	.only_sp {
		display: block!important;
	}
}

/*--------------------------------------- bg */

.bg_cover {
	background-size: cover;
}
.bg_center {
	background-position: center;
}
/*--------------------------------------- width */

.width_750, .width_1200, .width_1400 {
	margin: 0 auto;
}
.width_750 {
	max-width: 790px!important;
}
.width_1200 {
	max-width: 1240px!important;
}
.width_1400 {
	max-width: 1440px!important;
}
/*--------------------------------------- size */

.size_20px {
	font-size: clamp(14px, 2vw, 20px)!important;
}
/*--------------------------------------- padding */

.pad_b_20 {
	padding-bottom: clamp(10px, 3vw, 20px);
}
.pad_b_30 {
	padding-bottom: clamp(15px, 3vw, 30px);
}
.pad_b_40 {
	padding-bottom: clamp(20px, 3vw, 40px);
}
.pad_b_60 {
	padding-bottom: clamp(30px, 3vw, 60px);
}
/*--------------------------------------- link_text  */
.link_text {
	padding-top: 20px;
}
.link_text a {
	text-decoration: none;
}
.link_text span {
	color: var(--font_color);
}
.link_text i {
	width: 60px;
	position: relative;
	text-align: center;
}
.link_text i:before {
	position: relative;
	z-index: 1;
}
.link_text i:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border-radius: 100%;
	z-index: 0;
	transition: all 0.2s;
}
.link_text i.las_white:after {
	background-color: #ffffff;
}
.link_text i.las_blue:after {
	background-color: rgb(var(--color_main_rgb) / 0.05);
}
.link_text a:hover i:after {
	width: 60px;
	height: 60px;
}


/*--------------------------------------- table */

table {
	border-collapse: collapse;
}
table[border="1"] {
	background-color: #ffffff;
}
table th, table td {
	border: 1px solid #cccccc;
}
table[border="0"] table[border="1"] th, table[border="0"] table[border="1"] td {
	border: 1px solid #cccccc;
}
table th {
	text-align: left;
	background-color: rgb(var(--color_main_rgb) / 10%);
}
table[border="0"], table[border="0"] th, table[border="0"] td {
	border: none;
}
@media screen and (min-width: 750px), print {
	.table_style_1 tr:nth-child(2n+1) td {
		background-color: #eeeeee;
	}
}
@media screen and (max-width:749px) {
	.sp_table td, .sp_table th, .sp_table tr {
		display: block;
		width: 100%!important;
	}
}
table.sp_table, table.sp_table2c {
	border-collapse: collapse;
	font-size: 0.95em;
}
table.sp_table[border="0"], table.sp_table[border="0"] th, table.sp_table[border="0"] td, table.sp_table2c[border="0"], table.sp_table2c[border="0"] th, table.sp_table2c[border="0"] td {
	border: none;
}
@media screen and (max-width: 719px) {
	table.sp_table, table.sp_table2c {
		max-width: 100%;
	}
	table.sp_table td, table.sp_table th {
		display: block;
		width: 100% !important;
	}
	table.sp_table2c td, table.sp_table2c th {
		float: left;
		width: 50% !important;
	}
	table.sp_table td img, table.sp_table2c 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;
		border-radius: var(--radius);
		transition: opacity 0.5s;
		opacity: 1;
	}
}
table.sp_table[border="0"] td table:not([border="0"]) th, table.sp_table[border="0"] td table:not([border="0"]) td, table.sp_table2c[border="0"] td table:not([border="0"]) th, table.sp_table2c[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.sp_table2c td, table.sp_table2c th {
		width: 100% !important;
	}
}
/*--------------------------------------- list_text */

.list_text, .list_text li {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.5;
}
.list_text {
	padding: clamp(20px, 2vw, 30px) 0;
}
.list_text li a {
	color: var(--font_color);
	text-decoration: none;
	display: block;
	position: relative;
	transition: 0.6s backgroung-color,0.4s box-shadow;
}
.list_text li a:hover {
	background-color: #ffffff;
	box-shadow: 0 0 10px rgb(var(--color_sub_rgb) / 0.1);
}
.list_text li .listBox {
	width: 100%;
	border-bottom: 1px solid rgb(var(--color_sub_rgb) / 0.1);
}
.list_text li a .listBox {
	padding: clamp(10px, 1vw, 20px) clamp(10px, 3vw, 40px);
}
.list_text li:first-child .listBox {
}
.list_text li .date {
	color: var(--color_sub);
	font-size: 0.9em;
	padding-right: 10px;
}
.list_text li .icon {
	content:"";
	display: inline-block;
	vertical-align: bottom;
	margin-left: 0.5em;
	width: 1.3em;
	height: 1.3em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.list_text li .icon_file {
	background-image: url(./img/icon_file.png);
}
@media screen and (min-width: 481px), print {
	.list_text li .listBox {
		display: block;
		/* justify-content: space-between; */
		padding: 20px 0;
	}
	.list_text li .date {
		flex-basis: 7em;
	}
	.list_text li .text {
		flex-basis: calc( 100% - 7em);
	}
}
@media screen and (max-width: 480px) {
	.list_text li .listBox {
		display: block;
	}
	.list_text li .listBox .text {
		padding-top: 6px;
		display: block;
	}
}
/*--------------------------------------- list_thumbnail */

.list_thumbnail {
	width: 100%;
	padding: 1em 0 clamp(30px, 3vw, 40px);
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
.list_thumbnail li {
	margin: 0;
	padding: 0;
}
.list_thumbnail li a {
	text-decoration: none;
}
.list_thumbnail .listBox {
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 0 0 calc(var(--gap) / 2);
	background-color: #ffffff;
	border-radius: var(--radius);
	box-shadow: 0 0 10px rgb(var(--color_main_rgb) / 0.05);
}
.list_thumbnail .thumbnail {
	display: block;
	border-radius: var(--radius) var(--radius) 0 0;
	overflow: hidden;
}
.list_thumbnail .thumbnail a {
	display: block;
}
.list_thumbnail .thumbnail span {
	aspect-ratio: 13/7;
	display: block;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: all 0.5s ease-out;
	background-color: #ffffff;
}
.list_thumbnail li a:hover .thumbnail span {
	transform: scale(1.1);
	box-shadow: none;
}
.list_thumbnail .title_2 {
	font-weight: bold;
	padding: clamp(10px, 2vw, 20px) 0;
	border-bottom: 2px dotted var(--color_sub);
}
.list_thumbnail .tag_list_link_1 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.list_thumbnail .tag_list_link_1 .tag {
	font-size: 14px;
	background-color: rgb(var(--color_main_rgb) / 0.05);
	padding: 5px 12px;
	border-radius: 5px;
	line-height: 1;
	display: block
}
.list_thumbnail .tag_list_link_1 .tag_pref {
	color: #ffffff;
	background-color: var(--color_accent_1);
}
.list_thumbnail .dateBox {
	display: block;
	font-size: 0.9em;
	padding: 0;
}
.list_thumbnail .icon_text {
	position: relative;
	margin-top: clamp(10px, 2vw, 15px);
	padding-left: 25px;
	font-size: clamp(12px, 1vw, 14px);
}
.list_thumbnail .icon_text i {
	font-size: 19px;
	position: absolute;
	left: 0;
	top: 0.15em;
}
.list_thumbnail .tag_list_link_2 {
	padding-top: 15px;
}
.list_thumbnail .title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	text-align: center;
	padding-top: clamp(10px, 2vw, 15px);
	font-size: clamp(16px, 2vw, 21px);
	line-height: 1.4;
}
.list_thumbnail .title .icon {
	flex-basis: clamp(40px, 4vw, 50px);
}
.list_thumbnail .title_sub {
	display: block;
	padding: clamp(10px, 2vw, 20px) 0;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: bold;
	line-height: 1.4;
}
.list_thumbnail .text {
	display: block;
	font-size: 0.9em;
}
.list_thumbnail .btn {
	margin-top: auto;
	padding-top: clamp(10px, 1.5vw, 30px);
}
@media screen and (min-width: 1000px), print {
	.list_thumbnail {
		gap: var(--gap);
	}
	.list_thumbnailC2 li {
		width: calc((100% - 1 * var(--gap)) / 2);
	}
	.list_thumbnailC3 li {
		width: calc((100% - 2 * var(--gap)) / 3);
	}
	.list_thumbnailC4 li {
		width: calc((100% - 3 * var(--gap)) / 4);
	}
	.list_thumbnailC5,
	.list_thumbnailC6 {
		gap: var(--gap_s);
	}
	.list_thumbnailC5 li {
		width: calc((100% - 4 * var(--gap_s)) / 5);
	}
	.list_thumbnailC6 li {
		width: calc((100% - 5 * var(--gap_s)) / 6);
	}
}
@media screen and (min-width: 640px) and (max-width: 999px) {
	.list_thumbnail {
		gap: var(--gap_s);
	}
	.list_thumbnail li {
		width: calc((100% - 2 * var(--gap_s)) / 3);
	}
}
@media screen and (max-width: 639px) {
	.list_thumbnail {
		gap: var(--gap_s);
	}
	.list_thumbnail li {
		width: calc((100% - 1 * var(--gap_s)) / 2);
	}
	.list_thumbnailC2 li, .list_thumbnailC3 li {
		width: 100%;
	}
}
.list_thumbnailC1 li {
	width: 100%;
}
/*--------------------------------------- fadein */

/* fadein */

.fadein,
.left-to-right,
.right-to-left,
.down-to-top,
.top-to-down {
	opacity: 0.1;
}
.fadein {
	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;
}

.left-to-right {
	transform: translateX(-3vw);
	transition: opacity 1s, transform 1s;
}
.left-to-right.scrollin {
	transform: translate(0);
}
.right-to-left {
	transform: translateX(3vw);
	transition: opacity 1s, transform 1s;
}
.right-to-left.scrollin {
	transform: translate(0);
}
.down-to-top {
	transform: translateY(3vw);
	transition: opacity 1s, transform 1s;
}
.down-to-top.scrollin {
	transform: translateY(0);
}
.top-to-down {
	transform: translateY(-3vw);
	transition: opacity 1s, transform 1s;
}
.top-to-down.scrollin {
	transform: translateY(0);
}
.scrollin {
	opacity: 1;
	transform: translate(0, 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 {
	text-decoration: none;
}
.breadCrumb li:before {
	content: "\f105";
	color: var(--color_sub);
	font-weight: 600;
	font-family: var(--font_icon);
	padding-left: 10px;
	margin-right: 10px;
}
.breadCrumb li:first-child:before {
	display: 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;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}
.pager_box .pager {
	width: 2.5em;
	border: 1px solid #BFBFBE;
	border-radius: 5px;
	line-height: 1.4;
}
.pager_box .pager a {
	display: block;
	width: 100%;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-decoration: none;
	border-radius: 5px;
}
.pager_box .pager a:link, .pager_box .pager a:visited {
	color: var(--font_color);
}
.pager_box .pager a:hover, .pager_box .pager a:active {
	background: #F1F1F1;
}
.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: var(--radius);
	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: var(--radius);
}
#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_box {
	margin: clamp(20px, 3vw, 40px) auto;
	text-align: center;

}
.form_flow {
	display: inline-block;
	width: 100%;
	max-width: 600px;
}
.form_flow ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: clamp(10px, 2vw, 30px);
	position: relative;
	z-index: 1;
}
.form_flow ul:before {
	content: "";
	position: absolute;
	z-index: 0;
	border-top: 1px solid #dddddd;
	width: 70%;
	left: 50%;
	transform: translateX(-50%);
	top: clamp(20px, 1.5vw, 25px);
}
.form_flow li {
	position: relative;
	flex: 1;
	color: #999999;
}
.form_flow li .form_flow_number {
	border-radius: 100em;
	font-size: clamp(12px, 1vw, 14px);
	width: clamp(40px, 3vw, 50px);
	height: clamp(40px, 3vw, 50px);
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
}
.form_flow li .form_flow_text {
	display: block;
	padding-top: clamp(12px, 2vw, 20px);
	font-size: clamp(12px, 1vw, 16px);
}
.form_flow li.current {
	color: var(--font_color);
}
.form_flow li.current .form_flow_number {
	color: #ffffff;
	background-color: var(--color_main);
	border: 2px solid var(--color_main);
}
.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;
	border-top: 1px solid #f0f0f0;
	box-shadow: 1px 0px #f0f0f0, -1px 0px #f0f0f0;
	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;
}
#input-table table li {
	margin-left: 0;
}
#input-table table th {
	width: 35%;
	line-height: 1.4;
	padding: 20px 60px 20px 30px;
	color: #3f4242;
	background: rgb(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: 1px solid #f0f0f0;
	background-color: #ffffff;
}
#input-table table tr.input-formgroup-blank {
	border: none;
	background-color: transparent;
}
#input-table table tr:hover {
	background-color: rgb(0 0 0 / 0.03);
}
.input_required, .input_not_required:before {
	font-size: 0.9em;
	padding: 5px 6px;
	line-height: 1;
	display: inline-block;
	color: #ffffff;
	background-color: var(--color_main);
	border-radius: 5px;
	position: absolute;
	right: 10px;
	top: 25px;
	font-weight: normal;
}
.input_not_required:before {
	color: #ffffff;
}
.input_not_required:before {
	content: "任意";
	background-color: #aaaaaa;
	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-table table input,
#input-table table textarea {
	font-size: 16px;
	max-width: 100%;
}
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;
	border-radius: 5px;
}
#input-table table input[type="text"]:focus,
#input-table table input[type="password"]:focus,
#input-table table textarea:focus {
	outline: 2px solid var(--color_main);
}
#input-table table .form_file {
	width:100%;
}
#input-table table select {
	font-size: 15px;
}
.input_button {
	font-family: var(--font_basic);
	font-size: clamp(16px, 2vw, 21px);
	font-weight: normal;
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	color: var(--font_color);
	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: var(--font_color);
}
#input-table .submit_button {
	text-align: center;
	padding-top: 20px;
}
#input-table .privacy {
	font-size: 0.9em;
	height: 200px;
	overflow: auto;
	border: 1px solid #dddddd;
	padding: 10px;
	background: #ffffff;
}
/* セパレーター */

#input-table table tr.input-formgroup-blank th {
	/* border: none; */
	background-color: #f8f8f8;
}
#input-table table tr.input-formgroup-blank th:before {
	content: "";
}
#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 20px;
	color: var(--color_main);
	background-color: rgb(var(--color_main_rgb) / 10%);
	position: relative;
}
#input-table table tr.input-formgroup th:before {
	content: "\f077";
	position: absolute;
	font-family: var(--font_icon);
	top: 50%;
	right: 1em;
	margin-top: -0.5em;
}
#input-table table tr.input-formgroup th.formgroup-closed {

}
#input-table table tr.input-formgroup th.formgroup-closed:before {
	content: "\f078";
}
#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;
	font-size: 1.3em;
	padding-bottom: 5px;
}
#input-table table tr.input-formgroup span.input-formgroup-text {
	position: relative;
	display: block;
	padding: 0 5px 0 1em;
	margin: 0 10px 10px 10px;
	font-weight: normal;
	color: #333;
}
#input-table table tr.input-formgroup span.input-formgroup-text:before {
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 0.5em;
	border: 1px solid var(--color_main);
	content: "";
}
#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:749px) {
	#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: 20px 50px 8px 20px;
	}
	#input-table table td {
		padding: 0 20px 20px;
	}
	#input-table table td:after {
		content: "";
		display: block;
		clear: both;
	}
	input[type="text"], input[type="password"] {
		width: 100%!important;
	}
	#input-table table textarea {
		max-height: 24vw;
		width: 100% !important;
	}
	.input_required, .input_not_required:before {
		position: absolute;
		right: 20px;
		font-size: 0.8em;
		top: 20px;
		padding: 4px 6px;
	}
}
@media screen and (max-width:479px) {}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: pages */
.inner_img {
	text-align: center;
}
.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;
}
.bg_gray {
	background-color: hsl(60deg 1.96% 90% / 30%);
}
/*--------------------------------------- fixed_btn */

.fixed_btn {
	position: fixed;
	right: 1%;
	bottom: 10px;
	z-index: 100;
}
.fixed_btn a {
	text-decoration: none;
	display: block;
}
.fixed_btn img {
	width: 100%;
	max-width: clamp(100px, 11vw, 163px);
	display: inline-block;
	vertical-align: middle;
}
#ucms_chatbot_btn {
	cursor: pointer;
}
/*--------------------------------------- box_contact */

.box_contact {}
.box_contact article {
	padding-bottom: clamp(60px, 9vw, 160px);
}
.box_contact .columnBox {
	background-color: #ffffff;
	border-radius: var(--radius);
}
.box_contact .columnBox .column {
	flex-basis: 50%;
}
.box_contact .column_text {
	text-align: center;
	align-items: center;
	padding: clamp(20px, 4vw, 60px);
}
.box_contact .column_text span {
	display: inline-block;
}
.box_contact .title {
	font-weight: normal;
	line-height: 1.4;
	padding-bottom: clamp(20px, 4vw, 40px);
	margin: 0 auto;
	font-size: clamp(18px, 2vw, 32px);
}
.box_contact .text {
	padding-bottom: 20px;
}
.box_contact .hours span {
	display: block;
	font-size: clamp(12px, 1vw, 14px);
}
.box_contact .column_img {
	background-image: url(./img/site/bg_contact.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
}
@media screen and (min-width: 750px), print {
	.box_contact .column_img {
		border-radius: 0 var(--radius) var(--radius) 0;
		-webkit-mask-image: linear-gradient(to left, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 100%) 85%, rgb(0 0 0 / 0%) 100%);
		mask-image: linear-gradient(to left, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 100%) 85%, rgb(0 0 0 / 0%) 100%);
	}
}
@media screen and (max-width:749px) {
	.box_contact .column_img {
		width: 100%;
		aspect-ratio: 17/8;
		border-radius: 0 0 var(--radius) var(--radius);
		-webkit-mask-image: linear-gradient(to top, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 100%) 85%, rgb(0 0 0 / 0%) 100%);
		mask-image: linear-gradient(to top, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 100%) 85%, rgb(0 0 0 / 0%) 100%);
	}
}
/*--------------------------------------- anime_container */

.anime_container {
	width: 100%;
}
.anime_list {
	padding: 0;
	margin: 0;
}
.anime_list .thumbnail span {
	aspect-ratio: 3/2;
	height: clamp(80px, 10vw, 180px);
	display: block;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: top */

/* main_img */

.main_img {
}
.main_img .top_text_image {
	padding: 20px;
	width: 50%;
	text-align: right;
}

.body_common .bg_circle_center {
	top: 20%;
	transform: translateY(-50%);
}
/* contents */

.content_bgimage{
	display:flex;
	align-items: center;
	justify-content:center;
	width:100%;
	height:60vh;
	background-size:cover;
	background-position:center center;
}
.content_bgimage .content_text{
	font-size:300%;
	/*font-family:serif;*/
	/*font-weight:bold;*/
	color:#FFFFFF;
	text-shadow: 0 0 10px #103F72;
}
.content_top_box a:hover .content_bgimage .content_text{
	/*color:#103F72;
	text-shadow: 0 0 10px #D8E7F7;*/
	opacity: 1.0;
}
.content_top_box a:hover .content_bgimage{
	opacity: 0.85;
}

@media screen and (max-width:479px) {
	.content_bgimage .content_text{
		font-size:24px;
	}
}
#content_section_top_3 .bg_circle {
	z-index: 0;
	mix-blend-mode: multiply;
}
#content_section_top_3 .bg_circle_r {
	background-image: url(./img/bg_circle_r_2.png);
}
#content_section_top_5 article h4 {
	font-size: clamp(14px, 1vw, 18px);

}
#content_section_top_5 {
	background-image: url(./img/bg_content_5_circle.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
#content_section_top_5 article:first-child .content_text{
	margin-bottom:30px;
}
#content_topics {
	position: relative;
}
#content_topics .content_title {
	background: linear-gradient(to bottom,  rgba(230,230,229,0) 0%,rgba(230,230,229,0) 50%,rgba(230,230,229,0.3) 51%,rgba(230,230,229,0.3) 100%);
}
#content_topics h2 {
	padding: 20px 20px 0;
	max-width: 1080px;
}
.topics_contents {
	padding: var(--gap) 20px;
}
#content_section_2 article .content_text,
#content_section_4 article .content_text {
	flex-basis: 500px;
}
#content_section_3 .bg_circle {
	z-index: 0;
	mix-blend-mode: multiply;
}
#content_section_3 .bg_circle_l {
	background-image: url(./img/bg_circle_l_2.png);
}
#content_section_3 .bg_circle_r {
	background-image: url(./img/bg_circle_r_2.png);
}
#content_section_4 article h2 {
	padding-bottom: 0;
}
#content_section_4 article h3 {
	font-size: clamp(16px, 2vw, 24px);
}
#content_section_4 article h4,
#content_section_5 article h4 {
	font-size: clamp(14px, 1vw, 18px);

}
#content_section_5 {
	background-image: url(./img/bg_content_5_circle.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
}
#content_section_info {
	background-color: #e1e4e6;
}
#content_section_info article{
	gap: var(--gap_s);
	display: flex;
}
#content_section_info .info_btn {
	flex: 1;
	text-align: center;

}
#content_section_info .info_btn a {
	display: block;
	font-size: clamp(15px, 2vw, 21px);
	letter-spacing: 0.2em;
	text-decoration: none;
	padding: 3vw 20px;
	color: #fff;
	background-color: var(--color_main);
}
#content_section_info .info_btn_color_1 a {
	background: linear-gradient(135deg, var(--color_accent_2) 0%, #de75a3 100%);
}
#content_section_info .info_btn_color_2 a {
	background: linear-gradient(135deg, var(--color_main) 0%, var(--color_accent_1) 100%);
}
@media screen and (min-width:750px), print {
	.main_img {
		padding: 40px 0 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	#content_section_2 article,
	#content_section_4 article {
		display: flex;
	}
	#content_section_2 article .content_img,
	#content_section_4 article .content_img {
		margin-right: calc(50% - 50vw);
	}
}
@media screen and (max-width:749px) {
	#content_section_1 article {
		background-color: hsl(0deg 0% 97.25% / 50%);
	}
}
/* スプラッシュ画面 */
.splash_bg {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	background-color: #000;
	opacity:1;
	z-index:1000;
	position:fixed;
	display:flex;
	align-items: center;
	justify-content: space-between;
}
.splash_main {
	opacity: 0;
	width: 70%;
	margin: 0 auto;
	height: 100%;
/*	background-image: url(../../_files/HeaderImage.png);*/
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.splash_text {
	font-size:200%;
	color:#0D3B6F;
	width: 70%;
	margin: -20vh auto;
	text-align:center;
	text-shadow: 0 0 10px #FFFFFF;
	animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
	0% {
		transform: translateX(-50vw);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}
@media screen and (max-width:479px) {
	.splash_text {
		font-size:18px;
	}
}

/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: 中ページ共通 */

/* inner_img_top */
.inner_img_top {
	position: relative;
}
.inner_img_top .inner_img_top_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	mix-blend-mode: screen;
}
.inner_img_top article {
	padding: clamp(60px, 7vw, 130px) 20px clamp(10px, 2vw, 20px);
}
.inner_img_top h2 {
	font-size: clamp(21px, 3vw, 53px);
	padding: 0 0 clamp(20px, 3vw, 50px);
}
.inner_img_top h3 {
	padding-top: 0;
}
.inner_img_top .inner_img_text {
	margin-left: auto;
	max-inline-size: max-content;
}
/* inner_content */
.inner_content {

}
.inner_content article {
	max-width: 1240px;
}
.inner_content article .content_text {
	font-size: clamp(16px, 2vw, 21px);
}
.inner_content_column article {
	justify-content: space-between;
	gap: clamp(15px, 2vw, 30px);
}
.inner_content_column article .content_text {
	flex-basis: 470px;
	display: flex;
	flex-direction: column;
}
.inner_content_column article .content_text_alt {
	text-align: right;
	padding-top: 20px;
}
.inner_content_column article .content_text .content_text_main {
	flex: 1;
}
.inner_content_column article .content_img {
	text-align: center;
}

@media screen and (min-width:750px), print {
	.inner_content_column article {
		display: flex;
	}
	.inner_content_colum_left article {
		flex-direction: row-reverse;
	}
	.inner_content_colum_top article {
		flex-direction: column-reverse;
	}
	.inner_content_colum_bottom article {
		flex-direction: column;
	}
	.inner_content_colum_top article .content_text,
	.inner_content_colum_bottom article .content_text {
		flex-basis: auto;
	}
	.inner_content_colum_left article .content_text_alt {
		text-align: left;
	}
}
@media screen and (max-width:749px) {
	.inner_content_column article .content_img {
		padding-top: 20px;
	}
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: news */
.lower .containerInner_news article {
	max-width: 790px;
}
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::: recruit */
.body_recruit .inner_content h3 {
	color: #3e3a39;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: clamp(24px, 5vw, 83px);
	padding-top: clamp(125px, 13vw, 250px);
}
.body_recruit .inner_content h5 {
	color: var(--color_sub);
}
.body_recruit .recruit_year {
	color: #fff;
	padding: 2px 10px;
	position: relative;
}
.body_recruit .recruit_year:before {
	content: "";
	position: absolute;
	height: 100%;
	z-index: -1;
}
.body_recruit .bg_recruit_box:nth-child(2n+1) .recruit_year:before {
	background: linear-gradient(135deg, var(--color_main) 0%, var(--color_accent_1) 100%);
}

.body_recruit .bg_recruit_box:nth-child(2n) .recruit_year:before {
	background: linear-gradient(135deg, var(--color_accent_2) 0%, #de75a3 100%);
}

.body_recruit .img_border {
	color: #fff;
	padding: 2px 10px;
	position: relative;
}
.body_recruit .img_border:before {
	content: "";
	position: absolute;
	height: 1.4em;
	z-index: -1;
	top: 40%;
}
.body_recruit .bg_recruit_box:nth-child(2n+1) .img_border:before {
	background: linear-gradient(135deg, var(--color_main) 0%, var(--color_accent_1) 100%);
}

.body_recruit .bg_recruit_box:nth-child(2n) .img_border:before {
	background: linear-gradient(135deg, var(--color_accent_2) 0%, #de75a3 100%);
}
@media screen and (min-width:750px), print {
	.body_recruit .recruit_year:before {
		width: 100vw;
	}
	.body_recruit .bg_recruit_box:nth-child(2n+1) .recruit_year:before {
		left: 0;
		margin-left: -100px;
	}
	.body_recruit .bg_recruit_box:nth-child(2n) .recruit_year:before {
		right: 0;
		margin-right: -100px;
	}
	.body_recruit .img_border:before {
		width: 100vw;
	}
	.body_recruit .bg_recruit_box:nth-child(2n+1) .img_border:before {
		right: 0;
		margin-right: 100px;
	}
	.body_recruit .bg_recruit_box:nth-child(2n) .img_border:before {
		left: 0;
		margin-left: 100px;
	}
}
@media screen and (max-width:749px) {
	.body_recruit .img_border:before {
		width: 100%;
		left: 0;
	}
	.body_recruit .img_border:before {
		width: 100%;
		left: -100px;
	}
}
/*--------------------------------------- bg_recruit_box */
.bg_recruit_box {
	position: relative;
	min-height: 23vw;
}
.bg_recruit_box article {
}
.bg_recruit {
	position: absolute;
	z-index: 1;
	width: 100%;
	left: 0;
	background-position: center bottom;
}
.bg_recruit_1_1,
.bg_recruit_1_2 {
	background-position: top center;
	height: 35vw;
	background-size: 100% 56%;
	background-repeat: no-repeat;
}
.bg_recruit_2_blue,
.bg_recruit_2_red,
.bg_recruit_2_red_2 {
	max-height: 100%;
	background-size: auto 100%;
	background-repeat: repeat-x;
}
.bg_recruit_1_1 {
	top: 0;
	background-image: url(./img/recruit_bg_pt_1_1.png);
}
.bg_recruit_1_2 {
	top: 20px;
	background-image: url(./img/recruit_bg_pt_1_2.png);
}
.bg_recruit_2_blue {
	bottom: 0;
	background-image: url(./img/recruit_bg_pt_2_blue.png);
	aspect-ratio: 150 / 46;
}
.bg_recruit_2_red {
	background-image: url(./img/recruit_bg_pt_2_red.png);
	aspect-ratio: 150 / 40;
}
.bg_recruit_2_red_2 {
	background-image: url(./img/recruit_bg_pt_2_red_2.png);
	aspect-ratio: 150 / 58;
}
@media screen and (max-width:749px) {
	.bg_recruit_1_1,
	.bg_recruit_1_2 {
		background-size: auto 100% ;
	}
}
/*--------------------------------------- renewal */
.body_renewal h4{
	padding: clamp(20px, 3vw, 40px) 20px clamp(30px, 4vw, 60px);
}
.body_renewal .inner_content_column article .content_text{
	flex-basis: 65%;
}
@media screen and (min-width: 750px){
	.body_renewal .inner_content_column article .content_img{
		margin-top:160px;
	}
}
.content_slide{
	position:relative;
	width: 100%;
	margin: 0 auto 0;
	padding-bottom:30px;
	max-width: 1240px;
	z-index: 2;
}
.content_slide_wrapper_top,
.content_slide_wrapper{
	padding:0 5%;
}
.content_slide_box{
	margin:1%;
	text-align:center;
}
.content_slide_box img{
	border-radius:10px;
}
.bg_circle_box.bg_color{
	background-color:hsl(60deg 1.96% 90% / 50%);
}
.slick-disabled{
	opacity:0.1;
}
@media screen and (max-width: 749px){
	.slick-prev{
		left:0px !important;
		background-position:center !important;
		width:30px !important;
	}
	.slick-next{
		right:0px !important;
		background-position:center !important;
		width:30px !important;
	}
	.content_slide_wrapper_top,
	.content_slide_wrapper{
		padding:0 7%;
	}
}

/*--------------------------------------- gallery */
#lightboxOverlay { position: fixed !important; top: 0; left: 0; height: 100% !important; width: 100% !important; }
#lightbox { position: fixed !important; top: 50% !important; transform: translateY(-50%); }
.lb-data .lb-caption {
	font-size: 18px !important;
}
.lb-data .lb-number{
	display:none !important;
}
table.gallery_table td{
	width:25%;
}
@media screen and (max-width: 749px){
	.lb-data .lb-caption {
		font-size: 14px !important;
	}
	table.gallery_table td{
		display:inline-block;
		width:49%;
	}
}
/*--------------------------------------- company */
@media screen and (max-width: 749px){
	.soshikizu_table td{
		display:block;
		width:100% !important;
	}
	.soshikizu_table td table{
		width:100%;
		border: 1px solid #cccccc;
	}
	.soshikizu_table td table th,
	.soshikizu_table td table td,
		border: 1px solid #cccccc;
	}
}


