@charset "UTF-8";
/*! ========================================
※※※※※※※※※※※※※※※※※※※※※※※※※※※
  このCSSファイルはSassから生成されていますので、
  編集しないようご注意ください。 by omukai
※※※※※※※※※※※※※※※※※※※※※※※※※※※
========================================= */
/*--------------------------------
reset
--------------------------------*/
html, body, div, p, img, iframe, a, span, blockquote, q, address, cite,
pre, code, em, small, strong, b, i,
header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer, time,
h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
table, tbody, thead, tfoot, th, tr, td,
form, fieldset, legend, label, select, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  vertical-align: baseline;
}

header, article, section, nav, figure, figcaption, hgroup, menu, aside, footer {
  display: block;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: middle;
}

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

select, option, input:not([type=checkbox]):not([type=radio]), textarea, button {
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

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

[type=submit], [type=button], [type=reset], [type=file], button {
  cursor: pointer;
}

:focus {
  outline: none;
}

/*--------------------------------
common
--------------------------------*/
body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Yu Mincho", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #231815;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

a {
  color: #006f47;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: #006f47;
}

button,
[type=submit],
[type=reset] {
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

strong {
  color: #006f47;
  font-weight: inherit;
}

.vertical-text {
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.fit-img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.has-max {
  height: auto;
  max-width: 100%;
}

.flex-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.align-item-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.img-wrapper {
  position: relative;
}
.img-wrapper .caption {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  z-index: 1;
}

.inline-block {
  display: inline-block;
}

.grid-wrapper {
  display: grid;
}

/*--------------------------------
layout
--------------------------------*/
.scroll-disabled {
  height: 100%;
  overflow: hidden;
}

.wrapper {
  overflow: hidden;
}

.container {
  overflow: hidden;
}
.container.has-header {
  padding-top: 90px;
}
@media (max-width: 767px) {
  .container.has-header {
    padding-top: 0;
  }
}

.inner {
  margin: 0 auto;
  width: calc(100% - 64px);
  max-width: 1200px;
}
@media (max-width: 767px) {
  .inner {
    width: calc(100% - 48px);
  }
}

.inner-narrow {
  max-width: 800px;
}

.inner-wide {
  max-width: 1500px;
}

.inner-fit {
  width: 100%;
  max-width: none;
}

.inner-full {
  max-width: none;
}

.general-section {
  position: relative;
}
.general-section .inner {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .general-section .inner {
    padding: 32px 0;
  }
}
.general-section .inner + .inner {
  padding-top: 0;
}
.general-section .inner.mb-0 {
  padding-bottom: 0;
}
.general-section .inner-min {
  padding: 32px 0;
}
@media (max-width: 991px) {
  .general-section .inner-min {
    padding: 16px 0;
  }
}

.general-parts {
  margin-bottom: 32px;
}

.btn-space {
  margin: 32px 0;
  text-align: center;
}

.has-gap {
  gap: 32px;
}
@media (max-width: 991px) {
  .has-gap {
    gap: 16px;
  }
}

.col-2 {
  width: 50%;
}
.has-gap > .col-2 {
  width: calc(50% - 16px);
}

.col-3 {
  width: 33.3333333333%;
}
.has-gap > .col-3 {
  width: calc(33.3333333333% - 22px);
}

.col-4 {
  width: 25%;
}
.has-gap > .col-4 {
  width: calc(25% - 24px);
}

@media (max-width: 991px) {
  .col-2,
  .has-gap > .col-2 {
    width: 100%;
  }
  .col-3,
  .has-gap > .col-3 {
    width: 100%;
  }
  .col-4 {
    width: 50%;
  }
  .has-gap > .col-4 {
    width: calc(50% - 8px);
  }
  .sp-col-2 {
    width: 50%;
  }
  .has-gap > .sp-col-2 {
    width: calc(50% - 8px);
  }
}
/*--------------------------------
component
--------------------------------*/
.primary-heading {
  margin-bottom: 0.8em;
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .primary-heading {
    font-size: 1.625rem;
  }
}
.primary-heading img {
  vertical-align: baseline;
}

.secondary-heading {
  margin-bottom: 0.8em;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .secondary-heading {
    font-size: 1.375rem;
  }
}

.tertiary-heading {
  margin-bottom: 0.8em;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 991px) {
  .tertiary-heading {
    font-size: 1.125rem;
  }
}

.page-title {
  padding: 32px 0;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 991px) {
  .page-title {
    font-size: 1.875rem;
  }
}

.lead {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .lead {
    font-size: 1rem;
  }
}

.note {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 991px) {
  .note {
    font-size: 0.875rem;
  }
}

.caption {
  margin: 0.4em 0;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .caption {
    font-size: 0.625rem;
  }
}

[type=text],
[type=search],
[type=password],
[type=tel],
[type=email],
[type=num],
[type=date],
select,
textarea {
  margin-right: 4px;
  padding: 12px 8px;
  max-width: 100%;
  background: #e9eaea;
  font-size: 1.125rem;
  font-weight: inherit;
  color: inherit;
  line-height: 1.3;
  border: 0;
  border-radius: 10px;
  vertical-align: middle;
}
[type=text]:last-child,
[type=search]:last-child,
[type=password]:last-child,
[type=tel]:last-child,
[type=email]:last-child,
[type=num]:last-child,
[type=date]:last-child,
select:last-child,
textarea:last-child {
  margin-right: 0;
}
[type=text]:focus,
[type=search]:focus,
[type=password]:focus,
[type=tel]:focus,
[type=email]:focus,
[type=num]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
  background-color: #d6d6d6;
}

select {
  padding: 12px 32px 12px 12px;
  background: url(../images/common/select-arrow.svg) no-repeat right 8px center #e9eaea;
  background-size: 14px auto;
  text-indent: 0.01px;
  text-overflow: "";
  border: 0;
  border-radius: 10px;
}

textarea {
  min-height: 200px;
}

.text-480 {
  width: 480px;
}
@media (max-width: 767px) {
  .text-480 {
    width: 100%;
  }
}

.text-360 {
  width: 360px;
}
@media (max-width: 767px) {
  .text-360 {
    width: 100%;
  }
}

.text-240 {
  width: 240px;
}

.text-150 {
  width: 150px;
}

.text-fit {
  width: 100%;
}

.arrow {
  width: 20px;
  height: 20px;
  display: block;
  background: url(../images/common/plus.svg) no-repeat center center;
  background-size: contain;
  transition: all 0.3s ease;
}

.btn {
  padding: 8px 16px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
}

.submit-btn {
  padding: 16px;
  min-width: 300px;
  background: #555;
  color: #fff;
  font-size: 1.125rem;
  border: none;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .submit-btn {
    width: 100%;
    min-width: auto;
  }
}
.submit-btn:disabled {
  opacity: 0.3;
}
.submit-btn:hover:not(:disabled) {
  background: #006f47;
  color: #fff;
  border-color: #006f47;
}

.general-btn {
  padding: 12px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
  color: #231815;
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid;
}
.general-btn:hover {
  padding: 12px 40px;
  color: #231815;
}
.general-btn:hover .arrow {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .general-btn {
    font-size: 1.125rem;
  }
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  display: block;
  content: "";
}
.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  content: "";
}

.bg-white {
  background: #fff;
}

.bg-light {
  background: #F5F5F5;
}

.bg-dark {
  background: #384250;
  color: #fff;
}

.bg-gray {
  background: #e9eaea;
}

.breadcrumbs {
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 2;
  display: flex;
  gap: 4px;
  font-size: 0.875rem;
}
.breadcrumbs a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .breadcrumbs {
    left: auto;
    right: 32px;
    gap: 16px;
    transform-origin: left top;
    transform: translate(100%, 0) rotate(90deg);
  }
}
.breadcrumbs .no-link {
  color: #555;
}

/*--------------------------------
header
--------------------------------*/
.header-navigation {
  padding: 0 32px;
  height: 90px;
  align-items: center;
  gap: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: #fff;
}
.header-navigation .logo {
  width: 220px;
  height: 30px;
  background: url(../images/common/logo.svg) no-repeat center center;
  background-size: contain;
}
.header-navigation .logo a {
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 991px) {
  .header-navigation {
    padding: 0 8px 0 24px;
    height: 60px;
    justify-content: space-between;
    gap: 0;
    background: transparent;
  }
}

.global-nav .nav-wrap {
  gap: 32px;
}
.global-nav .nav-link {
  padding: 16px 4px;
  display: inline-block;
  position: relative;
  color: #231815;
}
.global-nav .nav-link::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #006f47;
  content: "";
  transition: width 0.3s ease;
}
.global-nav .nav-link.is-current {
  color: #006f47;
}
.global-nav .nav-link.is-current::after {
  width: 100%;
}
.global-nav .nav-link:hover {
  color: #006f47;
}
.global-nav .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  .global-nav {
    padding-bottom: 80px;
    height: 100vh;
    display: grid;
    place-items: center;
    position: fixed;
    left: 0;
    top: 0;
    background: #fff;
    transform: translate(100%, 0);
    visibility: hidden;
    transition: transform 0.3s ease-out, visibility 0.1s ease 0.8s;
  }
  .nav-open .global-nav {
    transform: translate(0, 0);
    visibility: visible;
    transition: transform 0.3s ease-out, visibility 0.1s ease;
  }
  .global-nav .nav-list {
    margin: 0 auto;
    width: 80%;
  }
  .global-nav .nav-link {
    padding: 8px;
    display: block;
    font-size: 1rem;
    text-align: center;
  }
}

.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger i, .hamburger::before, .hamburger::after {
  width: 24px;
  height: 1px;
  display: block;
  background: #9a9a9a;
  content: "";
  border-radius: 2px;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.nav-open .hamburger i {
  transform: rotate(-45deg);
}
.nav-open .hamburger::before {
  transform: translate(0, 6px) rotate(45deg);
}
.nav-open .hamburger::after {
  transform: translate(20px, 0);
  opacity: 0;
}

/*--------------------------------
footer
--------------------------------*/
.footer-container {
  position: relative;
  background: #fff;
  text-align: center;
}
.footer-container .inner {
  padding: 40px 0;
}
.footer-container .logo {
  margin: 0 auto;
  width: 300px;
  height: 36px;
  background: url(../images/common/logo.svg) no-repeat center center;
  background-size: contain;
}
@media (max-width: 991px) {
  .footer-container .logo {
    width: 200px;
    height: 24px;
  }
}
.footer-container .logo a {
  height: 100%;
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.copyright {
  font-style: normal;
  font-size: 0.75rem;
}
@media (max-width: 991px) {
  .copyright {
    margin-top: 40px;
  }
}

/*--------------------------------
top
--------------------------------*/
@media (max-width: 991px) {
  .top-video-01 {
    object-position: top center;
  }
}

.hero {
  height: 45vw;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    height: 90vw;
  }
}

.hero .mv {
  width: 80vw;
  position: fixed;
  right: 0;
  top: 90px;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero .mv {
    top: 0;
    width: 100vw;
  }
}

.hero-copy-group {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  color: #006f47;
}
@media (max-width: 767px) {
  .hero-copy-group {
    top: 66vw;
    position: fixed;
    z-index: 0;
  }
}

.hero-title {
  padding: 8px 40px;
  width: 50vw;
  min-width: 600px;
  background: #fff;
}
@media (max-width: 767px) {
  .hero-title {
    padding: 12px 24px;
    width: 90vw;
    min-width: auto;
  }
}

.hero-copy {
  padding: 16px 40px;
  display: inline-block;
  background: #fff;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .hero-copy {
    padding: 12px 24px;
    font-size: 0.875rem;
  }
}

.news-wrap {
  justify-content: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .news-wrap {
    grid-template-columns: 1fr;
  }
}
.news .news-wrap {
  grid-template-columns: 1fr;
  gap: 80px;
}
@media (max-width: 767px) {
  .news .news-wrap {
    gap: 32px;
  }
}

.news-meta {
  margin-bottom: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.news .news-meta {
  padding-bottom: 8px;
  justify-content: flex-start;
  border-bottom: 1px solid #bfbfbf;
}

.news-date {
  font-size: 1.25rem;
}

.cat {
  padding: 8px 12px;
  display: inline-block;
  background: #006f47;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
}

.news-link {
  color: #231815;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.bg-video .video-wrapper {
  padding-top: 0;
  height: 100vh;
}
.bg-video .video-wrapper video,
.bg-video .video-wrapper iframe {
  object-fit: cover;
}

.about-section {
  height: 80vh;
}
@media (max-width: 767px) {
  .about-section {
    height: 60vh;
  }
}

.about-section-foot {
  background: url(../images/top/image-03.jpg) no-repeat top right;
  background-size: cover;
}

.business-section {
  height: 80vh;
}
@media (max-width: 767px) {
  .business-section {
    height: 60vh;
  }
}
.business-section .bg-video .video-wrapper video {
  object-position: 76% center;
}

.business-section-foot {
  background: url(../images/top/image-06.jpg) no-repeat top left;
  background-size: cover;
}

.property-section {
  height: 80vh;
}
@media (max-width: 767px) {
  .property-section {
    height: 60vh;
  }
}

.property-section-foot {
  background: #006f47;
}

.contents-box {
  padding: 80px 40px 32px;
  width: 30%;
  min-width: 340px;
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
}
.contents-box::before {
  width: 44%;
  height: 48px;
  display: block;
  position: absolute;
  top: -48px;
  content: "";
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .contents-box {
    padding: 40px 16px 16px;
    width: 70%;
    min-width: 280px;
  }
}
.contents-box .secondary-heading {
  margin-bottom: 0.4em;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
.about-section-foot .contents-box {
  margin-left: auto;
  top: -300px;
  left: 32px;
  right: 32px;
}
.about-section-foot .contents-box::before {
  right: 0;
}
@media (max-width: 767px) {
  .about-section-foot .contents-box {
    margin-right: -24px;
    top: -200px;
  }
}
.business-section-foot .contents-box {
  top: -300px;
  left: 32px;
  right: 32px;
}
.business-section-foot .contents-box::before {
  left: 0;
}
@media (max-width: 767px) {
  .business-section-foot .contents-box {
    margin-left: -24px;
    top: -200px;
  }
}
.property-section .contents-box {
  margin-left: auto;
  top: -200px;
}
.property-section .contents-box::before {
  left: 0;
}
@media (max-width: 767px) {
  .property-section .contents-box {
    margin-right: -24px;
  }
  .property-section .contents-box::before {
    left: auto;
    right: 0;
  }
}

.contents-lead {
  margin-bottom: 40px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .contents-lead {
    font-size: 0.75rem;
  }
}

.img-group {
  position: relative;
  width: 35%;
}
@media (max-width: 767px) {
  .img-group {
    margin-top: 200px;
    margin-left: -24px;
    width: 70%;
  }
}
.img-group .fit-img {
  position: relative;
}
.img-group .fit-img:first-child {
  position: absolute;
  left: 10%;
  z-index: 2;
}
.business-section-foot .img-group .fit-img:first-child {
  left: auto;
  right: 10%;
}
.img-group .blur-bg {
  z-index: 1;
  opacity: 0.8;
  filter: blur(10px);
  transform-origin: left top;
  transform: scale(1.1);
}
.business-section-foot .img-group {
  margin-left: auto;
  transform-origin: right top;
}
@media (max-width: 767px) {
  .business-section-foot .img-group {
    margin-right: -24px;
  }
}
.property-section-foot .img-group {
  top: -200px;
}
@media (max-width: 767px) {
  .property-section-foot .img-group {
    margin-left: -24px;
    top: 0;
  }
}

.contents-nav-wrap {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .contents-nav-wrap {
    grid-template-columns: 1fr;
  }
}

.contents-nav-list {
  height: 50vw;
  max-height: 678px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .contents-nav-list {
    height: 65vw;
  }
}

.contents-nav-link {
  height: 100%;
  display: block;
  position: relative;
  color: #fff;
}
.contents-nav-link .btn-space {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.contents-nav-link .general-btn {
  color: #fff;
  transition: all 0.3s ease-out;
}
.contents-nav-link::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0.6);
  content: "";
  transition: all 0.3s ease-out;
}
.nav-company .contents-nav-link::after {
  background-image: url(../images/common/nav-company.jpg);
}
.nav-recruit .contents-nav-link::after {
  background-image: url(../images/common/nav-recruit.jpg);
}
.nav-contact .contents-nav-link::after {
  background-image: url(../images/common/nav-contact.jpg);
}
@media (max-width: 767px) {
  .nav-company .contents-nav-link::after {
    background-image: url(../images/common/nav-company-sp.jpg);
  }
  .nav-recruit .contents-nav-link::after {
    background-image: url(../images/common/nav-recruit-sp.jpg);
  }
  .nav-contact .contents-nav-link::after {
    background-image: url(../images/common/nav-contact-sp.jpg);
    background-position: center top;
  }
}
.contents-nav-link:hover {
  color: #fff;
}
.contents-nav-link:hover::after {
  transform: scale(1.3);
  filter: brightness(0.8);
}
.contents-nav-link:hover .general-btn {
  padding: 12px 40px;
}
.contents-nav-link:hover .arrow {
  transform: rotate(180deg);
}
.contents-nav-link .arrow {
  background-image: url(../images/common/plus-white.svg);
}

.contents-nav-title {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .contents-nav-title {
    height: 80%;
  }
}

.contents-nav-heading {
  margin-bottom: 16px;
  font-size: max(3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.contents-nav-lead {
  font-size: 1.25rem;
}
@media (max-width: 991px) {
  .contents-nav-lead {
    font-size: 0.875rem;
  }
}

/*--------------------------------
about us
--------------------------------*/
.about-mv {
  transform: scale(1.1);
}

.mv-container {
  padding: 40px 0;
}
.mv-container .flex-wrapper {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .mv-container .flex-wrapper {
    flex-wrap: wrap;
  }
}
.mv-container .mv-image {
  position: relative;
  width: 70%;
  aspect-ratio: 12/5;
  overflow: hidden;
  mask-image: url(../images/common/mask.png);
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media (max-width: 991px) {
  .mv-container .mv-image {
    margin-right: -24px;
    width: calc(100% + 24px);
  }
}
.mv-container .mv-image .video-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mv-container .page-title {
  flex: 1;
  display: grid;
  justify-content: center;
}
@media (max-width: 991px) {
  .mv-container .page-title {
    text-align: center;
  }
}

.msg-section .primary-heading {
  margin-left: 10%;
}
.msg-section .primary-heading .is-key {
  display: flex;
  align-items: center;
  gap: 16px;
}
.msg-section .primary-heading .is-key::after {
  width: auto;
  height: 2px;
  flex: 1;
  display: block;
  content: "";
  background: #006f47;
}
@media (max-width: 991px) {
  .msg-section .primary-heading {
    margin-left: 24px;
    margin-right: 24px;
  }
}
.msg-section::after {
  width: 80%;
  height: 2px;
  display: block;
  content: "";
  background: #006f47;
  transform: translateY(-80px);
}
@media (max-width: 991px) {
  .msg-section::after {
    transform: translateY(0);
  }
}

.signature {
  margin: 80px 0 0;
  float: right;
}
@media (max-width: 991px) {
  .signature {
    margin-top: 32px;
  }
}

/*--------------------------------
recruit
--------------------------------*/
.recruit-detail {
  margin-top: 20%;
  background: #e9eaea;
}
.recruit-detail .nega-left {
  margin-top: calc(-20% - 40px);
}

.nega-left {
  margin-left: calc((100vw - 1200px) / -2);
}
@media screen and (max-width: 1264px) {
  .nega-left {
    margin-left: -32px;
  }
}

.recruit-btn-group {
  margin: 32px auto 0;
  max-width: 500px;
  display: grid;
  gap: 16px;
}

.recruit-btn {
  padding: 24px 0;
  display: block;
  background: #fff;
  border: 1px solid #231815;
  text-align: center;
}
.recruit-btn .note {
  margin-bottom: 0;
  color: #231815;
}

.recruit-btn-title {
  font-size: 1.75rem;
  color: #006f47;
}
@media (max-width: 991px) {
  .recruit-btn-title {
    font-size: 1.375rem;
  }
}

.modal {
  margin: 0 auto;
  width: 90%;
  max-width: 700px;
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 5;
  background: url(../images/common/dot.png);
  background-size: 10px;
  border: 1px solid #006f47;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-50%);
}
.modal ul.note {
  columns: 2;
}
.modal ul.note li {
  margin-left: 14px;
  list-style-type: circle;
}
@media (max-width: 991px) {
  .modal ul.note {
    columns: 1;
  }
}

.modal-inner {
  padding: 40px;
  max-height: 88vh;
  overflow-y: auto;
}

.modal-parts {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid;
}
.modal-parts:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.modal-btn {
  padding: 8px;
  display: block;
  background: #4c4948;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 30px;
}
.modal-btn:hover {
  background: #006f47;
  color: #fff;
}

.close-btn {
  width: 36px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .close-btn {
    width: 20px;
    top: 12px;
    right: 12px;
  }
}

/*--------------------------------
business
--------------------------------*/
.business .child-nav .col-3 {
  aspect-ratio: 4/3;
}
.business .child-nav .col-3 .child-nav-link {
  height: 100%;
}
.business .child-nav .col-3 .child-nav-link img {
  height: 100%;
  object-fit: cover;
}

.nav-section {
  position: relative;
}
.nav-section:nth-of-type(odd) .img-btn-wrap {
  margin-left: 22%;
}
@media (max-width: 767px) {
  .nav-section:nth-of-type(odd) .img-btn-wrap {
    margin-left: 0;
  }
}
.nav-section:nth-of-type(odd) .nav-box {
  left: 5%;
}
@media (max-width: 767px) {
  .nav-section:nth-of-type(odd) .nav-box {
    left: 0;
  }
}
.nav-section:nth-of-type(even) .img-btn-wrap {
  margin-right: 22%;
}
@media (max-width: 767px) {
  .nav-section:nth-of-type(even) .img-btn-wrap {
    margin-right: 0;
  }
}
.nav-section:nth-of-type(even) .nav-box {
  right: 5%;
}
@media (max-width: 767px) {
  .nav-section:nth-of-type(even) .nav-box {
    right: 0;
  }
}

.bg-half::after {
  width: 100%;
  height: 50%;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  background: #e9eaea;
}

.nav-box {
  padding-top: 3%;
  width: 25%;
  min-width: 320px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  z-index: 2;
  background: #006f47;
  color: #fff;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .nav-box {
    width: 45%;
    min-width: auto;
    top: 5%;
    transform: translateY(0);
  }
}
@media (min-width: 768px) {
  .nav-01 .nav-box {
    top: 55%;
  }
  .nav-02 .nav-box {
    top: 45%;
  }
  .nav-03 .nav-box {
    top: 54%;
  }
}
.nav-box .lead {
  margin-top: 12px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .nav-box .lead {
    font-size: 0.875rem;
  }
}

.box-num {
  margin-bottom: 0.8em;
  display: inline-block;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.3;
  border-bottom: 2px solid;
}
@media (max-width: 767px) {
  .box-num {
    font-size: 1.25rem;
  }
}

.box-heading {
  margin-bottom: 0.8em;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .box-heading {
    font-size: 1.25rem;
  }
}

.img-btn-link {
  display: block;
}
.img-btn-link:hover .general-btn {
  padding: 12px 40px;
}
.img-btn-link:hover .arrow {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .img-btn-link {
    margin-top: 30%;
  }
}

.img-btn-wrap {
  position: relative;
}
.img-btn-wrap .btn-space {
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  transform: translateY(-50%);
}
.nav-01 .img-btn-wrap .btn-space {
  top: 53%;
}
@media (max-width: 767px) {
  .nav-01 .img-btn-wrap .btn-space {
    top: 40%;
  }
}
@media (max-width: 767px) {
  .nav-02 .img-btn-wrap .btn-space {
    top: 31%;
  }
}
.nav-03 .img-btn-wrap .btn-space {
  top: 48%;
}
@media (max-width: 767px) {
  .nav-03 .img-btn-wrap .btn-space {
    top: 34%;
  }
}
.nav-04 .img-btn-wrap .btn-space {
  top: 53%;
}
@media (max-width: 767px) {
  .nav-04 .img-btn-wrap .btn-space {
    top: 40%;
  }
}
.img-btn-wrap .general-btn {
  color: #fff;
  transition: all 0.3s ease-out;
}
.img-btn-wrap .arrow {
  background-image: url(../images/common/plus-white.svg);
}

.page-04-inner {
  max-width: 1450px;
}

.child-mv {
  justify-content: space-between;
}
.child-mv.page-04-wrap {
  align-items: center;
}
.child-mv.page-04-wrap .img-item {
  width: 51%;
}
.child-mv.page-04-wrap .header-item {
  width: 41.4%;
}
.child-mv .img-item {
  width: 40%;
}
.child-mv .header-item {
  width: 50%;
}
.child-mv .primary-heading {
  margin-bottom: 0.4em;
}
.child-mv .tertiary-heading {
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .child-mv .img-item {
    margin: 32px auto;
    width: 80%;
  }
  .child-mv .img-item.page-04 {
    width: 100%;
  }
  .child-mv .header-item {
    width: 100%;
  }
  .child-mv.page-04-wrap .header-item {
    width: 100%;
  }
}

.header-num {
  margin-bottom: 0.8em;
  padding-bottom: 0.2em;
  display: inline-block;
  font-size: 2.75rem;
  font-weight: 600;
  border-bottom: 3px solid;
}
@media (max-width: 767px) {
  .header-num {
    font-size: 1.625rem;
  }
}

.child-nav-link {
  display: block;
  overflow: hidden;
  position: relative;
}
.child-nav-link .fit-img {
  transition: 0.3s ease-out;
}
.child-nav-link .nav-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  transform: translateY(-50%);
}
.child-nav-link:hover .fit-img {
  transform: scale(1.3);
  filter: brightness(1.2);
}
@media (max-width: 767px) {
  .child-nav-link .header-num {
    font-size: 1.25rem;
  }
}

/*--------------------------------
company
--------------------------------*/
.map-section {
  z-index: 1;
}

.nega-top {
  margin-top: -20%;
  padding-top: calc(20% - 80px);
}
@media (max-width: 991px) {
  .nega-top {
    padding-top: calc(20% - 40px);
  }
}

.define-list {
  display: grid;
  gap: 16px 40px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
}
@media (max-width: 767px) {
  .define-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: dense;
  }
}

.define-term {
  font-size: 0.875rem;
  line-height: 1.4;
}

.define-desc {
  padding: 0 0 16px;
  align-self: flex-start;
  border-bottom: 1px solid #bfbfbf;
}

/*--------------------------------
contact
--------------------------------*/
.form-lead {
  position: relative;
  padding: 100px 0 80px 260px;
  background: url(../images/contact/form.png) no-repeat left -30px top;
  background-size: 200px auto;
}
@media (max-width: 767px) {
  .form-lead {
    padding: 50px 0 40px 80px;
    background-size: 150px auto;
  }
}

.form-table {
  width: 100%;
}
.form-table th {
  width: 160px;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: left;
  line-height: 42px;
  vertical-align: top;
}
.form-table th,
.form-table td {
  padding: 8px 0;
  position: relative;
}
@media (max-width: 767px) {
  .form-table th {
    padding-bottom: 0;
  }
  .form-table th,
  .form-table td {
    width: 100%;
    display: block;
  }
}

.require {
  font-size: xx-small;
  color: #ff1c1c;
}

.announce {
  margin-top: 40px;
  padding: 40px;
  border: 1px solid;
  text-align: center;
}
@media (max-width: 767px) {
  .announce {
    padding: 16px;
  }
}

.accept-check {
  margin-top: 32px;
  font-size: 1.125rem;
}

.cancel-btn {
  padding: 16px;
  min-width: 180px;
  background: #9a9a9a;
  color: #fff;
  font-size: 1.125rem;
  border: none;
  border-radius: 30px;
}
@media (max-width: 991px) {
  .cancel-btn {
    width: 100%;
    min-width: auto;
  }
}
.cancel-btn:disabled {
  opacity: 0.3;
}
.cancel-btn:hover:not(:disabled) {
  background: #006f47;
  color: #fff;
  border-color: #006f47;
}
@media (max-width: 767px) {
  .submit-btn + .cancel-btn {
    margin-top: 8px;
  }
}

.error-text {
  font-size: 1.125rem;
  color: #ff1c1c;
  line-height: 1.5;
}

.error_messe {
  margin-top: 8px;
  padding: 8px;
  font-size: 1rem;
  line-height: 1.5;
  color: #ff1c1c;
  border: 1px solid;
}

.general-table {
  margin: 48px 0;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.general-table th,
.general-table td {
  padding: 16px;
  border-bottom: 1px solid #ddd;
}

.general-table th {
  width: 260px;
  position: relative;
  background: #eee;
  font-weight: 500;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .general-table {
    margin: 24px 0;
  }
  .general-table th,
  .general-table td {
    width: 100%;
    display: block;
  }
  .general-table th {
    text-align: left;
  }
}
/*--------------------------------
state
--------------------------------*/
.is-none {
  display: none;
}

.disabled {
  opacity: 0.1;
  cursor: default;
  pointer-events: none;
}

.unscrollable {
  height: 100%;
  overflow: hidden;
}

.coming-soon {
  opacity: 0.8;
  pointer-events: none;
}

.none {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.no-link {
  cursor: default;
  pointer-events: none;
}

.is-fv {
  opacity: 0;
  visibility: hidden;
  animation-fill-mode: both;
}

.is-light {
  color: #fff;
}

.is-dark {
  color: #231815;
}

.gray-text {
  color: #555;
}

.is-key {
  color: #006f47;
}

.is-strong {
  color: #006f47;
}

.is-shadow {
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.4);
}

.is-alert {
  color: #ff1c1c;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.small-text {
  font-size: 70%;
}

.large-text {
  font-size: 150%;
}

.is-semi-bold {
  font-weight: 600;
}

.is-bold {
  font-weight: 700;
}

.line-wide {
  line-height: 2;
}

.ja-font {
  font-family: "Yu Mincho", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
}

.en-font {
  font-family: "futura-pt", sans-serif;
}

.en-font2 {
  font-family: "din-2014", sans-serif;
}

@media (min-width: 992px) {
  .pc-none {
    display: none;
  }
}
@media (max-width: 991px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 767px) {
  .mobile-none {
    display: none;
  }
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
.clearfix {
  display: inline-table;
  min-height: 1%;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/* Hides from IE-mac \*/
.clearfix {
  display: block;
}

/* End hide from IE-mac *//*# sourceMappingURL=style.css.map */