@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 999;
}
#page_top a {
  border-radius: 50%;
  background: #23bd51;
  color: #fff;
  display: block;
  font-size: 20px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  width: 80px;
  border: 1px solid white;
}

.section {
  padding-block: 100px;
}

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

.top-inner {
  padding-inline: 15px;
  max-width: calc(1400px + 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;
}

.heading {
  text-align: center;
  position: relative;
}
.heading::before {
  position: absolute;
  bottom: -20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 100px;
  height: 2px;
  background-color: #ee992a;
}

.heading__ja {
  display: block;
  font-size: 33px;
  font-weight: 500;
  color: #555;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.is-white .heading__ja {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: white;
}

.heading__en {
  color: #23bd51;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.is-white .heading__en {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  color: white;
}

.heading-h3 {
  text-align: right;
  position: relative;
}
.heading-h3::before {
  position: absolute;
  bottom: -10px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.heading-h3__en {
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 30px;
}

.heading-h3__ja {
  font-size: 20px;
  padding-left: 10px;
}

/* =====================================================
# header
===================================================== */
.top-header__inner,
.header__inner {
  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;
  height: 120px;
}
.top-header-logo-area,
.header-logo-area {
  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-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: 40px 0;
}
.top-header-logo-area.top,
.header-logo-area.top {
  background-color: transparent;
}
.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
  width: min(18.3727034121vw, 350px);
}
.top-header__right-area,
.header__right-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #b3e7ab;
  padding-inline: 3.6745406824vw 50px;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 10px;
  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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.top-header__link-area,
.header__link-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-header__btn,
.header__btn {
  display: inline-block;
  width: 200px;
  max-width: 100%;
  padding: 6px 10px;
  background-color: #ee992a;
  border-radius: 30px;
  color: white;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
.top-header__btn:focus, .top-header__btn:hover,
.header__btn:focus,
.header__btn:hover {
  background-color: #3eb5a9;
}
.top-header__btn img,
.header__btn img {
  width: 20px;
  vertical-align: -4px;
  margin-right: 5px;
}
.top-header__btn.is-tel,
.header__btn.is-tel {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.top-header__btn.is-tel:focus, .top-header__btn.is-tel:hover,
.header__btn.is-tel:focus,
.header__btn.is-tel:hover {
  background-color: #ee992a;
  cursor: default;
}
.top-header-nav-area,
.header-nav-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-header-nav,
.header-nav {
  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;
  gap: 38px;
}
.top-header-nav__wrapper,
.header-nav__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.top-header-nav__item,
.header-nav__item {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
.top-header-nav__link,
.header-nav__link {
  position: relative;
  display: block;
  letter-spacing: 1px;
  border-bottom: 4px solid transparent;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.top-home .top-header {
  background-color: transparent;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}

#stay,
.stay {
  color: white;
}
#stay::after,
.stay::after {
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}

/*　上に上がる動き　*/
#header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

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

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

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

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.drawer-icon {
  display: none;
  position: fixed;
  right: 6px;
  top: 20px;
  z-index: 1001;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding: 2px 9px 10px;
}
.drawer-icon.is-checked {
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}
.drawer-bars {
  display: inline-block;
  width: 35px;
  height: 20px;
  position: relative;
  vertical-align: bottom;
}
.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #777;
  width: 100%;
  height: 4px;
  border-radius: 0;
  -webkit-transition: all 0.3s linear 0s;
  transition: all 0.3s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 8px;
}
.drawer-bar:nth-of-type(3) {
  top: 16px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.drawer-background {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
.drawer-background.is-checked {
  display: block;
  opacity: 0.8;
}
.drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  z-index: 1000;
  width: 260px;
  max-width: 90%;
  height: 100%;
  background: #23bd51;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-align: left;
  font-weight: 500;
  color: #fff;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}
.drawer-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-content ul li {
  border-bottom: 1px dotted #fff;
  color: #fff;
}
.drawer-content ul li a {
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  position: relative;
  padding: 16px 30px 14px 20px;
}
.drawer-tel {
  display: inline-block;
  padding: 7px 20px;
  margin-top: 30px;
  margin-left: 20px;
  border: 1px solid #fff;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.mobile-active {
  color: #fff !important;
  background-color: #ee992a;
}

.call {
  position: relative;
}
.call::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/tel-icon.webp) top center/contain no-repeat;
}

/* =====================================================
# footer
===================================================== */
.footer__inner-wrapper {
  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;
  padding-block: 60px;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer__logo img {
  width: 300px;
}
.footer .address-area__box {
  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;
}
.footer .address-area__box .location {
  width: 30px;
  margin-left: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer .address-area__address {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.footer .address-area .tel {
  font-size: 14px;
  letter-spacing: 0.07em;
  margin-top: 5px;
}
.footer__nav-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 60%;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  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-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer-nav {
  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;
  gap: 25px;
}
.footer-nav__item {
  position: relative;
  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;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 auto;
}
.footer-nav__item--active {
  background-color: #23bd51;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-transform: uppercase;
  font-size: 14px;
}
.footer-nav__link--last-child {
  padding-right: 0;
}

.copyright {
  background-color: #23bd51;
  padding-block: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
  color: white;
}

/* =====================================================
# TOPメインヴィジュアル
===================================================== */
.fv {
  position: relative;
}
.fv__deco {
  position: absolute;
  top: 25%;
  left: 1%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fv__deco img {
  width: 60%;
}
.fv__deco2 {
  position: absolute;
  top: 65%;
  left: 8%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.fv__deco2 img {
  width: 50%;
}
.fv__deco3 {
  position: absolute;
  top: 15%;
  left: 17%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.fv__deco3 img {
  width: 40%;
}
.fv::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: min(15.7480314961vw, 300px);
  background: #e8fcf8;
  z-index: -10;
}

.fv__inner {
  position: relative;
}

.picture {
  margin-left: calc(100vw - 76.3888888889%);
  position: relative;
  z-index: 1;
  padding-bottom: 50px;
}

.slide {
  position: relative;
  width: 100%;
  height: min(47.2440944882vw, 1100px);
  overflow: hidden;
  border-top-left-radius: min(15.7480314961vw, 300px);
  border-bottom-left-radius: 10px;
}

.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__message {
  position: absolute;
  top: 40%;
  left: 5.249343832vw;
  z-index: 100;
}

.fv__catch1,
.fv__catch2,
.fv__catch3 {
  color: #23bd51;
  font-size: min(4.1994750656vw, 80px);
  letter-spacing: 0.1em;
}

.fv__catch1 {
  color: #ee992a;
}

.fv__title {
  font-size: min(3.5695538058vw, 68px);
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.05em;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, 2px -2px 3px #fff, -2px -2px 3px #fff;
}

.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 {
  background-color: #061a40;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 480px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: calc(1200px + 30px);
  margin-right: auto;
  margin-left: auto;
  padding-inline: 15px;
}
.mv-jumbotron__text-wrapper {
  position: absolute;
  top: 65%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 500px;
  padding-left: 15px;
}
.mv .mv-h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  padding-block: 30px 40px;
  padding-inline: 50px;
  background-color: rgba(35, 189, 81, 0.9);
  font-size: 34px;
  letter-spacing: 3px;
  color: white;
}
.mv .mv-h2 span {
  text-transform: uppercase;
  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;
  color: #b3e7ab;
  font-size: 19px;
  letter-spacing: 0.05em;
}
.mv .mv-h2 span::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 50px;
  height: 2px;
  background-color: #b3e7ab;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
}
.mv .mv-h2::before {
  content: attr(data-en);
  font-weight: 500;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
}

/* =====================================================
# 共通ボタン
===================================================== */
.btn {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding-inline: 40px 100px;
  background-color: #23bd51;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  height: 66px;
  line-height: 66px;
  border-radius: 10px;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  height: 8px;
  border-bottom: 1px solid white;
  border-right: 2px solid white;
  -webkit-transform: skew(60deg);
          transform: skew(60deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.btn:hover::after {
  border-bottom: 1px solid #1b1b1b;
  border-right: 2px solid #1b1b1b;
  -webkit-transform: translateX(10px) skew(60deg);
          transform: translateX(10px) skew(60deg);
}
.btn.is-topNews {
  height: 55px;
  line-height: 55px;
}

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

.top-news__content {
  background-color: #fff;
  padding: 70px min(3.1496062992vw, 60px);
  border-radius: 30px;
}

.top-news__head {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.top-news__tab {
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.top-news__tab.is-all {
  background-color: #23bd51;
}
.top-news__tab.is-news {
  background-color: #ee992a;
}
.top-news__tab.is-report {
  background-color: #f78a9a;
}
.top-news__tab.is-category {
  background-color: #888;
}

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

.top-news__label {
  width: 60px;
  padding: 5px;
  background-color: #fff593;
  color: #cc3333;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
}
.top-news__body {
  margin-top: 80px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  height: 470px;
  width: 100%;
}
.news .top-news__body {
  overflow: visible;
  height: auto;
}

.top-news__link {
  padding: 27px 0px 20px;
  border-bottom: 1px solid #ccc;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 100;
}
.top-news__link:nth-child(1) {
  padding-top: 10px;
}

.top-news__button {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.top-news__title {
  margin-top: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -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;
  padding-right: 30px;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  position: relative;
  padding-bottom: 100px;
}
.top-about__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: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.top-about__column {
  width: 55%;
  position: relative;
  z-index: 2;
}
.top-about__column p {
  border-end-start-radius: min(6.2992125984vw, 120px);
  background-color: rgba(179, 231, 171, 0.5);
  padding: min(6.2992125984vw, 120px) min(5.249343832vw, 100px) min(5.249343832vw, 100px);
  font-size: 18px;
  line-height: 2;
}
.top-about__column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -3%;
}

.top-about__text-box {
  margin-top: min(5.249343832vw, 100px);
  width: 85%;
}

.top-about__text {
  display: block;
  margin-top: 40px;
  font-size: 20px;
  line-height: 2;
  padding-left: 4.1994750656vw;
  letter-spacing: 1px;
}

.top-about__strong {
  font-weight: bold;
  color: #ee992a;
}

.top-service__content {
  margin-top: 80px;
  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;
}

.top-service__item {
  width: 33.3333%;
  background-color: #e8fcf8;
  padding: 30px 50px;
  border-radius: 30px;
  -webkit-box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
          box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
}

.top-service__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #ee992a;
  background-color: #fff;
  border-radius: 10px;
}

.top-service__image {
  margin-top: 20px;
}
.top-service__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
  border-radius: 20px;
}

.top-service__body {
  text-align: center;
  margin-top: 30px;
}

.top-information .top-about__text-box {
  margin-top: min(7.874015748vw, 150px);
}
.top-information .top-about__column img {
  border-radius: min(5.249343832vw, 100px);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.top-information__image {
  padding-top: min(7.874015748vw, 150px);
  padding-inline: 30px min(5.249343832vw, 100px);
}
.top-information__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact__text {
  display: block;
  margin-top: 40px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.top-contact__content {
  border-radius: 50px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

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

.top-contact__body {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  padding: 50px;
  width: 100%;
  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-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url(../img/common/top-contact-bg.webp) center center/cover no-repeat;
  background-color: rgba(175, 233, 226, 0.4);
  background-blend-mode: soft-light;
}

.top-contact__textbox {
  max-width: 600px;
  margin-inline: auto;
}

/* =====================================================
# news
===================================================== */
.news {
  background-color: rgba(179, 231, 171, 0.25);
}

/* =====================================================
# news-detail
===================================================== */
.detail__wrapper {
  margin-top: 60px;
}

.detail__meta {
  margin-top: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.detail__date {
  line-height: 1.81;
  letter-spacing: 1.2px;
  color: #1ba62d;
}

.detail__category {
  font-size: 12px;
  padding-inline: 8px;
  color: white;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 19px;
  height: 20px;
}
.detail__category.is-recruit {
  background-color: #d6a213;
}
.detail__category.is-blog {
  background-color: #23bd51;
}

.detail__title {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.detail__files {
  margin-top: 30px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  -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: #e8fcf8;
  padding: 10px 20px 10px 50px;
  border-radius: 10px;
  width: 100%;
  max-width: 230px;
  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;
}

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

.detail__content {
  margin-top: 30px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}
.detail__text-box {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 20px;
  max-width: 700px;
  margin-inline: auto;
}

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

.prev__btn,
.next__btn,
.history__btn {
  display: inline-block;
  width: 200px;
  background: #23bd51;
  color: white;
  border-radius: 9999px;
  position: relative;
  padding: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1.2;
}
.prev__btn:after,
.next__btn:after,
.history__btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  -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;
}

.prev__btn:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid white;
  border-right: 3px solid white;
  -webkit-transform: rotate(-135deg) translateY(-50%);
          transform: rotate(-135deg) translateY(-50%);
  position: absolute;
  top: 38%;
  left: 20px;
  border-radius: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.history__btn {
  margin-top: 30px;
}
.history__btn:after {
  display: none;
}

.detail__swiper-wrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

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

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

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

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

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

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

.photo-ofi {
  height: 0;
  display: block;
  background-color: #efefef;
  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;
}

/* =====================================================
# business
===================================================== */
.work-intro {
  background-color: rgba(179, 231, 171, 0.25);
}

.work__button-wrap {
  margin-block: 80px;
  text-align: center;
}

.work-intro__button-wrap {
  margin-top: 30px;
  text-align: center;
  position: relative;
  z-index: 4;
}
.work-intro__button-wrap .button {
  display: inline-block;
  width: 100%;
  max-width: 380px;
  line-height: 60px;
  height: 60px;
  background-color: #23bd51;
  padding-inline: 24px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.work-intro__button-wrap .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;
}

.work-intro__media {
  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: 40px;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  z-index: -2;
}
.work-intro__media.is-type2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.work-intro__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 55%;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}
.is-type2 .work-intro__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 70%;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
  padding-left: 30px;
}

.work-intro__title {
  color: #555;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 1px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ee992a;
  max-width: 585px;
}

.work-intro__catch {
  font-size: 24px;
  font-weight: 500;
  margin-top: 20px;
  color: #23bd51;
}

.work-intro__text {
  margin-top: 20px;
  line-height: 2;
}

.work-intro__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 45%;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.work__image {
  margin-top: 10px;
  position: relative;
}
.work__image:after {
  position: absolute;
  top: -20px;
  left: 20px;
  content: "";
  width: 100%;
  height: 100%;
  background: #23bd51;
  border-radius: 20px;
  z-index: -1;
}
.work__image.is-yellow:after {
  background-color: #f9e47d;
}
.work__image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

/* =====================================================
# contact
===================================================== */
.tel-fax {
  background-image: linear-gradient(-45deg, #edf7e6, #f8fdf4, #fdfaf2);
  padding-block: 100px;
}
.tel-fax__intro {
  text-align: center;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-top: 40px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tel-fax__box {
  border-radius: 10px;
  width: 100%;
  background-color: #23bd51;
  margin-inline: auto;
  padding: 35px 10px 38px;
  text-align: center;
  color: white;
}
.tel-fax__box.is-type2 {
  background-color: #ee992a;
}
.tel-fax__head {
  margin-top: 10px;
  font-size: 15px;
}
.tel-fax__line {
  margin-top: 7px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel-fax .tel__img img {
  width: 48px;
}
.tel-fax .tel-number {
  font-size: 38px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  padding-block: 100px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  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 {
  display: inline-block;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  color: #23bd51;
  border-bottom: 1px solid #23bd51;
}
.mail-form__text {
  margin-top: 20px;
}
.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 .label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
}
.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-size: 18px;
  margin-bottom: 15px;
  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: -17px;
  padding-left: 20px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  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: #23bd51;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 5px;
}
.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: #23bd51;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 5px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #222;
  background-color: #fff;
  border: 2px solid #222;
}
.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 1em 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: 2px;
  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: 5px;
  left: 3px;
  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;
}

/* =====================================================
# company
===================================================== */
.recruit__title {
  background-color: rgba(238, 153, 42, 0.2);
  padding: 10px;
  text-align: center;
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 30px;
  border-radius: 10px;
}
.recruit__title.is-type2 {
  background-color: rgba(179, 231, 171, 0.2);
}

.vision {
  padding-block: 100px;
  background-color: rgba(179, 231, 171, 0.2);
}

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

.company-map__button {
  margin-top: 50px;
  text-align: center;
}

.company-map__inner iframe {
  width: 100%;
}

.company-map__item {
  margin-top: 30px;
}
/* =====================================================
# business
===================================================== */
.case__inner {
  margin-inline: auto;
  padding-inline: 30px;
}

.case__images {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  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;
}

.case__image {
  max-width: 400px;
}
.case__image img {
  border-radius: 10px;
}

.case__button-wrap {
  margin-top: 100px;
  text-align: center;
}

.program-list {
  margin-top: 100px;
  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;
  background-color: #f0f7ef;
  gap: 1px;
}

.program-list__item {
  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: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.program-list__item.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
}

.program-list__img {
  width: 50%;
}

.program-list__body {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 40px;
}

.program-list__title {
  color: #23bd51;
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 15px;
  border-bottom: 2px solid #23bd51;
}

.program-list__catch {
  margin-top: 25px;
}

.business__transparent {
  position: relative; /* 基準位置とする */
}

.business__transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, #fff 99%); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
.is-case2 .business__transparent::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(99%, #fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #fff 99%);
}

.business__title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.business__title::before {
  content: attr(data-en);
  font-size: 22px;
  display: block;
  color: #23bd51;
  letter-spacing: 0.1em;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
}

.business__subtitle {
  margin-top: 15px;
  font-size: min(1.5748031496vw, 30px);
}

.business__intro .column img {
  width: 100%;
}
.business__intro .transparent {
  position: relative; /* 基準位置とする */
}
.business__intro .transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: -webkit-gradient(linear, right top, left top, color-stop(70%, rgba(255, 255, 255, 0)), color-stop(99%, #ffffff));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 70%, #ffffff 99%); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
.business__intro-wrap {
  position: relative;
  padding-inline: 15px;
  max-width: 1710px;
  margin-inline: auto;
}

.working__tel {
  margin-top: 30px;
}
.working__tel .call {
  background-color: #23bd51;
  color: #fff;
  padding: 7px 15px 7px 10px;
  border-radius: 5px;
  font-size: 20px;
  margin-left: 15px;
}
.working__tel .call::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
}

.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}

.company__banks {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

/* =====================================================
# table
===================================================== */
.horizontal-table {
  padding-top: 50px;
}
.horizontal-table.is-history {
  padding-top: 10px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #f9f9f9;
  padding: 15px;
  border-bottom: 1px solid #23bd51;
  vertical-align: middle;
}
.is-recruit .horizontal-table__header {
  border-bottom: 1px solid #ee992a;
}
.is-recruit .horizontal-table__header:first-child {
  border-top: 1px solid #ee992a;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #23bd51;
}
.horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.horizontal-table .center {
  margin: 0 auto;
}

/* 重ねるメディア
----------------------------------------------------- */
.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: 55%;
  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: 3.1496062992vw 3.6745406824vw;
}
.is-business-intro .column .text-box {
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
          box-shadow: 0 0 20px 0 rgba(136, 136, 136, 0.1);
  border-radius: 30px;
}
._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: #222;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.top-h2__title {
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: min(3.9895013123vw, 76px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 5.7px;
  color: #23bd51;
  display: block;
}
.top-h2__description {
  margin-top: 10px;
  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;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: #23bd51;
}
.is-white .top-h2__description {
  color: white;
}
.top-h2__description::before {
  content: "";
  width: 65px;
  height: 3px;
  border-radius: 3px;
  background-color: #ee992a;
  margin-right: 20px;
}
.is-white .top-h2__description::before {
  background-color: white;
}

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

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

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

.text-red {
  color: #f78a9a;
}

#visitor {
  margin-top: -150px;
  padding-top: 150px;
}

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

/* 左から右にカーテン
---------------------------------------------------- */
.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);
  }
}
/*==================================================
ドロップダウンメニュー
===================================*/
.has-child__items {
  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;
  gap: 8px;
  padding: 8px;
  border-radius: 10px;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}

.has-child__item {
  width: 33.3333%;
}
.has-child__item .is-child1 {
  background-color: #23bd51;
}
.has-child__item .is-child2 {
  background-color: #ee992a;
}
.has-child__item .is-child3 {
  background-color: #f78a9a;
}
.has-child__item a span {
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

/*ナビゲーションのリンク設定*/
nav ul li.has-child li a {
  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: 18px;
  padding: 10px;
  color: white;
  border-radius: 10px;
}
nav ul li.has-child li a img {
  display: block;
  width: 50% !important;
  border-radius: 5px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 70px;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 85%;
  top: 46px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  /*形状を指定*/
  background: #b3e7ab;
  width: 700px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li:last-child > a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  color: #222;
}

/*==768px以下の形状*/
/* =====================================================
# ページング
===================================================== */
.paging {
  margin-top: 100px;
  text-align: center;
}

.paging__arrow {
  font-size: 14px;
  line-height: 2;
}

div.paging span.current,
div.paging span.paging-text {
  margin: 0px 2px;
  color: #333;
  border: 1px solid #ccc;
  zoom: 1;
  display: inline-block;
  overflow: hidden;
  text-decoration: none;
  height: 35px;
}

div.paging span.paging-text a {
  padding: 3px 8px;
  display: block;
}

div.paging span.current {
  background: #23bd51;
  border: 1px solid #23bd51;
  color: #fff;
  display: inline;
  zoom: 1;
  padding: 3px 8px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

div.paging span.paging-text a:hover {
  background: #ccc;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

/* 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; /*横スクロールの発生を防止*/
}

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

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: #23bd51;
}

.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) {
  #page_top a {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  .section {
    padding-block: 50px;
  }
  .heading__ja {
    line-height: 1.2;
    font-size: 25px;
  }
  .heading__en {
    font-size: 12px;
  }
  .heading-h3__en {
    font-size: 27px;
  }
  .heading-h3__ja {
    font-size: 16px;
    padding-left: 0px;
  }
  .top-header-logo-area,
  .header-logo-area {
    padding-inline: 15px 0;
  }
  #stay::after,
  .stay::after {
    display: none;
  }
  .drawer-content ul li.has-child a::after {
    display: none;
  }
  .footer__logo img {
    width: 240px;
  }
  .footer__logo img {
    width: 85%;
  }
  .fv__deco2 {
    left: -3%;
  }
  .fv__deco3 {
    top: 10%;
    left: -2%;
  }
  .fv::after {
    height: 32.5945241199vw;
  }
  .slide {
    height: 350px;
  }
  .fv__message {
    left: 5%;
  }
  .mv-jumbotron {
    height: 290px;
  }
  .mv .mv-h2 {
    padding-block: 20px;
    padding-inline: 30px;
    font-size: 22px;
    padding-bottom: 25px;
  }
  .mv .mv-h2 span {
    font-size: 14px;
  }
  .mv .mv-h2 span::before {
    width: 30px;
  }
  .mv .mv-h2::before {
    font-size: 16px;
    top: 55%;
    width: 100%;
  }
  .btn {
    padding-inline: 30px 100px;
    font-size: 16px;
  }
  .btn::after {
    width: 25px;
  }
  .top-news__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top-news__body {
    margin-top: 40px;
  }
  .top-news__button {
    margin-top: 30px;
  }
  .top-news__title {
    padding-right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top-about__normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px !important;
  }
  .top-about__normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-about__column {
    width: 100%;
  }
  .top-about__column p {
    border-radius: 20px;
    padding: 30px 15px;
    font-size: 16px;
  }
  .top-about__column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .top-service__image img {
    height: auto;
  }
  .top-information .top-about__text-box {
    margin-top: 0px;
  }
  .top-contact__content {
    border-radius: 30px;
  }
  .top-contact__body {
    padding: 30px 15px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .detail__title {
    font-size: 19px;
  }
  .detail__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .detail__text-box {
    margin-top: 30px;
  }
  .detail__history-back {
    padding-top: 50px;
  }
  .detail__swiper-wrap {
    margin-top: 40px;
  }
  .work__button-wrap {
    margin-block: 50px;
  }
  .work__button-wrap .btn {
    width: 100%;
    max-width: 280px;
    height: auto;
    line-height: 1.4;
    padding-block: 10px;
  }
  .work-intro__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }
  .work-intro__media.is-type2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work__image:after {
    width: 90%;
    height: 90%;
  }
  .work__image img {
    width: 90%;
    height: 90%;
  }
  .tel-fax {
    padding-block: 50px;
  }
  .tel-fax__intro {
    letter-spacing: 0em;
    font-size: 20px;
  }
  .tel-fax__box {
    padding: 25px 10px;
  }
  .tel-fax__head {
    font-size: 14px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form {
    padding-block: 50px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__text {
    margin-top: 10px;
  }
  .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 {
    padding: 0.1em 0.3em 0.3em 2em;
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .recruit__title {
    font-size: 20px;
  }
  .vision {
    padding-block: 50px;
  }
  .company-map__button {
    margin-top: 30px;
  }
  .case__inner {
    padding-inline: 15px;
  }
  .case__images {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .case__button-wrap {
    margin-top: 60px;
  }
  .program-list {
    margin-top: 60px;
  }
  .program-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0px;
  }
  .program-list__item.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0px;
  }
  .program-list__img {
    width: 100%;
  }
  .program-list__body {
    width: 100%;
    padding: 30px 15px;
  }
  .program-list__title {
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #23bd51;
  }
  .business__title {
    font-size: 22px;
  }
  .business__title::before {
    font-size: 17px;
  }
  .business__intro-wrap {
    padding-block: 40px 30px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .is-recruit .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #e1e1e1;
    background-color: #e1e1e1;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .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;
  }
  .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;
  }
  .md-none {
    display: none;
  }
  .paging {
    margin-top: 50px;
  }
  div.paging span.paging-text a {
    padding: 3px 6px;
  }
  .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) {
  #page_top a:focus, #page_top a:hover {
    opacity: 0.6;
  }
  .top-header-nav__link:hover,
  .header-nav__link:hover {
    color: white;
  }
  .top-header-nav__link:hover::after,
  .header-nav__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  .footer .address-area__box .location:focus, .footer .address-area__box .location:hover {
    opacity: 0.6;
  }
  .footer-nav__link:focus, .footer-nav__link:hover {
    opacity: 0.6;
  }
  .btn:focus, .btn:hover {
    background-color: #caf2a4;
    color: #555;
  }
  .top-news__tab:focus, .top-news__tab:hover {
    background-color: #b3e7ab;
  }
  .detail__file {
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
  }
  .detail__file:focus, .detail__file:hover {
    background-color: #efefef;
  }
  .prev__btn:focus, .prev__btn:hover,
  .next__btn:focus,
  .next__btn:hover,
  .history__btn:focus,
  .history__btn:hover {
    background: #b3e7ab;
  }
  .prev__btn:focus:after, .prev__btn:hover:after,
  .next__btn:focus:after,
  .next__btn:hover:after,
  .history__btn:focus:after,
  .history__btn:hover:after {
    border-color: #fff;
  }
  .work-intro__button-wrap .button:focus, .work-intro__button-wrap .button:hover {
    background-color: #888;
  }
  .work-intro__button-wrap .button:hover::after {
    right: 0.5em;
  }
  .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;
  }
  nav ul li.has-child li a:focus img, nav ul li.has-child li a:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .top-header__inner,
  .header__inner {
    height: 80px;
  }
  .top-header-logo-area__logo--img,
  .header-logo-area__logo--img {
    width: 300px;
  }
  .top-header__right-area,
  .header__right-area {
    display: none;
  }
  .top-header-nav,
  .header-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-header-nav__item,
  .header-nav__item {
    margin-bottom: 10px;
  }
  .drawer-icon {
    display: block;
  }
  .drawer-content ul li .no-border {
    border-bottom-width: 0 !important;
  }
  .drawer-content ul li .border-top {
    border-top: 1px dotted #fff;
  }
  .footer__inner-wrapper {
    display: block;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
  .footer .address-area__box .location {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 0px;
  }
  .footer .address-area__address {
    text-align: center;
  }
  .footer__nav-area {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .footer-nav__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-nav__link {
    letter-spacing: 0;
  }
  .fv {
    margin-top: 80px;
  }
  .fv__deco img {
    width: 25%;
  }
  .fv__deco2 img {
    width: 17%;
  }
  .fv__deco3 img {
    width: 10%;
  }
  .picture {
    margin-left: calc(100vw - 77.9166666667%);
  }
  .slide {
    border-top-left-radius: 15.0125104254vw;
  }
  .fv__catch1,
  .fv__catch2,
  .fv__catch3 {
    font-size: 5.4211843203vw;
  }
  .fv__title {
    font-size: 3.7531276063vw;
  }
  .mv {
    background-color: #fff;
    margin-top: 80px;
  }
  .top-news {
    padding-top: 90px;
  }
  .top-about__text-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;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
  .top-about__text {
    font-size: 16px;
    padding-left: 0px;
  }
  .top-service__content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 25px;
  }
  .top-service__item {
    padding: 30px 20px;
  }
  .detail__content {
    display: block;
  }
  .work-intro__media {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .is-type2 .work-intro__body {
    padding-left: 20px;
  }
  .work-intro__title {
    font-size: 2.752293578vw;
  }
  .work-intro__catch {
    font-size: 19px;
  }
  .work-intro__img {
    margin-top: 30px;
  }
  .business__subtitle {
    font-size: 2.5020850709vw;
  }
  .column .text-box {
    padding: 30px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
  .top-h2__title {
    font-size: 40px;
  }
  .top-h2__description {
    font-size: 18px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .top-header-logo-area__logo--img,
  .header-logo-area__logo--img {
    width: 230px;
  }
  .footer__inner-wrapper {
    padding-block: 40px;
  }
  .picture {
    margin-left: 10%;
  }
  .slide {
    border-top-left-radius: 28.6831812256vw;
  }
  .fv__catch1,
  .fv__catch2,
  .fv__catch3 {
    font-size: 7.1707953064vw;
  }
  .fv__title {
    font-size: 5.2151238592vw;
  }
  .mv-jumbotron__text-wrapper {
    font-size: 40px;
    width: 100%;
  }
  .top-news {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .top-news__content {
    padding-block: 40px;
    padding-inline: 15px;
    gap: 30px;
  }
  .top-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
  .is-type2 .work-intro__body {
    padding-left: 0px;
  }
  .work-intro__title {
    font-size: 22px;
  }
  .work-intro__catch {
    font-size: 17px;
  }
  .work-intro__text {
    margin-top: 15px;
  }
  .business__subtitle {
    font-size: 20px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
  .top-h2__title {
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 1023px) {
  .footer .address-area .tel {
    margin-top: 20px;
  }
  .top-about {
    padding-bottom: 60px;
  }
  .top-service__title {
    font-size: 23px;
  }
  .top-contact__text {
    font-size: 16px;
  }
  .detail__files {
    gap: 20px;
  }
  .work-intro__button-wrap .button {
    font-size: 14px;
    height: auto;
    line-height: 1.6;
    padding-block: 15px;
  }
  .tel-fax__wrapper {
    margin-top: 30px;
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .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;
  }
  .company-map__inner iframe {
    height: 300px;
  }
  .working__tel .head {
    display: block;
  }
  .working__tel .call {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0px;
  }
  .top-h2__description::before {
    width: 30px;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .footer .lg-only {
    display: none;
  }
  .hidden-tab {
    display: none;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-about {
    padding-top: 60px;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
  .company-map__inner iframe {
    height: 250px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-about__text-box {
    display: block;
    text-align: left;
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
  }
  .top-service__item {
    padding: 30px 15px;
    width: 100% !important;
  }
  .column .text-box {
    padding: 0 0 20px;
  }
  .top-h2__description {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .top-service__item {
    width: 45%;
  }
  .column .text-box {
    margin-top: 0px;
  }
  .top-h2__description {
    letter-spacing: normal;
  }
}

@media screen and (max-width: 768px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav li.has-child ul,
  nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    -webkit-transition: none;
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav ul li.has-child ul li a {
    padding-inline: 20px 15px;
    color: #222;
    border-bottom-width: 0;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    border-top: 2px solid white;
    border-right: 2px solid white;
    width: 7px;
    height: 7px;
    left: auto;
    top: 25px;
    right: 20px;
  }
  nav ul li.has-child.active {
    border-bottom: none;
  }
  nav ul li.has-child.active::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
/*# sourceMappingURL=style.css.map */