@charset "UTF-8";
html {
  width: 100%;
  font-size: 100%;
}
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 16px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
* {
  max-width: 100%;
  max-height: 999999px;
  margin: 0;
  padding: 0;
  color: #333;
  font-size: 16px;
  font-family: inherit;
  font-weight: 300;
  font-style: normal;
  letter-spacing: inherit;
  line-height: inherit;
  outline: none;
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: border-box;
}
* * {
  color: inherit;
  font-size: inherit;
}
a {
  color: #333;
  outline: none;
  text-decoration: none;
}
a:active, a:hover {
  text-decoration: underline;
}
a * {
  color: inherit;
}
input {
  border: none;
  vertical-align: bottom;
}
input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="checkbox"], input[type="radio"] {
  margin-right: 5px;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[disabled] {
  cursor: default;
}
button {
  border: none;
  cursor: pointer;
  vertical-align: bottom;
  -webkit-appearance: button;
  background-color: transparent;
}
button[disabled] {
  cursor: default;
}
select, textarea {
  vertical-align: bottom;
}
@media (min-width: 769px) {
  a:hover img, input[type="submit"]:hover, input[type="reset"]:hover, button:hover {
    -webkit-font-smoothing: antialiased;
    text-decoration: none;
    opacity: 0.6;
  }
}
b, strong {
  font-weight: 700;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}
img[src*=".svg"], img[src*=".svgz"] {
  width: 100%;
}
ul, ol {
  list-style-type: none;
  list-style-image: none;
  list-style-position: outside;
}
ul li, ol li {
  list-style: none;
}
audio, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, progress, video {
  display: block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
svg {
  width: auto;
  height: auto;
  vertical-align: bottom;
}
svg:not(:root) {
  overflow: hidden;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
}
table {
  table-layout: fixed;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
table th, table td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}
hr {
  display: block;
  width: 0;
  height: 0;
  border: 0;
}
.load a, .load img, .load input, .load svg, .load *:before, .load *:after {
  transition: opacity 0.7s;
}
.entry:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}
.entry > * {
  margin-top: 1.5em;
}
.entry > *:first-child {
  margin-top: 0;
}
.entry ul, .entry ol {
  margin-top: 0.7em;
}
.entry .alignleft, .entry .alignright, .entry .aligncenter {
  margin-bottom: 5px;
}
.entry .alignleft {
  float: left;
  display: inline;
  margin-right: 10px;
  margin-top: 4px;
}
.entry .alignright {
  float: right;
  display: inline;
  margin-left: 10px;
  margin-top: 4px;
}
.entry .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
  a {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
  .pc {
    display: none !important;
  }
}
/*
//margin(px)
$i : 0;
$j : 0;
@while ($i < 4) {
	//marginのクラス名
	$marginClass : "T";
	$direction   : "top";
	@if ($i == 1) {
		$marginClass : "B";
		$direction   : "bottom";
	} @else if ($i == 2) {
		$marginClass : "L";
		$direction   : "left";
	} @else if ($i == 3) {
		$marginClass : "R";
		$direction   : "right";
	}

	//各向きのmarginを作成
	@while ($j <= 100) {
		@if ($j == 0) {
			.ma#{$marginClass}#{$j} {
				margin-#{$direction}: 0 !important;
			}
		} @else {
			.ma#{$marginClass}#{$j} {
				margin-#{$direction}: $j + px;
			}
		}
		$j : $j + 5;
	}

	$i : $i + 1;
	$j : 0;
}


//margin(em)
$i : 0;
$j : 0;
@while ($i < 4) {
	//marginのクラス名
	$marginClass : "T";
	$direction   : "top";
	@if ($i == 1) {
		$marginClass : "B";
		$direction   : "bottom";
	} @else if ($i == 2) {
		$marginClass : "L";
		$direction   : "left";
	} @else if ($i == 3) {
		$marginClass : "R";
		$direction   : "right";
	}

	//各向きのmarginを作成
	@while ($j <= 10) {
		.ma#{$marginClass}#{$j}em {
			margin-#{$direction}: $j + em;
		}
		$j : $j + 1;
	}

	$i : $i + 1;
	$j : 0;
}


//padding(px)
$i : 0;
$j : 0;
@while ($i < 4) {
	//padding
	$paddingClass : "T";
	$direction    : "top";
	@if ($i == 1) {
		$paddingClass : "B";
		$direction    : "bottom";
	} @else if ($i == 2) {
		$paddingClass : "L";
		$direction    : "left";
	} @else if ($i == 3) {
		$paddingClass : "R";
		$direction    : "right";
	}

	//各向きのpaddingを作成
	@while ($j <= 100) {
		@if ($j == 0) {
			.pa#{$paddingClass}#{$j} {
				padding-#{$direction}: 0 !important;
			}
		} @else {
			.pa#{$paddingClass}#{$j} {
				padding-#{$direction}: $j + px;
			}
		}
		$j : $j + 5;
	}

	$i : $i + 1;
	$j : 0;
}


//padding(em)
$i : 0;
$j : 0;
@while ($i < 4) {
	//padding
	$paddingClass : "T";
	$direction    : "top";
	@if ($i == 1) {
		$paddingClass : "B";
		$direction    : "bottom";
	} @else if ($i == 2) {
		$paddingClass : "L";
		$direction    : "left";
	} @else if ($i == 3) {
		$paddingClass : "R";
		$direction    : "right";
	}

	//各向きのpaddingを作成
	@while ($j <= 10) {
		.pa#{$paddingClass}#{$j}em {
			padding-#{$direction}: $j + em;
		}
		$j : $j + 1;
	}

	$i : $i + 1;
	$j : 0;
}
*/
.bold {
  font-weight: bold;
}
.all {
  text-align: left;
}
.alr {
  text-align: right;
}
.alc {
  text-align: center;
}
.clearFix {
  display: block;
}
.clearFix:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
  clear: both;
}
.innerL {
  width: 1230px;
}
.innerM {
  width: 1030px;
}
.innerS {
  width: 830px;
}
[class^="inner"] {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
[class^="inner"] [class^="inner"] {
  padding-left: 0;
  padding-right: 0;
}
.js-fadein {
  position: relative;
  top: 50px;
  opacity: 0;
}
.js-fadein.in {
  top: 0;
  opacity: 1;
  transition: top 0.8s, left 0.8s, right 0.8s, opacity 0.8s;
}
.js-fadein.left-in {
  top: 0;
  left: -100px;
}
.js-fadein.left-in.in {
  left: 0;
}
.js-fadein.right-in {
  top: 0;
  right: -100px;
}
.js-fadein.right-in.in {
  right: 0;
}
#wrapper {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.inner {
  width: 100%;
  max-width: 80rem;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 auto;
}
.container {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}
.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6.25rem;
  z-index: 100;
  background-color: #fff;
  /*
		nav {
			margin-left: auto;
			@include mq(1350) {
				position: fixed;
				z-index: 1000;
				left: 50%;
				top: 0;
				@include flex;
				align-items: center;
				display: block;
				width: 100%;
				height: 100%;
				margin: 0;
				padding: 0;
				transition: all .6s;
				overflow-y: auto;
				-webkit-overflow-scrolling: touch;
				visibility: hidden;
				opacity: 0;
				transform: translateX(-50%);
				&.open {
					visibility: visible;
					opacity: 1;
					& + h1 img {
						@include whiteFilter;
					}
				}
			}
			& > ul {
				@include flex;
				@include mq(1350) {
					position: relative;
					display: block;
					width: 400px;
					margin: 0 auto;
					padding: 100px 15px;
				}
				& > li {
					position: relative;
					color: #333;
					@include mq(1350) {
						color: #fff;
						font-size: 30px;
					}
					@include mq {
						font-size: 18px;
					}
					& + li {
						position: relative;
						margin-left: 35px;
						font-size: 15px;
						@include mq(1350) {
							margin: 50px 0 0 !important;
							font-size: 30px;
						}
						@include mq {
							margin: 20px 0 0 !important;
							font-size: 18px;
						}
						&:before {
							content: "/";
							position: absolute;
							left: -35px;
							top: 0;
							display: block;
							width: 35px;
							text-align: center;
							@include mq(1350) {
								display: none;
							}
						}
					}
					&:last-child {
						margin-left: 30px;
						&:before {
							display: none;
						}
					}
					a {
						position: relative;
						color: #333;
						@include mq(1350) {
							color: #fff;
						}
						&:before{
							content: '';
							position: absolute;
							bottom: -5px;
							left: 0;
							width: 100%;
							height: 1px;
							background-color: #333;
							transform-origin: 100% 0;
							transform: scaleX(0);
							transition: transform 0.3s cubic-bezier(0.13, 0.78, 0.38, 0.98);
							opacity: 0.3;
							@include mq(1350) {
								display: none;
							}
						}
						&:hover,
						&.current{
							text-decoration: none;
							&:before{
								transform-origin: 0 0;
								transform: scaleX(1);
							}
						}
						img {
							width: 22px;
							@include mq(1350) {
								width: 28px;
								@include whiteFilter;
							}
						}
					}
					&:hover > div {
						padding-top: 30px;
						visibility: visible;
						opacity: 1;
					}
					& > div {
						position: absolute;
						left: 50%;
						top: 80%;
						width: auto;
						max-width: none;
						padding-top: 20px;
						transform: translateX(-50%);
						visibility: hidden;
						opacity: 0;
						transition: all .6s;
						@include mq(1000) {
							position: static;
							display: none;
							padding-top: 0;
							visibility: visible;
							opacity: 1;
							transform: translateX(0);
						}
						* {
							width: auto;
							max-width: none;	
						}
						ul {
							@include mq(1000, false) {
								position: relative;
								padding: 15px 15px;
								background-color: #fff;
								box-shadow: 0px 0px 12px rgba(34, 34, 34, 0.12);
								& > li {
									a {
										//@include flex;
										//flex-wrap: nowrap;
										//align-items: center;
										display: block;
										padding:  10px;
										font-size: 15px;
										font-weight: bold;
										line-height: 1;
										white-space: nowrap;
									}
								}
							}
							@include mq(1000) {
								padding: 0 10px 10px;
								& > li {
									font-size: 14px;
									a {
										display: block;
										padding: 10px;
										&:before {
											content: "- ";
										}
									}
								}
							}
						}
					}
				}
			}
		}
	*/
}
@media screen and (max-width: 768px) {
  header {
    height: 4.0625rem;
  }
}
header #headerInner {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header #headerInner {
    justify-content: space-between;
  }
}
header #headerInner #logo {
  width: 12.75rem;
  height: 100%;
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header #headerInner #logo {
    width: 10.625rem;
  }
}
header #headerInner #logo a img {
  width: 100%;
  height: auto;
}
header #gNavi {
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  header #gNavi {
    width: 50%;
  }
}
header #gNavi > ul {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  header #gNavi > ul {
    justify-content: flex-end;
  }
}
header #gNavi > ul > li {
  height: 100%;
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  header #gNavi > ul > li {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #gNavi > ul > li:last-child {
    display: block;
  }
}
header #gNavi > ul > li a {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
header #spMenu {
  display: none;
}
@media screen and (max-width: 768px) {
  header #spMenu {
    position: relative;
    z-index: 2000;
    display: block;
    width: 50px;
    height: 50px;
    margin-left: auto;
    padding-top: 14px;
    background-color: #333;
    overflow: hidden;
  }
  header #spMenu:hover {
    text-decoration: none;
  }
  header #spMenu span {
    position: relative;
    left: 0;
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: 0.6s all;
  }
  header #spMenu span + span {
    margin-top: 8px;
  }
  header #spMenu span.top {
    transform-origin: left top;
  }
  header #spMenu span.bottom {
    transform-origin: left bottom;
  }
  header #spMenu.open span.top {
    left: 4px;
    top: 1.5px;
    transform: rotate(45deg);
  }
  header #spMenu.open span.middle {
    opacity: 0;
  }
  header #spMenu.open span.bottom {
    left: 4px;
    top: -1.5px;
    transform: rotate(-45deg);
  }
}
footer {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 90px;
  margin-top: 100px;
  align-items: center;
  justify-content: center;
}
footer #copyright {
  font-size: 10px;
}
main {
  padding-top: 100px;
}
main .flex {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
}
main .pager {
  margin-top: 60px;
}
main .pager .page-numbers {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
main .pager .page-numbers > * {
  margin: 0 10px;
}
main .pager .page-numbers > * > * {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1;
}
main .pager .page-numbers > * > *:after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #333;
  transition: all 0.5s;
}
main .pager .page-numbers > * > *.current, main .pager .page-numbers > * > *:hover {
  text-decoration: none;
}
main .pager .page-numbers > * > *.current:after, main .pager .page-numbers > * > *:hover:after {
  width: 100%;
}
main .heading {
  position: relative;
  font-size: 1.875rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main .heading {
    font-size: 1.375rem;
    line-height: 1.6;
    padding-bottom: 5px;
  }
}
main .heading:after {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}
main .btn {
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid #707070;
  display: inline-block;
  text-align: center;
  transition: all 0.5s;
}
main .btn:hover {
  background-color: #707070;
  color: #fff;
}
main .mv {
  width: 100%;
  height: 19.375rem;
  background-image: url(/assets/img/mv01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 5.125rem;
}
@media screen and (max-width: 768px) {
  main .mv {
    height: 25rem;
    margin-bottom: 4rem;
    background-image: url(/assets/img/mv01_sp.jpg);
  }
}
main .mv .mv__inner {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
main .mv .mv__inner .mv__bottom-wrap {
  width: 100%;
  max-width: 80rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  main .mv .mv__inner .mv__bottom-wrap {
    flex-direction: column;
    align-items: flex-end;
  }
}
main .mv .mv__inner .mv__bottom-wrap .mv__bottom {
  font-size: 1.875rem;
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  main .mv .mv__inner .mv__bottom-wrap .mv__bottom {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  main .mv .mv__inner .mv__bottom-wrap .mv__bottom {
    font-size: 1.1rem;
  }
}
main .mv .mv__inner .mv__bottom-wrap .mv__img {
  width: 15.25rem;
}
@media screen and (max-width: 768px) {
  main .mv .mv__inner .mv__bottom-wrap .mv__img {
    width: 10.625rem;
  }
}
main #top .concept {
  padding-bottom: 6.125rem;
}
@media screen and (max-width: 768px) {
  main #top .concept {
    padding-bottom: 80px;
  }
}
main #top .concept .concept__title {
  margin-top: 2.6875rem;
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main #top .concept .concept__title {
    font-size: 1.1rem;
    letter-spacing: -0.05em;
  }
}
main #top .concept .concept__text {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  main #top .concept .concept__text {
    line-height: 2;
    font-size: 15px;
  }
}
main #top .showroom {
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  main #top .showroom {
    padding-bottom: 80px;
  }
}
main #top .showroom .showroom__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
main #top .showroom .showroom__wrap .showroom__media {
  display: flex;
  justify-content: center;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  main #top .showroom .showroom__wrap .showroom__media {
    flex-direction: column;
  }
}
main #top .showroom .showroom__wrap .showroom__media .showroom__img {
  flex-shrink: 0;
  width: 54%;
  margin-right: 4.25rem;
}
@media screen and (max-width: 768px) {
  main #top .showroom .showroom__wrap .showroom__media .showroom__img {
    width: 100%;
  }
}
main #top .showroom .showroom__wrap .showroom__media .showroom__text {
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main #top .showroom .showroom__wrap .showroom__media .showroom__text {
    margin-top: 30px;
    line-height: 2;
    font-size: 15px;
  }
}
main #top .showroom .showroom__wrap .showroom__media .showroom__address {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  main #top .showroom .showroom__wrap .showroom__media .showroom__address {
    line-height: 1.8;
  }
}
main #top .showroom .showroom__wrap .showroom__media .showroom__btn {
  padding: 1.75rem 2.9375rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  main #top .showroom .showroom__wrap .showroom__media .showroom__btn {
    margin-top: 20px;
    padding: 10px 20px;
  }
}
main #top .photo {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  main #top .photo {
    padding-bottom: 30px;
  }
}
main #top .photo .photo__container {
  text-align: center;
  width: 100%;
  height: 100%;
}
main #top .photo .photo__container .photo__grid {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
main #top .photo__img {
  position: relative;
  display: block;
  width: 30%;
  height: 0;
  margin-right: 5%;
  padding-top: 20%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main #top .photo__img {
    width: 48%;
    padding-top: 28%;
    margin-right: 4%;
  }
}
main #top .photo__img:hover {
  opacity: 1;
}
main #top .photo__img:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  main #top .photo__img:nth-child(3n) {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  main #top .photo__img:nth-child(2n) {
    margin-right: 0;
  }
}
main #top .photo__img:nth-child(n+4) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  main #top .photo__img:nth-child(n+4) {
    margin-top: auto;
  }
}
@media screen and (max-width: 768px) {
  main #top .photo__img:nth-child(n+3) {
    margin-top: 20px;
  }
}
main #top .photo__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: contain;
  transition: all 0.5s;
}
main #top .photo__img img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}
main #top .photo__btn {
  padding: 1.5625rem 12rem;
  margin-top: 5rem;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  main #top .photo__btn {
    margin-top: 100px;
    padding: 1.25rem 3.125rem;
  }
}
main #top #company .flex {
  margin-top: 30px;
  justify-content: space-between;
}
main #top #company .flex #info {
  width: calc(100% - 350px);
}
@media screen and (max-width: 768px) {
  main #top #company .flex #info {
    width: 100%;
  }
}
main #top #company .flex #info table tbody tr th, main #top #company .flex #info table tbody tr td {
  padding-top: 10px;
}
main #top #company .flex #info table tbody tr th {
  width: 180px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main #top #company .flex #info table tbody tr th {
    width: 140px;
  }
}
main #top #company .flex #map {
  width: 300px;
}
@media screen and (max-width: 768px) {
  main #top #company .flex #map {
    width: 100%;
    margin-top: 30px;
  }
}
main #top #company .flex #map h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
main #recruit > section:nth-child(n+2) {
  margin-top: 100px;
}
main #recruit #message .flex {
  margin-top: 30px;
  justify-content: space-between;
}
main #recruit #message .flex #messageTxt {
  width: calc(100% - 590px);
}
@media screen and (max-width: 768px) {
  main #recruit #message .flex #messageTxt {
    width: 100%;
    margin-top: 20px;
    order: 2;
  }
}
main #recruit #message .flex #messageTxt h2 {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  main #recruit #message .flex #messageTxt h2 {
    margin-bottom: 15px;
    font-size: 20px;
  }
}
main #recruit #message .flex #messageTxt p {
  line-height: 2;
}
main #recruit #message .flex #messageTxt strong {
  display: block;
  margin-top: 20px;
  font-size: 16px;
}
main #recruit #message .flex #messageTxt .btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  main #recruit #message .flex #messageTxt .btn {
    margin-top: 30px;
  }
}
main #recruit #message .flex #messageTxt .btn a {
  min-width: 200px;
}
main #recruit #message .flex #messagePht {
  width: 550px;
}
@media screen and (max-width: 768px) {
  main #recruit #message .flex #messagePht {
    width: 100%;
    order: 1;
  }
}
main #recruit #recruitInfo .table01 {
  margin-top: 30px;
  border-top: #e5e5e5 1px solid;
}
main #recruit #recruitInfo .table01 tbody tr th, main #recruit #recruitInfo .table01 tbody tr td {
  padding: 20px 0;
  border-bottom: #e5e5e5 1px solid;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  main #recruit #recruitInfo .table01 tbody tr th, main #recruit #recruitInfo .table01 tbody tr td {
    font-size: 12px;
  }
}
main #recruit #recruitInfo .table01 tbody tr th {
  width: 15%;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  main #recruit #recruitInfo .table01 tbody tr th {
    width: 22%;
  }
}
main #recruit #recruitInfo .table01 tbody tr td {
  width: 85%;
}
@media screen and (max-width: 768px) {
  main #recruit #recruitInfo .table01 tbody tr td {
    width: 78%;
  }
}
main #contact .form {
  width: 700px;
  margin: 0 auto;
}
main #contact .form .announce {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  padding: 25px 30px;
  background-color: #F0F0F0;
}
@media screen and (max-width: 768px) {
  main #contact .form .announce {
    padding: 15px 20px;
  }
}
main #contact .form .announce > * {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  main #contact .form .announce > * {
    font-size: 14px;
  }
}
main #contact .form .announce > p {
  margin-right: auto;
}
main #contact .form .announce > a {
  margin-left: auto;
  text-decoration: underline;
}
main #contact .form .announce > a:hover {
  text-decoration: none;
}
main #contact .form dl {
  margin-top: 40px;
  border-top: 1px #E1E1E1 solid;
  padding-top: 50px;
}
main #contact .form dl dt {
  display: block;
  padding-bottom: 5px;
  font-weight: bold;
}
main #contact .form dl dt:not(:first-child) {
  margin-top: 30px;
}
main #contact .form dl dt.req:after {
  content: "*";
  color: #E73C16;
}
main #contact .form dl dd input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 20px;
  border: 1px #C1C1C1 solid;
}
@media screen and (max-width: 768px) {
  main #contact .form dl dd input {
    height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
}
main #contact .form dl dd .mwform-tel-field {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  main #contact .form dl dd .mwform-tel-field {
    font-size: 14px;
  }
}
main #contact .form dl dd .mwform-tel-field input {
  width: 130px;
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  main #contact .form dl dd .mwform-tel-field input {
    width: 90px;
  }
}
main #contact .form dl dd .mwform-tel-field input:first-child {
  margin-left: 0;
}
main #contact .form dl dd .mwform-tel-field input:last-child {
  margin-right: 0;
}
main #contact .form dl dd textarea {
  display: block;
  width: 100%;
  height: 300px;
  padding: 20px;
  border: 1px #C1C1C1 solid;
}
@media screen and (max-width: 768px) {
  main #contact .form dl dd textarea {
    height: 200px;
  }
}
main #contact .form .btn {
  margin-top: 50px;
}
main #contact .form .btn button {
  display: block;
  width: 100%;
  height: 80px;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  main #contact .form .btn button {
    height: 50px;
    font-size: 14px;
  }
}
main #contact .form .btn a {
  -js-display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 50px;
  margin: 0 auto;
  color: #fff;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  text-decoration: none;
  transition: opacity 0.7s;
}
main #contact .form .btn a:hover {
  text-decoration: none;
  opacity: 0.6;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 768px) {
  main #contact .form .btn a:hover {
    opacity: 1;
  }
}
main #contact .form .btn a:hover img {
  opacity: 1;
}
main #contact .form #finish {
  margin-top: 20px;
}
main #contact .form #finish p {
  margin-bottom: 50px;
  font-size: 18px;
  text-align: center;
}
.lb-outerContainer {
  width: 100%;
}
