@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#js-pagetop {
  position: fixed;
  right: 0px;
  bottom: 50px;
  z-index: 40;
  display: block;
  width: 120px;
  height: 120px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.top {
  max-width: 2000px;
  margin-inline: auto;
  background-color: #fff;
}

.inner {
  padding-inline: 15px;
  max-width: 1230px;
  margin-inline: auto;
}

.top-inner {
  padding-inline: 15px;
  max-width: calc(1230px + 30px);
  margin-inline: auto;
}

/* =====================================================
# 領域アニメーション
===================================================== */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

/* =====================================
/* header
---------------------------- */
.header {
  height: 100px;
  position: fixed;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  max-width: 2000px;
  margin-inline: auto;
}

.is-active {
  color: #92d050;
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-inline: 40px 0px;
}
.header__inner .button {
  font-size: 17px;
}

.header__left {
  display: contents;
}
.header__logo a img {
  width: min(23.6220472441vw, 450px);
  display: block;
}

.header__nav {
  height: inherit;
}

.header__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background: #ff9a00;
  height: 100px;
  width: 220px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.header__link {
  font-size: 15px;
  font-weight: bold;
}

/* =====================================================
# footer
===================================================== */
.footer {
  padding-block: 70px 50px;
}
.footer .address-area__text {
  margin-top: 14px;
  font-size: 20px;
  text-align: center;
}
.footer__nav-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyright {
  background-color: #299528;
  font-size: 13px;
  color: #fff;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.footer__logo {
  text-align: center;
}
.footer__logo img {
  width: 450px;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.footer__link {
  font-size: 15px;
  font-weight: 500;
}
.footer__link.is-active {
  background: #92d050;
}
.footer__link .fa-solid {
  color: #92d050;
}

/* =====================================================
# メインヴィジュアル
===================================================== */
.slide {
  position: relative;
  width: 100%;
  height: min(41.9947506562vw, 800px);
  overflow: hidden;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(../img/common/main1.webp);
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url(../img/common/main2.webp);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url(../img/common/main3.webp);
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
  }
}
.fv {
  background-color: white;
  padding-top: 100px;
}
.fv__inner {
  position: relative;
  z-index: 2;
}

.fv__bg-grad {
  position: absolute;
  top: min(26.2467191601vw, 500px);
  width: 100%;
  height: min(19.4225721785vw, 370px);
  background: #92d050;
}

.picture {
  margin-left: 35%;
  position: relative;
  z-index: 1;
}

.picture-copy {
  position: absolute;
  z-index: 2;
  top: 21.8181818182%;
  left: 3.6805555556%;
}

.picture-copy__title {
  font-size: 48px;
  font-weight: 500;
  color: #299528;
}

.image-container {
  position: relative;
  display: inline-block;
}

.image-container img {
  display: block;
}

.image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* 半透明の白 */
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}

/* =====================================================
# 下層ページ メインビジュアル
===================================================== */
.mv {
  padding-top: 90px;
  background-color: #299528;
  position: relative;
  z-index: 1;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 350px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron.is-contact {
  background-position: center right;
}
.mv-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 87, 36, 0.5);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  padding-top: 120px;
}
.mv .mv-h2 {
  font-weight: 500;
  letter-spacing: 0.1em;
  color: white;
}
.mv .mv-h2__en {
  display: block;
  font-size: 60px;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid white;
  line-height: 1.2;
}
.mv .mv-h2__ja {
  display: block;
  font-size: 30px;
  font-family: "kozuka-gothic-pr6n", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.2;
  text-align: right;
  padding-top: 20px;
}

.top-heading-en {
  display: inline-block;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #299528;
  position: relative;
}
.top-heading-en::after {
  content: "";
  position: absolute;
  top: 55%;
  right: -23%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #299528;
}

.top-heading-ja {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  background-color: #92d050;
  padding-block: 60px 110px;
  position: relative;
}
.top-about .top-heading .top-heading-en,
.top-about .top-heading .top-heading-ja {
  color: #fff;
}
.top-about .top-heading .top-heading-en::after {
  background-color: white;
}

.top-about__decoration {
  position: absolute;
  top: 51%;
  right: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}

.top-about__text {
  margin-top: 28px;
  font-size: 20px;
  line-height: 2;
  color: #fff;
}

/* =====================================================
# top-business
===================================================== */
.top-business {
  padding-block: 120px;
  position: relative;
}

.top-business__decoration {
  position: absolute;
  top: 51%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.top-business__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
}

.top-business__body {
  width: 54%;
}

.top-business__text {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.top-business__btn {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-business__btn .button {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.top-business__image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
}

/* =====================================================
# top-news
===================================================== */
.top-news {
  background-color: #f3f3f3;
  position: relative;
  padding-block: 100px;
}

.top-news__decoration {
  position: absolute;
  top: 50%;
  right: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.top-news__new {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #ea5405;
}

.top-news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.top-news__tab-group {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.top-news__tab {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  padding: 13px 10px;
  text-align: center;
  color: #fff;
  background-color: #92d050;
}
.top-news__tab.is-active {
  background-color: #ff9a00;
  color: #fff;
}

.top-news__content {
  background: #fff;
  overflow-y: auto;
  height: 350px;
  padding: 20px 30px 28px;
  position: relative;
  z-index: 2;
}
.is-news-category .top-news__content {
  margin-top: 60px;
  height: auto;
  overflow-y: unset;
}

.top-news-item {
  border-bottom: solid 2px #f0f0f0;
}
.top-news-item:last-child {
  border-bottom: none;
}

.top-news-itemLink {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3e3e3e;
  display: block;
  letter-spacing: 0.025em;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  padding-block: 10px;
}

.top-news-itemDate {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  color: #666;
}

.top-news-itemCategory {
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 9px 20px;
  white-space: nowrap;
}
.top-news-itemCategory.is-news {
  background-color: #1850a1;
}
.top-news-itemCategory.is-blue {
  background-color: #099ece;
}
.top-news-itemCategory.is-green {
  background-color: #00836e;
}

.top-news__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__title {
  font-size: 15px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* =====================================================
# top-recruit
===================================================== */
.top-recruit {
  position: relative;
  padding-block: 100px;
}
.top-recruit .top-heading .top-heading-en,
.top-recruit .top-heading .top-heading-ja {
  color: #fff;
}
.top-recruit .top-heading .top-heading-en::after {
  background-color: white;
}

.top-recruit__decoration {
  position: absolute;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.top-recruit__inner {
  position: relative;
  z-index: 2;
}

.top-recruit__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #92d050;
}
.top-recruit__media.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top-recruit__image {
  width: 50%;
}

.top-recruit__body {
  width: 50%;
  padding: 40px;
}

.top-recruit__text {
  margin-top: 25px;
  font-size: 19px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

.top-recruit__btn {
  margin-top: 32px;
  text-align: center;
}
.top-recruit__btn .button {
  width: 300px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  padding-block: 160px;
  background: url(../img/common/top-contact-bg.webp) center center/cover no-repeat;
}
.top-contact .top-heading .top-heading-en,
.top-contact .top-heading .top-heading-ja {
  color: #fff;
}
.top-contact .top-heading .top-heading-en::after {
  background-color: white;
}

.top-contact__inner {
  max-width: 1170px;
  margin-inline: auto;
  padding-inline: 15px;
}

.top-contact__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(13.8582677165vw, 264px);
}

.top-contact__btn-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.top-contact__btn-group .top-contact__tel-icon,
.top-contact__btn-group .top-contact__mail-btn {
  display: inline-block;
  width: 390px;
  line-height: 75px;
  height: 75px;
  background: #ff9a00;
  padding-inline: 90px 24px;
  color: #fff;
  font-size: 30px;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.top-contact__btn-group .top-contact__tel-icon::before,
.top-contact__btn-group .top-contact__mail-btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 48px;
  height: 48px;
}
.top-contact__btn-group .top-contact__tel-icon::before {
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
}
.top-contact__btn-group .top-contact__mail-btn::before {
  background: url(../img/common/mail-icon.webp) center center/contain no-repeat;
}
.top-contact__btn-group .top-contact__mail-btn::after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0.7em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.top-contact__text {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

/* =====================================================
# business
===================================================== */
.top-projects__items {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}

.business__item-title {
  font-size: 19px;
  font-weight: 500;
  border-left: solid 8px #92d050;
  padding-left: 10px;
}
.is-technology .business__item-title {
  border-left: solid 8px #ff9a00;
}

.business__image {
  margin-top: 10px;
}

.top-projects__item {
  overflow: hidden;
}
.top-projects__item img {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.is-technology .detail-media__title {
  border-left: solid 8px #ff9a00;
}

/* =====================================================
# detail
===================================================== */
.maintenance-title {
  margin-block: 30px 15px;
  display: block;
  text-align: center;
}
.maintenance-title span {
  display: inline-block;
  padding: 3px 10px;
  background-color: #92d050;
  color: white;
  font-weight: bold;
}

.detail-lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

.detail-lines__box.is-one {
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}

.detail-lines__four {
  margin-top: 30px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.detail-lines__three {
  margin-top: 30px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.detail-lines__two {
  margin-top: 30px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.detail-lines__one {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
}

.detail-lines__text {
  display: block;
  margin-top: 10px;
}

.detail-content {
  margin-top: 60px;
}

.detail-content__heading {
  text-align: center;
}
.detail-content__heading span {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  border-bottom: solid 1px #ff9a00;
  padding-bottom: 5px;
}

.detail-media {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.detail-media__body {
  width: 50%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.detail-media__title {
  border-left: solid 8px #92d050;
  padding-left: 10px;
  line-height: 1.1;
  position: relative;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.detail-media__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.detail-media__text {
  margin-top: 30px;
}

.detail-media__image {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.detail-media__image img {
  display: block;
  width: 400px;
}

.detail__head {
  max-width: 700px;
  margin-top: min(5.249343832vw, 100px);
  margin-inline: auto;
}

.detail__title {
  text-align: center;
  font-size: 27px;
  font-weight: 600;
  border-bottom: 1px dotted #299528;
  padding-bottom: 15px;
}

.detail__text-box {
  margin-top: 50px;
  max-width: 700px;
  margin-inline: auto;
}

.detail__files {
  max-width: 830px;
  margin-top: 100px;
  margin-inline: auto;
  padding-inline: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.detail__file {
  display: block;
  background-color: #ffe8e8;
  padding: 10px 20px 10px 55px;
  width: 100%;
  max-width: 246px;
  position: relative;
}
.detail__file::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.detail__history-back {
  padding-top: 100px;
  text-align: center;
}

.is-pdf::before {
  background: url(../img/common/pdf-img.webp) center center/contain no-repeat;
}

.history__btn {
  display: inline-block;
  width: 200px;
  background: rgba(146, 208, 80, 0.3);
  position: relative;
  padding: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1.2;
}
.history__btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #333333;
  border-right: 3px solid #333333;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 48%;
  right: 20px;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.detail-slider {
  margin-top: 40px;
}

.detail-slider__thumbnail {
  margin-top: 10px;
}

.detail-slider__thumbnail .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  width: 20%;
}

.detail-slider__thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

/* レイアウトのためのスタイル */
.detail-slider,
.detail-slider__thumbnail {
  max-width: 700px;
  width: 100%;
}

.detail-next,
.detail-prev {
  color: white;
}

.detail-thumb-next,
.detail-thumb-prev {
  color: white;
  --swiper-navigation-size: 25px;
}

/* =====================================================
# company
===================================================== */
.recruit .mv {
  padding-top: 0;
}

.recruit__boxes {
  color: #fff;
  background-color: #299528;
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px;
  max-width: 1100px;
  margin-inline: auto;
}

.recruit__box {
  width: 50%;
  text-align: center;
}

.recruit__title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 20px;
}

.recruit__number {
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  font-size: 40px;
}
.recruit__number .recruit__number-text {
  font-size: 25px;
}

.recruit__text {
  font-size: 14px;
}

.recruit__button {
  margin-top: 25px;
}

.vision {
  padding-block: 100px;
  background-color: #f3f3f3;
}

.vision__inner {
  max-width: 1050px;
  margin-inline: auto;
  padding-inline: 15px;
}

.company-map__inner iframe {
  margin-top: 60px;
  width: 100%;
}

.company-map__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

#company {
  padding-top: 110px;
  margin-top: -110px;
}

.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .profile .horizontal-table {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 50px;
}
.company .profile .horizontal-table__header {
  background-color: #fff;
}

.horizontal-table {
  padding-top: 30px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #ebf7db;
  padding: 15px;
  border-bottom: 1px solid #92d050;
  font-weight: 600;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #92d050;
}
.horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  vertical-align: middle;
}
.horizontal-table__text:first-of-type {
  border-top: 1px solid #ddd;
}
.horizontal-table .center {
  margin: 0 auto;
}

/* =====================================================
# contact
===================================================== */
.label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}

.contact {
  background-color: #f3f3f3;
  padding-block: 100px;
}

.tel-fax {
  max-width: 980px;
  margin-inline: auto;
}
.tel-fax__hour {
  color: #fff;
}
.tel-fax__content {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #ff9a00;
  padding: 40px 15px;
}
.tel-fax__box {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.tel-fax__box.is-fax {
  border-left: 1px solid white;
}
.tel-fax .tel-number {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  padding-left: 6px;
  color: white;
}
.tel-fax .tel-number::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
  vertical-align: -5px;
  margin-right: 10px;
}
.tel-fax .is-fax .tel-number::before {
  width: 45px;
  height: 45px;
  vertical-align: -8px;
  background: url(../img/common/fax_24.webp) center center/contain no-repeat;
}

.mail-form {
  background-color: #fff;
  padding-block: 100px;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__title {
  font-size: 25px;
  font-weight: 500;
  color: #92d050;
  position: relative;
}
.mail-form__text {
  margin-top: 60px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 100%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 30px;
}
.mail-form .horizontal-table table {
  width: 100%;
}
.mail-form .horizontal-table th {
  width: 27%;
  padding: 20px;
  background-color: #e8f7e6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table th .required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mail-form .horizontal-table th:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table th:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table td {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table td:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  font-weight: 500;
  margin-bottom: 20px;
  text-align: center;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -21px;
  padding-left: 21px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #333;
  background-color: #fff;
  border: 2px solid #333;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

/* 重ねるメディア
----------------------------------------------------- */
.normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.normal._reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.column {
  width: 58%;
  position: relative;
  z-index: 2;
}
.column._reverse {
  margin-left: -10%;
}
.column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -10%;
}
.column-outside-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: -10%;
  text-align: right;
}
._top-intro .column {
  width: 65%;
}
._top-intro .column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -20%;
}
.column .text-box {
  padding-block: 50px;
}
.is-business-intro .column .text-box {
  background-color: #fff;
}
._top-intro .column .text-box {
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.column .text-box p {
  font-size: 16px;
  text-align: justify;
}
.is-business-intro .column .text-box p {
  margin-top: 30px;
}
._top-intro .column .text-box p {
  color: #333;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.section {
  padding-block: 100px;
}

.heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  padding-left: 70px;
}
.heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 21px;
  width: 50px;
  height: 3px;
  background: #92d050;
}
.heading::after {
  content: attr(data-en);
  font-weight: 500;
  font-family: "Inter", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  position: absolute;
  top: 45px;
  left: 70px;
  font-size: 18px;
  color: #299528;
  background: none;
}

.button {
  display: inline-block;
  width: 390px;
  line-height: 75px;
  height: 75px;
  background: #ff9a00;
  padding-inline: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.button::after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.list {
  display: block;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  text-indent: -9px;
  padding-left: 9px;
}

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

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

.bg-blue {
  background-color: #f3f3f3;
}

.bg-navy {
  background-color: #e7e4fa;
}

.photo-ofi {
  height: 0;
  display: block;
  background-color: #f3f3f3;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.6666%; /* 高さを指定（ボックスの横幅を基準） */
}

.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

#recruit {
  margin-top: -100px;
  padding-top: 100px;
}

/* 左から右にカーテン
---------------------------------------------------- */
.curtainLefttoRight {
  position: relative;
}

.curtainLefttoRight.visible {
  -webkit-animation-name: curtainLeftFadeIn;
          animation-name: curtainLeftFadeIn;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #000;
  -webkit-animation-name: curtainLeft;
          animation-name: curtainLeft;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

main {
  overflow: hidden; /*横スクロールの発生を防止*/
  background-size: auto auto;
}

html {
  background-color: #fafafa;
}

body {
  font-size: 16px;
  font-family: "kozuka-gothic-pr6n", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus, .c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus, .c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus, .c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus, .c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #92d050;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.mt-10 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  #js-pagetop {
    width: 70px;
    height: 70px;
    line-height: 47px;
  }
  .header__lists .is-active {
    color: #92d050 !important;
  }
  .footer {
    padding-top: 50px;
  }
  .footer__logo img {
    width: 280px;
  }
  .picture {
    margin-left: 5%;
  }
  .picture-copy {
    top: 30%;
    left: 7%;
  }
  .mv-jumbotron {
    height: 200px;
  }
  .mv-jumbotron__inner {
    padding-top: 50px;
  }
  .mv .mv-h2 {
    font-size: 22px;
    padding-bottom: 25px;
    width: 100%;
  }
  .mv .mv-h2__en {
    font-size: 35px;
    padding-bottom: 6px;
  }
  .mv .mv-h2__ja {
    padding-top: 15px;
    font-size: 20px;
  }
  .top-heading-en {
    font-size: 30px;
  }
  .top-heading-en::after {
    right: -33%;
  }
  .top-about {
    padding-block: 60px;
  }
  .top-about__text {
    font-size: 16px;
  }
  .top-business {
    padding-block: 60px;
  }
  .top-business__decoration {
    top: 35%;
    left: 2%;
    z-index: 1;
  }
  .top-business__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .top-business__body {
    width: 100%;
  }
  .top-business__btn .button {
    font-size: 18px;
  }
  .top-business__image {
    width: 100%;
    margin-right: 0;
  }
  .top-news {
    padding-block: 50px;
  }
  .top-news__tab-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .top-news__content {
    padding: 20px 10px 28px;
    margin-top: 10px;
  }
  .is-news-category .top-news__content {
    margin-top: 40px;
  }
  .top-news__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .top-news__title {
    font-size: 16px;
  }
  .top-recruit {
    padding-block: 50px;
  }
  .top-recruit__decoration {
    top: 35%;
    left: 2%;
    z-index: 1;
  }
  .top-recruit__media.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-recruit__image {
    width: 100%;
  }
  .top-recruit__btn .button {
    width: 100%;
  }
  .top-contact {
    padding-block: 50px;
  }
  .top-contact__item {
    width: 100%;
  }
  .top-contact__btn-group .top-contact__tel-icon,
  .top-contact__btn-group .top-contact__mail-btn {
    font-size: 24px;
  }
  .business__item-title {
    font-size: 16px;
  }
  .top-projects__item {
    max-width: unset;
  }
  .maintenance-title {
    margin-block: 15px;
  }
  .detail-lines {
    gap: 60px;
  }
  .detail-lines__four {
    gap: 30px;
  }
  .detail-lines__three {
    gap: 30px;
  }
  .detail-lines__two {
    gap: 30px;
  }
  .detail-content__heading span {
    font-size: 20px;
  }
  .detail-media {
    margin-top: 30px;
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail-media__body {
    width: 100%;
  }
  .detail-media__title {
    font-size: 20px;
  }
  .detail-media__text {
    margin-top: 20px;
  }
  .detail-media__image {
    width: 100%;
  }
  .detail__head {
    margin-top: 0px;
  }
  .detail__title {
    font-size: 20px;
  }
  .detail__text-box {
    margin-top: 30px;
  }
  .detail-slider {
    margin-top: 25px;
  }
  .detail-next,
  .detail-prev {
    --swiper-navigation-size: 30px;
  }
  .detail-thumb-next,
  .detail-thumb-prev {
    --swiper-navigation-size: 20px;
  }
  .recruit__boxes {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
    gap: 40px;
  }
  .recruit__box {
    width: 100%;
  }
  .recruit__title {
    font-size: 18px;
  }
  .recruit__number {
    font-size: 30px;
  }
  .recruit__number .recruit__number-text {
    font-size: 16px;
  }
  .recruit__button {
    margin-top: 20px;
  }
  .vision {
    padding-block: 50px;
  }
  .company-map__items {
    gap: 50px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table {
    margin-top: 25px;
    padding: 20px 0;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .horizontal-table {
    padding-top: 20px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact {
    padding-block: 50px;
  }
  .tel-fax {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .tel-fax__hour {
    font-size: 13px;
  }
  .tel-fax__content {
    padding: 20px;
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 5px;
    max-width: 400px;
  }
  .tel-fax__box.is-fax {
    border-top: 1px solid white;
    border-left-width: 0;
    padding-top: 15px;
    margin-top: 10px;
  }
  .tel-fax .tel-number::before {
    width: 28px;
    height: 28px;
    vertical-align: -5px;
  }
  .tel-fax .is-fax .tel-number::before {
    width: 30px;
    height: 30px;
    vertical-align: -5px;
  }
  .mail-form {
    padding-block: 50px;
  }
  .mail-form .heading {
    padding-left: 40px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__text {
    margin-top: 50px;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
  .mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form input[type=radio] + span:before {
    top: 3px;
  }
  .mail-form input[type=radio]:checked + span:after {
    top: 6px;
  }
  .mail-form input[type=checkbox] + span:before {
    top: 0.3em;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .mail-form .fileUpload {
    font-size: 0.9em; /* 文字を小さくする */
    width: 90%; /* 幅を小さくする */
    display: inline-block; /* インラインブロックにして幅を適用 */
  }
  .normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column {
    width: 100%;
  }
  .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .column-outside-left {
    margin-left: 0;
    margin-right: 0;
  }
  ._top-intro .column {
    width: 100%;
  }
  ._top-intro .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .is-business-intro .column .text-box {
    padding: 20px;
  }
  ._top-intro .column .text-box p {
    margin-top: 20px;
  }
  .section {
    padding-block: 50px;
  }
  .heading {
    text-align: left;
    letter-spacing: 0em;
    font-size: 20px;
    padding-left: 40px;
  }
  .heading::before {
    top: 15px;
    width: 30px;
  }
  .heading::after {
    font-size: 15px;
    top: 30px;
    left: 50px;
  }
  .md-none {
    display: none;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #js-pagetop:focus, #js-pagetop:hover {
    opacity: 0.6;
  }
  .header__contact {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__contact:focus, .header__contact:hover {
    background: #92d050;
  }
  .footer__link:focus, .footer__link:hover {
    color: #92d050;
  }
  .top-news__tab {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-news__tab:focus, .top-news__tab:hover {
    background-color: #ff9a00;
  }
  .top-news-itemLink {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .top-news-itemLink:focus, .top-news-itemLink:hover {
    background-color: rgba(146, 208, 80, 0.1);
  }
  .top-contact__btn-group .top-contact__mail-btn:focus, .top-contact__btn-group .top-contact__mail-btn:hover {
    opacity: 0.8;
  }
  .top-contact__btn-group .top-contact__mail-btn:hover::after {
    right: 0.5em;
  }
  .top-projects__item {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .top-projects__item:focus, .top-projects__item:hover {
    opacity: 0.6;
  }
  .top-projects__item img:focus, .top-projects__item img:hover {
    opacity: 0.8;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .detail__file {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .detail__file:focus, .detail__file:hover {
    opacity: 0.7;
  }
  .history__btn:focus, .history__btn:hover {
    background: #8d8d8d;
    color: #fff;
  }
  .history__btn:focus:after, .history__btn:hover:after {
    border-color: #fff;
  }
  .mail-form .privacy__link:hover {
    color: #999;
  }
  .mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
    opacity: 0.6;
  }
  .mail-form .send-btn:focus, .mail-form .send-btn:hover {
    opacity: 0.6;
  }
  .button:focus, .button:hover {
    background: #299528;
  }
  .button:hover::after {
    right: 0.5em;
  }
  .recruit__button .button:focus, .recruit__button .button:hover {
    background: #92d050;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .header {
    height: 70px;
  }
  .header__inner {
    padding-inline: 15px;
  }
  .header__logo a img {
    width: 350px;
  }
  .drawer-icon {
    width: 30px;
    height: 18px;
    position: relative;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 9px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-icon__bar {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #299528;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer-icon__bar:nth-child(1) {
    top: 0;
  }
  .drawer-icon__bar:nth-child(2) {
    top: 8px;
  }
  .drawer-icon__bar:nth-child(3) {
    top: 16px;
  }
  .header__nav {
    background: #333;
    width: 270px;
    height: calc(100% - 70px);
    position: fixed;
    right: 0;
    top: 70px;
    padding: 40px 15px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    max-width: 100%;
    overflow-x: auto;
  }
  .header__nav.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .header__contact {
    border-radius: 5px;
    height: 70px;
  }
  .header__link {
    display: inline-block;
    color: #fff;
  }
  .footer .address-area__text {
    font-size: 14px;
    text-align: center;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: unset;
  }
  .footer__lists {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer__link {
    text-align: center;
    line-height: 1.6;
  }
  .slide {
    height: 66.7222685571vw;
  }
  .fv {
    padding-top: 70px;
  }
  .fv__bg-grad {
    top: 41.7014178482vw;
    height: 30.8590492077vw;
  }
  .picture-copy__title {
    font-size: 5.0041701418vw;
  }
  .mv {
    padding-top: 70px;
    background-color: #fff;
  }
  .top-news__tab {
    font-size: 16px;
  }
  .top-recruit__image img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .tel-fax .tel-number {
    font-size: 35px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
  #recruit {
    margin-top: -70px;
    padding-top: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .header__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:focus, .header__logo a:hover {
    opacity: 0.6;
  }
  .header__icon {
    display: none;
  }
  .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:focus, .header__link:hover {
    color: #92d050;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .header__logo a img {
    width: 300px;
  }
  .footer .address-area__text {
    font-size: 13px;
  }
  .footer__nav-area {
    margin-top: 20px;
  }
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slide {
    height: 350px;
  }
  .fv__bg-grad {
    top: 140px;
    height: 260px;
  }
  .picture-copy__title {
    font-size: 7.1707953064vw;
    color: white;
  }
  .top-recruit__image img {
    margin-top: 10px;
    height: auto;
  }
  .tel-fax .tel-number {
    padding-left: 2px;
    font-size: 25px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) and (max-width: 410px) {
  .header__logo a img {
    width: 71.7079530639vw;
  }
}

@media screen and (max-width: 1600px) {
  .top-about__decoration img {
    opacity: 0.4;
  }
  .top-business__decoration img {
    opacity: 0.2;
  }
  .top-news__decoration img {
    opacity: 0.4;
  }
  .top-recruit__decoration img {
    opacity: 0.2;
  }
}

@media screen and (max-width: 1600px) and (max-width: 1199px) {
  .top-business__decoration img {
    display: none;
  }
  .top-news__decoration img {
    display: none;
  }
  .top-recruit__decoration img {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .top-recruit__media {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-recruit__text {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) {
  .top-recruit__body {
    padding: 15px 30px;
  }
  .top-contact__content {
    gap: 40px;
  }
  .top-contact__btn-group .top-contact__tel-icon,
  .top-contact__btn-group .top-contact__mail-btn {
    width: 100%;
  }
  .top-contact__text {
    font-size: 16px;
  }
  .top-projects__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail__files {
    margin-top: 60px;
    gap: 20px;
  }
  .detail__history-back {
    padding-top: 60px;
  }
  .company-map__inner iframe {
    margin-top: 50px;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .button {
    width: 240px;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-recruit__body {
    padding: 20px;
    width: 100%;
  }
  .top-contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-projects__items {
    grid-template-columns: 1fr;
  }
  .company-map__inner iframe {
    height: 300px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 2001px) {
  .column {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .column .text-box {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .column .text-box {
    padding-bottom: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */