@charset "UTF-8";
section {
  padding-bottom: 4em;
}
@media screen and (min-width: 768px) {
  section {
    padding-bottom: 5em;
  }
}

.u-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

h2 {
  padding-top: 120px;
  margin-top: -120px;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3793103448vw;
  }
}
@media (min-width: 1160px) {
  html {
    font-size: 16px;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:focus, a:hover {
  opacity: 0.6;
  cursor: pointer;
}

body {
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "Helvetica Neue", Arial, "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #042940;
  line-height: 1.5;
  background: #fff;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* 各入力欄のスタイル */
textarea {
  width: 100%;
  border: 1px solid #042940;
  font-size: 14px;
  padding: 0.7em 0.5em;
  height: 100px;
  resize: none;
}
@media screen and (min-width: 1024px) {
  textarea {
    font-size: 18px;
    height: 150px;
  }
}
textarea:focus, textarea:hover {
  -webkit-box-shadow: 0 0 0.25rem rgba(144, 194, 223, .5), inset 0 0 0.25rem rgba(144, 194, 223, .5);
          box-shadow: 0 0 0.25rem rgba(144, 194, 223, .5), inset 0 0 0.25rem rgba(144, 194, 223, .5);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  border: 1px solid #87BB59;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 100%;
  border: 1px solid #042940;
  font-size: 16px;
  padding: 0.32em 0.5em;
}
@media screen and (min-width: 1024px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    font-size: 20px;
    padding: 0.6em 0.5em;
  }
}
input[type=text]:focus, input[type=text]:hover,
input[type=tel]:focus,
input[type=tel]:hover,
input[type=email]:focus,
input[type=email]:hover {
  -webkit-box-shadow: 0 0 0.25rem rgba(144, 194, 223, .5), inset 0 0 0.25rem rgba(144, 194, 223, .5);
          box-shadow: 0 0 0.25rem rgba(144, 194, 223, .5), inset 0 0 0.25rem rgba(144, 194, 223, .5);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  border: 1px solid #87BB59;
}

.contact-form__list {
  margin-bottom: 22px;
}
@media screen and (min-width: 1024px) {
  .contact-form__list {
    margin-bottom: 18px;
  }
}

.contact-form__item:not(:last-of-type) {
  margin-bottom: 21px;
}
@media screen and (min-width: 1024px) {
  .contact-form__item:not(:last-of-type) {
    margin-bottom: 21px;
  }
}

.contact-form__item-title {
  margin-bottom: 0.7em;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-form__item-title label {
  display: block;
  margin-right: 0.5em;
}
@media screen and (min-width: 1024px) {
  .contact-form__item-title {
    font-size: 18px;
  }
}

.contact-form__item-input .error_msg {
  color: #e25c00;
  font-size: 14px;
  text-align: left;
}

/* 確認画面 */
.contact__form-wrap {
  padding: 2em;
}

.confirm .contact-form__item {
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .confirm .contact-form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.confirm .contact-form__item-title {
  width: 140px;
}
.confirm .contact-form__item-input p {
  margin-bottom: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .confirm .contact-form__item-input p {
    text-align: center;
  }
}

.back-btn {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .back-btn {
    margin-bottom: 0;
  }
}

.copylight {
  color: #fff;
  background: #87BB59;
  text-align: center;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .copylight {
    font-size: 18px;
  }
}

.cta-tel {
  display: inline-block;
  width: 253px;
  max-width: 100%;
  height: 84px;
  padding: 15px 10px;
  background-color: #fff;
  border: 2px solid currentColor;
  color: #87BB59;
  font-size: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cta-tel p {
  font-size: 16px;
}
.cta-tel:focus, .cta-tel:hover {
  background-color: #87BB59;
  border-color: transparent;
  color: #fff;
  opacity: 1;
}

.cta-tel_drawer {
  max-width: 100%;
  height: 84px;
  padding: 15px 10px;
  background-color: #EDF2E2;
  border: 2px solid transparent;
}
.cta-tel_drawer:focus, .cta-tel_drawer:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #87BB59;
}

.cta {
  display: inline-block;
  width: 253px;
  max-width: 100%;
  height: 84px;
  line-height: 84px;
  padding: 0 10px;
  background-color: #87BB59;
  border: 2px solid transparent;
  color: #FFF;
  font-size: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cta:focus, .cta:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #87BB59;
}

/* 順番に現れるアニメーション */
.delayshow .delayshow-item {
  -webkit-transition: opacity 1.3s;
  transition: opacity 1.3s;
  opacity: 0;
}
.delayshow.inview .delayshow-item {
  opacity: 1;
}
.delayshow.inview .delayshow-item:nth-child(1) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.delayshow.inview .delayshow-item:nth-child(2) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.delayshow.inview .delayshow-item:nth-child(3) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.delayshow.inview .delayshow-item:nth-child(4) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.delayup {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-animation-name: delayUpAnime;
          animation-name: delayUpAnime;
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-timing-function: cubic-bezier(0.73, 0.09, 0.63, 1.57);
          animation-timing-function: cubic-bezier(0.73, 0.09, 0.63, 1.57);
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-direction: normal;
          animation-direction: normal;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes delayUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes delayUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-drawer-icon {
  position: fixed;
  top: 52px;
  right: 16px;
  z-index: 40;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: block;
}
@media screen and (min-width: 768px) {
  .js-drawer-icon {
    right: 25px;
  }
}
@media screen and (min-width: 1100px) {
  .js-drawer-icon {
    display: none;
  }
}
.js-drawer-icon.is-active .js-drawer-icon__bar1 {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  top: 9.9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.js-drawer-icon.is-active .js-drawer-icon__bar2 {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  top: 9.9px;
  display: none;
}
.js-drawer-icon.is-active .js-drawer-icon__bar3 {
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  top: 9.9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* barがはいる箱 */
.js-drawer-icon__bars {
  width: 27px;
  height: 16px;
  display: block;
  position: relative;
}

.js-drawer-icon__bars:hover {
  cursor: pointer;
}

/* それぞれのbarの線分を作る */
.js-drawer-icon__bar1,
.js-drawer-icon__bar2,
.js-drawer-icon__bar3 {
  width: 27px;
  height: 1px;
  background: #87BB59;
  position: absolute;
  top: 0;
  left: 0;
}

.js-drawer-icon__bar1 {
  top: 0;
}

.js-drawer-icon__bar2 {
  top: 8px;
}

.js-drawer-icon__bar3 {
  top: 16px;
}

/* ドロワーメニュー全体の箱 */
.js-drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 39;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform ease 0.5s 0s;
  transition: -webkit-transform ease 0.5s 0s;
  transition: transform ease 0.5s 0s;
  transition: transform ease 0.5s 0s, -webkit-transform ease 0.5s 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.js-drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.js-drawer-content__items {
  padding-top: 24px;
  text-align: center;
}

.js-drawer-content__item {
  margin-bottom: 48px;
}
.js-drawer-content__item:nth-child(4) {
  margin-bottom: 51px;
}
@media screen and (min-width: 768px) {
  .js-drawer-content__item {
    margin-bottom: 60px;
  }
}

.js-drawer-content__link {
  color: #042940;
  font-size: 20px;
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 768px) {
  .js-drawer-content__link {
    font-size: 24px;
  }
}

.floating {
  position: fixed;
  right: 15px;
  bottom: 80px;
  z-index: 30;
  /* はじめは非表示 */
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  /* 上に上がる動き */
  /* 下に下がる動き */
}
@media screen and (min-width: 768px) {
  .floating {
    right: 40px;
    bottom: 100px;
  }
}
.floating.UpMove {
  -webkit-animation-name: UpAnime;
          animation-name: UpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.floating.DownMove {
  -webkit-animation-name: DownAnime;
          animation-name: DownAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}
.floating__link {
  display: block;
  width: 35px;
  height: 35px;
  background: transparent;
  border: 1px solid #87BB59;
  opacity: 0.7;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 80%;
  color: #87BB59;
}
.floating__link::before {
  content: "";
  display: block;
  border-top: 2px solid #87BB59;
  border-right: 2px solid #87BB59;
  width: 25%;
  height: 25%;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .floating__link {
    width: 40px;
    height: 40px;
  }
}
.floating__link:hover, .floating__link:focus {
  cursor: pointer;
  opacity: 0.6;
}

.global-nav {
  display: none;
}
@media screen and (min-width: 1100px) {
  .global-nav {
    display: block;
    height: 120px;
  }
}

.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.global-nav__item {
  height: inherit;
}
.global-nav__item:not(:last-child) {
  margin-right: 26px;
}

.global-nav__link {
  font-size: 20px;
  display: block;
  line-height: 120px;
}

.header {
  background: #fff;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 120px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}
@media screen and (min-width: 1100px) {
  .header {
    height: 120px;
  }
}
.header.change-color {
  background: rgba(255, 255, 255, .8);
}

.header__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1300px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.header__logo {
  width: 80px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.header__logo a {
  line-height: 120px;
}
@media screen and (min-width: 1100px) {
  .header__logo {
    margin-right: auto;
  }
  .header__logo a {
    line-height: 120px;
  }
}

.header__nav {
  margin-right: 1em;
}

.header__cta {
  display: none;
}
.header__cta:not(:last-child) {
  margin-right: 1em;
}
@media screen and (min-width: 1100px) {
  .header__cta {
    display: block;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1210px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.label {
  display: inline-block;
  padding: 0.2em 0.3em;
  background-color: #e25c00;
  color: #FFF;
  font-size: 12px;
  font-size: 0.75rem;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .section-inner {
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .section-inner {
    width: 100%;
    max-width: 1210px;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3.5em;
}
@media screen and (min-width: 768px) {
  .section-title {
    margin-bottom: 2em;
  }
}

.section-title_main {
  font-size: 40px;
  color: #87BB59;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  padding-bottom: 10px;
  margin-bottom: 10px;
  position: relative;
}
.section-title_main::after {
  width: 100%;
  height: 2px;
  background-color: #87BB59;
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.section-title_sub {
  font-size: 24px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  opacity: 0.2;
}

/* 上下左右へ移動するアニメーション */
.slidein.up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.slidein.down {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.slidein.left {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.slidein.right {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.slidein {
  -webkit-transition: all 1.6s;
  transition: all 1.6s;
  opacity: 0;
}
.slidein.inview {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

/* 順番に現れるアニメーション */
.slidein_delay.inview .slidein_delay-item {
  opacity: 1;
}
.slidein_delay.inview .slidein_delay-item:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(3) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(4) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(5) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(6) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(7) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(8) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(9) {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.slidein_delay.inview .slidein_delay-item:nth-child(10) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

.submit {
  display: inline-block;
  width: 158px;
  max-width: 100%;
  padding: 8.5px 10px;
  background-color: #042940;
  border: 2px solid transparent;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .submit {
    width: 298px;
    padding: 14.5px 10px;
    font-size: 20px;
  }
}
.submit:focus, .submit:hover {
  background-color: #fff;
  color: #042940;
  border-color: currentColor;
}

.access {
  background: #EDF2E2;
  text-align: center;
}

.access__map {
  height: 315px;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .access__map {
    height: 426px;
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 600px) {
  .company__inner {
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .company__inner {
    width: 100%;
    max-width: 770px;
  }
}

.company__content {
  width: 100%;
}

.company__item {
  padding: 1em 0;
  padding-left: 1em;
  border-bottom: 1px solid #042940;
}
.company__item:first-child {
  border-top: 1px solid #042940;
}
@media screen and (min-width: 768px) {
  .company__item {
    padding: 1.5em 0;
    padding-left: 8%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.company__item dt,
.company__item dd {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .company__item dt {
    width: 125px;
  }
}
@media screen and (min-width: 768px) {
  .company__item dd {
    width: calc(100% - 125px);
  }
}

.contact__cta-area {
  text-align: center;
  border-top: 2px solid #87BB59;
  border-bottom: 2px solid #87BB59;
  padding: 2em 1em;
  margin-bottom: 4em;
}
@media screen and (min-width: 768px) {
  .contact__cta-area {
    border: 2px solid #87BB59;
    padding: 3em 1em;
  }
}
.contact__cta-area h3 {
  font-size: 30px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #87BB59;
  margin-bottom: 0.3em;
}
.contact__cta-area p {
  margin-bottom: 1em;
}

.contact__cta-wrap {
  background: #EDF2E2;
  padding: 1em;
}
@media screen and (min-width: 1024px) {
  .contact__cta-wrap {
    width: 60%;
    margin: 0 auto;
  }
}

.contact__cta-item:not(:last-child) {
  margin-bottom: 1em;
}
.contact__cta-item i,
.contact__cta-item span {
  font-size: 20px;
  color: #87BB59;
}
@media screen and (min-width: 768px) {
  .contact__cta-item i,
  .contact__cta-item span {
    font-size: 30px;
  }
}

.contact__form-area {
  background: #EDF2E2;
  padding: 2em 1em;
}
@media screen and (min-width: 768px) {
  .contact__form-area {
    padding: 3em 1em;
  }
}

.contact__form-area h3 {
  text-align: center;
  font-size: 30px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #87BB59;
  margin-bottom: 0.3em;
}
.contact__form-area p {
  text-align: center;
  margin-bottom: 4em;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .contact__form-area p {
    font-size: 16px;
  }
}
.contact__form-area .thanks_msg p {
  margin-bottom: 0;
}

.contact__form-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#EDF2E2), color-stop(37%, #EDF2E2), color-stop(37%, #fff), to(#fff));
  background: linear-gradient(#EDF2E2 0%, #EDF2E2 37%, #fff 37%, #fff 100%);
}

@media screen and (min-width: 768px) {
  .contact__inner {
    max-width: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .contact__inner {
    width: 100%;
    max-width: 790px;
  }
}

.contact__form-wrap {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
}

.contact__form-items {
  margin-bottom: 2em;
}

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

/* 確認用のtextarea非表示 */
textarea[type=hidden] {
  display: none;
}

.error_list {
  padding: 10px 30px;
  color: #ff2e5a;
  font-size: 86%;
  text-align: left;
  border: 1px solid #ff2e5a;
  border-radius: 5px;
}

.mainview {
  margin: 0 auto;
  margin-top: 120px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 600px) {
  .mainview {
    aspect-ratio: 650/479;
  }
}
@media screen and (min-width: 1440px) {
  .mainview {
    margin-top: 120px;
    width: 100vw;
  }
}

.slide__img {
  aspect-ratio: 375/673;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .slide__img {
    aspect-ratio: 650/479;
  }
}
@media screen and (min-width: 1024px) {
  .slide__img {
    width: 100vw;
    height: 960px;
  }
}
.slide__img img {
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

/* フェードモード時 共通調整 */
.swiper-fade .swiper-slide {
  -webkit-transition-property: opacity !important;
  transition-property: opacity !important;
}

.recruit {
  overflow: hidden;
}

.recruit__lead {
  font-size: 24px;
  color: #fff;
  background: #87BB59;
  text-align: center;
  padding: 0.5em 0;
  margin-bottom: 4em;
}
@media screen and (min-width: 768px) {
  .recruit__lead {
    margin-bottom: 5em;
  }
}

.recruit-head {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 7em;
}
@media screen and (min-width: 600px) {
  .recruit-head {
    width: 65.60344%;
    margin-bottom: 12em;
  }
}

.recruit-head__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.recruit-head__item {
  padding: 0.2em;
}
@media screen and (min-width: 768px) {
  .recruit-head__item {
    padding: 0.4em;
  }
}
.recruit-head__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.recruit-head__item.item01 {
  grid-area: 1/1/2/2;
}
.recruit-head__item.item02 {
  grid-area: 1/2/2/3;
}
.recruit-head__item.item03 {
  grid-area: 2/1/3/2;
}
.recruit-head__item.item04 {
  grid-area: 2/2/3/3;
}

.recruit-head {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (min-width: 1024px) {
  .recruit-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.recruit-body__img {
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  .recruit-body__img {
    margin-bottom: 0;
    width: 67%;
    margin-right: 5%;
  }
}
.recruit-body__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 1024px) {
  .recruit-body__text {
    width: 34.5%;
    margin-right: 5%;
  }
}
.recruit-body__text span {
  display: block;
}
.recruit-body__text p {
  line-height: 1.5;
}
.recruit-body__text p:not(:last-child) {
  margin-bottom: 1em;
}

.thanks {
  padding-top: 15em;
  text-align: center;
}

.work {
  background: #EDF2E2;
  padding-bottom: 8em;
}

.work__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.work__wrap:not(:last-child) {
  margin-bottom: 8em;
}
@media screen and (min-width: 1024px) {
  .work__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .work__wrap._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .work__wrap:not(:last-child) {
    margin-bottom: 15em;
  }
}

.work__img_left {
  -webkit-clip-path: none;
          clip-path: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 77/46;
}
@media screen and (min-width: 1024px) {
  .work__img_left {
    width: 66%;
    -webkit-clip-path: polygon(0 0, 100% 0%, 70% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 70% 100%, 0 100%);
    margin-right: -13%;
  }
}
.work__img_left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__img_right {
  -webkit-clip-path: none;
          clip-path: none;
  width: 100%;
  height: 100%;
  aspect-ratio: 77/46;
}
@media screen and (min-width: 1024px) {
  .work__img_right {
    width: 66%;
    -webkit-clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -13%;
  }
}
.work__img_right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__content {
  padding: 1em;
  padding-top: 9%;
  background-color: rgba(255, 255, 255, .69);
}
.work__content h3 {
  font-size: 20px;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  line-height: 2;
  display: inline;
}
@media screen and (min-width: 768px) {
  .work__content h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  .work__content {
    width: 47%;
    padding: 4em;
  }
}

.work__content h3 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, #F0D200));
  background: linear-gradient(transparent 50%, #F0D200 0%);
}

@media screen and (min-width: 1024px) {
  .img-left___content {
    margin-top: 10%;
    margin-bottom: -4%;
  }
}

@media screen and (min-width: 1024px) {
  .img-right__content {
    margin-top: -4%;
    margin-bottom: 10%;
  }
}

.mt-2 {
  margin-top: 18px;
}
/*# sourceMappingURL=styles.css.map */
