@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	line-height: 1.7;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	transition: .4s;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 110px 0 120px;
	position: relative;
	overflow: hidden;
}
@media (max-width: 550px) {
	main section {
		padding: 50px 0 70px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.45em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 85px;
	display: block;
	text-align: center;
	line-height: 1.25;
	position: relative;
}
.maintitle .mf {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: clamp(2.8rem, 0.425rem + 7.6vw, 4.7rem);
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	color: #3343a6;
}
.maintitle .white{
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	text-align: center;
	font-size: clamp(2.8rem, 0.425rem + 7.6vw, 4.7rem);
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	color: #fff;
}
.maintitle .sf {
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	font-size: 76%;
	color: #333;
}
.maintitle.mtleft {
	text-align: left;
}
.toptxtmgb {
	margin-bottom: 45px !important;
}
@media (max-width: 550px) {
	.toptxtmgb {
		margin-bottom: 30px !important;
	}
	.maintitle.mtleft .sf::before {
		width: 23px;
	}
	.maintitle {
		margin-bottom: 40px;
	}
	.maintitle.mtleft {
		margin-bottom: 30px;
	}
	.maintitle {
		line-height: 1.1;
	}
	.maintitle .sf {
		font-size: 60%;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 700;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.5875rem + 1.8vw, 1.6rem);
	line-height: 1.7;
}
.mtitle span {
	font-size: 56%;
	font-weight: 700;
	position: relative;
	padding-left: 40px;
	color: #3343a6;
}
.mtitle span::before {
	background-color: #3343a6;
	position: absolute;
	content: "";
	top: 0.75em;
	left: 0;
	width: 29px;
	height: 1px;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
/*見出し03*/
.stitle {
	font-weight: 500;
	position: relative;
	font-size: clamp(1.15rem, 0.8375rem + 1vw, 1.4rem);
	margin-bottom: 20px;
	padding-bottom: 8px;
	padding-left: 2px;
	color: #333;
	line-height: 1.7;
}
.stitle span {
	font-size: 86%;
	color: #4994e6;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	margin-right: 12px;
}
.bdb {
	position: relative;
}
.bdb::after {
	content: '';
	display: block;
	height: 1px;
	background: #3343a6;
	position: relative;
	top: 10px;
	opacity: 0;
	width: 0;
	transition: 1.6s;
	transition-delay: 0.8s;
}
.inview.bdb::after {
	width: 100%;
	opacity: 1;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 15px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 13px;
	transition: .4s;
	display: inline-block;
	width: 250px;
	text-align: center;
	z-index: 1;
	overflow: hidden;
	color: #fff;
	background: #3343a6;
}
.mainbtn a:before {
	position: absolute;
	top: 0;
	left: calc(-120% + 10px);
	width: 150%;
	height: 500%;
	content: '';
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: rotate(45deg) translateX(0) translateY(0);
	transform: rotate(45deg) translateX(0) translateY(0);
	background: #4994e6;
	z-index: -1;
}
.mainbtn a:after {
	position: absolute;
	top: -400%;
	right: calc(-120% + 10px);
	width: 150%;
	height: 500%;
	content: '';
	-webkit-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	-webkit-transform: rotate(45deg) translateX(0) translateY(0);
	transform: rotate(45deg) translateX(0) translateY(0);
	background: #4994e6;
	z-index: -1;
}
.mainbtn a:hover:before {
	-webkit-transform: rotate(45deg) translateX(0) translateY(-50%);
	transform: rotate(45deg) translateX(0) translateY(-50%);
	transition: .4s;
}
.mainbtn a:hover:after {
	-webkit-transform: rotate(45deg) translateX(0) translateY(50%);
	transform: rotate(45deg) translateX(0) translateY(50%);
	transition: .4s;
}
.mainbtn a:hover {
	transition: .6s;
}
@media (max-width: 450px) {
	.mainbtn a:before {
		left: calc(-110% + 10px);
	}
	.mainbtn a:after {
		right: calc(-110% + 10px);
	}
	.mainbtn a {
		padding: 7px;
	}
}
@media (max-width: 310px) {
	.mainbtn a {
		width: 90%;
		padding: 7px;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 7px;
	}
	.flexbox div {
		width: 100%;
	}
}
.reverse {
	flex-direction: row-reverse;
}
/*幅*/
.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner2{
	width: 100vw;
	height: 100vh;
	text-align: center;
	align-items: center;
	margin: auto;
}
.toppage .inner {
	max-width: 1350px;
}
.topbgtext {
	position: relative;
}
.topbgtext::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -10px;
	width: 100%;
	height: 100%;
	background-image: url(../img/top.svg);
	background-repeat: repeat-y;
	background-position: 0 0;
	background-size: auto 2000px;
	animation: flow-font01 50s linear infinite;
	z-index: -100;
	opacity: 0.05;
}
@keyframes flow-font01 {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 -1000px;
	}
}
@media (max-width: 750px) {
	.topbgtext::before {
		content: none;
		left: -15px;
		background-size: auto 1500px;
		opacity: 0.03;
	}
}
.w65 {
	width: 65%;
}
.w52 {
	width: 52%;
}
.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w44 {
	width: 44%;
}
.w32 {
	width: 32%;
}

br.sp{
	display: none;
}
@media(max-width:520px){
	br.sp{
		display: block;
	}	
}

/* 背景 */
.bg_grey, .bg_grey02 {
	position: relative;
}
.bg_grey::before {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #f7f7f7;
	z-index: -15;
}
.bg_grey02::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -2;
	background: linear-gradient(0deg, rgba(247, 247, 247, 0.95), rgba(247, 247, 247, 0.95)), url(../img/bg_grey.svg) no-repeat center/cover;
}

.bg_blue{
	background: #3343a6;
	color: #fff;
}

.white{
	color: #fff;
}
/*=== 共通部分ここまで ===*/
/* header */
.header_tel {
	display: flex;
	align-items: center;
}
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
	padding: 13px 5px 15px;
}
.header {
	transition: all .5s;
	z-index: 100;
	position: relative;
	font-weight: 500;
	width: calc(100% - 190px);
}
.tel {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 190px;
	transition: .3s;
}
.tel a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50%;
	width: 100%;
	text-align: center;
	background: #3343a6;
	color: #fff;
	font-size: 0.97rem;
}
.tel a:last-child {
	font-size: 0.93rem;
	position: relative;
	bottom: 0;
	background: #4994e6;
}
.tel a:hover {
	opacity: 0.8;
	transition: .3s;
}
.tel a i {
	margin-right: 7px;
	font-size: 95%;
}
.header_inner {
	width: 99%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	margin-left: 10px;
	width: 375px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	position: relative;
	line-height: 1.55;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 0 15px;
	color: #333;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 80%;
	color: #4994e6;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 5px;
	font-size: 0.9rem;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.hum_tel {
	text-align: center;
	margin-bottom: 15px;
}
.hum_tel:last-child {
	margin-bottom: 0;
}
.hum_tel a {
	pointer-events: none;
	color: #ffd638;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #ffd638;
}
.menu_btn {
	position: fixed;
	top: 19px;
	right: 16px;
	cursor: pointer;
	display: flex;
	height: 23px;
	width: 23px;
	justify-content: center;
	align-items: center;
	z-index: 110;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 30px;
	background: #3343a6;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 7px;
}
.menu_btn span:after {
	top: 7px;
}
#menu_btn_check:checked ~ .menu_btn span {
	background-color: rgba(255, 255, 255, 0) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::before {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
}
#menu_btn_check {
	display: none;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	background-size: cover;
	background-position: center;
	overflow: auto;
}
.menu_content .menu_padding {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	max-width: 600px;
	width: 90%;
}
.menu_content nav {
	padding: 0 15px 25px;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
	text-align: center;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
	padding: 13px 4px;
	color: #333;
	position: relative;
	line-height: 1.65;
}
.menu_padding ul li a span {
	display: block;
	font-size: 75%;
	color: #4994e6;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	background: #fff;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
}
.menu_content .mainbtn a {
	padding: 10px !important;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after, .menu_content .mainbtn a:before {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px;
	background: #3343a6;
	color: #fff;
	font-size: 0.93rem;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1155px) {
	.header_sticky {
		padding: 15px;
	}
	.header {
		background: transparent;
		width: 100%;
	}
	.header_logo {
		width: 355px;
		margin-left: 0;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.tel {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.menu_btn {
		top: 17px;
		right: 30px;
	}
}
@media (max-width: 500px) {
	.header_sticky {
		padding: 16px 7px;
	}
	.header_logo {
		width: 245px;
		margin-left: 0;
	}
	.menu_btn {
		top: 12px;
		right: 18px;
	}
	.menu_content .mainbtn a {
		width: 100%;
		padding: 8.5px !important;
		font-size: 0.85rem;
	}
	.menu_content ul li a {
		font-size: 0.97rem;
	}
	.menu_content .mainbtn {
		margin: 0 15px;
		margin-bottom: 5px;
	}
}
@media (max-width: 315px) {
	.header_title {
		width: 64vw;
	}
	.menu_btn {
		top: 1%;
		right: 15px;
	}
}
/* footer */
/* フッターお問い合わせリンク */
.fax {
	pointer-events: none;
}
.footer_contact {
	position: relative;
	z-index: 1;
	background: url(../img/footer.jpg);
	background-size: cover;
	background-position: 50% 10%;
	padding: 50px 0 75px;
	text-align: center;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
_:lang(x) + _:-webkit-full-screen-document, .footer_contact {
	background-attachment: scroll;
}
.footer_contact::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.65;
	z-index: -1;
}
.footer_contact .inner {
	max-width: 1000px;
}
.footer_contact .maintitle .mf, .footer_contact .maintitle .sf {
	color: #fff;
}
	.footer_contact .flexbox {
		justify-content: space-around;
	}
.footer_contact .btn_wrap .btn a {
	display: block;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 15px 5px;
	font-size: 1.15rem;
	font-weight: 500;
	white-space: nowrap;
}
.footer_contact .btn_wrap .btn a:hover {
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, 0.1);
}
.footer_contact .btn_wrap .btn {
	width: 300px;
	margin-bottom: 13px;
}
@media (max-width: 990px) {
	.footer_contact .flexbox {
		justify-content: space-around;
	}
	.footer_contact .btn_wrap .btn {
		width: 210px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 0.9rem;
	}
}
.cwrap {
	margin-top: 45px;
}
.footer_contact .maintitle {
	color: #fff;
	margin-bottom: 35px;
}
.ctext {
	font-size: 1.3rem;
	margin-bottom: 45px;
}
.ctitle {
	font-size: 1.35rem;
	font-weight: 500;
	position: relative;
	margin-bottom: 17px;
	margin-left: 3px;
}
.fcon {
	text-align: center;
}
@media (max-width: 750px) {
	.cwrap {
		margin-top: 55px;
	}
	.fcon {
		margin-bottom: 35px;
	}
	.fcon:last-child {
		margin-bottom: 25px;
	}
	.footer_contact .maintitle {
		margin-bottom: 25px !important;
	}
	.ctext {
		margin-bottom: 35px;
	}
	.ctitle {
		font-size: 1.2rem;
		margin-bottom: 25px;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 65%;
		margin: auto;
		margin-bottom: 15px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
	.ctext {
		font-size: 100%;
	}
}
@media (max-width: 450px) {
	.footer_contact::after {
		opacity: 0.7;
	}
	.fcon {
		margin-bottom: 27px;
	}
	.footer_contact .btn_wrap .btn {
		width: 83%;
		margin-bottom: 10px;
	}
	.footer_contact .maintitle {
		margin-bottom: 30px !important;
	}
	.ctitle {
		font-size: 1.1rem;
		margin-bottom: 15px;
	}
	.footer_contact {
		padding: 45px 0;
	}
	.footer_contact {
		background-attachment: scroll;
	}
}
@media (max-width: 325px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
}
/* ロゴとアドレス */
.footer_address {
	position: relative;
	text-align: center;
	padding: 40px 0;
	z-index: 1;
}
.flogo {
	width: 425px;
	margin-bottom: 25px;
}
.footer_address p {
	font-size: 0.9rem;
	margin-bottom: 3px;
	line-height: 1.8;
}
.address br {
	display: none;
}
/* コピーライト */
.copyright {
	text-align: center;
	background: #3343a6;
	color: #fff;
	padding: 7px 3px 10px;
	font-size: 0.9rem;
}
@media (max-width: 750px) {
	.flogo {
		width: 385px !important;
	}
}
@media (max-width: 450px) {
	.address br {
		display: block;
	}
	.flogo {
		max-width: 86%;
		margin-bottom: 25px;
	}
}
@media (max-width:550px) {
	.address br {
		display: block;
	}
	.footer_address p {
		line-height: 1.9;
		font-size: 0.85rem;
		margin-bottom: 20px;
	}
	.footer_address p:last-child {
		margin-bottom: 0 !important;
	}
}
@media (max-width: 500px) {
	.copyright {
		font-size: 0.75rem;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 57px;
	height: 57px;
	box-sizing: border-box;
	background: #4994e6;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9;
	border-radius: 50px;
}
.go_top::before {
	font-family: "Font Awesome 5 Free";
	content: "\f077";
	font-weight: bold;
	color: #fff;
	font-size: 1.8rem;
	position: absolute;
	top: 45%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.go_top:hover {
	opacity: 0.6;
}
.tfade {
	position: relative;
	z-index: 9;
}
@media(max-width:550px) {
	.go_top {
		width: 50px;
		height: 50px;
		right: 15px;
		opacity: 1;
	}
	.go_top::before {
		font-size: 1.6rem;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
}
.slide_items {
	width: 100%;
	overflow: hidden;
	margin-left: auto;
	background: #fff;
}
.slide_items div {
	position: relative;
}
.extext {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 3px 10px 5px 10px;
	background: #3343a6;
	color: #fff;
	margin: 0;
	font-size: 1.1rem;
}
.slide_items img {
	width: 100%;
	height: calc(100vh - 145px);
	min-height: 750px;
	object-fit: cover;
	z-index: -2;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 3.2rem;
	letter-spacing: 0.2em;
	z-index: 2;
	line-height: 1.4;
	text-shadow: #fff 0px 0px 2px, #fff 0px 0px 2px, #fff 0px 0px 6px, #fff 0px 0px 9px, 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
	color: #3343a6;
	top: 50%;
	left: 65px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	font-weight: 700;
}
.slide_text p {
	transition: 1.8s;
	margin-bottom: 0;
}
@media (max-width: 985px) {
	.slide_items {
		width: 100%;
	}
	.slide_items img {
		min-height: auto;
		height: 550px;
	}
	.slide_text {
		top: 49%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		text-align: center;
		font-size: clamp(1.7rem, 3vw, 2.5rem);
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 360px;
	}
}
@media (max-width: 500px) {
	.extext {
		font-size: 0.85rem;
	}
	.slide_text {
		left: 53%;
		line-height: 1.8;
		text-shadow: #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 1px, #fff 0px 0px 2px, #fff 0px 0px 3px, #fff 0px 0px 4px, #fff 0px 0px 5px, #fff 0px 0px 5px;
		font-size: 7vw;
	}
}
.pdb {
	padding-bottom: 50px;
}
@media (max-width: 550px) {
	.pdb {
		padding-bottom: 30px;
	}
}
.pdb0 {
	padding-bottom: 0;
}
.center {
	text-align: center;
}
.aic {
	align-items: center;
}
.fitc {
	width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.tbtn {
	margin-top: 40px;
}
.tbtn02 {
	margin-top: 70px;
}
@media (max-width: 450px) {
	.tbtn, .tbtn02 {
		margin-top: 35px;
	}
}
.aic {
	align-items: center;
}
/*アニメーション*/
/*flowup*/
.flowup {
	opacity: 0;
	transform: translateY(45px);
	transition: opacity 1.2s, transform 0.8s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*flowdown*/
.flowdown {
	opacity: 0;
	transform: translateY(-45px);
	transition: opacity 1.2s, transform 0.8s;
}
.flowdown.inview {
	opacity: 1;
	transform: translateY(0);
}
/*img*/
.img_up {
	position: relative;
	overflow: hidden;
}
.img_up::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(to right, #4994e6, #fff);
	pointer-events: none;
	z-index: 1;
	transform: translateX(-100%);
	transition: opacity 1.2s, transform 1.5s;
}
.img_up .img_up_in {
	opacity: 0;
	transition: 1.2s;
	transition-delay: 0.4s;
}
.img_up.inview .img_up_in {
	opacity: 1;
}
.img_up.inview::after {
	opacity: 0.6;
	transform: translateX(101%);
}
/*delay*/
.delay01 {
	transition-delay: 0.3s !important;
}
.delay02 {
	transition-delay: 0.5s !important;
}
/* 新着情報 */
.news {
	padding: 60px 0;
}
.news .inner {
	max-width: 1100px;
}
.news .maintitle {
	margin-bottom: 30px;
}
@media (max-width: 750px) {
	.news {
		padding: 40px 0 25px;
	}
}
/* ご挨拶 */
.welcome p {
	margin-bottom: 15px;
}
.welcome p:last-child {
	margin-bottom: 0 !important;
}
.wtext {
	font-weight: 700;
	font-size: 130%;
	margin-bottom: 20px !important;
}
@media (max-width: 1340px) {
	.wtext {
		font-size: 115%;
		margin-bottom: 15px !important;
	}
}
@media (max-width: 1060px) {
	.wtext br {
		display: none;
	}
}
@media (max-width: 750px) {
	.welcome p {
		margin-bottom: 10px;
	}
	.wtext {
		font-size: 104%;
		margin-bottom: 13px !important;
	}
}
@media(min-width:1250px) {
	.inner02 {
		width: 90%;
		max-width: 1350px;
		margin: 0 auto;
	}
	.img2col_text {
		padding: 0 0 0 4%;
	}
	.reverse .img2col_text {
		padding: 0 4% 0 0;
	}
}
@media(max-width:1249px) {
	.reverse .img2col_text, .img2col_text {
		padding: 0 4%;
	}
}
.img2col {
	max-width: 950px;
	flex-wrap: nowrap;
	justify-content: center;
}
.img2col div img {
	object-fit: cover;
	height: 500px;
	width: 100%;
}
.textimg {
	align-items: center;
}
.img2col {
	overflow: hidden;
}
.img2col div:nth-child(1) {
	margin: 30px 0 0 0;
}
.img2col div:nth-child(2) {
	margin: 0 0 0 15px;
}
.img_left div:nth-child(1) {
	margin: 0 15px 0 0;
}
.img_left div:nth-child(2) {
	margin: 30px 0 0 0;
}
.reverse .img2col div:nth-child(2) {
	margin: 30px 0 0 0;
}
.reverse .img2col div:nth-child(2) {
	margin: 0 0 0 15px;
}
.reverse .img_left div:nth-child(1) {
	margin: 0 15px 0 0;
}
.reverse .img_left div:nth-child(1) {
	margin: 30px 0 0 0;
}
@media(max-width:750px) {
	.img2col div:nth-child(1) {
		margin: 0;
	}
	.img2col div:nth-child(2) {
		margin: 0;
	}
	.img_left div:nth-child(2) {
		margin: 0;
	}
	.reverse .img2col div:nth-child(2) {
		margin: 0;
	}
	.reverse .img2col div:nth-child(1) {
		margin: 0;
	}
	.reverse .img_left div:nth-child(1) {
		margin: 0;
	}
	.img2col div img {
		object-fit: cover;
		height: 200px !important;
		margin-bottom: 10px !important;
	}
	.inner02 {
		width: 90%;
		margin: 0 auto;
	}
	.reverse .img2col_text, .img2col_text {
		padding: 0;
	}
}
@media(max-width:650px) {
	.img2col div img {
		object-fit: cover;
		height: 200px !important;
		width: 100%;
	}
}
@media(max-width:450px) {
	.img2col div img {
		height: 140px !important;
	}
}
/*事業内容*/
.services .flexbox {
	margin-bottom: 70px;
}
.services .flexbox:last-child {
	margin-bottom: 0 !important;
}
/*コンテンツ*/
.contents .inner {
	max-width: 1200px;
}
.link {
	overflow: hidden;
	position: relative;
}
.link::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: calc(100% - 15px);
	height: calc(100% - 15px);
	border: 0.9px solid #fff;
	pointer-events: none;
	z-index: 2;
}
.link::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #3343a6;
	z-index: 1;
	opacity: 0.65;
	pointer-events: none;
	transition: .3s;
}
.link a:hover img {
	transform: scale(1.05);
}
.link:hover::after {
	opacity: 0.4;
}
.link img {
	margin-bottom: 0 !important;
}
.link h3 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	color: #fff;
	z-index: 2;
	font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
	font-weight: 700;
	text-shadow: 0px 0.3px 3px rgb(51 67 166 / 95%), 0px -0.3px 3px rgb(51 67 166 / 85%);
	transition: .3s;
}
.link a:hover h3 {
	text-shadow: none;
}
.link h3 span {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 700;
	position: absolute;
	top: 23%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0.2;
	font-size: 400%;
	text-shadow: none;
}
@media(max-width:1260px) {
	.link h3 span {
		font-size: 300%;
		top: 40%;
	}
}
@media(max-width:750px) {
	.link {
		margin-bottom: 13px;
	}
	.link:last-child {
		margin-bottom: 0 !important;
	}
}
/* 下層ページFV =============================================================================================*/
.fv {
	height: 320px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/fv.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 35%;
	position: relative;
}
.fv::before {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #333;
	opacity: 0.55;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	text-shadow: 0 0 6.5px #333, 0px 0.3px 2.5px rgb(0 0 0 / 25%), 0px -0.3px 2px rgb(0 0 0 / 30%);
	margin-bottom: 0 !important;
	z-index: 1;
	position: relative;
	color: #fff;
	line-height: 1.15;
}
.fv h2 .mf, .fv h2 .sf {
	color: #fff;
}
.fv .maintitle::after {
	content: none;
}
@media (max-width: 1205px) {
	.fv {
		height: 265px;
	}
}
@media(max-width:1000px) {
	.fv {
		height: 225px;
	}
	.fv .inner {
		max-width: 90%;
	}
}
@media(max-width:650px) {
	.fv {
		height: 210px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 150px;
	}
	.fv h2 {
		line-height: 0.95;
	}
	.fv h2 .mf {
		font-size: 2.2rem;
	}
}
/* breadcrumb */
.binner {
	width: 95%;
	font-size: 0.8rem;
	position: relative;
}
.breadcrumb {
	z-index: 1;
	background: transparent;
	position: absolute;
	top: 0;
	left: 0;
}
.breadcrumb li {
	display: inline;
	list-style: none;
}
.breadcrumb li:after {
	content: '>';
	padding: 0 0.2em;
	position: relative;
	top: -0.1em;
}
.breadcrumb li:last-child:after {
	content: '';
}
.breadcrumb li a {
	text-decoration: none;
	color: #133272;
}
.breadcrumb li:first-child a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f015';
	font-weight: bold;
	font-size: 90%;
	position: relative;
	top: -0.05em;
}
@media(max-width:550px) {
	.breadcrumb {
		font-size: 0.63rem;
	}
}
/* 医療部品・自動車部品ページ ================================================================================*/
/**/
.contents_slider li {
	position: relative;
}
.contents_slider li::before {
	content: '';
	display: block;
	padding-top: 75%;
}
.contents_slider li img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
/*作業環境*/
.photo {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
.photo::after {
	content: "";
	display: block;
	width: 32%;
}
.photo div {
	width: 32%;
	margin-bottom: 20px;
}
@media(max-width:750px) {
	.photo div {
		width: 48%;
		margin-bottom: 10px;
	}
}
.rmtitle {
	background: linear-gradient(60deg, #3343a6 0%, #3343a6 90%, #4994e6 90%);
	padding: 12px 20px;
	color: #fff;
	margin-bottom: 30px;
	font-weight: 500;
	position: relative;
	letter-spacing: 0.1em;
	font-size: clamp(1.15rem, 0.97rem + 0.64vw, 1.45rem);
	line-height: 1.5;
}
@media(max-width:550px) {
	.rmtitle {
		padding: 7px 10px;
		margin-bottom: 20px;
	}
}
/*医療部品 見出し*/
.stmtitle {
	position: relative;
	padding-top: 7px;
	padding-left: 22px;
	line-height: 1.2;
	margin-bottom: 30px;
}
.stmtitle:after, .stmtitle:before {
	content: '';
	position: absolute;
	height: 51%;
	width: 8px;
	left: 0;
}
.stmtitle:before {
	top: 0;
	background-color: #3343a6;
}
.stmtitle:after {
	bottom: 0;
	background-color: #4994e6;
}
@media(max-width:750px) {
	.stmtitle {
		padding-left: 20px;
		margin-top: 10px;
		margin-bottom: 23px;
	}
}
/* 採用情報ページ ================================================================================*/
.rectop {
	margin-bottom: 80px;
}
@media(max-width:550px) {
	.rectop {
		margin-bottom: 30px;
	}
}
/*画像2つ並び*/
.abflex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.abflex div {
	width: 49%;
}
@media(max-width:550px) {
	.abflex div {
		width: 48.5%;
	}
	.abflex {
		margin-bottom: 15px;
	}
}
/* 会社概要ページ ================================================================================*/
/*理念*/
.philosophy {
	padding-bottom: 160px;
}
.phtext {
	font-size: 1.8rem;
}
@media(max-width:750px) {
	.philosophy {
		padding-bottom: 70px;
	}
	.phtext {
		font-weight: 700;
		font-size: 4.3vw;
		white-space: nowrap;
	}
}
.phanim::after {
	content: '';
	display: block;
	height: 1px;
	background: #4994e6;
	position: relative;
	top: 10px;
	opacity: 0;
	width: 100%;
	transition: 1.6s;
	transition-delay: 0.8s;
	transform: scale(0, 1);
}
.inview.phanim::after {
	transform: scale(1, 1);
	opacity: 1;
}
/*代表挨拶*/
.glast {
	text-align: right;
	margin-top: 25px;
}
/*会社概要 table */
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.info_table tr {
	border: 2px solid #f5f5f5;
}
.info_table th, .info_table td {
	padding: 14px 0;
	font-weight: 500;
}
.info_table th {
	background: #4994e6;
	color: #fff;
	width: 28%;
	border-right: 2px solid #f5f5f5;
}
.info_table td {
	padding-left: 12px;
	padding-right: 7px;
	background: #fff;
	width: 72%;
	border-right: 2px solid #f5f5f5;
	border-left: 2px solid #f5f5f5;
}
@media(max-width:550px) {
	.info_table td {
		padding-left: 7px;
	}
	.info_table {
		font-size: 0.87rem;
	}
}
/* check list absolute */
.acheck li {
	padding-left: 20px;
	position: relative;
	border-bottom: 1px dotted #3343a6;
	padding-bottom: 3px;
	margin-bottom: 3px;
}
.acheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #4994e6;
	font-size: .9em;
	position: absolute;
	top: 0.15em;
	left: 0;
}
/* 沿革 */
.history .maintitle {
	margin-bottom: 45px;
}
.history .maintitle .mf, .history .maintitle .sf {
	color: #fff;
}
.history {
	position: relative;
	z-index: 1;
	background: url(../img/history.jpg);
	background-size: cover;
	background-position: 50% 10%;
	padding: 50px 0 75px;
	color: #fff;
	background-attachment: fixed;
}
/*Safari*/
_:lang(x) + _:-webkit-full-screen-document, .history {
	background-attachment: scroll;
}
.history::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #3343a6;
	opacity: 0.9;
	z-index: -1;
}
@media(max-width:550px) {
	.history::after {
		opacity: 1;
	}
	.history .maintitle {
		margin-bottom: 25px;
	}
	.history {
		background-attachment: scroll;
	}
}
/* 沿革 table */
.history_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.history_table tr {
	border-bottom: 0.9px solid rgba(255, 255, 255, 0.5);
}
.history_table th {
	background: transparent;
	width: 35%;
}
.history_table th, .history_table td {
	font-weight: 500;
	padding: 15px 0;
	color: #fff;
}
.history_table td {
	padding-left: 10px;
	padding-right: 10px;
	width: 65%;
	background: transparent;
}
@media(max-width: 550px) {
	.history_table {
		border-collapse: collapse;
	}
	.history_table tr {
		border-bottom: none;
	}
	.history_table td {
		border-bottom: 0.9px solid rgba(255, 255, 255, 0.5);
		margin-bottom: 0;
	}
	.history_table td, .history_table th {
		width: 100%;
		padding: 8px 8px 13px;
		display: block;
	}
	.history_table th {
		text-align: left;
		padding-bottom: 0;
	}
}
/* map */
.mapbox .stitle {
	background: #3343a6;
	padding: 7px 0;
	padding-left: 12px;
	border-bottom: none;
	border-left: 10px solid #4994e6;
	color: #fff;
	margin-bottom: 25px;
}
@media(max-width: 750px) {
	.mapbox .stitle {
		padding: 4px 0 6px;
		padding-left: 10px;
		margin-bottom: 15px;
	}
	.mapbox {
		margin-bottom: 35px;
	}
	.mapbox:last-child {
		margin-bottom: 0;
	}
	.mapbox iframe {
		height: 280px;
	}
}
dl.detail {
    display: flex;
    flex-wrap: wrap;
}
dl.detail dt {
    font-weight: bold;
    padding: 1.5rem;
    width: 25%;
}
dl.detail dd {
    padding: 1.5rem;
    width: 75%;
}
/* 施工実績============================================================ */

.works_flex{
	margin: 0 0 30px ;
	display: flex;
	justify-content: space-evenly;
	align-items: stretch;
	flex-wrap: wrap;
	width: 100%;
}
.works_flex figure{
	width: calc(100% / 3 - 10px);
	padding: 10px;
	margin: 20px 5px;
	background: #fff;
	max-width: 400px;
	position: relative;
}
.works_flex figure img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	background-color: #f5f5f5;
}

.works_flex figure figcaption h3{
	font-size: 1.1rem;
	color: #2f4c80;
	font-family: 'Noto Serif JP', serif;
	font-weight: 700;
	border-bottom: 1px solid #2f4c80;
	min-height: 200%;
	vertical-align: middle;
}
.works_flex figure figcaption h4{
	font-size: 1em;
	font-family: 'Noto Serif JP', serif;
	color: #2f4c80;
}
.works_flex figure figcaption dl{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}
.works_flex figure figcaption dl dt{
	width: 6em;
	background:#1b1464;
	color: #fff;
	padding: 0.3em ;
	text-align: center;
}
.works_flex figure figcaption dl dd{
	padding: 0.3em 0.5em ;
}

.company_table{
	width: 100%;
	font-size: 1em;
	border-collapse: collapse;
	border-spacing: 0;
	margin: 30px 0;
	background: #fff;
}
.company_table tr:nth-child(odd){
	background:#f5f5f5;
}
.company_table th{
	background: #ff9400;
	color: #fff;
	text-align: left;
	padding: 10px;
	border-bottom: solid 1px #2f4c80;
}
.company_table td{
	padding: 10px;
	border-bottom: solid 1px #08699c;
	color: #2f4c80;
}
.company_table td strong{
	color: #2f4c80;
}
.company .company_table th{
	width: 6.5em;
}
.company .company_table ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.5em;
}
.company .company_table ul li{
	margin-left: 1em;
	display: inline-block;
	vertical-align: middle;
}
.company .company_table span{
	display: inline-block;
}
.works tr th,.works tr td{
	font-size: 95%;
}
.works tr td:first-child{
	font-family: 'Noto Serif JP', serif;
	color: #2f4c80;
	font-size: 1em;
	padding-right: 0;
}
.works tr td:last-child{
	text-align: right;
	padding-left: 0.5em;
	position: relative;
}
.works tr td:last-child::before{
	position: absolute;
	left: -0.5em;
	top:50%;
	transform: translateY(-50%);
	content: '〜';
	font-size: 1em;
}
@media (max-width: 959px){
		.table_wrap{
		width: 100%;
		overflow: auto;
	}
	.table_wrap .works{
		min-width: 960px;
	}

}
@media (max-width: 750px){
	.company_table{
		margin-top: 10px;
	}
	.company_table th{
		 font-size: 0.9em;
	}
	.works_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: auto;
	}
	.works_flex figure{
		width: calc(100% - 10px);
	}

}
/* お問い合わせページ ================================================================================*/
.ct {
	max-width: 900px;
	margin: auto;
}
.tl_mini {
	margin-bottom: 0;
	line-height: 1.3;
}
.contact_wrap {
	padding: 20px 15px;
	background: #fff;
	box-shadow: rgb(0 0 0 / 4%) 0px 6px 24px 0px, rgb(0 0 0 / 3%) 0px 0px 0px 1px;
}
.tel_contact i {
	color: #4994e6;
}
.tel_contact {
	font-size: clamp(1.4rem, 1.1rem + 1.0667vw, 1.9rem);
	margin-bottom: 3px;
	white-space: nowrap;
	color: #333;
}
.tel_contact:hover {
	color: #333;
	opacity: 0.6;
}
@media (max-width: 750px) {
	.contact_wrap {
		margin-bottom: 7px;
	}
	.contact_wrap:last-child {
		margin-bottom: 0 !important;
	}
}
@media (max-width: 450px) {
	.contact_wrap {
		padding: 10px;
	}
	.contact_wrap:last-child {
		margin-bottom: 0;
	}
	.tl_mini {
		font-size: 0.8rem;
		margin-bottom: 0;
		line-height: 1.3;
	}
}
.cotm {
	margin-bottom: 35px;
}
.cotop {
	line-height: 2.3;
	margin: auto;
	margin-bottom: 50px;
	max-width: 600px;
}
@media (max-width:930px) {
	.cotm {
		margin-bottom: 25px !important;
	}
	.cotop {
		font-size: 90%;
		margin-bottom: 30px;
	}
}
.telmgb {
	margin-bottom: 15px;
}
.famgb {
	margin-bottom: 27px;
}
.tl_text {
	font-size: clamp(1rem, 0.94rem + 0.2133vw, 1.1rem);
	margin-bottom: 30px;
}
.fax_note {
	max-width: 750px;
	margin: auto;
	margin-top: 30px;
}
.fax_note .fitc {
	margin-bottom: 15px;
}
@media (max-width: 930px) {
	.fax_note .fitc {
		font-size: 95%;
	}
}
.faxs {
	padding-top: 70px;
}
.fax {
	pointer-events: none;
}
.fax_note li {
	margin-bottom: 0;
}
.ccheck li {
	position: relative;
	border-bottom: 1px solid #3343a6;
	padding-bottom: 3px;
}
.ccheck li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f14a";
	font-weight: bold;
	display: inline-block;
	color: #3343a6;
	margin-right: 0.4em;
	font-size: 0.93em;
	text-decoration: none;
}
@media (max-width: 750px) {
	.fax_note li {
		margin: 7px 0;
		width: 100%;
	}
}
@media (max-width:550px) {
	.fax_note {
		margin-top: 15px;
	}
}
@media (max-width: 450px) {
	.telmgb {
		margin-bottom: 10px;
	}
	.tl_text {
		margin-bottom: 20px;
	}
	.faxs {
		padding-top: 40px;
	}
}
/* 繝｡繝ｼ繝ｫ */
.mnote {
	max-width: 925px;
	margin: auto;
	margin-top: 50px;
}
.mpdb {
	padding-bottom: 50px;
}
@media(max-width:450px) {
	.mnote {
		margin-top: 30px;
	}
	.mpdb {
		padding-bottom: 20px;
	}
}
.formsel label, .selection small {
	font-weight: 500 !important;
}
.formsel p {
	display: inline-block;
	margin-right: 10px;
	font-size: 0.95rem;
	white-space: nowrap;
}
.formsel p:last-child {
	margin-bottom: 0;
}
@media (max-width: 450px) {
	.formsel p {
		display: block;
		margin-right: 0;
	}
}
.mailform {
	max-width: 1100px;
	margin: 40px auto 0;
}
@media (max-width: 850px) {
	.mailform {
		margin: 50px auto 0;
	}
}
@media (max-width: 450px) {
	.mailform {
		margin-top: 0;
	}
}
.mailform .row {
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.mailform .row:not(.last) {
	border-bottom: 0.9px dotted #333;
}
.mailform .row div {
	text-align: left;
}
.mailform .row div:nth-child(1) {
	width: 28%;
	font-weight: 500;
	font-size: 0.9rem;
}
.mailform .row div:nth-child(2) {
	width: 70%;
	line-height: 1.5;
}
.mailform .row span {
	color: #fff;
	background: #3343a6;
	padding: 5px;
	margin-right: 5px;
	font-size: 11px;
	font-weight: 500;
}
.mailsp {
	background: #fff !important;
	border: 1px solid #3343a6;
	color: #3343a6 !important;
}
.mailform .row small {
	display: block;
	margin-top: 3px;
}
.mailform label {
	color: #333;
	font-weight: 500;
}
.mailform .box, .mailform textarea {
	border: 1px solid #ddd;
	padding: 5px;
	width: 100% !important;
	border-radius: 0;
	-webkit-appearance: none;
	margin-bottom: 5px;
	background: #fff;
}
.mailform button {
	display: block;
	text-align: center;
	font-size: 1rem;
	margin: 1% auto 0;
	white-space: nowrap;
	border: 1px solid transparent;
	color: #fff;
	background: #3343a6;
	font-weight: 500;
	padding: 1.2% 8%;
	transition: .4s;
}
.mailform button:hover {
	background-color: #fff;
	color: #3343a6;
	border: 1px solid #3343a6;
	opacity: 1;
}
.mailform button::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: bold;
	margin-right: 10px;
}
@media (max-width: 450px) {
	.mailform button {
		width: 65%;
		padding: 13px;
	}
}
@media (max-width: 800px) {
	.mailform .row {
		padding: 20px 0;
		flex-direction: column;
	}
	.mailform .row div:nth-child(1) {
		width: 100%;
		margin-bottom: 20px;
	}
	.mailform .row div:nth-child(2) {
		width: 100%;
	}
}
/*蛟倶ｺｺ諠��ｱ縺ｮ蜿悶ｊ謇ｱ縺�↓縺､縺�※*/
.privacy {
	padding-top: 0;
}
.privacy_wrap {
	font-size: 1.4rem;
	color: #333;
	margin: 0 auto;
	max-width: 1100px;
	border-bottom: 1.5px solid #333;
}
@media(max-width:450px) {
	.privacy_wrap {
		font-size: 95%;
	}
}
.privacy_item {
	position: relative;
	width: 100%;
	margin: 0 auto;
	cursor: pointer;
	padding: 0 10px;
}
.privacy_header {
	transition: ease-in-out 100ms;
	font-weight: 500;
}
.privacy_text {
	width: 100%;
	display: none;
	padding: 20px 35px 30px;
	line-height: 1.7;
	font-size: 0.95rem;
	font-weight: 500;
}
.privacy_text span {
	font-weight: 500;
}
@media(max-width:750px) {
	.privacy_text {
		padding: 20px 15px 30px;
	}
}
.privacy_text p {
	margin-bottom: 17px;
}
.arrow {
	transition: ease-in-out 300ms;
}
.rotate-fa {
	transform: rotate(180deg);
}
.privacy_header span {
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.privacy_gold {
	color: #4994e6;
}


.coming{
      display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}