@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 999;
}
#page_top a {
  background: #515151;
  color: #fff;
  display: block;
  font-size: 20px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  text-decoration: none;
  width: 55px;
  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(1450px + 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: 50px;
  height: 2px;
  background-color: #ccc;
}

.heading__ja {
  display: block;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 32px;
  color: #515151;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.recruit-merit .heading__ja {
  color: white;
}

.heading__en {
  display: block;
  color: #515151;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.recruit-merit .heading__en {
  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: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 30px;
}

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

/* =====================================================
# header
===================================================== */
.top-header,
.header {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 12px 0 rgba(34, 34, 34, 0.1);
          box-shadow: 0 3px 12px 0 rgba(34, 34, 34, 0.1);
}
.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: 110px;
  padding-inline: 3.1496062992vw;
}
.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;
}
.top-header-logo-area.top,
.header-logo-area.top {
  background-color: transparent;
}
.top-header-logo-area__logo,
.header-logo-area__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
  width: 310px;
}
.top-header__right-area,
.header__right-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-end-start-radius: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-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: 8px 10px;
  background-color: #515151;
  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: #ccc;
}
.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;
}
.top-header__btn.is-tel:focus, .top-header__btn.is-tel:hover,
.header__btn.is-tel:focus,
.header__btn.is-tel:hover {
  background-color: #515151;
  cursor: default;
}
.top-header__btn.is-icon,
.header__btn.is-icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.top-header__btn.is-icon::after,
.header__btn.is-icon::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  display: inline-block;
  background: url(../img/common/drawer-arrow-right.webp) center center/contain no-repeat;
}
.top-header__btn.is-icon:focus, .top-header__btn.is-icon:hover,
.header__btn.is-icon:focus,
.header__btn.is-icon:hover {
  background-color: #777;
}
.top-header__btn.is-icon.is-detail,
.header__btn.is-icon.is-detail {
  background-color: #999;
}
.top-header__btn.is-icon.is-detail:focus, .top-header__btn.is-icon.is-detail:hover,
.header__btn.is-icon.is-detail:focus,
.header__btn.is-icon.is-detail:hover {
  background-color: #777;
}
.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-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;
  font-size: 18px;
  gap: 30px;
}
.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;
  color: #515151;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: #ccc;
  -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: transparent;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
  background-color: #fff;
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}

#stay,
.stay {
  position: relative;
  display: block;
  letter-spacing: 1px;
  color: #515151;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}
#stay::after,
.stay::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: #ccc;
  -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: #515151;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  text-align: left;
  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-content ul li a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 11px;
  background: transparent url(../img/common/drawer-arrow-right.webp) no-repeat center center/contain;
}
.drawer-tel {
  display: inline-block;
  padding: 7px 15px;
  margin-top: 20px;
  margin-left: 20px;
  border: 1px solid #fff;
}

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

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

/* =====================================================
# footer
===================================================== */
.footer {
  background: url(../img/common/footer-bg.webp) center center/cover no-repeat;
  padding-block: 60px 80px;
}
.footer__inner {
  max-width: 1230px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.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;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.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;
}
.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: #515151;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-transform: uppercase;
  font-size: 13px;
}
.footer-nav__link--last-child {
  padding-right: 0;
}

.copyright {
  background-color: #515151;
  color: #efefef;
  padding-block: 12px 30px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}

.footer__logo {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.05rem;
}

/* =====================================================
# TOPメインヴィジュアル
===================================================== */
.fv {
  background-color: #f6f6f6;
  margin-top: 110px;
}
.fv .fv__inner {
  position: relative;
}
.fv .ja-title {
  text-align: center;
  display: block;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #515151;
  line-height: 1.5;
  text-shadow: 3px 3px 8px white, -3px 3px 8px white, 3px -3px 8px white, -3px -3px 8px white;
  font-size: min(2.624671916vw, 50px);
  letter-spacing: 2.64px;
}
.fv__catch {
  background-color: rgba(255, 255, 255, 0.8);
  padding: min(2.0997375328vw, 40px) min(3.1496062992vw, 60px);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  z-index: 610;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv-swiper {
  /*画像の横幅を100%にしてレスポンシブ化*/
}
.fv-swiper img {
  width: 100%;
  height: calc(100vh - 110px);
  vertical-align: bottom; /*画像の下にできる余白を削除*/
}

.fv-slide {
  position: relative;
}
.fv-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fv-slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoomUp 12s linear 0s normal both;
          animation: zoomUp 12s linear 0s normal both;
}

.fv-pagination .swiper-pagination-bullet {
  margin: 7px !important;
  background-color: white;
  opacity: 1;
}
.fv-pagination .swiper-pagination-bullet-active {
  background-color: #515151;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.scroll-wrap {
  position: absolute;
  bottom: 25px;
  right: 3%;
  z-index: 100;
}
.scroll-wrap .scroll {
  position: relative;
}
.scroll-wrap .scroll-text {
  font-size: 14px;
  text-align: center;
  position: relative;
  top: 80px;
  color: white;
}
.scroll-wrap .scroll-border {
  position: relative;
  padding: 56px 0;
}
.scroll-wrap .scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 50px;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  -webkit-animation: scrollbar-top 2s ease-in-out infinite;
          animation: scrollbar-top 2s ease-in-out infinite;
  margin: auto;
}
.scroll-wrap .scroll-border::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 50px;
  top: 85px;
  left: 0;
  right: 0;
  background: white;
  -webkit-animation: scrollbar-bottm 2s ease-in-out infinite;
          animation: scrollbar-bottm 2s ease-in-out infinite;
  margin: auto;
}
@-webkit-keyframes scrollbar-top {
  0% {
    height: 0;
  }
  30% {
    height: 50px;
  }
  90% {
    height: 50px;
  }
  90.1% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollbar-top {
  0% {
    height: 0;
  }
  30% {
    height: 50px;
  }
  90% {
    height: 50px;
  }
  90.1% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@-webkit-keyframes scrollbar-bottm {
  0% {
    height: 0;
  }
  25% {
    height: 0;
  }
  55% {
    height: 50px;
  }
  90% {
    height: 50px;
  }
  90.1% {
    height: 0;
  }
  100% {
    height: 0;
  }
}
@keyframes scrollbar-bottm {
  0% {
    height: 0;
  }
  25% {
    height: 0;
  }
  55% {
    height: 50px;
  }
  90% {
    height: 50px;
  }
  90.1% {
    height: 0;
  }
  100% {
    height: 0;
  }
}

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

.image-container img {
  display: block;
}

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

.mv {
  padding-top: 110px;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-color: #555;
  background-size: cover;
  background-position: center center;
  height: 350px;
  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.12);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  padding-inline: 15px;
  max-width: 1230px;
  margin-inline: auto;
  position: relative;
  height: 100%;
}
.mv-jumbotron__inner-wrapper {
  width: 50%;
  padding-inline: 15px;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mv .mv-h2 {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  font-size: 38px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: white;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
}
.mv .mv-h2::before {
  content: attr(data-en);
  position: absolute;
  top: -5px;
  left: 0%;
  color: rgba(81, 81, 81, 0.5);
  font-size: 70px;
  font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
}

.btn {
  background-color: #515151;
  border: 1px solid #e5e9e3;
  color: #fff;
  border: 1px solid transparent;
  display: inline-block;
  padding: 15px 30px 15px 15px;
  position: relative;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 250px;
}
.btn::before, .btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 15px;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
.btn::before {
  background-color: #fff;
  border-radius: 5px;
  height: 1px;
  top: 50%;
  width: 12px;
}
.btn::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  height: 8px;
  margin-top: -4px;
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 8px;
}
.btn.is-topAbout {
  width: 280px;
}
.btn._top-business {
  width: 220px;
  background-color: #515151;
}
.btn._top-business::after {
  border-bottom: 2px solid #fff;
  border-right: 3px solid #fff;
}
.btn._company {
  width: 240px;
  background-color: #515151;
  text-transform: capitalize;
}
.btn._recruit {
  width: 220px;
  font-size: 16px;
  background-color: #515151;
}

.tel-btn {
  display: inline-block;
  font-size: 18px;
  font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  line-height: 50px;
  height: 50px;
  padding-inline: 20px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #515151;
}
.tel-btn._call {
  cursor: default;
}
.tel-btn._arrow-right {
  position: relative;
}
.tel-btn._arrow-right::after {
  content: "\f054";
  position: absolute;
  top: 50%;
  right: 0.83em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* =====================================================
# top-product
===================================================== */
.top-product {
  background: #515151 url(../img/common/top-recruit-bg.webp) center center/contain no-repeat;
  position: relative;
  padding-block: 150px;
}
.top-product .btn {
  color: #515151;
  background-color: #fff;
}
.top-product .btn::before {
  background-color: #515151;
}
.top-product .btn::after {
  border-right: 1px solid #515151;
  border-top: 1px solid #515151;
}
.top-product__normal {
  margin-top: 50px;
  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-product__column {
  position: relative;
  z-index: 2;
}
.top-product__column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
}

.top-product__content {
  margin-right: 30px;
}

.top-product__button {
  display: block;
  text-align: right;
  margin-top: 60px;
}

.top-product__text {
  display: block;
  width: min(34.1207349081vw, 655px);
  margin-top: 40px;
  font-size: 20px;
  line-height: 2;
  -webkit-font-feature-settings: "palt" 1, "trad" 1;
          font-feature-settings: "palt" 1, "trad" 1;
}

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

.top-product__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.top-product__item {
  display: block;
  background-color: #fff;
  padding: 8px 8px 15px;
  -webkit-box-shadow: 0 0 20px 0 rgba(85, 85, 85, 0.1);
          box-shadow: 0 0 20px 0 rgba(85, 85, 85, 0.1);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.top-product__title {
  font-size: 18px;
  margin-top: 15px;
  text-align: center;
}

/* =====================================================
# top-office
===================================================== */
.top-office {
  border-top: 1px solid #515151;
  border-bottom: 1px solid #515151;
  background: url(../img/common/top-office-bg.webp) bottom left/cover no-repeat;
  padding-block: 150px;
}

.top-office__button {
  margin-top: 30px;
}

.top-office__medias {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5172413793%;
}

.top-office__media {
  width: 50%;
}
.top-office__media.is-type1 {
  margin-top: 100px;
}

.top-office__items {
  margin-top: 30px;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-office__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  position: relative;
}
.top-office__image img {
  display: block;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}

.top-office__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.is-type1 .top-office__body {
  bottom: auto;
  right: auto;
  top: 10px;
  left: 10px;
}

.top-office__media-title {
  font-size: 30px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.top-office__lists-button {
  text-align: center;
  margin-top: 130px;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  padding-block: 150px;
  position: relative;
}
.top-about::before {
  background-color: #f4f6f7;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: 0px;
  width: 74.5406824147vw;
  z-index: -1;
}

.top-about__text {
  margin-top: 40px;
  font-size: 20px;
  line-height: 2.5;
}

/* =====================================================
# top-recruit
===================================================== */
.top-recruit {
  padding-block: 110px;
  position: relative;
  background: transparent url(../img/common/top-product-bg.webp) left top/cover no-repeat;
}

.top-recruit__media {
  background-color: #f6f6f6;
  padding: 50px;
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}

.top-recruit__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40%;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.top-recruit__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 60%;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}
.top-recruit__body p {
  font-size: 18px;
  line-height: 2;
}

.top-recruit__button {
  margin-top: 60px;
  text-align: right;
}

/* =====================================================
# recruit
===================================================== */
/*= タブ =*/
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #ccc;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-info__categories {
  margin-top: 60px;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.top-info__category {
  width: 200px;
  display: block;
  background-color: #515151;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-bottom: 50px;
}
.top-info__category.is-active {
  background-color: #ccc;
}

.recruit-merit {
  background-color: #515151;
  padding-block: 90px 105px;
}
.recruit-merit.machinery {
  background-image: linear-gradient(-45deg, #f6f6f6, #fff, #f6f6f6);
}

.recruit-merit__items {
  margin-top: 100px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  width: 100%;
}
.machinery .recruit-merit__items {
  margin-top: 20px;
}

.recruit-merit__item {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 15px;
  -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);
}
.machinery .recruit-merit__item {
  background-color: #515151;
  border-radius: 0px;
  padding: 0px;
  padding-bottom: 15px;
}

.recruit-merit__image img {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.machinery .recruit-merit__image img {
  border-radius: 0px;
}

.recruit-merit__body {
  color: #222;
  text-align: center;
  margin-top: 15px;
}

.recruit-merit__title {
  color: #515151;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.machinery .recruit-merit__title {
  color: white;
}

.recruit-merit__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.voice {
  background-color: #eee;
}

.voice__content {
  background-color: #fff;
  border-radius: 30px;
  padding: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.voice__content .top-h2 {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.voice__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}
.voice__image img {
  max-width: 350px;
  border-radius: 50%;
}

.voice__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.voice__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.voice__dd,
.voice__dt {
  padding: 10px 5px;
}

.voice__dt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 190px;
      -ms-flex: 0 0 190px;
          flex: 0 0 190px;
  color: #515151;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  border-top: 1px solid #ccc;
}

.voice__dd {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  word-break: break-all;
  border-top: 1px solid #b1cae8;
}
.recruit-h2 {
  border-bottom: 1px solid #515151;
  display: block;
}
.recruit-h2__title {
  display: block;
  font-size: 37px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #515151;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-bottom: 10px;
}

.recruit__description {
  display: block;
  font-size: 18px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 500;
  padding-top: 30px;
}
.recruit__description.is-strong {
  padding-top: 0px;
}

.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: 30px;
  font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.business__title::before {
  font-size: 25px;
  content: attr(data-en);
  display: block;
  color: #515151;
  letter-spacing: 0.1em;
}

.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, left top, right 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-block: 100px;
  padding-inline: 15px;
  max-width: 1710px;
  margin-inline: auto;
}

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

.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;
}

.item-system__title {
  color: #515151;
  text-align: center;
  font-size: 35px;
  border-bottom: 1px solid #515151;
  padding-bottom: 15px;
  letter-spacing: 0.1em;
}

.item__attention {
  color: #515151;
  text-align: center;
  margin-top: 20px;
}

.item__items {
  padding-top: 100px;
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(3, 1fr);
}

.item__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.item__title {
  padding: 15px;
  background-color: #515151;
  color: white;
  font-size: 18px;
  line-height: 1.2;
}

.item__media {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

/* =====================================================
# detail
===================================================== */
.detail {
  padding-block: 100px;
  position: relative;
}

.detail__service {
  margin-top: min(7.874015748vw, 150px);
}

.detail__head {
  max-width: 700px;
  margin-top: 100px;
  margin-inline: auto;
}

.detail__media {
  margin-top: 50px;
}

.detail__map {
  width: 50%;
}
.detail__map iframe {
  width: 100%;
}

.detail__service-images {
  margin-top: 50px;
  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: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.detail__service-image {
  width: 33.3333%;
}

.detail__item-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 15px;
}

.detail__service-text {
  word-break: break-word;
  margin-top: 50px;
}
.detail__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.1em;
  border-left: 10px solid #515151;
  padding-left: 15px;
}

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

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

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

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

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

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

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

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

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

.categories {
  padding-block: 60px;
  background-color: #f6f6f6;
}

.category-cards {
  padding-inline: 15px;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

.category-card {
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-align: center;
  padding: 15px;
  background-color: #fff;
  position: relative;
}
.category-card span {
  display: block;
  padding-left: 20px;
}
.category-card::before {
  content: "▶";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.category-card.is-active {
  background-color: #515151;
  color: #fff;
}

/* =====================================================
# company
===================================================== */
.company-map {
  padding-block: 100px;
}

.company__link {
  text-decoration: underline;
  color: blue;
  -webkit-transition: opacity 0.3s, -webkit-text-decoration 0.3s;
  transition: opacity 0.3s, -webkit-text-decoration 0.3s;
  transition: opacity 0.3s, text-decoration 0.3s;
  transition: opacity 0.3s, text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.company-map__inner {
  margin-top: 40px;
}
.company-map__inner iframe {
  width: 100%;
  height: 500px;
}

.company__button {
  text-align: center;
  margin-top: 80px;
}

.company__table-items {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.profile {
  background-color: #515151;
  padding-block: 100px;
}
.profile.is-office {
  background-color: #fff;
  background-image: unset;
}

.profile__box {
  background-color: #fff;
  padding: min(4.1994750656vw, 80px);
}
.is-office .profile__box {
  padding-block: 0px;
}

.greeting {
  padding-block: 100px;
}

.greeting__content {
  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: min(3.1496062992vw, 60px);
}
.greeting__image img {
  max-width: 400px;
}

.greeting__text {
  margin-top: 20px;
  padding-top: 30px;
  border-top: 1px solid #dfdfdf;
  text-align: justify;
}

.qualification .horizontal-table__header {
  width: 35%;
}

/* =====================================================
# contact
===================================================== */
.mail-form {
  padding-block: 100px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.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__inner {
  max-width: 1070px;
}
.mail-form__title {
  font-size: 24px;
  font-weight: 500;
}
.mail-form__title .fa-envelope {
  font-size: 23px;
  vertical-align: -1px;
}
.mail-form__text {
  margin-top: 80px;
}
.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: 80%;
}
.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__inner {
  width: 100%;
}
.mail-form .horizontal-table__header {
  width: 27%;
  padding: 20px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table__header--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__header:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table__header:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table__text {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  font-size: 18px;
  font-weight: bold;
  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 {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #515151;
  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: #515151;
  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 #888;
}
.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;
}

.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: 30px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}
.business__title::before {
  content: attr(data-en);
  display: block;
  color: #515151;
  letter-spacing: 0.05em;
  font-size: 18px;
}

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

.working__tel {
  margin-top: 30px;
}
.working__tel .head {
  font-weight: bold;
}
.working__tel .call {
  background-color: #515151;
  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);
}

/* =====================================================
# works
===================================================== */
.office-intro {
  background-color: #515151;
}

.office-intro__h3-title {
  color: white;
  text-align: center;
  font-size: 40px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.office-intro__items {
  margin-top: 60px;
  display: grid;
  gap: 0 min(3.1496062992vw, 60px);
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}

.office-intro__item {
  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;
}

.office-intro__image img {
  width: 100%;
}

.office-intro__xl-image {
  margin-top: 60px;
  text-align: center;
}
.office-intro__xl-image img {
  border: 5px solid white;
  max-width: 1000px;
}

.office-intro__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: white;
  padding: 15px;
}

.office-intro__head {
  font-size: 20px;
  font-weight: 500;
  color: #515151;
}

.office-intro__text {
  margin-top: 10px;
}

.office-intro__button {
  margin-top: 30px;
}

.office-intro__catch {
  margin-top: 100px;
  font-size: 30px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
  color: white;
}

.work-step {
  padding-block: 100px;
}

.work-step__inner {
  max-width: 1030px;
  margin-inline: auto;
}

.work-step__buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.work-step__title {
  text-align: center;
  font-size: 40px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #515151;
}

.work-step__lists {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

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

.work-step__number {
  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;
  width: 50px;
  height: 50px;
  background-color: #515151;
  color: white;
  font-weight: 600;
}

.work-step__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.work-step__head {
  font-size: 20px;
  font-weight: 500;
  color: #515151;
}

.work-step__text {
  margin-top: 10px;
}

.work-step__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 30%;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.strong {
  padding-bottom: 0px;
}

.strong__title {
  text-align: center;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: min(3.1496062992vw, 60px);
  color: #515151;
  letter-spacing: 2px;
}

.strong__items {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.strong__item {
  width: 100%;
  text-align: center;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: white;
  padding: 15px;
}
.strong__item span {
  font-size: 25px;
  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;
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  padding-block: 60px;
}

.is-one {
  background-color: #222;
}

.is-two {
  background-color: #515151;
}

.is-three {
  background-color: #888;
}

.strong__h3-title {
  text-align: center;
  font-size: 40px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-top: 80px;
}

.strong__text {
  margin-top: 30px;
  text-align: center;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 22px;
}
.office-intro .strong__text {
  color: white;
}

/* =====================================================
# user
===================================================== */
.user {
  overflow: hidden;
  background-image: linear-gradient(-45deg, #f6f6f6, #fff, #f8f6ee);
}

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

.user__item {
  background: #f1f1f1;
}

.is-type2 {
  background: #e6e6e6;
}

.user__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;
}
.is-type2 .user__media {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.user__map {
  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;
  background-color: #f7f8f9;
}

.user__btn-wrap {
  margin-top: 30px;
}

.user__btn {
  display: inline-block;
  width: 200px;
  font-weight: 500;
  color: #515151;
  border-bottom: 2px solid #515151;
  padding-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.user__btn::after {
  content: "";
  position: absolute;
  top: 41.5%;
  right: 0;
  font-weight: 600;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../img/common/icon_office.webp) center center/contain no-repeat;
}

.user__image {
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #aaa;
}

.user__body {
  padding: 40px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 1;
}
.user__body h3 {
  font-size: 25px;
  color: #515151;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}
.user__body .user_text {
  display: block;
  margin-top: 20px;
}
.user__body .user__meta {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

/* =====================================================
# contact
===================================================== */
.contact {
  background-color: #f6f6f6;
  padding-block: 100px;
}

.tel-fax {
  max-width: 980px;
  margin-inline: auto;
}
.tel-fax__content {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #515151;
}
.tel-fax__box {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}
.tel-fax__box.is-fax {
  border-left: 1px solid #ccc;
}
.tel-fax__line {
  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;
  padding-bottom: 20px;
}
.tel-fax .tel__img img {
  width: min(2.624671916vw, 50px);
  padding-top: 3px;
  vertical-align: middle;
}
.tel-fax .tel-number {
  font-size: min(2.624671916vw, 50px);
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-left: 12px;
  color: #515151;
}

/* =====================================================
# table
===================================================== */
.horizontal-table {
  padding-top: 25px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #f6f6f6;
  padding: 15px;
  border-bottom: 1px solid #515151;
  font-weight: 600;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #515151;
}
.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 4.1994750656vw;
}
.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);
}
._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;
}

/* 共通パーツ
----------------------------------------------------- */
.bg-image {
  background: url(../img/common/page-bg.webp) top center repeat;
}

.top-h2 {
  border-bottom: 3px solid #515151;
  padding-bottom: 20px;
}
.top-h2__title {
  font-family: "Bellefair", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  text-transform: uppercase;
  font-size: min(3.937007874vw, 75px);
  line-height: 1.18;
  letter-spacing: 2.5px;
}
.top-product .top-h2__title {
  color: white;
}
.top-h2__description {
  margin-top: 3px;
  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: min(1.5748031496vw, 30px);
  letter-spacing: 2.5px;
  font-family: "Zen Old Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.top-product .top-h2__description {
  color: white;
}
.top-h2__description.is-topAbout {
  font-size: min(2.0997375328vw, 40px);
  margin-top: 0px;
}

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

.text-blue {
  color: #ccc;
}

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

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

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

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

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

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

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

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

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

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* =====================================================
# particles.js
===================================================== */
/*コンテンツを囲むラッパー要素*/
.wrap {
  width: 100%;
  height: 100%;
  position: relative; /*基準要素、子の基準となる*/
}

/*アニメーション描画用*/
canvas {
  position: absolute; /*親のブロックを基準にして相対位置に配置する*/
  /*位置指定*/
  top: 0;
  right: 0;
  z-index: 1; /*重ね順を-1に　※1以上だとほかのコンテンツの上に被さってしまいます*/
}

/* 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: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  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: #515151;
}

.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 (min-width: 768px) {
  #page_top a:focus, #page_top a:hover {
    opacity: 0.6;
  }
  .top-header-logo-area__logo:focus, .top-header-logo-area__logo:hover,
  .header-logo-area__logo:focus,
  .header-logo-area__logo:hover {
    opacity: 0.6;
  }
  .top-header-nav__link:hover,
  .header-nav__link:hover {
    color: #ccc;
  }
  .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 {
    border: 1px solid #515151;
    color: #515151;
    background-color: white;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .btn:hover::before {
    background-color: #515151;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .btn:hover::after {
    border-right: 1px solid #515151;
    border-top: 1px solid #515151;
    -webkit-transition: border-right 0.3s ease;
    transition: border-right 0.3s ease;
  }
  .btn._top-business:focus, .btn._top-business:hover {
    background-color: #222;
  }
  .btn._recruit:focus, .btn._recruit:hover {
    background-color: #f3eee0;
  }
  .top-product .btn:focus, .top-product .btn:hover {
    background-color: #ccc;
  }
  .top-product__item:focus, .top-product__item:hover {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  .top-info__category:focus, .top-info__category:hover {
    background-color: #ccc;
  }
  .item__media:focus, .item__media:hover {
    opacity: 0.6;
  }
  .history__btn:focus, .history__btn:hover {
    background: #515151;
    color: #fff;
  }
  .history__btn:focus:after, .history__btn:hover:after {
    border-color: #fff;
  }
  .category-card:focus, .category-card:hover {
    opacity: 0.6;
  }
  .company__link:focus, .company__link:hover {
    opacity: 0.6;
    text-decoration: none;
  }
  .works__attention {
    display: none;
  }
  .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;
  }
  .user__btn:focus, .user__btn:hover {
    -webkit-transform: translateX(12px);
            transform: translateX(12px);
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-block: 50px;
  }
  .heading__ja {
    font-size: 24px;
  }
  .heading__en {
    font-size: 12px;
  }
  .heading-h3__en {
    font-size: 27px;
  }
  .heading-h3__ja {
    font-size: 16px;
    padding-left: 0px;
  }
  .top-header-logo-area__logo--img,
  .header-logo-area__logo--img {
    width: 240px;
  }
  .footer__logo {
    width: 85%;
  }
  .fv-wrapper {
    height: 50vh;
  }
  .fv-slide img {
    height: 60vh;
    -o-object-position: 78% 0%;
       object-position: 78% 0%;
  }
  .mv-jumbotron__inner-wrapper {
    width: 100%;
  }
  .mv .mv-h2 {
    font-size: 25px;
  }
  .mv .mv-h2::before {
    font-size: 40px;
    top: 25px;
  }
  .btn.is-topAbout {
    width: 200px;
  }
  .btn._top-business {
    width: 200px;
  }
  .btn._company {
    width: 200px;
    font-size: 16px;
  }
  .top-product__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-product__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-product__column-outside-right {
    width: 100%;
    margin-right: 0;
  }
  .top-product__content {
    margin-right: 0px;
  }
  .top-product__button {
    margin-top: 35px;
    text-align: center;
  }
  .top-product__item {
    width: 100%;
  }
  .top-product__title {
    font-size: 16px;
  }
  .top-office__media {
    width: 100%;
  }
  .top-office__media.is-type1 {
    margin-top: 0px;
  }
  .top-office__media-title {
    font-size: 20px;
  }
  .top-office__lists-button {
    margin-top: 60px;
  }
  .top-recruit__media {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 30px 15px;
  }
  .top-recruit__image {
    width: 100%;
  }
  .top-recruit__body {
    width: 100%;
  }
  .top-recruit__button {
    text-align: center;
    margin-top: 30px;
  }
  .top-info__categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .top-info__category {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .recruit-merit {
    padding-block: 60px;
  }
  .recruit-merit__items {
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .recruit-merit__item {
    width: 100%;
  }
  .recruit-merit__title {
    font-size: 16px;
  }
  .voice__content {
    gap: 50px;
    padding: 40px 15px;
  }
  .voice__image img {
    width: 100%;
  }
  .voice__lists {
    gap: 0px;
  }
  .voice__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .voice__dt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .business__title {
    font-size: 20px;
  }
  .business__title::before {
    font-size: 17px;
  }
  .business__intro-wrap {
    padding-block: 50px;
    padding-inline: 0px;
  }
  .item-system__title {
    font-size: 21px;
  }
  .item__title {
    font-size: 16px;
  }
  .detail {
    padding-block: 50px;
  }
  .detail__service {
    margin-top: 70px;
  }
  .detail__head {
    margin-top: 50px;
  }
  .detail__media {
    margin-top: 30px;
  }
  .detail__service-images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detail__service-image {
    width: 100%;
  }
  .detail__item-title {
    font-size: 20px;
  }
  .detail__title {
    font-size: 20px;
  }
  .detail__text-box {
    margin-top: 30px;
  }
  .detail__history-back {
    padding-top: 50px;
  }
  .company-map {
    padding-block: 50px;
  }
  .company__button {
    margin-top: 40px;
  }
  .profile {
    padding-block: 60px;
  }
  .profile__box {
    padding: 30px 15px;
  }
  .greeting {
    padding-block: 50px;
  }
  .greeting__image {
    text-align: center;
  }
  .greeting__image img {
    width: 100%;
  }
  .greeting__text {
    margin-top: 10px;
    padding-top: 20px;
  }
  .works__attention {
    margin-top: 12px;
    text-align: center;
    color: #888;
  }
  .qualification .horizontal-table__header {
    width: 100%;
  }
  .mail-form {
    padding-block: 50px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__title .fa-envelope {
    font-size: 19px;
  }
  .mail-form__text {
    margin-top: 40px;
  }
  .mail-form .form-input {
    width: 100%;
  }
  .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%;
  }
  .business__title {
    font-size: 20px;
  }
  .business__title::before {
    font-size: 16px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .office-intro__items {
    margin-top: 40px;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
  .office-intro__xl-image {
    margin-top: 40px;
  }
  .work-step {
    padding-block: 60px;
  }
  .work-step__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work-step__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .work-step__number {
    width: 40px;
    height: 40px;
  }
  .work-step__head {
    font-size: 18px;
  }
  .strong__items {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 50px;
  }
  .user__body .user__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact {
    padding-block: 50px;
  }
  .tel-fax__content {
    border-bottom-width: 0;
    margin-top: 60px;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  .tel-fax__box.is-fax {
    border-left-width: 0;
  }
  .tel-fax__line {
    padding: 5px;
    background-color: #f6f6f6;
  }
  .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;
  }
  .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 (max-width: 1199px) {
  .top-header__inner,
  .header__inner {
    height: 80px;
  }
  .top-header__right-area,
  .header__right-area {
    display: none;
  }
  .top-header-nav-area,
  .header-nav-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;
    padding-top: 10px;
  }
  .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;
  }
  .footer__button {
    margin-top: 40px;
  }
  .fv {
    margin-top: 80px;
  }
  .fv .ja-title {
    font-size: 4.1701417848vw;
  }
  .fv__catch {
    padding-block: 3.3361134279vw;
    width: 80%;
  }
  .fv-swiper img {
    height: auto;
  }
  .mv {
    padding-top: 80px;
  }
  .mv-jumbotron {
    height: 255px;
  }
  .top-product {
    padding-block: 100px;
  }
  .top-product__text {
    width: 100%;
    font-size: 16px;
  }
  .top-office {
    padding-block: 100px;
  }
  .top-office__medias {
    margin-top: 50px;
  }
  .top-office__image {
    position: unset;
  }
  .top-about {
    padding-block: 100px;
  }
  .top-about__text {
    font-size: 16px;
  }
  .recruit-h2__title {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-size: 31px;
  }
  .business__subtitle {
    font-size: 2.5020850709vw;
  }
  .category-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .greeting__content {
    gap: 4.1701417848vw;
  }
  .business__subtitle {
    font-size: 2.5020850709vw;
  }
  .office-intro__h3-title {
    font-size: 30px;
  }
  .office-intro__body {
    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;
  }
  .office-intro__catch {
    font-size: 2.2518765638vw;
  }
  .work-step__title {
    font-size: 30px;
  }
  .strong__title {
    font-size: 50px;
  }
  .strong__item span {
    font-size: 20px;
  }
  .strong__h3-title {
    font-size: 30px;
  }
  .strong__text {
    font-size: 20px;
  }
  .user__body h3 {
    font-size: 21px;
  }
  .tel-fax .tel__img img {
    width: 35px;
  }
  .tel-fax .tel-number {
    font-size: 35px;
  }
  .column .text-box {
    padding: 30px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
  .top-h2__title {
    font-size: 45px;
  }
  .top-h2__description {
    font-size: 20px;
  }
  .top-h2__description.is-topAbout {
    font-size: 24px;
  }
}

@media screen and (max-width: 1023px) {
  .footer .address-area .tel {
    margin-top: 20px;
  }
  .top-product__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-office__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-merit__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .voice__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .voice__image {
    text-align: center;
  }
  .recruit__description {
    display: block;
    font-size: 18px;
  }
  .item__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .detail__map {
    width: 100%;
  }
  .company-map__inner iframe {
    height: 300px;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table__inner {
    font-size: 16px;
  }
  .mail-form .horizontal-table__header {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table__text {
    border-bottom-width: 0;
    border-right: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .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;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .working__tel .head {
    display: block;
  }
  .working__tel .call {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0px;
  }
  .office-intro__xl-image img {
    width: 100%;
  }
  .work-step__lists {
    gap: 40px;
  }
  .user__content {
    gap: 50px;
  }
  .user__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .is-type2 .user__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .user__map {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .user__image {
    width: 100%;
  }
  .user__body {
    padding: 30px 15px;
  }
  .user__body h3 {
    font-size: 19px;
  }
  .sp-none {
    display: none;
  }
}

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

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .fv .ja-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
  .fv__catch {
    width: 94%;
    padding: 20px;
  }
  .fv-swiper img {
    height: 50vh;
  }
  .mv-jumbotron {
    height: 160px;
  }
  .top-product {
    padding-block: 60px;
  }
  .top-office {
    padding-block: 60px;
  }
  .top-office__medias {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .top-about {
    padding-block: 60px;
  }
  .top-recruit {
    padding-block: 60px;
  }
  .business__subtitle {
    font-size: 20px;
  }
  .greeting__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
  .business__subtitle {
    font-size: 20px;
  }
  .office-intro__h3-title {
    font-size: 20px;
  }
  .office-intro__catch {
    margin-top: 40px;
    font-size: 16px;
  }
  .work-step__title {
    background-color: #f6f6f6;
    padding-block: 8px;
    font-size: 21px;
  }
  .strong__title {
    font-size: 28px;
  }
  .strong__h3-title {
    font-size: 20px;
    margin-top: 50px;
  }
  .tel-fax .tel__img img {
    width: 30px;
  }
  .tel-fax .tel-number {
    font-size: 25px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
  .top-h2__description.is-topAbout {
    letter-spacing: 1px;
    font-size: 20px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) and (max-width: 360px) {
  .fv .ja-title {
    font-size: 16px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-product__items {
    grid-template-columns: 1fr;
  }
  .voice__media {
    padding-bottom: 40px;
    gap: 20px;
  }
  .item__items {
    grid-template-columns: 1fr;
    padding-top: 50px;
    gap: 50px;
  }
  .company-map__inner iframe {
    height: 250px;
  }
  .work-step__lists {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .top-office__image {
    width: 100%;
  }
  .recruit-h2__title {
    font-size: 25px;
    letter-spacing: 0;
  }
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .strong__item span {
    font-size: 16px;
  }
  .strong__text {
    font-size: 16px;
  }
  .column .text-box {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .category-cards {
    gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
  .strong__text {
    margin-top: 20px;
  }
  .column .text-box {
    padding: 0 0 20px;
  }
}
/*# sourceMappingURL=style.css.map */