@charset "utf-8";

/* head,text */
p.text,
.texts>p {
	font-size: 1rem;
	line-height: 1.875;
	text-align: left;
}
/* Link */
.text_link a,
a.text_link {
	text-decoration: underline;
	transition: color 0.4s;
	text-decoration-thickness: 1px;
}
.text_link a:hover,
a.text_link:hover {
	text-decoration: none;
	color: inherit;
}
.block_link a,
a.block_link {
	display: block;
	transition: background 0.4s, color 0.4s, border 0.4s;
}
.block_link a img {
	transition: opacity 0.4s;
}
.block_link a:hover,
a.block_link:hover {
	text-decoration: none;
}
.block_link a:hover img,
a:hover img.opacity {
	opacity: 0.7;
	text-decoration: none;
}
.common_btn {
	text-align: center;
	margin: 2em auto 3em;
}
.common_btn a {
	position: relative;
	display: flex;
	max-width: 333px;
	width: 100%;
	color: #f63e3e;
	background: #fff;
	font-size: 1.375rem;
	font-weight: bold;
	padding: 0.5em 1.75em;
	min-height: 3.5em;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin: 0 auto 2px;
	z-index: 1;
	transition: transform .8s, box-shadow .4s;
	overflow: hidden;
	border: 2px solid #f63e3e;
	border-radius: 5em;
	box-shadow: 0 0 18px rgba(0, 23, 46, 0.1);
}
.common_btn a:hover {
	transform: translateY(4px);
	box-shadow: 0 0 0 rgba(0, 23, 46, 0.1);
}
.common_btn a::after {
	position: absolute;
	z-index: 1;
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 3px solid #f63e3e;
	border-right: 3px solid #f63e3e;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	transform: rotate(45deg) skew(10deg, 10deg);
}
.text_link a {
	position: relative;
	z-index: 1;
	display: inline-block;
	font-size: 1rem;
	font-weight: 500;
	text-align: left;
	text-underline-offset: 0.75em;
	padding: 1.75em 0 2.25em 6em;
	transition: transform .8s;
}
.text_link a:hover {
	transform: translateY(3px);
}
.text_link a::before {
	position: absolute;
	z-index: -2;
	display: inline-block;
	content: "";
	width: 82px;
	height: 82px;
	background: #f63e3e;
	border-radius: 50%;
	top: 0;
	left: 0;
	box-shadow: 0 0 18px rgba(0, 23, 46, 0.2);
	transition: box-shadow .4s;
}
.text_link a:hover::before {
	box-shadow: 0 0 0 rgba(0, 23, 46, 0.2);
}
.text_link a::after {
	position: absolute;
	z-index: -1;
	display: inline-block;
	content: "";
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	top: 0;
	left: 2.25em;
	bottom: 0.375em;
	margin: auto;
	transform: rotate(45deg) skew(8deg, 8deg);
}
.text_link.link_gry a{
	padding: 0.25em 3em .75em 0;
}
.text_link.link_gry a::before {
	width: 30px;
	height: 30px;
	background: #d0d0d0;
	left: auto;
	right:0;
	box-shadow: 0 0 5px rgba(0, 23, 46, 0.2);
}
.text_link a:hover::before {
	box-shadow: 0 0 0 rgba(0, 23, 46, 0.2);
}
.text_link.link_gry a::after {
	width: 7px;
	height: 7px;
	left:auto;
	right:0.75em;
	bottom: 0.5em;
}
@media screen and (max-width: 767px) {
	.common_btn a {
		max-width: 265px;
		font-size: 1rem;
		padding-right: 2em;
	}
	.common_btn a:hover {
		transform: none;
	}
	.common_btn a::after {
		width: 6px;
		height: 6px;
		border-width: 2px;
		right: 20px;
	}
	.text_link a {
		padding: 0.75em 0 1.25em 4em;
	}
	.text_link a:hover {
		transform: none;
	}
	.text_link a::before {
		width: 46px;
		height: 46px;
	}
	.text_link a:hover::before {
		box-shadow: 0 0 18px rgba(0, 23, 46, 0.2);
	}
	.text_link a::after {
		width: 6px;
		height: 6px;
		left: 1.25em;
	}
}
@media screen and (max-width: 340px) {
	.text_link.link_gry a{
		text-underline-offset:0.25em;
	}
	.text_link.link_gry a::before {
		top: 50%;
		transform: translateY(-50%);
		right:0;
	}
	.text_link.link_gry a::after {
		bottom: 0.05em;
	}
}
/* image */
.scale_m {
	max-width: 100%;
	width: auto;
	height: auto;
}
.scale_all {
	width: 100%;
	height: auto;
}
.img_fit {
	position: relative;
	width: 100%;
	padding-bottom: 63%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.img_fit img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	max-width: 100%;
	max-height: 100%;
	transition: transform .4s;
	display: block;
}
a.img_fit:hover img,
a:hover .img_fit img {
	transform: scale(1.05);
}
@media screen and (max-width: 767px) {
	.scale {
		width: 100%;
		height: auto;
	}
}
/* table,list */
.news-list,
.works-list{
	padding-left: 0;
}
.news-list li,
.works-list li {
	border-top: 1px solid #e9e9e9;
	list-style: none !important;
	margin: 0;
}
.news-list li:last-child,
.works-list li:last-child {
	border-bottom: 1px solid #e9e9e9;
}
.news-list li a,
.works-list li a{
	display:block;
	text-decoration: none;
}
.news-list li a:hover,
.works-list li a:hover {
	text-decoration: none;
	background: #ffdada;
}
.news-list li a article,
.works-list li a article {
	position:relative;
	z-index:1;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 5.625em;
	padding: 1em 3.25em 1em 1em;
}
.works-list li a article{
	min-height: 7.25em;
	padding: 1em 3.25em 1em 2em;
}
.news-list li a article::before,
.works-list li a article::before {
	position:absolute;
	z-index:1;
	display:inline-block;
	content:"";
	width:2.875em;
	height:2.875em;
	background:#fff;
	border-radius:50%;
	top:0;
	bottom:0;
	right:0.25em;
	margin:auto;
}
.works-list li a article::before{
	background:#d0d0d0;
}
.news-list li a article::after,
.works-list li a article::after {
	position: absolute;
	z-index: 2;
	display: inline-block;
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #f63e3e;
	border-right: 2px solid #f63e3e;
	top: 0;
	right: 1.5em;
	bottom: 0;
	margin: auto;
	transform: rotate(45deg) skew(8deg, 8deg);
}
.works-list li a article::after {
	border-color:#fff;
}
.news-list time {
	font-size: 1.125rem;
	font-weight: normal;
	letter-spacing:0.05em;
	font-family: 'Bebas Neue', sans-serif;
	color:#f63e3e;
	margin-right: 2.5em;
}
.news-list li a article p {
	font-size: 1rem;
	border: none;
	padding: 0;
	margin: 0;
}
.works-list li a article .category{
	font-size:0.875rem;
	font-weight:500;
	color:#f63e3e;
	line-height:1;
	background:#fff;
	border:1px solid #f63e3e;
	border-radius:2em;
	padding:0.5em 1.25em 0.7em;
	margin-right: 2.5em;
}
.works-list li a article p{
	position:relative;
	z-index:2;
	font-size:1rem;
	font-weight:500;
	padding-left:1em;
	margin-bottom:0;
}
.works-list li a article p::before{
	position:absolute;
	display:inline-block;
	content:"";
	width:0.75em;
	height:0.75em;
	background:#f27a52;
	top:0.375em;
	left:0;
	transform:rotate(45deg);
}
@media screen and (max-width: 767px) {
	.news-list li a:hover,
	.works-list li a:hover {
		background: #fff;
	}
	.news-list li a article,
	.works-list li a article {
		position:relative;
		z-index:1;
		flex-direction:column;
		align-items:flex-start;
		min-height: 5em;
		padding: 0.75em 3.25em 0.75em 0.5em;
	}
	.news-list li a article::before,
	.works-list li a article::before {
		width:2em;
		height:2em;
	}
	.news-list li a article::after,
	.works-list li a article::after {
		width: 5px;
		height: 5px;
		border-width:2px;
		right: 1em;
	}
	.news-list time {
		font-size: 1.125rem;
		margin-right: 0;
	}
	.works-list li a article .category{
		padding:0.5em 1em;
		margin-right: 0;
		margin-bottom:0.5em;
	}
	.works-list li a article p{
		padding-left:1.25em;
	}
	.works-list li a article p::before{
		width:0.65em;
		height:0.65em;
	}
}
/*  GoogleMAP・動画埋め込み  */
.map_wrap {
	max-width: 100% !important;
	position: relative;
	width: 100%;
	padding-bottom: 38%;
}
.map_wrap iframe {
	width: 100%;
	height: 100% !important;
	position: absolute;
	top: 0;
	left: 0;
}
#campus_map {
	height: 390px;
	margin-bottom: 20px;
}
.movie_wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}
.movie_wrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.movie_wrap2 {
	width: 100%;
	height: 0;
	padding-bottom: 590px;
	overflow: hidden;
	position: relative;
}
.movie_wrap2 iframe,
.movie_wrap2 video {
	min-width: 100%;
	min-height: 590px;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
@media only screen and (max-width: 768px) {
	.map_wrap {
		padding-bottom: 90%;
	}
	#campus_map {
		margin: 0 15px;
		box-sizing: border-box;
		width: auto;
		height: 320px;
	}
}
/*  パンくずリスト  */
#pan {
	padding-top: 15px;
	padding-bottom: 25px;
}
#pan ol {
	padding: 0;
	margin: 0;
	font-size: 0.75rem;
	display:flex;
	align-items:center;
	overflow-y: hidden;
	overflow-x: auto;
}
#pan li,
#pan li * {
	display: inline-block;
	vertical-align: middle;
}
#pan li * {
	display: inline;
	vertical-align: middle;
}
#pan li {
	margin-right: 0.25em;
	white-space:nowrap;
}
#pan li a{
	text-decoration:none;
}
#pan li a:hover{
	color:#f63e3e;
}
#pan li:before {
	content: "\003E";
	display: inline-block;
	margin-right: 0.5em;
	vertical-align: middle;
}
#pan li:first-child:before {
	content: "";
	display: none;
	margin-right: 0;
}@media only screen and (max-width: 767px) {
	#pan {
		padding:0;
		margin:15px;
		overflow:hidden;
		position:relative;
		z-index:2;
	}
	#pan:after,
	#pan li:last-child:after{
		content:"";
		display:block;
		position:absolute;
		top:0;
		bottom:0;
		right:0;
		width:10px;
		z-index:1;
background: rgb(0,0,0);
background: -moz-linear-gradient(-90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
background: -webkit-linear-gradient(-90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
background: linear-gradient(-90deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	}
	#pan a {
		text-decoration: underline;
	}
	#pan ol{
		position:relative;
		z-index:4;
	}
	#pan li a{
		text-decoration:underline;
	}
	#pan li:last-child{
		position:relative;
		padding-right:10px;
		margin-right:0;
		flex-grow: 1;
	}
	#pan li:last-child:after{
		top:-1em;
		bottom:-1em;
background: rgb(255,255,255);
background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
	}
}
/*  ページャー  */
.pager_style {
	text-align: center;
	padding: 30px 0 0 0;
}
.pager_style li {
	width: 40px;
	border: 1px solid #BBBBBB;
	background: #fff;
	display: inline-block;
	margin: 0 0 10px 0;
}
.pager_style li:hover {
	background: #024384;
}
.pager_style li.on {
	background: #024384;
}
.pager_style li a {
	font-size: 16px;
	text-decoration: none;
	display: block;
	padding: 8px 0;
}
.pager_style li.on a {
	color: #fff;
}
.pager_style li a:hover {
	color: #fff;
}
.pager_style li.prev {
	margin: 0 10px 0 0;
}
.pager_style li.next {
	margin: 0 0 0 10px;
}
@media screen and (max-width: 768px) {
	.pager_style li {
		width: 30px;
	}
	.pager_style li a {
		font-size: 12px;
		padding: 6px 0;
	}
	.pager_style li.prev,
	.pager_style li.next {
		margin: 0;
	}
}
/*  モーダル  */
.modal-content {
	width: 80%;
	max-width: 1240px;
	margin: 0px;
	padding: 10px 20px;
	background: none;
	position: fixed;
	display: none;
	z-index: 1020;
}
#modal-overlay {
	z-index: 1000;
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 120%;
	background-color: rgba(0, 0, 0, 0.66);
}
.modal_tit {
	position: fixed;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: auto;
	max-width: 250px;
	text-align: center;
	line-height: normal;
	font-size: 20px;
	z-index: 1025;
	overflow: hidden;
	padding: 0px 30px;
	color: #fff;
}
.modal_tit span {
	display: block;
	position: relative;
	padding: 10px 0px;
	background: rgb(0, 0, 0);
	z-index: 2;
	border-bottom: 1px solid rgb(255, 255, 255);
}
.modal-content .close_btn {
	position: absolute;
	top: -10%;
	right: 0px;
	color: rgb(255, 255, 255);
	font-size: 40px;
	line-height: 1;
	display: block;
	cursor: pointer;
}
@media screen and (max-width: 768px) {
	.modal-content {
		width: 100%;
		padding: 15px;
		box-sizing: border-box;
	}
}
/*  タブ切替  */
.tab_change>input[type="radio"] {
	display: none;
}
.tab_change>input[type="radio"]~.tab_table .tab_content {
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	z-index: -10;
	visibility: hidden;
	transition: opacity .4s;
}
.tab_change>input[id$="01"]:checked~.tab_table div[class$="01"],
.tab_change>input[id$="02"]:checked~.tab_table div[class$="02"],
.tab_change>input[id$="03"]:checked~.tab_table div[class$="03"],
.tab_change>input[id$="04"]:checked~.tab_table div[class$="04"],
.tab_change>input[id$="05"]:checked~.tab_table div[class$="05"],
.tab_change>input[id$="06"]:checked~.tab_table div[class$="06"],
.tab_change>input[id$="07"]:checked~.tab_table div[class$="07"],
.tab_change>input[id$="08"]:checked~.tab_table div[class$="08"] {
	opacity: 1;
	z-index: 10;
	visibility: visible;
	max-height: 200vh;
	overflow: visible;
	width: 100%;
}
.tab_controller {
	display: flex;
	justify-content: flex-start;
	margin: 0.5em 0;
	flex-wrap: wrap;
}
.tab_controller label,
.tab_controller a {
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 1px #b7b7b7;
	background: #fff;
	width: calc(25% - 3px);
	min-height: 30px;
	border-radius: 50px;
	font-weight: 500;
	margin-right: 4px;
	font-size: 0.875rem;
	line-height: 1.1;
	text-align: center;
	padding: 0px 6px;
	letter-spacing: -0.03em;
}
.tab_controller label:nth-child(4n),
.tab_controller a:nth-child(4n) {
	margin-right: 0;
}
.tab_controller label:nth-child(n+5),
.tab_controller a:nth-child(n+5) {
	margin-top: 4px;
}
.tab_controller a:hover,
.tab_controller a.on,
.tab_change>input[id$="01"]:checked~.tab_controller label[for$="01"],
.tab_change>input[id$="02"]:checked~.tab_controller label[for$="02"],
.tab_change>input[id$="03"]:checked~.tab_controller label[for$="03"],
.tab_change>input[id$="04"]:checked~.tab_controller label[for$="04"],
.tab_change>input[id$="05"]:checked~.tab_controller label[for$="05"],
.tab_change>input[id$="06"]:checked~.tab_controller label[for$="06"],
.tab_change>input[id$="07"]:checked~.tab_controller label[for$="07"],
.tab_change>input[id$="08"]:checked~.tab_controller label[for$="08"] {
	background: #f6f6f6;
}
.tab_controller a {
	transition: background .4s;
	text-decoration: none;
}
.tab_change_style .tab_controller {
	justify-content: space-between;
}
.tab_change_style .tab_controller a {
	width: 23%;
	text-decoration: none;
	transition: background .4s, color .4s;
}
.tab_change_style .tab_controller a.active,
.tab_change_style .tab_controller a:hover {
	background: #f2f2f2;
	border-color: #f2f2f2;
}
.tab_change_style .tab_table {
	box-shadow: none;
}
.form_wrap input[type="text"],
.form_wrap input[type="search"],
.form_wrap input[type="email"],
.form_wrap input[type="tel"],
.form_wrap input[type="number"],
.form_wrap input[type="password"],
.form_wrap textarea,
.form_wrap select {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #fff;
	border-radius: 0px;
	font-size: 0.875rem;
	padding: 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: #fff;
	margin: 0;
}
.form_wrap input::placeholder,
.form_wrap textarea::placeholder {
	color: #333333;
}
.form_wrap .tables .wrap textarea {
	height: auto;
	padding: 1em;
}
.form_wrap label {
	cursor: pointer;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"] {
	display: none;
}
.form_wrap input[type="radio"]+span,
.form_wrap input[type="checkbox"]+span {
	display: inline-block;
	padding: 0.25em 0.25em 0.25em 2.5em;
	position: relative;
}
.form_wrap label input[type="radio"]+span:before,
.form_wrap label input[type="checkbox"]+span:before,
.form_wrap label input[type="radio"]+span:after,
.form_wrap label input[type="checkbox"]+span:after {
	content: "";
	display: inline-block;
	width: 1.625rem;
	height: 1.625rem;
	border: solid 1px #d2d2d2;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 2px;
	transition: opacity .2s;
}
.form_wrap label input[type="checkbox"]+span:after {
	border: none;
	width: 1.1rem;
	height: 0.6rem;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	transform: rotate(135deg);
	top: 8px;
	left: 4px;
	opacity: 0;
}
.form_wrap label input[type="radio"]+span:before {
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: 0;
}
.form_wrap label input[type="radio"]+span:after {
	border-radius: 50%;
	width: 22px;
	height: 22px;
	border: none;
	background: #4fccdf;
	top: 4px;
	left: 4px;
	opacity: 0;
}
.form_wrap label input[type="radio"]:checked+span:before {
	border-color: #4fccdf;
}
.form_wrap label input[type="checkbox"]:checked+span:before {
	border-color: #4fccdf;
	background: #4fccdf;
}
.form_wrap label input[type="radio"]:checked+span:after,
.form_wrap label input[type="checkbox"]:checked+span:after {
	opacity: 1;
}
.form_wrap .select_wrap {
	display: inline-block;
	position: relative;
	z-index: 3;
	background: #fff;
}
.form_wrap .select_wrap select {
	appearance: none;
	-webkit-appearance: none;
	display: inline-block;
	vertical-align: middle;
	border: solid 1px #d2d2d2;
	border-radius: 0px;
	font-size: 1rem;
	color: #333;
	padding: 0 2.5em 0 0.5em;
	height: 2.5em;
	line-height: 2.5em;
	background: transparent;
	cursor: pointer;
	margin-bottom: 0;
}
.form_wrap .select_wrap:before {
	content: "";
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	position: absolute;
	right: 1rem;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
	transform: rotate(135deg) translate(-2px);
}
.form_wrap .form_els {
	display: flex;
	flex-wrap: wrap;
}
.form_wrap .form_els.inlines {
	display: block;
	padding-bottom: 0.25em;
}
.form_wrap .form_els>* {
	margin-right: 0.5em;
}
.form_style .form_wrap input[type="text"],
.form_style .form_wrap input[type="search"],
.form_style .form_wrap input[type="email"],
.form_style .form_wrap input[type="tel"],
.form_style .form_wrap input[type="number"],
.form_style .form_wrap input[type="password"],
.form_style .form_wrap textarea,
.form_style .form_wrap select {
	border: #d2d2d2 solid 1px;
	display: block;
	width: 100%;
	height: 3.5em;
	line-height: 3.5em;
	padding: 0 1em;
	font-weight: 500;
	margin-bottom: 0 !important;
	border-radius: 4px;
}
.form_style .form_wrap .form_els.els2 input[type="text"],
.form_style .form_wrap .form_els.els2 input[type="search"],
.form_style .form_wrap .form_els.els2 input[type="email"],
.form_style .form_wrap .form_els.els2 input[type="tel"],
.form_style .form_wrap .form_els.els2 input[type="number"],
.form_style .form_wrap .form_els.els2 input[type="password"],
.form_style .form_wrap .form_els.els2 textarea {
	border: #b0b0b0 solid 1px;
	display: inline-block;
	width: 75%;
	height: 3.5em;
	line-height: 3.5em;
	padding: 0 1em;
	font-weight: 500;
	margin-right: 0.5em;
}
.form_style .form_wrap input.error_msg:placeholder-shown {
	background: #ffeeff;
}
.form_style .form_wrap input[name="zip"],
.form_style .form_wrap input.num {
	width: 180px;
	display: inline-block;
}
.form_style .form_wrap textarea {
	height: auto;
	line-height: 1.5em;
	padding: 1em;
}
.form_style .form_wrap .form_els>* {
	margin-right: 2em;
}
.form_style .form_wrap .form_els.els2>* {
	margin-right: 0.5em;
	width: 30%;
}
.form_style .form_wrap input[type="radio"]+label {
	padding: 0.25em 0 0.25em 2em;
}
.form_style .form_wrap input[type="radio"]+label:before {
	border: #b0b0b0 solid 1px;
	width: 1.5em;
	height: 1.5em;
}
.form_style .form_wrap input[type="radio"]+label:after {
	width: 0.5625em;
	height: 0.5625em;
	top: 0.975em;
	left: 0.5em;
}
.form_style .form_wrap input[type="checkbox"]+label {
	padding: 0.5em 0 0.5em 2em;
}
.form_style .form_wrap input[type="checkbox"]+label:before {
	border: #b0b0b0 solid 1px;
	width: 1.5em;
	height: 1.5em;
}
.form_style .form_wrap input[type="checkbox"]+label:after {
	top: 0.75em;
	left: 0.5em;
}
.form_style p.default_msg {
	color: #ff0000;
	font-weight: bold;
	margin-top: 0.25em;
}
.form_style p.error_msg {
	color: #ff0000;
	font-weight: bold;
	margin-top: 0.25em;
	font-size: 1.1275em;
}
.form_style .send_txt {
	font-size: 1.25rem;
	text-align: center;
	margin-bottom: 1.5em;
}
.form_style .send_area {
	display: flex;
	justify-content: center;
	margin-top: 4em;
}
.form_style .send_area>* {
	flex-grow: 1;
}
.form_style .send_area button {
	position: relative;
	display: flex;
	max-width: 278px;
	width: 100%;
	border: solid 1px #4fccdf;
	color: #fff;
	background: #4fccdf;
	font-size: 1.25rem;
	padding: 10px;
	min-height: 3.5em;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	margin: 0 1% 2px;
	transition: color .4s;
	z-index: 0;
	font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.form_style .send_area button:hover {
	color: #4fccdf;
}
.form_style .send_area button::before {
	position: absolute;
	content: "";
	display: inline-block;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	transition: all .3s;
	transform: scale(0, 1);
	transform-origin: center top;
	z-index: -1;
}
.form_style .send_area button:hover::before {
	transform: scale(1, 1);
}
.form_style .send_area button[value="back"]:after {
	right: auto;
	left: 20px;
	transition: left 1s;
	transform: rotate(180deg);
}
.form_style .send_area button[value="back"]:hover:after {
	left: -50px;
	right: auto;
}
.form_style .form_wrap .table_style dd .input_wrap>p {
	margin: 0.5625em 0;
}
.form_style .send_area .back button:after {
	right: auto;
	left: 30px;
	transform: rotate(-135deg) skew(-10deg, -10deg);
}
.form_style .form_wrap .mwform-checkbox-field,
.form_style .form_wrap .mwform-radio-field {
	margin-left: 0 !important;
	margin-right: 1em;
}
.form_style .form_wrap dl {
	margin-bottom: 2em;
}
.form_style .form_wrap dl dt>* {
	display: inline-block;
	margin-bottom: 0;
	font-size: 1.125rem;
}
.form_style .form_wrap dl dt span {
	padding: 0.25em 0.5em;
	font-size: 0.875rem;
}
.form_style .form_wrap dl dt .txt_required {
	color: #c40106;
}
.mw_wp_form_confirm .form_style .form_wrap .caution,
.mw_wp_form_confirm .form_style .form_wrap .select_wrap:before {
	display: none;
}
.form_wrap .contact_date {
	display: flex;
	align-items: center;
}
.form_wrap .contact_date+.contact_date {
	margin-top: 1.5em;
}
.form_wrap .contact_date .preferred {
	margin: 0;
	margin-right: 1em;
}
.form_wrap .contact_date .date {
	width: calc(100% - 80px);
}
.form_style .form_wrap .contact_date .date input,
.form_style .form_wrap .contact_date .date select,
.form_style .form_wrap .name_list input,
.form_style .form_wrap .prefectures select,
.form_style .form_wrap .birth input,
.form_style .form_wrap .rank select,
.form_style .form_wrap .period select {
	display: inline-block;
	max-width: 300px;
	margin-right: 0.5em;
}
.form_style .form_wrap .tel input {
	display: inline-block;
	width: 100px;
}
.form_wrap .sub_tit {
	margin-top: 3em;
	margin-bottom: 0;
	font-weight: bold;
	font-size: 1.5rem;
}
@media screen and (max-width: 767px) {

	.form_wrap input[type="text"],
	.form_wrap input[type="search"],
	.form_wrap input[type="email"],
	.form_wrap input[type="tel"],
	.form_wrap textarea,
	.form_wrap select {
		font-size: 1rem;
	}
	.form_wrap .form_els.inlines br {
		display: none;
	}
	.form_wrap label input[type="radio"]+span,
	.form_wrap label input[type="checkbox"]+span {
		font-size: 1rem;
		padding-left: 1.25em;
	}
	.form_wrap label input[type="checkbox"]+span:before {
		width: 12px;
		height: 12px;
		top: 8px;
	}
	.form_wrap label input[type="checkbox"]+span:after {
		width: 10px;
		height: 6px;
		border-width: 3px;
		left: 1px;
		top: 9px;
	}
	.form_wrap label input[type="radio"]+span:before {
		width: 13px;
		height: 13px;
		top: 5px;
	}
	.form_wrap label input[type="radio"]+span:after {
		width: 7px;
		height: 7px;
		left: 3px;
		top: 8px;
	}
	.form_style .form_wrap dl {
		display: block;
		margin-bottom: 1em;
	}
	.form_style .form_wrap dl dt,
	.form_style .form_wrap dl dd {
		width: 100%;
	}
	.form_style .form_wrap dl dt {
		padding: 0;
	}
	.form_style .send_area {
		flex-direction: column-reverse;
		align-items: center;
		gap: 1em;
	}
	.form_wrap .contact_date {
		display: block;
	}
	.form_wrap .contact_date+.contact_date {
		margin-top: 1em;
	}
	.form_wrap .contact_date .preferred {
		margin-right: 0;
		margin-bottom: 0.5em;
	}
	.form_wrap .contact_date .date {
		width: 100%;
	}
	.form_style .form_wrap .contact_date .date input,
	.form_style .form_wrap .contact_date .date select,
	.form_style .form_wrap .prefectures select,
	.form_style .form_wrap .birth input,
	.form_style .form_wrap .rank select,
	.form_style .form_wrap .period select {
		max-width: 100%;
		margin-bottom: 0.5em !important;
		margin-right: 0;
	}
	.form_style .form_wrap .name_list input {
		width: 49%;
		margin: 0;
	}
	.form_style .form_wrap .tel input {
		width: 70px;
	}
	.form_wrap .sub_tit {
		margin-top: 1.5em;
		font-size: 1.25rem;
	}
}