@charset "utf-8";

/* Reset CSS
-------------------------------*/

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ul,
ol,
li {
	list-style: none;
}

caption,
th {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

q::before,
q::after {
	content: "";
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

hr {
	display: none;
}

input,
textarea,
select {
	font-family: inherit;
	*font-size: 100%;
	font-weight: inherit;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* フルードイメージ */
img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

.clearfix::after {
	content: ".";
	display: block;
	visibility: hidden;
	height: 0;
	clear: both;
}

.clearfix {
	display: inline-block;
}/*IE7用*/

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}

/* End hide from IE-mac */

.alpha a:hover img {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)";
	filter: alpha(opacity=70);
}

/* スムーススクロール　（IE以外） */
html {
	scroll-behavior: smooth;
}

/* layout */
.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	clear: both;
}

.ar {
	text-align: right;
}

.al {
	text-align: left;
}

.ac {
	text-align: center;
}

.strong {
	font-weight: bold;
}


@font-face {
	font-family: NSans-B;
	src: url("fonts/NotoSansJP-Bold.otf") format("opentype");
}

@font-face {
	font-family: NSans-M;
	src: url("fonts/NotoSansJP-Medium.otf") format("opentype");
}

@font-face {
	font-family: NSans-R;
	src: url("fonts/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
	font-family: Kazesawa-SB;
	src: url("fonts/Kazesawa-Semibold.ttf") format("truetype");
}

@font-face {
	font-family: Kazesawa-B;
	src: url("fonts/Kazesawa-Bold.ttf") format("truetype");
}


/* Basic setting
-------------------------------*/
body {
	color: #000;
	font-family: NSans-R, Arial, "Hiragino Kaku Gothic ProN", Meiryo, "Hiragino Sans", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", verdana, sans-serif;
	font-size: 17px;
	letter-spacing: .1em;
	line-height: 1.8em;
	-webkit-text-size-adjust: 100%;
}

@media only screen and (max-width: 640px) {

	body {
		font-size: 16px;
		letter-spacing: 0;
		line-height: 1.7em;
	}
}


#wrapper {
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

a {
	outline: none;
	color: #2e2e2e;
}

a:hover {
	text-decoration: none;
}

a,
a:hover,
a:hover img {
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-o-transition: .5s;
	transition: .5s;
	text-decoration: none;
}

a:hover {
	filter: alpha(opacity=80);
	-moz-opacity: .8;
	opacity: .8;
}

/* PCで電話リンクしない */
@media (min-width: 768px) {

	a[href^="tel:"] {
		pointer-events: none;
	}
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#side_bar {
	position: relative;
	z-index: 30;
	width: 110px;
	background-color: #e6e6e6;
}

#content_box {
	width: calc(100% - 110px);
}


@media only screen and (min-width: 1921px) {

	#side_bar {
		background-color: transparent;
	}
}

@media only screen and (max-width: 1000px) {

	#side_bar {
		width: 0;
		background-color: transparent;
		box-shadow: none;
	}

	#content_box {
		width: 100%;
	}
}


/* サイドメニュー
-------------------------------*/
.side_toi_btn {
	position: fixed;
	top: 120px;
	right: 0;

}

.side_scroll {
	position: fixed;
	right: 18px;
	bottom: 20%;
	width: 74px;
	padding-top: 30px;
	background: url(../img/common/scroll_txt.png) center top no-repeat;
}

.side_scroll .arrow {
	width: 16px;
	height: 62px;
	margin: auto;
	-moz-animation: kurukuru 5s linear infinite;
	animation: kurukuru 5s linear infinite;
	background: url(../img/common/scroll_arrow.png) center center repeat-y;/* 縦の時は　repeat-y */
}

/* スクロールの矢印　縦にスクロール　 */
@keyframes kurukuru {

	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 154px;
	}
}

@-moz-keyframes kurukuru {

	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 0 154px;
	}
}


@media only screen and (max-width: 1000px) {

	.side_toi_btn {
		position: fixed;
		z-index: 10;
		top: 0;
		right: 90px;
		width: 80px;
	}

	.side_scroll {
		display: none;
	}
}

@media only screen and (max-width: 640px) {

	.side_toi_btn {
		display: none;
	}

}

/* サイドのメニュー
-------------------------------*/
nav {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	width: 400px;
	height: 100%;
	overflow: auto;
	transform: translate(400px);
	transition: all .1s;
	background-color: rgba(0, 0, 0, .8);
	color: #fff;
	font-size: 18px;
	line-height: 1.4em;
}

nav.open {
	transform: translate(0);
}

nav ul {
	margin: 0;
	margin-top: 120px;
	padding: .5em;
	list-style-type: none;
}

nav ul li {
	padding: 0;
	border-bottom: 1px solid #fff;
	list-style: none;
	text-align: left;
}

nav ul li:first-child {
	border-top: 1px solid #fff;
}

nav ul li a {
	display: block;
	padding: 1em;
	color: #fff;
	text-decoration: none;
}

/* 開閉ボタン */
.navBtn button {
	display: block;
	position: fixed;
	z-index: 10001;
	top: 0;
	right: 0;
	width: 110px;
	height: 110px;
	padding: 3px 35px;
	border: none;
	outline: none;
	background: #00419c;
	color: #333;
	letter-spacing: .1em;
	text-align: center;
	cursor: pointer;
}

/* ハンバーガーボタン3本線 */
.navBtn button span.bar {
	display: block;
	height: 3px;
	margin: 15px 0;
	transform-origin: 0 0;
	transition: all .1s;
	background-color: #fff;
}

/* メニューアクティブ時 */
.navBtn button.active {
	background-color: #64a0dc;
}

.navBtn button.active span.bar {
	width: 55px;
}

.navBtn button.active .bar1 {
	transform: rotate(41deg);
}

.navBtn button.active .bar2 {
	opacity: 0;
}

.navBtn button.active .bar3 {
	margin-left: -2px;
	transform: rotate(-41deg);
}

.navBtn button span.menu {
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.1em;
}

@media only screen and (max-width: 1000px) {

	nav {
		color: #fff;
		font-size: 16px;
		line-height: 1.4em;
	}

	nav ul {
		margin-top: 90px;
	}

	.acMenu .menu-ttl::after {
		padding: 15px;
	}

	.navBtn button {
		position: fixed;
		top: 0;
		right: 0;
		width: 80px;
		height: 80px;
		padding: 3px 23px;
		letter-spacing: 0;
	}

	.navBtn button span.bar {
		height: 3px;
		margin: 8px 0;
		transform-origin: 0 0;
		transition: all .1s;
	}

	.navBtn button.active span.bar {
		width: 33px;
	}

	.navBtn button.active .bar1 {
		margin-left: 5px;
	}

	.navBtn button.active .bar3 {
		margin-left: 3px;
	}


	.navBtn button span.menu {
		font-size: 12px;
		line-height: 1.1em;
	}
}

@media only screen and (max-width: 640px) {

	nav {
		width: 300px;
		transform: translate(300px);
	}

	nav ul {
		margin-top: 70px;
	}

	.navBtn button {
		width: 60px;
		height: 60px;
		padding: 3px 13px;
	}

	.navBtn button span.menu {
		display: none;
	}
}


/* ヘッダー
-------------------------------*/
* html #header {
	height: 1%;
}

#header {
	width: 100%;
	transition: .3s;
}

#header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

#header .logo {
	width: 30%;
	padding-left: 2%;
}

/* PC版 メニュー
-------------------------------*/
.pc_navi {
	position: static;
	width: 70%;
	padding: 0;
	padding-right: 90px;
	overflow: visible;
	transform: none;
	transition: .3s;
	background-color: transparent;
	color: #000;
	font-size: 17px;
	line-height: 1.4em;
}

.pc_acMenu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	max-width: 1200px;
	margin: 0 0 0 auto;
	padding: 0;
	font-size: 15px;
	letter-spacing: 0;
	line-height: 1.4em;
}

.pc_acMenu li {
	position: relative;
	width: auto;
	margin-right: 1em;
	margin-left: 1em;
	padding: 0;
	border-bottom: none;
	text-align: center;
}

.pc_acMenu li a {
	display: block;
	width: 100%;
	padding: 2em 0;
	background-repeat: no-repeat;
	background-position: center 90%;
	color: #fff;
}

.pc_acMenu li a:hover {
	background-image: url(../img/common/nav_active_kei.png);
}

.pc_acMenu li.stay a {
	background-image: url(../img/common/nav_active_kei.png);
}

.pc_acMenu li .en {
	margin-bottom: 5px;
}

.pc_acMenu li .en img {
	width: auto;
	height: 17px;
}

.pc_acMenu li.toi {
	margin-right: 0;
}

.pc_acMenu li.toi a {
	padding: 0;
}

@media only screen and (max-width: 1560px) {

	.pc_navi {
		padding-right: 0;
		font-size: 1vw;
		line-height: 1.4em;
	}

	.pc_acMenu li.toi {
		width: 15vw;
	}
}

@media only screen and (min-width: 1001px) {

	#header.fixed {
		position: fixed;
		z-index: 15;
		padding-right: 120px;
		padding-bottom: 3px;
		background-color: #00419c;
	}

	#header.fixed .inner {
		max-width: 1920px;
	}

}

@media only screen and (max-width: 1000px) {

	#header {
		z-index: 9;
		width: 100%;
	}

	#header .logo {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		width: 100%;
		height: 80px;
		padding-left: 5%;
	}

	.pc_navi {
		display: none;
	}
}

@media only screen and (max-width: 640px) {

	#header .logo {
		width: 70%;
		height: 60px;
		padding-left: 3%;
	}

	#header .logo img {
		width: 251px;
		height: auto;
	}
}


/* フッター
-------------------------------*/
#footer {
	width: 100%;
	margin-top: 150px;
	padding-top: 90px;
	background-color: #1a1a1a;
	color: #fff;
}

#footer .inner {
	width: 90%;
	max-width: 1580px;
	margin: auto;
}

#footer .f_info {
	width: 640px;
}

#footer .f_logo {
	width: 162px;
}

#footer .f_contact {
	width: 430px;
}

.f_logo_sp {
	display: none;
}

#footer .f_info .add {
	margin-top: 20px;
	margin-bottom: 40px;
	font-size: 95%;
	line-height: 1.5em;
}

.f_navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.f_navi li {
	margin-bottom: 10px;
	padding: 0 1em;
	border-left: solid 1px #fff;
	line-height: 1.2em;
}

.f_navi li:first-child {
	padding-left: 0;
	border-left: none;
}

.f_navi a {
	color: #fff;
}

#footer .f_contact ._in {
	width: 100%;
	max-width: 363px;
	margin-left: auto;
	font-family: NSans-B, sans-serif;
	text-align: center;
}

#footer .f_contact .btn {
	margin-top: 15px;
}

#copy {
	width: 90%;
	max-width: 1580px;
	margin: 40px auto 0;
	padding: 20px 0;
	color: #808080;
	font-size: 14px;
	line-height: 1.2em;
}

/*  ページトップへ */
#pageTop {
	position: fixed;
	z-index: 5;
	right: 150px;
	bottom: 50px;
}

@media only screen and (max-width: 1500px) {

	#footer .f_info {
		width: 42%;
	}

	#footer .f_logo {
		width: 12%;
	}

	#footer .f_contact {
		width: 35%;
	}

	.f_navi li {
		padding: 0 .5em;
	}
}

@media only screen and (max-width: 1000px) {

	#footer {
		margin-top: 15vw;
	}

	#footer .f_info {
		width: 100%;
		text-align: center;
	}

	#footer .f_logo {
		display: none;
	}

	#footer .f_contact {
		width: 100%;
	}

	.f_navi {
		display: none;
	}

	.f_logo_sp {
		display: block;
		margin-bottom: 40px;
	}

	.f_logo_sp img {
		width: 140px;
		height: auto;
	}

	#footer .f_contact ._in {
		width: 90%;
		margin: auto;
	}

	#pageTop {
		right: 20px;
	}

	#copy {
		font-size: 12px;
		line-height: 1.2em;
		text-align: center;
	}
}

@media only screen and (max-width: 640px) {

	#footer {
		padding-top: 50px;
	}

	#pageTop img {
		width: 45px;
		height: auto;
	}
}


/* 共通
-------------------------------*/
#content_box {
	background-image: url(../img/common/ttl_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}

.ttlbox {
	width: 100%;
	height: 540px;
	padding-top: 150px;
	color: #fff;
	font-family: NSans-L, sans-serif;
	font-size: 18px;
	line-height: 1.5em;
	text-align: center;

}

.ttlbox.ttl_height {
	height: 640px;
}

.ttlbox .en {
	margin-bottom: 10px;
}

.ttlbox .en img {
	width: auto;
	height: 29px;
}

@media only screen and (max-width: 1500px) {

	#content_box {
		background-size: auto 39vw;
	}

	.ttlbox {
		width: 100%;
		height: 36vw;
		padding-top: 10vw;
	}

	.ttlbox.ttl_height {
		height: 40vw;
	}

}

@media only screen and (max-width: 1000px) {

	#content_box {
		background-size: auto 330px;
	}

	.ttlbox {
		height: 280px;
		padding-top: 50px;
	}

	.ttlbox.ttl_height {
		height: 280px;
	}

}

@media only screen and (max-width: 640px) {

	#content_box {
		background-size: auto 280px;
	}

	.ttlbox {
		height: 240px;
		padding-top: 50px;
		font-size: 17px;
		line-height: 1.5em;
	}

	.ttlbox.ttl_height {
		height: 240px;
	}

	.ttlbox .en img {
		width: auto;
		height: 25px;
	}

}


/* 販売物件
-------------------------------*/
.sel01 {
	width: 100%;
	padding-top: 10px;
}

.sel01.mt160 {
	margin-top: 160px;
}

.sel01 ._in {
	width: 90%;
	max-width: 1060px;
	margin: auto;
}

.ttl_sel {
	color: #00419c;
	font-size: 39px;
	text-align: center;
}

.slide_sel {
	width: 100%;
	max-width: 1000px;
	margin: 2.5vw auto 5vw;
}

#slider {
	position: relative;
}

#slider img.slide-arrow {
	position: absolute;
	top: 50%;
	height: 30px !important;
}

#slider img.prev-arrow {
	left: -30px;
}

#slider img.next-arrow {
	right: -30px;
}

#thumbs {
	padding: 15px 10px 10px;
}

#thumbs * {
	box-sizing: border-box;
}

#thumbs li {
	width: calc(20% - 16px) !important;
	margin: 10px 8px 0;
}

#thumbs .slick-track {
	width: 100% !important;
	transform: translate3d(0, 0, 0) !important;
}

.slider {
	position: relative;
}

.slider img.slide-arrow {
	position: absolute;
	top: 50%;
	height: 30px !important;
}

.slider img.prev-arrow {
	left: -30px;
}

.slider img.next-arrow {
	right: -30px;
}

.thumbs {
	padding: 15px 0 10px;
}

.thumbs * {
	box-sizing: border-box;
}

.thumbs li {
	width: calc((100% - 100px) / 6) !important;
	margin: 10px 20px 0 0;
}

.thumbs li:nth-child(6n) {
	margin: 10px 0 0;
}

.thumbs .slick-track {
	width: 100% !important;
	transform: translate3d(0, 0, 0) !important;
}

.text_sel {
	margin: 90px auto;
	text-align: center;
}

.list_sel {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1060px;
	margin: 6vw auto;
}

.list_sel .cont {
	width: calc((100% - 10px) / 2);
}

.list_sel .cont:last-child {
	margin-left: 10px;
}

.list_sel dl {
	display: flex;
	flex-wrap: wrap;
	margin-top: 3px;
}

.list_sel dl dt,
.list_sel dl dd {
	display: flex;
	align-items: center;
	min-height: 45px;
	padding: 5px 20px;
}

.list_sel dl dt {
	width: 120px;
	background-color: #e6e6e6;
	font-size: 18px;
}

.list_sel dl dd {
	width: calc(100% - 125px);
	margin-left: 5px;
	background-color: #f7f7f7;
	font-size: 19px;
}

.btn_sel {
	width: 490px;
	height: 75px;
	margin: 0 auto;
}

.btn_sel a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 37.5px;
	background-color: #00419c;
	color: #fff;
	font-size: 23px;
}

#gallery {
	display: grid;
	gap: 2.4vw;
}

@media only screen and (max-width: 1280px) {

	.list_sel {
		justify-content: center;
		max-width: 720px;
	}

	.list_sel .cont {
		width: 100%;
	}

	.list_sel .cont:last-child {
		margin-left: 0;
	}

	#gallery {
		padding: 0 5vw;
	}
}

@media only screen and (max-width: 1000px) {

	#thumbs {
		padding: 0;
	}

	.thumbs li {
		width: calc((100% - 25px) / 6) !important;
		margin: 10px 5px 0 0;
	}

	.text_sel {
		margin: 45px auto;
	}
}

@media only screen and (max-width: 640px) {

	.ttl_sel {
		font-size: 21px;
	}

	#slider img.slide-arrow {
		display: none !important;
	}

	#thumbs li {
		width: 24% !important;
		margin: 10px .5% 0;
	}

	.list_sel dl dt,
	.list_sel dl dd {
		padding-right: 15px;
		padding-left: 15px;
	}

	.list_sel dl dt {
		width: 100px;
		font-size: 15px;

	}

	.list_sel dl dd {
		width: calc(100% - 105px);
		font-size: 16px;
	}

	.btn_sel {
		width: 90%;
		max-width: 490px;
		height: 54px;
	}

	.btn_sel a {
		border-radius: 27px;
		font-size: 17px;
	}
}

@media only screen and (max-width: 480px) {

	#thumbs li {
		width: 32.33% !important;
		margin-top: 5px;
	}
}

/* 会社案内
-------------------------------*/


.com01 {
	position: relative;
	width: 100%;
	padding-bottom: 100px;
}

.com01::after {
	content: "";
	position: absolute;
	z-index: -3;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1200px;
	background: url(../img/company/com01_bg.png) left bottom no-repeat;
	background-size: cover;
}

.com01 ._in {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	width: 90%;
	max-width: 1160px;
	margin: 64px auto 0;
}

.com01 .txt {
	width: 45%;
	margin-right: 2.5%;
	margin-left: 2.5%;
}

.com01 .img {
	width: 43%;
	text-align: center;
}

.mb40 {
	margin-bottom: 40px;
}

.com01 .txt .name {
	margin-top: 50px;
	font-family: NSans-B, sans-serif;
	text-align: right;
}

.com01 .catch {
	display: inline-block;
	margin-bottom: 50px;
	padding: 40px;
	background-image: url(../img/company/quote01.png), url(../img/company/quote02.png);
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right bottom;
	font-size: 40px;
	letter-spacing: 0;
	line-height: 1.4em;
}

@media only screen and (max-width: 1240px) {

	.com01::after {
		height: 1400px;
	}
}

@media only screen and (max-width: 1110px) {

	.com01 {
		padding-bottom: 9vw;
	}

	.com01::after {
		top: -300px;
		bottom: auto;
		left: 0;
		width: 100%;
		height: 1200px;
		background-position: left top;
		background-size: 150% auto;
	}

	.com01 ._in {
		display: block;
	}

	.com01 .txt {
		width: 100%;
	}

	.com01 .img {
		width: 70%;
		margin: 30px auto;
	}

	.mb40 {
		margin-bottom: 30px;
	}

	.com01 .txt p br {
		display: none;
	}

	.com01 .txt .name img {
		width: 150px;
		height: auto;
	}

	.com01 .txt .name {
		margin-top: 30px;
	}

}

@media only screen and (max-width: 640px) {

	.com01 .txt .name img {
		width: 120px;
		height: auto;
	}
}

@media only screen and (max-width: 520px) {

	.com01 .catch {
		margin-bottom: 20px;
		padding: 7.6vw;
		background-size: 11vw auto, 11vw auto;
		font-size: 7.6vw;
		line-height: 1.4em;
	}
}


.ttl_com {
	margin-bottom: 45px;
	color: #666;
	font-family: NSans-M, sans-serif;
	font-size: 26px;
	line-height: 1.2em;
}

.ttl_com .en {
	margin-bottom: 10px;
}

.ttl_com .en img {
	width: auto;
	height: 43px;
}

.com02,
.com03 {
	width: 90%;
	max-width: 1160px;
	margin: 0 auto 120px;
}

.gaiyou {
	width: 100%;
}

.gaiyou tr {
	border-bottom: solid 1px #1a1a1a;
}

.gaiyou th {
	width: 20%;
	padding: 35px;
	font-size: 110%;
	vertical-align: top;
}

.gaiyou td {
	width: 80%;
	padding: 35px 0;
}

.gaiyou td span {
	display: inline-block;
	width: 1rem;
	margin-right: 2px;
	overflow: hidden;
	background-color: #00419c;
	text-indent: 9999px;
	aspect-ratio: 1/1;
}

.gaiyou td a.map {
	padding-right: 20px;
	background: url(../img/company/map_pin.png) right center no-repeat;
	text-decoration: underline;
}

.gaiyou td a.map:hover {
	text-decoration: none;
}

.ekaku {
	margin-left: 40px;
	padding-top: 20px;
	padding-bottom: 20px;
	background: url(../img/company/history_kei_tate.png) left bottom no-repeat;
}

.ekaku li {
	margin-bottom: 60px;
	padding-left: 130px;
	background: url(../img/company/history_kei_yoko.png) left center no-repeat;
}

@media only screen and (max-width: 1000px) {

	.ttl_com .en img {
		width: auto;
		height: 38px;
	}

	.com02,
	.com03 {
		margin-bottom: 12vw;
	}

	.gaiyou th {
		padding: 20px 0;
	}

	.gaiyou td {
		padding: 20px 0;
	}

	.ekaku {
		margin-left: 0;
		padding-bottom: 40px;
	}

	.ekaku li {
		margin-bottom: 40px;
	}

}

@media only screen and (max-width: 640px) {

	.ttl_com {
		margin-bottom: 25px;
		font-size: 18px;
	}

	.ttl_com .en {
		margin-bottom: 8px;
	}

	.ttl_com .en img {
		width: auto;
		height: 28px;
	}

	.gaiyou th {
		width: 5.5em;
		padding: 15px 0;
		font-size: 100%;
	}

	.gaiyou td {
		width: calc(100% - 5.5em);
		padding: 15px 0;
	}

	.ekaku {
		padding-top: 10px;
		padding-bottom: 60px;
	}

	.ekaku li {
		margin-bottom: 25px;
		padding-left: 50px;
		background-position: -60px center;
	}

}


/* 事業案内
-------------------------------*/
.sev01 {
	position: relative;
	width: 100%;
	height: 850px;
	margin-top: -250px;
	padding-top: 300px;
}

.sev01::after {
	content: "";
	position: absolute;
	z-index: -10;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 850px;
	background: url(../img/service/top01_bg.png) left bottom no-repeat;
}

.sev01 ._in {
	position: relative;
	width: 90%;
	max-width: 840px;
	margin: auto;
}

.sev01 .ttl {
	position: absolute;
	top: -24px;
	left: 0;
}

.sev01 .ttl .sp {
	display: none;
}

.sev01 .txt {
	position: absolute;
	top: 0;
	left: 200px;
	font-family: NSans-M, sans-serif;
	font-size: 20px;
	line-height: 2em;
}

.sev01 .img01 {
	position: absolute;
	top: -50px;
	right: -200px;
	width: 190px;
}

.sev01 .img02 {
	position: absolute;
	top: 130px;
	right: -150px;
	width: 283px;
}

.sev01 .img03 {
	position: absolute;
	top: 280px;
	right: 200px;
	width: 220px;
}

.sev01 .img04 {
	position: absolute;
	z-index: 10;
	top: 380px;
	right: -230px;
	width: 298px;
}

@media (min-width: 1001px) and (max-width: 1500px) {

	.sev01 {
		position: relative;
		width: 100%;
		height: 56vw;
		margin-top: -16vw;
		padding-top: 20vw;
	}

	.sev01::after {
		width: 100%;
		height: 56vw;
		background-size: contain;
	}

	.sev01 .ttl img {
		width: 9.2vw;
		height: auto;
	}

	.sev01 .txt {
		left: 13vw;
	}

	.sev01 .img01 {
		top: -3.3vw;
		right: -13vw;
		width: 12.6vw;
	}

	.sev01 .img02 {
		top: 8.6vw;
		right: -10vw;
		width: 18.8vw;
	}

	.sev01 .img03 {
		top: 18.6vw;
		right: 13.3vw;
		width: 14.6vw;
	}

	.sev01 .img04 {
		top: 25.3vw;
		right: -15.3vw;
		width: 19.8vw;
	}
}

@media only screen and (max-width: 1000px) {

	.sev01 {
		width: 100%;
		height: auto;
		margin-top: -150px;
		padding-top: 150px;
	}

	.sev01::after {
		width: 100%;
		height: 90vw;
		background-size: auto 100%;
	}

	.sev01 ._in {
		position: relative;
		width: 90%;
		max-width: 800px;
		margin: auto;
	}

	.sev01 .ttl {
		position: static;
	}

	.sev01 .ttl .sp {
		display: block;
		margin-bottom: 30px;
		color: #00419c;
		font-family: NSans-B, sans-serif;
		font-size: 35px;
		line-height: 1.5em;
	}

	.sev01 .ttl .pc {
		display: none;
	}

	.sev01 .txt {
		position: static;
		line-height: 1.8em;
	}

	.sev01 .txt p br {
		display: none;
	}

	.sev01 .img {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		max-width: 580px;
		margin: 40px auto;
	}

	.sev01 .img01,
	.sev01 .img02,
	.sev01 .img03,
	.sev01 .img04 {
		position: static;
		width: 48%;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 640px) {

	.sev01 .ttl .sp {
		margin-bottom: 20px;
		font-size: 30px;
		line-height: 1.5em;
	}

	.sev01 .txt {
		font-size: 17px;
		line-height: 1.8em;
	}

	.sev01 .img01,
	.sev01 .img02,
	.sev01 .img03,
	.sev01 .img04 {
		margin-bottom: 10px;
	}
}


.sev_num {
	width: 100%;
	background: url(../img/service/sev_bg_num.png) center top no-repeat;
	background-size: cover;
}

.sev_num ._in {
	width: 100%;
	max-width: 1200px;
	margin: auto;
	padding-right: 5%;
	padding-left: 250px;
	background-repeat: no-repeat;
	background-position: left top;
	color: #fff;
}

.sev_num ._in.num1 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 410px;
	background-image: url(../img/service/sev_num01.png);
}

.sev_num ._in.num2 {
	padding-top: 120px;
	padding-bottom: 90px;
	background-image: url(../img/service/sev_num02.png);
}

.sev_num .ttl {
	font-family: NSans-B, sans-serif;
	font-size: 35px;
	line-height: 1.4em;
}

.sev_num .num2 .ttl {
	margin-bottom: 35px;
}

.sev_num .collab {
	margin-bottom: 35px;
}

.sev_num .btn {
	margin-top: 40px;

}


@media only screen and (max-width: 1300px) {

	.sev_num ._in {
		padding-left: 19vw;
		background-size: 16vw auto;
	}

	.sev_num ._in.num1 {
		min-height: 31vw;
	}

	.sev_num ._in.num2 {
		padding-top: 9.2vw;
		padding-bottom: 6.9vw;
	}
}

@media only screen and (max-width: 1000px) {

	.sev_num .ttl {
		font-size: 30px;
		line-height: 1.4em;
	}

	.sev_num .num2 .ttl {
		margin-bottom: 25px;
	}

	.sev_num .num2 p br {
		display: none;
	}

}

@media only screen and (max-width: 420px) {

	.sev_num ._in {
		padding-left: 16vw;
		background-size: 13vw auto;
	}

	.sev_num .num1 .ttl {
		font-size: 21px;
		line-height: 1.4em;
	}

	.sev_num .num2 .ttl {
		margin-bottom: 20px;
		font-size: 23px;
		line-height: 1.4em;
	}
}


.sev02 {
	width: 90%;
	max-width: 1220px;
	margin: auto;
	padding-top: 100px;
	padding-bottom: 140px;
	text-align: center;
}

.sev02 .s_cont.fig03.flex {
	justify-content: flex-start;
	gap: 24px 2%;
}

.ttl_maru {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 378px;
	height: 100px;
	margin: 0 auto 25px;
	border: solid 3px #00419c;
	border-radius: 50px;
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 30px;
	line-height: 1.2em;
}

.s_cont {
	margin-top: 50px;
	margin-bottom: 110px;
}

.s_cont.mid {
	margin-bottom: 50px;
}

.fig02 table {
	width: 100%;
	max-width: 920px;
	margin: auto;
	border-spacing: 0 40px; /* 左右、上下 */
	border-collapse: separate;
	background: url(../img/service/sev02_fig02_kei1.png) 100px center no-repeat;
	background-size: 3px 90%;
	text-align: left;
}

.fig02 table th {
	width: 270px;
	background: url(../img/service/sev02_fig02_kei2.png) right center no-repeat;
}

.fig02 table td {
	width: calc(100% - 270px);
	padding-left: 15px;
}

.fig02 table th div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 210px;
	height: 87px;
	border-radius: 20px;
	background-color: #00419c;
	color: #fff;
	font-family: NSans-M, sans-serif;
	font-size: 25px;
	line-height: 1.3em;
	text-align: center;
}

.fig02 table th div.gray {
	height: 130px;
	background-color: #808080;
}

.fig02 table td p.sub {
	margin-bottom: 10px;
	font-family: NSans-M, sans-serif;
	font-size: 110%;
	line-height: 1.3em;
}

.sev02 .fig03 li {
	width: 32%;
}

.sev02 .fig03 li .img {
	margin-bottom: 15px;
	border: solid 1px #808080;
	text-align: center;
}

.sev02 .fig03 li p {
	line-height: 1.5em;
	text-align: left;
}

.sev02 .fig03 li p.sub {
	color: #00419c;
	font-family: NSans-M, sans-serif;
	font-size: 115%;
	line-height: 1.5em;
}

.fig04 {
	width: 100%;
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}

.fig04 .item {
	width: 48%;
	font-family: NSans-M, sans-serif;
	font-size: 25px;
	line-height: 1.2em;
	text-align: center;
}

.fig04 .item dt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 87px;
	margin-bottom: 30px;
	border: solid 3px #00419c;
	border-radius: 20px;
	background-color: #00419c;
	color: #fff;
	text-align: center;
}

.fig04 .item dd {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 87px;
	margin-bottom: 30px;
	border: solid 3px #00419c;
	border-radius: 20px;
	text-align: center;
}

.fig04 .item dd::after {
	content: "";
	position: absolute;
	bottom: -33px;
	left: 49.5%;
	width: 3px;
	height: 30px;
	background-color: #00419c;
}

.fig04 .item dd.ya {
	margin-bottom: 50px;
}

.fig04 .item dd.ya::after {
	content: "";
	position: absolute;
	bottom: -53px;
	left: 0;
	width: 100%;
	height: 53px;
	background-color: transparent;
	background-image: url(../img/service/ya_01.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.fig04 .item dd.end {
	margin-bottom: 0;
	border-color: #d1d4eb;
	background-color: #d1d4eb;
}

.fig04 .item dd.end::after {
	display: none;
}


.fig04 .item.buy dt {
	border-color: #4f89c4;
	background-color: #4f89c4;
}

.fig04 .item.buy dd.ya::after {
	background-image: url(../img/service/ya_02.png);
}

.fig04 .item.buy dd.end {
	border-color: #dde5f2;
	background-color: #dde5f2;
}

@media only screen and (max-width: 1000px) {

	.sev02 {
		padding-top: 10vw;
		padding-bottom: 14vw;
	}

	.ttl_maru {
		width: 350px;
		height: 80px;
		margin-bottom: 30px;
		border-radius: 40px;
		font-size: 28px;
		line-height: 1.2em;
	}

	.s_cont {
		margin-top: 30px;
		margin-bottom: 60px;
	}

	.s_cont.mid {
		margin-bottom: 50px;
	}

	.s_cont p br {
		display: none;
	}


	.fig02 table th div {
		height: 70px;
		font-size: 20px;
		line-height: 1.3em;
	}

	.fig02 table th div.gray {
		height: 150px;
	}

	.fig02 table td br {
		display: none;
	}

	.sev02 .fig03 li {
		width: 32%;
	}

	.sev02 .fig03 li .img {
		margin-bottom: 15px;
		border: solid 1px #808080;
		text-align: center;
	}

	.sev02 .fig03 li p {
		line-height: 1.5em;
		text-align: left;
	}

	.sev02 .fig03 li p.sub {
		color: #00419c;
		font-family: NSans-M, sans-serif;
		font-size: 115%;
		line-height: 1.5em;
	}

	.fig04 .item {
		font-size: 20px;
		line-height: 1.2em;
	}

	.fig04 .item dt {
		height: 70px;
	}

	.fig04 .item dd {
		height: 70px;
	}
}

@media only screen and (max-width: 640px) {

	.ttl_maru {
		width: 280px;
		height: 60px;
		margin-bottom: 20px;
		border-width: 2px;
		border-radius: 35px;
		font-size: 22px;
		line-height: 1.2em;
	}

	.s_cont {
		margin-top: 20px;
		margin-bottom: 50px;
	}

	.s_cont.mid {
		margin-bottom: 40px;
	}

	.s_cont p {
		text-align: left;
	}

	.fig02 table {
		border-spacing: 0 30px; /* 左右、上下 */
	}

	.fig02 table th {
		display: inline-block;
		width: 100%;
		background: none;
	}

	.fig02 table td {
		display: inline-block;
		width: 100%;
		padding: 7px 0 0;
		background-color: #fff;
	}

	.fig02 table th div {
		width: 210px;
		height: 50px;
		border-radius: 10px;
		font-size: 18px;
		line-height: 1.3em;
	}

	.fig02 table th div.gray {
		width: 210px;
		height: 50px;
		padding: 1em;
	}

	.fig02 table th div.gray br {
		display: none;
	}

	.fig02 table td p.sub {
		margin-bottom: 5px;
		font-size: 100%;
		line-height: 1.3em;
	}

	.fig02 table td img {
		width: 210px;
		height: auto;
		margin-bottom: 10px;
	}

	.sev02 .fig03 li {
		width: 90%;
		max-width: 398px;
		margin: 0 auto 20px;
	}

	.sev02 .fig03 li .img {
		margin-bottom: 10px;
	}

	.fig04 .item {
		font-size: 15px;
		line-height: 1.2em;
	}

	.fig04 .item dt {
		width: 100%;
		height: 50px;
		margin-bottom: 15px;
		border-width: 2px;
		border-radius: 10px;
	}

	.fig04 .item dd {
		width: 100%;
		height: 50px;
		padding: 0 3px;
		border-width: 2px;
		border-radius: 10px;
	}

}


.sev03 .flex {
	align-items: center;
	width: 100%;
}

.sev03 .flex.rev {
	flex-flow: row-reverse;
}

.sev03 .txt {
	width: 57%;
	max-width: 905px;
	padding-right: 5%;
}

.sev03 .img {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
	width: 40%;
	height: 620px;
	background-color: #f5f5f5;
	text-align: center;
}

.sev03 .item01 .img img {
	position: absolute;
	z-index: 3;
	top: -100px;
	right: -90px;
}

.sev03 .item02 .txt {
	padding-right: 0;
	padding-left: 5%;
}

.sev03 .item02 .txt ._in {
	width: 100%;
	max-width: 700px;
	margin-left: auto;
}

.sev03 .txt .ttl {
	margin-bottom: 30px;
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 25px;
	line-height: 1.2em;

}

.sev03 .txt p {
	margin-bottom: 20px;
}


@media only screen and (max-width: 1800px) {

	.sev03 .item01 .img img {
		right: 0;
	}
}

@media only screen and (max-width: 1500px) {

	.sev03 .item01 .img img {
		top: -5vw;
	}
}

@media only screen and (max-width: 1250px) {

	.sev03 .item01 .img img {
		position: static;
	}
}

@media only screen and (max-width: 1110px) {

	.sev03 .flex.rev {
		display: block;
	}

	.sev03 .txt,
	.sev03 .item02 .txt {
		width: 100%;
		padding: 8vw 5% 20px;
	}

	.sev03 .img {
		width: 100%;
		height: auto;
		padding: 20px 5%;
	}

	.sev03 .item02 .txt ._in {
		width: 100%;
		max-width: auto;
	}

	.sev03 .txt .ttl {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 1.2em;
	}
}

@media only screen and (max-width: 640px) {

	.sev03 .txt p {
		margin-bottom: 10px;
	}

	.sev03 .txt p br {
		display: none;
	}
}


.sev04 .bg_img {
	width: 100%;
	height: 250px;
	margin-bottom: 100px;
	background-attachment: fixed;
	background-image: url(../img/service/sev04_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.sev04 ._in {
	display: flex;
	flex-flow: row-reverse;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	max-width: 1440px;
	margin: auto;
}

.sev04 .txt {
	width: 54%;
	font-size: 19px;
	line-height: 1.8em;
}

.sev04 .img {
	position: relative;
	width: 40%;
}

.sev04 .img .cap {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 254px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.sev04 .txt .ttl {
	margin-bottom: 30px;
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 25px;
	line-height: 1.2em;
}

.sev04 .txt .btn_pre {
	margin-top: 40px;
}

@media only screen and (max-width: 1000px) {

	.sev04 .bg_img {
		height: 30vw;
		margin-bottom: 10vw;
		background-attachment: scroll !important;
		background-size: 140% auto;
	}

	.sev04 ._in {
		display: block;
	}

	.sev04 .txt {
		width: 100%;
		margin-bottom: 30px;
		font-size: 17px;
		line-height: 1.8em;
	}

	.sev04 .img {
		width: 100%;
		max-width: 576px;
		margin: auto;
	}

	.sev04 .img .cap {
		width: 50%;
	}

	.sev04 .txt .ttl {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 1.2em;
	}
}

@media only screen and (max-width: 640px) {

	.sev04 .txt {
		font-size: 15px;
		line-height: 1.8em;
	}

	.sev04 .txt .btn_pre {
		width: 80%;
		margin-top: 30px;
	}


}

.sev05 .ttl {
	margin-top: 90px;
	padding: 90px 0;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	text-align: center;
}

.sev05 #thumbs {
	padding: 15px 0 10px;
}

.sev05 #thumbs li {
	width: calc((100% - 24px) / 4) !important;
	margin: 0 8px 0 0;
}

.sev05 #thumbs li:last-child {
	margin: 0 0 0 0;
}

@media only screen and (max-width: 1110px) {

	.sev05 .ttl {
		margin-top: 50px;
		padding: 50px 0;
		font-size: 22px;
	}
}


/* リクルート
-------------------------------*/
.recruit #wrapper {
	background-image: url(../img/recruit/rec01_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}

.rec01 {
	width: 100%;
	height: 460px;
	padding: 100px 5% 0;
	color: #fff;
	font-family: NSans-B, sans-serif;
	font-size: 35px;
	line-height: 1.7em;
	text-align: center;
}

@media (min-width: 1001px) and (max-width: 1500px) {

	.recruit #wrapper {
		background-size: auto 72vw;
	}

	.rec01 {
		height: 30vw;
		padding-top: 6vw;
		font-size: 35px;
		line-height: 1.7em;
	}
}

@media only screen and (max-width: 1000px) {

	.recruit #wrapper {
		background-position: center -80px;
		background-size: auto 800px;
	}

	.rec01 {
		height: 300px;
		padding-top: 80px;
		font-size: 30px;
		line-height: 1.7em;
	}
}

@media only screen and (max-width: 640px) {

	.recruit #wrapper {
		background-size: auto 700px;
	}

	.rec01 {
		padding-top: 60px;
		font-size: 28px;
		line-height: 1.7em;
	}

	.rec01 p span {
		display: inline-block;
	}
}


.rec02 {
	padding: 100px 5%;
	background-color: #fff;
	font-family: NSans-B, sans-serif;
	font-size: 20px;
	line-height: 2em;
	text-align: center;
}

.rec03 {
	margin-bottom: 80px;
}

.ttl_bosyu {
	margin-bottom: 50px;
	text-align: center;
}

.ttl_bosyu div {
	display: inline-block;
	padding-bottom: 25px;
	border-bottom: solid 2px #00419c;
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 25px;
	line-height: 1.2em;
}

.bosyu_num {
	display: flex;
	position: relative;
	z-index: 3;
	align-items: center;
	justify-content: center;
	width: 370px;
	height: 80px;
	margin: auto;
	margin-bottom: -40px;
	padding-left: 30px;
	background: url(../img/recruit/bosyu_cate_bg.png) no-repeat;
	background-size: cover;
	color: #fff;
	font-family: NSans-B, sans-serif;
	font-size: 23px;
	line-height: 1.2em;
}

.bosyu_num::before {
	content: "";
	position: absolute;
	bottom: -1px;
	left: 25px;
	width: 34px;
	height: 51px;
	background-image: url(../img/service/sev_num01.png);
	background-repeat: no-repeat;
	background-size: auto 100%;
}

.bosyu_num.num2::before {
	background-image: url(../img/service/sev_num02.png);
}


.bosyu_waku {
	width: 95%;
	max-width: 1200px;
	margin: auto;
	padding: 80px 5%;
	border: solid 1px #b3b3b3;
}

.b-youkou {
	width: 100%;
	max-width: 925px;
	margin: auto;
}

.b-youkou tr {
	border-bottom: solid 1px #ccc;
}

.b-youkou th {
	width: 25%;
	padding: 25px;
	color: #00419c;
	font-family: NSans-M, sans-serif;
	font-size: 115%;
	vertical-align: top;
}

.b-youkou td {
	width: 75%;
	padding: 25px;
}

.rec04 {
	padding: 0 5%;
	text-align: center;
}

.rec04 .btn_mail {
	margin-top: 60px;
	text-align: center;
}

@media only screen and (max-width: 1000px) {

	.rec02 {
		padding: 10vw 5%;
		font-size: 18px;
		line-height: 2em;
	}

	.rec03 {
		margin-bottom: 8vw;
	}

	.ttl_bosyu {
		margin-bottom: 5vw;
	}

	.ttl_bosyu div {
		padding-bottom: 15px;
		font-size: 20px;
		line-height: 1.2em;
	}

	.bosyu_waku {
		padding: 8vw 5%;
	}

	.b-youkou th {
		padding: 20px;
	}

	.b-youkou td {
		padding: 20px;
	}

	.rec04 .btn_mail {
		margin-top: 30px;
	}
}

@media only screen and (max-width: 640px) {

	.rec02 br {
		display: none;
	}

	.bosyu_num {
		width: 300px;
		height: 60px;
		margin-bottom: -30px;
		padding-left: 10px;
		font-size: 19px;
		line-height: 1.2em;
	}

	.bosyu_num::before {
		left: 15px;
		height: 40px;
	}

	.b-youkou th {
		display: inline-block;
		width: 100%;
		padding: 10px  10px 0  10px;
	}

	.b-youkou td {
		display: inline-block;
		width: 100%;
		padding: 10px;
	}

	.rec04 p {
		text-align: left;
	}

	.rec04 .btn_mail {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}

}


/* お問い合わせ
-------------------------------*/
.bg_gray {
	background-color: #f5f5f5;
}

.contact section {
	width: 95%;
	max-width: 1200px;
	margin: auto;
}

.contact section.toi01 {
	margin-bottom: 50px;
	padding: 75px 5%;
}

.toi01 ._in {
	width: 100%;
	max-width: 925px;
	margin: auto;
}

.toi01 .txt1 {
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 25px;
	line-height: 1.6em;
}

.toi01 .tel {
	margin-top: 30px;
	margin-bottom: 30px;
}

.toi02 {
	padding: 75px 5%;
}

.toi02 .txt1 {
	width: 100%;
	max-width: 925px;
	margin: auto;
	color: #00419c;
	font-family: NSans-B, sans-serif;
	font-size: 25px;
	line-height: 1.6em;
}


.mailform {
	width: 100%;
	max-width: 1000px;
	margin: 40px auto;
	border-top: solid 1px #ccc;
}

.mailform tr {
	border-bottom: solid 1px #ccc;
}

.mailform th {
	width: 340px;
	padding: 40px 20px 40px 30px;
	vertical-align: top;

}

.mailform td {
	width: calc(100% - 340px);
	padding: 30px 0;
}

.mailform th span {
	padding: 3px 7px;
	background-color: #b40000;
	color: #fff;
	font-size: 12px;
	line-height: 1.2em;

}

.mailform th .row2 {
	display: inline-block;
	margin-right: 12px;
	line-height: 1.3em;
	vertical-align: middle;
}

.mailform td p.sub {
	margin-top: 15px;
	margin-bottom: 7px;
	margin-left: 1em;
}

.mailform td p.sub2 {
	margin-top: 10px;
	margin-left: 1em;
	color: #b40000;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.4em;
}

.length_l {
	width: 100%;
	padding: 15px;
	border: none;
	border-radius: 6px;
	background-color: #fff;
}

.length_m {
	width: 42%;
	padding: 15px;
	border: none;
	border-radius: 6px;
	background-color: #fff;
}

.length_s {
	width: 20%;
	padding: 15px;
	border: none;
	border-radius: 6px;
	background-color: #fff;
}

::placeholder {
	color: #b3b3b3;
}

.mt20 {
	margin-top: 20px;
}

.naiyou {
	width: 100%;
	height: 220px;
	padding: 15px;
	border: none;
	border-radius: 6px;
	background-color: #fff;
	resize: vertical;
}

.toi02 .txt2 {
	margin-top: 40px;
	text-align: center;
}

.btn_sousin {
	width: 80%;
	max-width: 393px;
	height: 83px;
	transition: .3s;
	border: 0 solid;
	background: url(../img/contact/toi_sousin.png) center center no-repeat;
	background-size: contain;
	cursor: pointer;
}

.btn_sousin:hover {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)";
	filter: alpha(opacity=70);
}

.go-back {
	margin-top: 60px;
	text-align: center;
}

.go-back a {
	padding: 5px 1em;
	transition: .3s;
	border-bottom: solid 1px #999;
}

.go-back a:hover {
	border-bottom-color: transparent;
}


@media only screen and (max-width: 810px) {

	.contact section.toi01 {
		padding: 50px 5%;
	}

	.toi02 {
		padding: 50px 5%;
	}

	.toi01 .txt1,
	.toi02 .txt1 {
		font-size: 20px;
		line-height: 1.5em;
	}

	.toi01 .txt1 span,
	.toi02 .txt1 span {
		display: inline-block;
	}

	.mailform th {
		display: inline-block;
		width: 100%;
		padding: 20px 0 0;
	}

	.mailform td {
		display: inline-block;
		width: 100%;
		padding: 20px 0;
	}

	.mailform th .row2 br {
		display: none;
	}

}

@media only screen and (max-width: 640px) {

	.length_m {
		width: 30vw;
	}

	.length_s {
		width: 30%;
	}

}


/* プリントの表示設定 */
@media print {

	#wrapper {
		width: 1110px;
		margin: auto;
	}

	.navBtn button {
		position: absolute;
		top: 0;
		right: 0;
	}

	.side_toi_btn {
		position: absolute;
		top: 120px;
		right: 0;
	}

	.side_scroll {
		display: none;
	}

	.recruit #wrapper {
		background-position: center top;
	}


}

