/* =============================================================

	Base

* ============================================================= */
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size:18px;
	line-height:2;
	letter-spacing:1px;
	font-weight: normal;
	color: #575757;
	background-color:#ffffff;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; /* Safari */
	min-width: 320px;
}
a {
	-webkit-transition:all 0.2s ease;
	   -moz-transition:all 0.2s ease;
	    -ms-transition:all 0.2s ease;
	     -o-transition:all 0.2s ease;
	        transition:all 0.2s ease;
}
a:link, a:visited {
	color:#404040;
	text-decoration: underline;
}
a:hover, a:active {
	color:#404040;
	text-decoration: none;
}
img {
	vertical-align: top;
	max-width:100%;
	height:auto;
}
/* 768px以下では電話番号リンクを無効にする */
@media screen and (min-width: 768px) { 
	a[href^="tel:"] { 
		pointer-events: none;
	}
}
/* Chromeのみ「image-rendering」を指定（ぼやけを解消） */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	img {
		image-rendering: -webkit-optimize-contrast;
	}
}
@media screen and (min-width:  0px) and (max-width:1200px) {
}
@media screen and (min-width:  0px) and (max-width: 767px) {
}
@media screen and (min-width:  0px) and (max-width: 575px) {
}



/* アンカーリンクの位置調整 */
html {
	scroll-padding-top: 125px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 75px;
  }
}



/* header */
#header {
	position: fixed;
	top: 0;
	left:0;
	right:0;
	z-index: 100;
	background-color: rgba(255,255,255,0.0);
	width: 100%;
	transition:all 0.4s ease;
}
#header .header_inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 125px;
	padding: 0 30px;
}
/* header_logo */
#header .header_logo {
	font-size: 0;
	width: 470px;
	max-width: 100%;
	margin: 0 auto 0 0;
}
#header .header_logo {
	fill: #ffffff;
}
#header .header_logo > a {
	text-decoration: none;
}
/* header_nav */
#header .header_nav {
	list-style-type: none;
	display: flex;
	align-items: center;
	justify-content: center;
}
#header .header_nav > li:not(:first-child) {
	margin-left: 35px;
}
#header .header_nav > li:not(:last-child) a {
	position: relative;
	font-size:18px;
	line-height:1;
	letter-spacing:0.5px;
	font-weight: 700;
	text-decoration: none;
	color: #ffffff;
	transition:all 0.2s ease;
}
#header .header_nav > li:not(:last-child) a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
#header .header_nav > li:not(:last-child) a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
#header .header_nav > li:last-child a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:18px;
	line-height:1.5;
	letter-spacing:0;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #3e566f;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	border-radius: 50px;
	width: 212px;
	max-width: 100%;
	height: 60px;
	padding: 0px 10px;
	transition:all 0.2s ease;
}
#header .header_nav > li:last-child a:hover {
	color: #ffffff;
	border: 1px solid #3e566f;
	background-color: #3e566f;
}
/* header_nav_button */
#header .header_nav_button {
	display: block;
	position: relative;
	width:  42px;
	height: 35px;
    cursor: pointer;
	margin-left: 80px;
	display: none;
}
#header .header_nav_button > .menu_line {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	transition:all 0.2s ease;
}
#header .header_nav_button > .menu_line_top {
	top: 0;
}
#header .header_nav_button > .menu_line_center {
	top: 16px;
}
#header .header_nav_button > .menu_line_bottom {
	top: 32px;
}
#header .header_nav_button.active > .menu_line_top{
	transform: translateY(12px) rotate(45deg);
}
#header .header_nav_button.active > .menu_line_center {
	transform: translateX(0px) rotate(45deg);
	opacity: 0;
}
#header .header_nav_button.active > .menu_line_bottom {
	transform: translateY(-12px) rotate(-45deg);
}
/* header.active */
#header.active ,
body:not(.home) #header {
	background-color: rgba(255,255,255,1.0);
}
#header.active .header_logo ,
body:not(.home) #header .header_logo {
	fill: #000000;
}
#header.active .header_nav > li:not(:last-child) a ,
body:not(.home) #header .header_nav > li:not(:last-child) a {
	color: #575757;
}
#header.active .header_nav > li:not(:last-child) a::after ,
body:not(.home) #header .header_nav > li:not(:last-child) a::after {
	background-color: #575757;
}
#header.active .header_nav > li:last-child a ,
body:not(.home) #header .header_nav > li:last-child a {
	color: #ffffff;
	border: 1px solid #3e566f;
	background-color: #3e566f;
}
#header.active .header_nav > li:last-child a:hover ,
body:not(.home) #header .header_nav > li:last-child a:hover {
	color: #3e566f;
	border: 1px solid #3e566f;
	background-color: #ffffff;
}
#header.active .header_nav_button > .menu_line ,
body:not(.home) #header .header_nav_button > .menu_line {
	background-color: #000000;
}

@media screen and (min-width:  0px) and (max-width:1200px) {
	#header .header_nav {
		display: none;
	}
	#header .header_nav_button {
		display: inline;
	}
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#header .header_inner {
		height: 75px;
		padding: 0 20px;
	}
	#header .header_logo {
		width: 250px;
	}
	#header .header_nav_button {
		width:  30px;
		height: 25px;
		margin-left: 0;
	}
	#header .header_nav_button > .menu_line_center {
		top: 11px;
	}
	#header .header_nav_button > .menu_line_bottom {
		top: 22px;
	}
}



/* global_nav */
#global_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	z-index:1000;
	top: 0;
	bottom: 0;
	right: -575px;
	width: 575px;
	max-width: 100%;
	min-width: 320px;
	background-color: rgba(62,86,111,1.0);
	overflow: auto;
	padding: 0;
	transition:all 0.4s ease;
	display: none;
}
@media screen and (max-width: 1200px) {
	#global_nav {
		display: flex;
	}
}
#global_nav.active {
	right: 0;
}
#global_nav .global_inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
#global_nav .global_nav_button {
	display: block;
	position: absolute;
	top: 45px;
	right: 30px;
	width:  42px;
	height: 35px;
	cursor: pointer;
}
#global_nav .global_nav_button > .menu_line {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background-color: #ffffff;
	transition:all 0.2s ease;
}
#global_nav .global_nav_button > .menu_line_top {
	top: 4px;
	transform: translateY(12px) rotate(45deg);
}
#global_nav .global_nav_button > .menu_line_bottom {
	top: 28px;
	transform: translateY(-12px) rotate(-45deg);
}
#global_nav .global_nav_menu > .main_menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
#global_nav .global_nav_menu > .main_menu li {
	margin: 0 0 40px 0;
}
#global_nav .global_nav_menu > .main_menu li:not(:last-child) a {
	position: relative;
	font-size:30px;
	line-height:1.5;
	letter-spacing:0;
	font-weight: 500;
	text-align: left;
	text-decoration: none;
	color: #ffffff;
}
#global_nav .global_nav_menu > .main_menu li:not(:last-child) a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
#global_nav .global_nav_menu > .main_menu li:not(:last-child) a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
#global_nav .global_nav_menu > .main_menu li:last-child {
	margin: 50px 0 0 0;
}
#global_nav .global_nav_menu > .main_menu li:last-child a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:24px;
	line-height:1;
	letter-spacing:0;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #3e566f;
	border: 1px solid #ffffff;
	background-color: #ffffff;
	width: 100%;
	transition:all 0.4s ease;
	border-radius: 50px;
	width: 240px;
	max-width: 100%;
	height: 70px;
	padding: 0px 10px;
	transition:all 0.2s ease;
}
#global_nav .global_nav_menu > .main_menu li:last-child a:hover {
	color: #ffffff;
	border: 1px solid #ffffff;
	background-color: #3e566f;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#global_nav .global_nav_button {
		top: 20px;
		right: 20px;
		width:  30px;
		height: 25px;
	}
}
@media screen and (max-width: 575px) {
	#global_nav .global_nav_menu > .main_menu li {
		margin: 0 0 30px 0;
	}
	#global_nav .global_nav_menu > .main_menu li:not(:last-child) a {
		font-size:24px;
	}
	#global_nav .global_nav_menu > .main_menu li:last-child {
		margin: 40px 0 0 0;
	}
	#global_nav .global_nav_menu > .main_menu li:last-child a {
		font-size:18px;
		width: 180px;
		height: 60px;
	}
}



/* access */
#access {
	position: relative;
	background-color: #eaf1f2;
	border-top: 1px solid #bdbdbc;
	padding: 75px 20px;
}
#access .access_wrap {
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}
/* inner */
#access .inner {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	width: 50%;
	padding: 0 20px 0 0;
}
#access .inner:not(:first-child) {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	border-left: 1px solid #bdbdbc;
	padding: 0 0 0 20px;
}
/* title */
#access .title {
	width: 600px;
	max-width: 100%;
}
#access .title > h5 {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:50px;
	line-height:1.5;
	letter-spacing:3px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: #3e566f;
}
#access .title > p {
	font-size:20px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 400;
	text-align: center;
	color: #575757;
}
/* map */
#access .map {
	width: 600px;
	max-width: 100%;
	margin: 50px 0 0 0;
}
#access .map > .googlemap {
	background-color: #eeeeee;
	width: 100%;
	height: 380px;
	overflow: hidden;
}
#access .map > .googlemap iframe {
	width: 100%;
	height: 740px;
	margin-top: -170px;
}
#access .map > p {
	font-size:20px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 400;
	text-align: center;
	color: #42454a;
	margin: 15px auto 0 auto;
}
/* text */
#access .text {
	text-align: center;
	width: 600px;
	max-width: 100%;
	margin: 40px 0 0 0;
}
#access .text > p {
	font-size:20px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 400;
	text-align: center;
	color: #42454a;
}
#access .text > .tell {
	background-color: #ffffff;
	padding: 40px 20px 30px 20px;
	margin: 30px 0 0 0;
	clip-path: polygon(30px 0%, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0% 30px);
}
#access .text > .tell > p:nth-child(1) {
	font-size:23px;
	line-height:1.5;
	letter-spacing:0;
	font-weight: 500;
	text-align: center;
	color: #3e566f;
}
#access .text > .tell > a:nth-child(2) {
	display: block;
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:60px;
	line-height:1;
	letter-spacing:1px;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	text-decoration: none;
	color: #3e566f;
	margin: 20px 0 0 0;
}
#access .text > .tell > p:nth-child(3) {
	display: inline-block;
	font-size:16px;
	line-height:1.5;
	letter-spacing:1px;
	font-weight: 400;
	text-align: center;
	border-top: 1px solid #3e566f;
	color: #3e566f;
	padding: 10px 20px 0 20px;
	margin: 10px 0 0 0;
}
#access .text > .button {
	margin: 30px 0 0 0;
}
#access .text > .button a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size:23px;
	line-height:1.5;
	letter-spacing:1px;
	font-weight: 600;
	text-decoration: none;
	color: #ffffff;
	background-color: #3e566f;
	background-image: url(../../img/icon_arrow_w.svg);
	background-size: 12px 22px;
	background-repeat: no-repeat;
	background-position: center right 40px;
	width: 100%;
	height: 100px;
	transition:all 0.2s ease;
	clip-path: polygon(30px 0%, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0% 30px);
}
#access .text > .button a:hover {
	color: #3e566f;
	background-color: #ffffff;
	background-image: url(../../img/icon_arrow_b.svg);
}
@media screen and (min-width:  0px) and (max-width:1200px) {
	#access .access_wrap {
		flex-direction: column;
	}
	#access .inner {
		display: flex;
		align-items: center;
		flex-direction: column;
		width: 100%;
		padding: 0;
	}
	#access .inner:not(:first-child) {
		display: flex;
		align-items: center;
		flex-direction: column;
		border-left: none;
		border-top: 1px solid #bdbdbc;
		padding: 75px 0 0 0;
		margin: 75px 0 0 0;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#access .map > .googlemap {
		height: 300px;
	}
	#access .map > .googlemap iframe {
		height: 660px;
		margin-top: -170px;
	}
	#access .text > .tell > p:nth-child(1) {
		font-size:20px;
	}
	#access .text > .tell > a:nth-child(2) {
		font-size:10vw;
	}
	#access .text > .tell > p:nth-child(3) {
		font-size:14px;
	}
	#access .text > .button a {
		font-size:18px;
		background-position: center right 20px;
	}
}



/* footer */
#footer {
	position: relative;
	background-color: #3e566f;
	padding: 75px 20px 30px 20px;
}
#footer .footer_wrap {
	display: flex;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0 auto;
}
/* footer_logo */
#footer .footer_logo {
	display: flex;
	flex-direction: column;
}
#footer .footer_logo > .logo {
	width: 545px;
	max-width: 100%;
	fill: #ffffff;
}
#footer .footer_logo > .address {
	font-size:18px;
	line-height:1.5;
	letter-spacing:1.5px;
	font-weight: 400;
	color: #ffffff;
	margin: 20px 0 0 0;
}
#footer .footer_logo > .address a {
	text-decoration: none;
	color: #ffffff;
}
/* footer_menu */
#footer .footer_menu {
	width: 550px;
	max-width: 100%;
}
#footer .footer_menu > ul {
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
#footer .footer_menu > ul li:not(:first-child) {
	margin-left: 35px;
}
#footer .footer_menu > ul li a {
	position: relative;
	font-size:16px;
	line-height:1;
	letter-spacing:0.5px;
	font-weight: 500;
	text-decoration: none;
	color: #ffffff;
	transition:all 0.2s ease;
}
#footer .footer_menu > ul li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
#footer .footer_menu > ul li a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}
#footer .footer_menu > .copy {
	font-size:10px;
	line-height:2;
	letter-spacing:0px;
	font-weight: 300;
	color: #ffffff;
	text-align: right;
	margin: 130px 0 0 0;
}
@media screen and (min-width:  0px) and (max-width:1200px) {
	#footer {
		padding: 75px 20px 75px 20px;
	}
	#footer .footer_wrap {
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	#footer .footer_logo {
		align-items: center;
		justify-content: center;
	}
	#footer .footer_logo > .logo {
		width: 400px;
	}
	#footer .footer_menu > ul {
		display: none;
	}
	#footer .footer_menu > .copy {
		text-align: center;
		margin: 30px auto 0 auto;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#footer .footer_logo > .logo {
		width: 300px;
	}
}



/* top_image */
#top_image {
	position: relative;
	background-color: #eeeeee;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
/* top_image_text */
#top_image > .top_image_text {
	position: absolute;
	right: 20px;
	bottom: 165px;
	z-index: 3;
}
#top_image > .top_image_text > h2 {
	font-family: 'Noto Serif JP', serif;
	font-size:84px;
	line-height:1.5;
	letter-spacing:10px;
	font-weight: 300;
	text-align: center;
	color: #ffffff;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
}
/* top_image_scroll */
#top_image > .top_image_scroll {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	z-index: 2;
}
#top_image > .top_image_scroll > .scroll_text {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:18px;
	line-height:1.5;
	letter-spacing:1px;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	color: #ffffff;
}
#top_image > .top_image_scroll > .scroll_arrow {
	font-size: 0;
	width: 17.5px;
	height: 80px;
	margin: 0 auto;
	overflow: hidden;
}
#top_image > .top_image_scroll > .scroll_arrow img {
	position: relative;
	top: -80px;
	animation: arrow_scroll 3.0s ease 0.2s infinite;
}
@keyframes arrow_scroll {
	0% {
		top: -80px;
	}
	15% {
		top: 0px;
	}
	85% {
		top: 0px;
	}
	100% {
		top: 80px;
	}
}
/* top_image_gradient */
#top_image .top_image_gradient {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	background-image: linear-gradient(180deg, rgba(120, 174, 208, 0), rgba(120, 174, 208, 1));
	height: 0;
	transition:all 1s ease-out;
}
#top_image .top_image_gradient.active {
	height: 400px;
}
/* top_image_slick */
#top_image .top_image_slick {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
}
#top_image .top_image_slick.slick-initialized {
	display: block;
}
#top_image .top_image_slick div {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
#top_image .top_image_slick div .slide-animation {
    animation: zoom 10s 0s forwards;
}
@keyframes zoom {
  0% {
    transform: scale(1.00);
  }
  100% {
    transform: scale(1.05);
  }
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#top_image > .top_image_text {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#top_image > .top_image_text > h2 {
		font-size:12vw;
		letter-spacing:5px;
		margin: 0 -14vw 0 0
	}
}



/* top_about */
#top_about {
	position: relative;
	width: 100%;
	background-color: #78aed0;
	background-image: url(../../img/top_about_bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	overflow: hidden;
}
#top_about::before {
	content: '';
	position: absolute;
	top: 0;
	left: -5%;
	right: -5%;
	z-index: 1;
	background-image: linear-gradient(0deg, rgba(120, 174, 208, 0), rgba(120, 174, 208, 1));
	height: 400px;
}
#top_about:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: -5%;
	right: -5%;
	z-index: 1;
	background: #ffffff;
	border-top-left-radius: 50% 100%;
	border-top-right-radius: 50% 100%;
	height: 75px;
}
#top_about .top_about_wrap {
	position: relative;
	z-index: 2;
	max-width: 1000px;
	padding: 150px 20px 550px 20px;
	margin: 0 auto;
}
/* title */
#top_about .title > h3 {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:50px;
	line-height:1.5;
	letter-spacing:3px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: #ffffff;
}
#top_about .title > p {
	font-size:20px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 400;
	text-align: center;
	color: #ffffff;
}
#top_about .title > .bridge {
	display: block;
	background-image: url(../../img/icon_bridge.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center center;
	width: 245px;
	height: 25px;
	margin: 50px auto 0 auto;
}
/* text */
#top_about .text > p {
	font-family: 'Noto Serif JP', serif;
	font-size:23px;
	line-height:2.25;
	letter-spacing:2px;
	font-weight: 400;
	text-align: center;
	color: #ffffff;
	margin: 50px auto 0 auto;
}
#top_about .text > .button {
	margin: 80px auto 0 auto;
}
#top_about .text > .button a {
	display: block;
	background-image: url(../../img/button_box_w.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: top center;
	width: 600px;
	max-width: 100%;
	height: 130px;
	margin: 0 auto;
}
#top_about .text > .button a:hover {
	background-image: url(../../img/button_box_b.svg);
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#top_about .text > p {
		font-size:18px;
		text-align: left;
	}
	#top_about .text > p br {
		display: none;
	}
	#top_about .text > .button {
		margin: 50px auto 0 auto;
	}
	#top_about .text > .button a {
		background-image: url(../../img/button_box_ws.svg);
		width: 403px;
		height: 130px;
	}
	#top_about .text > .button a:hover {
		background-image: url(../../img/button_box_bs.svg);
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#top_about .text > .button a:hover {
		background-image: url(../../img/button_box_ws.svg);
	}
}

/* top_service */
#top_service {
	position: relative;
	width: 100%;
	background-color: #ffffff;
}
#top_service .top_service_wrap {
	max-width: 1550px;
	padding: 50px 0 180px 0;
	margin: 0 auto;
}
/* title */
#top_service .title > h3 {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:50px;
	line-height:1.5;
	letter-spacing:3px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: #3e566f;
}
#top_service .title > p {
	font-size:20px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 400;
	text-align: center;
	color: #575757;
}
/* image */
#top_service .image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 100px auto 0 auto;
}
#top_service .image > .bg {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #92a68d;
	background-image: url(../../img/top_service_bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	width: 50%;
	height: 600px;
}
#top_service .image > .bg:nth-child(2) {
	background-color: #a18566;
	background-image: url(../../img/top_service_bg02.jpg);
}
#top_service .image > .bg::before {
	content: '';
	text-decoration: none;
	background-color: rgba(65,97,72,1);
	width: 480px;
	max-width: 100%;
	height: 280px;
	clip-path: polygon(30px 0%, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0% 30px);
	mix-blend-mode: multiply;
}
#top_service .image > .bg:hover::before {
	mix-blend-mode: overlay;
}
#top_service .image > .bg:nth-child(2)::before {
	background-color: rgba(97,76,63,1);
}
#top_service .image > .bg a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-decoration: none;
}
#top_service .image > .bg h4 {
	font-size:30px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 600;
	text-align: center;
	color: #ffffff;
}
#top_service .image > .bg p {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:15px;
	line-height:2;
	letter-spacing:2.75px;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	color: #ffffff;
	margin: 10px 0 0 0;
}
#top_service .image > .bg p::after {
	display: block;
	content: '';
	background-image: url(../../img/icon_arrow_w.svg);
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center center;
	width: 12px;
	height: 22px;
	margin: 30px auto 0 auto;
}
@media screen and (min-width:  0px) and (max-width:1200px) {
	#top_service .image {
		flex-direction: column;
	}
	#top_service .image > .bg {
		width: 100%;
		height: 400px;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#top_service .image > .bg {
		height: 300px;
	}
	#top_service .image > .bg::before {
		width: 90%;
		height: 200px;
	}
	#top_service .image > .bg h4 {
		font-size:24px;
	}
	#top_service .image > .bg p {
		font-size:10px;
		margin: 0;
	}
	#top_service .image > .bg p::after {
		margin: 20px auto 0 auto;
	}
}



/* top_recruit */
#top_recruit {
	position: relative;
	width: 100%;
	background-color: #eeeeee;
	margin: 0 0 250px 0;
	overflow: hidden;
}
#top_recruit .top_recruit_wrap {
	position: relative;
	width: 100%;
	height: 600px;
}
#top_recruit .top_recruit_wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../../img/icon_bridge2.svg);
	background-size: auto 80px;
	background-repeat: repeat-x;
	background-position: top center;
	width: 100%;
	height: 45px;
}
#top_recruit .bg {
	width: 110%;
	height: 110%;
	background-image: url(../../img/top_recruit_bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
#top_recruit .catch {
	position: absolute;
	top: 150px;
	right: 330px;
	z-index: 1;
	font-family: 'Noto Serif JP', serif;
	font-size:23px;
	line-height:2.5;
	letter-spacing:7.5px;
	font-weight: 500;
	text-align: right;
	color: #231815;
}
#top_recruit .button {
	position: absolute;
	bottom: -1px;
	right: 0;
	z-index: 1;
	background-color: #ffffff;
	width: 850px;
	max-width: 100%;
	height: 180px;
	padding: 40px 0 0 140px;
	clip-path: polygon(30px 0%, 100% 0, 100% 100%, 100% 100%, 0 100%, 0% 30px);
}
#top_recruit .button > a {
	position: relative;
	display: flex;
	align-items: center;
	text-decoration: none;
	background-image: url(../../img/icon_arrow_b.svg);
	background-size: 12px 22px;
	background-repeat: no-repeat;
	background-position: center right;
	width: 510px;
	max-width: 100%;
	height: 100px;
	transition:all 0.2s ease;
}
#top_recruit .button > a::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 2px;
	background-color: #3e566f;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}
#top_recruit .button > a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
#top_recruit .button > a h4 {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:50px;
	line-height:1.5;
	letter-spacing:3px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: #3e566f;
}
#top_recruit .button > a p {
	font-size:20px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 400;
	text-align: center;
	color: #575757;
	margin-left: 45px;
}
@media screen and (min-width:  0px) and (max-width:1200px) {
	#top_recruit .top_recruit_wrap {
		width: 100%;
		height: 500px;
	}
	#top_recruit .catch {
		top: 100px;
		right: 30px;
	}
	#top_recruit .button {
		width: 550px;
		padding: 40px 40px 0 40px;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#top_recruit .bg {
		background-position: center left -50px;
	}
	#top_recruit .catch {
		left: 20px;
		right: 20px;
		font-size:18px;
		line-height:2.5;
		letter-spacing:5px;
		font-weight: 500;
		text-align: center;
	}
	#top_recruit .catch br {
		display: none;
	}
	#top_recruit .button {
		width: 90%;
		height: 120px;
		padding: 10px 40px 0 40px;
	}
	#top_recruit .button > a {
		align-items: flex-start;
		flex-direction: column;
	}
	#top_recruit .button > a::before {
		bottom: 0;
	}
	#top_recruit .button > a h4 {
		font-size:40px;
		text-align: left;
	}
	#top_recruit .button > a p {
		font-size:18px;
		line-height:1;
		text-align: left;
		margin-left: 0;
	}
}



/* subpage */
.subpage {
	position: relative;
	width: 100%;
	padding: 125px 20px 250px 20px;
	background-color: #76abcb;
}
/* title */
.subpage > .title {
	padding: 110px 20px 70px 20px;
}
.subpage > .title > h3 {
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:50px;
	line-height:1.5;
	letter-spacing:3px;
	font-weight: 500;
	font-style: italic;
	text-align: center;
	color: #ffffff;
}
.subpage > .title > p {
	font-size:20px;
	line-height:2;
	letter-spacing:3px;
	font-weight: 400;
	text-align: center;
	color: #ffffff;
}
/* wrap */
.subpage > .wrap {
	position: relative;
	background-color: #ffffff;
	border-radius: 10px;
	max-width: 1250px;
	padding: 130px 20px 220px 20px;
	margin: 0 auto;
	overflow: hidden;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	.subpage {
		padding: 75px 20px 100px 20px;
	}
	.subpage > .title {
		padding: 70px 20px 70px 20px;
	}
	.subpage > .wrap {
		padding: 20px 20px 150px 20px;
	}
}



/* company */
#company.subpage {
	background-color: #76abcb;
	background-image: url(../../img/subpage_bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}
#company.subpage > .wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../../img/icon_bridge3.svg);
	background-size: auto;
	background-repeat: repeat-x;
	background-position: bottom center;
	width: 100%;
	height: 70px;
}
#company.subpage table {
	width: 850px;
	max-width: 100%;
	margin: 0 auto;
}
#company.subpage table tr {
	border-bottom: 1px dashed #9fa0a0;
}
#company.subpage table th {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	color: #3e566f;
	width: 25%;
	padding: 22px 10px;
}
#company.subpage table td {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 400;
	text-align: left;
	width: auto;
	padding: 22px 10px;
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#company.subpage table {
		width: 100%;
	}
	#company.subpage table th {
		display: block;
		width: 100%;
		padding: 22px 0 0 0;
	}
	#company.subpage table td {
		display: block;
		width: 100%;
		padding: 0 0 22px 0;
	}
}



/* recruit */
#recruit.subpage {
	background-color: #8ebdc7;
	background-image: url(../../img/subpage_bg02.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: center center;
}
#recruit.subpage > .wrap::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../../img/icon_bridge3.svg);
	background-size: auto;
	background-repeat: repeat-x;
	background-position: top center;
	width: 100%;
	height: 70px;
}
#recruit.subpage h4 {
	font-family: 'Noto Serif JP', serif;
	font-size:25px;
	line-height:2.25;
	letter-spacing:2px;
	font-weight: 600;
	text-align: center;
	color: #3e566f;
	padding: 20px 0;
}
#recruit.subpage table {
	width: 850px;
	max-width: 100%;
	margin: 50px auto 0 auto;
}
#recruit.subpage table tr {
	border-bottom: 1px dashed #9fa0a0;
}
#recruit.subpage table th {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 500;
	text-align: left;
	vertical-align: top;
	color: #3e566f;
	width: 25%;
	padding: 22px 10px;
}
#recruit.subpage table td {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 400;
	text-align: left;
	width: auto;
	padding: 22px 10px;
}
#recruit.subpage .message {
	background-color: #c2d9e2;
	width: 850px;
	max-width: 100%;
	padding: 60px 20px;
	margin: 90px auto 0 auto;
	clip-path: polygon(30px 0%, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0% 30px);
}
#recruit.subpage .message .inner {
	width: 570px;
	max-width: 100%;
	margin: 0 auto;
}
#recruit.subpage .message .inner > h5 {
	font-size: 20px;
	line-height: 2;
	letter-spacing:1px;
	font-weight: 600;
	text-align: center;
	color: #3e566f;
}
#recruit.subpage .message .tell {
	background-color: #ffffff;
	padding: 30px 20px;
	margin: 20px auto 0 auto;
}
#recruit.subpage .message .tell > a {
	display: block;
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:64px;
	line-height:1;
	letter-spacing:1px;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	text-decoration: none;
	color: #3e566f;
}
#recruit.subpage .message .tell > p {
	font-size:20px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 500;
	text-align: center;
	color: #3e566f;
	margin: 10px auto 0 auto;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#recruit.subpage h4 {
		font-size:20px;
		line-height:2;
		letter-spacing:2px;
		text-align: left;
	}
	#recruit.subpage h4 br {
		display: none;
	}
	#recruit.subpage table {
		width: 100%;
		margin: 0px auto 0 auto;
	}
	#recruit.subpage table th {
		display: block;
		width: 100%;
		padding: 22px 0 0 0;
	}
	#recruit.subpage table td {
		display: block;
		width: 100%;
		padding: 0 0 22px 0;
	}
	#recruit.subpage .message {
		padding: 30px 20px;
	}
	#recruit.subpage .message .inner > h5 {
		font-size: 18px;
		text-align: left;
	}
	#recruit.subpage .message .inner > h5 br {
		display: none;
	}
	#recruit.subpage .message .tell > a {
		font-size:8vw;
	}
	#recruit.subpage .message .tell > p {
		font-size:16px;
	}
}



/* policy */
#policy.subpage {
	background-color: #76abcb;
	background-image: url(../../img/subpage_bg01.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}
#policy.subpage > .wrap {
	max-width: 1400px;
	padding: 140px 20px 180px 20px;
}
#policy.subpage > .wrap .inner {
	max-width: 1050px;
	margin: 0 auto;
}
#policy.subpage > .wrap h4 {
	font-size:25px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 500;
	text-align: left;
	color: #42454a;
}
#policy.subpage > .wrap h5 {
	font-size:25px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 500;
	text-align: left;
	color: #3e566f;
	margin: 40px 0 0 0;
}
#policy.subpage > .wrap p {
	font-size:18px;
	line-height:2;
	letter-spacing:0;
	font-weight: 400;
	text-align: left;
	color: #42454a;
	margin: 40px 0 0 0;
}
#policy.subpage > .wrap p.day {
	letter-spacing:1px;
	text-align: right;
	margin: 0;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#policy.subpage > .wrap {
		padding: 50px 20px 75px 20px;
	}
	#policy.subpage > .wrap p.day {
		margin: 30px 0 0 0;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#policy.subpage > .title > h3 {
		font-size:36px;
		line-height:2.083;
		letter-spacing:2px;
	}
	#policy.subpage > .title > p {
		font-size:16px;
		line-height:2.5;
		letter-spacing:2px;
	}
}



/* contact */
#contact.subpage {
	background-color: #76abcb;
	background-image: url(../../img/subpage_bg03.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}
#contact.subpage > .wrap {
	max-width: 1400px;
	padding: 150px 20px 200px 20px;
}
#contact.subpage > .wrap .inner {
	max-width: 1050px;
	margin: 0 auto;
}
#contact.subpage .read {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#contact.subpage .read > .text {
	font-size:18px;
	line-height:2;
	letter-spacing:0;
	font-weight: 400;
	text-align: left;
	color: #42454a;
}
#contact.subpage .read > .text span::before {
	content: '右記';
}
#contact.subpage .read > .tell {
	text-align: center;
	background-color: #e8eef0;
	width: 490px;
	max-width: 100%;
	padding: 50px 20px;
}
#contact.subpage .read > .tell a {
	display: block;
	font-family: "IBM Plex Sans Condensed", sans-serif;
	font-size:57px;
	line-height:1;
	letter-spacing:3px;
	font-weight: 600;
	font-style: italic;
	text-align: center;
	text-decoration: none;
	color: #3e566f;
}
#contact.subpage .read > .tell p {
	display: inline-block;
	font-size:20px;
	line-height:2;
	letter-spacing:2px;
	font-weight: 400;
	text-align: center;
	color: #3e566f;
	border-top: 1px solid #3e566f;
	border-bottom: 1px solid #3e566f;
	padding: 8px 0;
	margin: 20px auto 0 auto;
}
#contact.subpage .flow {
	width: 870px;
	max-width: 100%;
	margin: 100px auto 0 auto;
}
#contact.subpage table {
	width: 100%;
	margin: 80px auto 0 auto;
}
#contact.subpage table th {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	color: #3e566f;
	width: 300px;
	padding: 30px 35px 30px 0;
}
#contact.subpage table th.any::after {
	content: '任意';
	font-size: 15px;
	line-height: 1;
	letter-spacing:0;
	font-weight: 600;
	color: #3e566f;
	background-color: #e8eef0;
	border: 1px solid #9eaab7;
	border-radius: 5px;
	float: right;
	padding: 6px;
	margin: 10px 0 0 0;
}
#contact.subpage table th.required::after {
	content: '必須';
	font-size: 15px;
	line-height: 1;
	letter-spacing:0;
	font-weight: 600;
	color: #ffffff;
	background-color: #3e566f;
	border: 1px solid #9eaab7;
	border-radius: 5px;
	float: right;
	padding: 6px;
	margin: 10px 0 0 0;
}
#contact.subpage table td {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 400;
	text-align: left;
	width: auto;
	padding: 20px 0;
}
#contact.subpage table td input {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	width:100%;
	height:70px;
	border-radius:5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	color: #3e3a39;
	background-color: #ffffff;
	border: 1px solid #9eaab7 !important;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
	padding:0 30px;
}
#contact.subpage table td textarea {
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	-o-appearance: none;
	appearance: none;
	width:100%;
	height:180px;
	border-radius:5px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	color: #3e3a39;
	background-color: #ffffff;
	border: 1px solid #9eaab7 !important;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
	padding:20px 30px;
}
#contact.subpage table td input::placeholder,
#contact.subpage table td textarea::placeholder {
	font-size: 16px;
	line-height: 2;
	font-weight: 400;
	color:#9eaab7;
}
#contact.subpage table td input:focus,
#contact.subpage table td textarea:focus {
	color: #3e3a39;
	background-color: #e8eef0;
	border: 1px solid #9eaab7 !important;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
}
#contact.subpage table td .mfp_err {
	font-size: 14px;
	line-height: 1.5;
	letter-spacing:0;
	font-weight: 400;
	background-position: 0px 7px;
}
#contact.subpage .policy {
	font-size: 16px;
	line-height: 2;
	letter-spacing:1px;
	font-weight: 400;
	text-align: center;
	color: #42454a;
	margin: 40px auto 0 auto;
}
#contact.subpage .policy > a {
	font-weight: 500;
	text-decoration: underline;
	color: #3e566f;
}
#contact.subpage .button {
	margin: 70px auto 0 auto;
}
#contact.subpage .button input[type="submit"] ,
#contact.subpage .button input[type="button"] {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing:0;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color:#ffffff;
	border: 1px solid #3e566f;
	background-color:#3e566f;
	background-image: url(../../img/icon_arrow_w.svg);
	background-size: 12px 22px;
	background-repeat: no-repeat;
	background-position: center right 25px;
	border-radius: 50px;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
	width: 300px;
	max-width: 100%;
	height: 75px;
	padding: 0px 10px;
	margin: 0 auto;
	transition:all 0.2s ease;
	cursor: pointer;
}
#contact.subpage .button input[type="submit"]:hover ,
#contact.subpage .button input[type="button"]:hover ,
#contact.subpage .button input[type="submit"]:active ,
#contact.subpage .button input[type="button"]:active {
	color: #3e566f;
	border: 1px solid #3e566f;
	background-color: #ffffff;
	background-image: url(../../img/icon_arrow_b.svg);
}
@media screen and (min-width:  0px) and (max-width:1200px) {
	#contact.subpage .read {
		flex-direction: column;
	}
	#contact.subpage .read > .text {
		text-align: center;
	}
	#contact.subpage .read > .text span::before {
		content: '下記';
	}
	#contact.subpage .read > .tell {
		margin: 50px auto 0 auto;
	}
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#contact.subpage > .wrap {
		padding: 50px 20px 75px 20px;
	}
	#contact.subpage table th {
		display: block;
		width: 100%;
		padding: 0 0 0 0;
	}
	#contact.subpage table td {
		display: block;
		width: 100%;
		padding: 0 0 30px 0;
	}
	#contact.subpage table td input {
		padding:0 20px;
	}
	#contact.subpage table td textarea {
		padding:20px 20px;
	}
	#contact.subpage .policy {
		margin: 0px auto 0 auto;
	}
	#contact.subpage .button {
		margin: 50px auto 0 auto;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	#contact.subpage .flow {
		margin: 70px auto 0 auto;
	}
	#contact.subpage table {
		margin: 50px auto 0 auto;
	}
	#contact.subpage .read > .text {
		text-align: left;
	}
	#contact.subpage .read > .text br {
		display: none;
	}
	#contact.subpage .read > .tell {
		width: 100%;
		padding: 40px 20px;
	}
	#contact.subpage .read > .tell a {
		font-size:9vw;
		letter-spacing:1px;
	}
	#contact.subpage .read > .tell p {
		font-size:14px;
		line-height:1.5;
		letter-spacing:1px;
		padding: 15px 0;
	}
}

/* 確認画面 */
table#mfp_confirm_table {
	border-bottom: solid 1px #9fabb7;
	width: 100%;
	margin: 100px auto 0 auto !important;
}
table#mfp_confirm_table tr.mfp_colored ,
table#mfp_confirm_table tr.mfp_achroma {
	background-color: initial !important;
}
table#mfp_confirm_table tr th {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
	color: #ffffff !important;
	background-color: #3e566f !important;
	border-top: solid 1px #9fabb7 !important;
	width: 300px;
	padding: 20px 30px !important;
}
table#mfp_confirm_table tr td {
	font-size: 18px;
	line-height: 2.5;
	letter-spacing:1px;
	font-weight: 400;
	text-align: left;
	color: #3e3a39 !important;
	background-color: #ffffff !important;
	border-top: solid 1px #9fabb7 !important;
	width: auto;
	padding: 20px 30px !important;
}
div.mfp_buttons {
	padding: 100px 0 0 0 !important;
}
#mfp_button_send.mfp_element_button {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing:0;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color:#ffffff !important;
	border: 1px solid #3e566f !important;
	background-color:#3e566f !important;
	background-image: url(../../img/icon_arrow_w.svg) !important;
	background-size: 12px 22px !important;
	background-repeat: no-repeat !important;
	background-position: center right 25px !important;
	border-radius: 50px !important;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
	width: 300px !important;
	max-width: 100% !important;
	height: 75px !important;
	padding: 0px 10px !important;
	margin: 0 auto;
	transition:all 0.2s ease;
	cursor: pointer;
}
#mfp_button_send.mfp_element_button:hover {
	color: #3e566f !important;
	border: 1px solid #3e566f !important;
	background-color: #ffffff !important;
	background-image: url(../../img/icon_arrow_b.svg) !important;
}
#mfp_button_cancel.mfp_element_button {
	font-size: 18px;
	line-height: 1.5;
	letter-spacing:0;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	color:#3e566f !important;
	border: 1px solid #3e566f !important;
	background-color:#ffffff !important;
	background-image: url(../../img/icon_arrow_b_left.svg) !important;
	background-size: 12px 22px !important;
	background-repeat: no-repeat !important;
	background-position: center left 25px !important;
	border-radius: 50px !important;
	outline: none !important;
	box-shadow:none !important;
	text-shadow:none !important;
	width: 300px !important;
	max-width: 100% !important;
	height: 75px !important;
	padding: 0px 10px !important;
	margin: 0 50px 0 auto;
	transition:all 0.2s ease;
	cursor: pointer;
}
#mfp_button_cancel.mfp_element_button:hover {
	color: #ffffff !important;
	border: 1px solid #3e566f !important;
	background-color: #3e566f !important;
	background-image: url(../../img/icon_arrow_w_left.svg) !important;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	table#mfp_confirm_table {
		border-bottom: none !important;
	}
	table#mfp_confirm_table tr th {
		display: block !important;
		border-top: none !important;
		width: 100% !important;
		padding: 10px 20px !important;
	}
	table#mfp_confirm_table tr td {
		display: block !important;
		border-top: none !important;
		width: 100% !important;
		padding: 15px 0 50px 0 !important;
	}
	div.mfp_buttons {
		padding: 10px 0 0 0 !important;
	}
	.mfp_buttons {
		display: flex;
		flex-direction: column;
	}
	#mfp_button_send.mfp_element_button {
		font-size: 16px;
	}
	#mfp_button_cancel.mfp_element_button {
		font-size: 16px;
		background-image: url(../../img/icon_arrow_b.svg) !important;
		background-position: center right 25px !important;
		padding: 0px 10px !important;
		margin: 0 auto 20px auto;
	}
	#mfp_button_cancel.mfp_element_button:hover {
		background-image: url(../../img/icon_arrow_w.svg) !important;
		background-position: center right 25px !important;
	}
}
@media screen and (min-width:  0px) and (max-width: 575px) {
	table#mfp_confirm_table {
		margin: 70px auto 0 auto !important;
	}
}

/* 完了画面 */
#contact.subpage .thanks .flow {
	margin: 0 auto;
}
#contact.subpage .thanks .text {
	font-size:18px;
	line-height:2;
	letter-spacing:1px;
	font-weight: 400;
	text-align: center;
	color: #3e566f;
	margin: 100px auto 0 auto;
}
#contact.subpage .thanks .button {
	margin: 100px auto 0 auto;
}
@media screen and (min-width:  0px) and (max-width: 767px) {
	#contact.subpage .thanks .flow {
		margin: 20px auto;
	}
	#contact.subpage .thanks .text {
		font-size:16px;
		text-align: left;
		margin: 50px auto 0 auto;
	}
	#contact.subpage .thanks .button {
		margin: 50px auto 0 auto;
	}
}