@charset "UTF-8";
#js-pagetop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 40;
  background: #61554b;
  color: #fff;
  border: 1px solid #fff;
  display: block;
  font-size: 16px;
  line-height: 78px;
  text-align: center;
  text-decoration: none;
  width: 80px;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

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

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

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

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

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

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

/* =====================================
/* header
---------------------------- */
#header {
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  background-color: #fdfdfd;
  max-width: 2000px;
  margin-inline: auto;
}

.header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-inline: 0.9375rem;
  max-width: 1458px;
  margin-inline: auto;
  height: 150px;
}

.header__left {
  display: contents;
}

.header__right {
  display: none;
}
.header__logo a img {
  width: 164px;
  display: block;
}

.header__nav {
  background-color: #fdf7e3;
}

.header__lists {
  height: 100px;
  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;
  max-width: 850px;
  margin-inline: auto;
}

.header__link {
  display: block;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.6px;
  position: relative;
}
.header__link.is-active {
  /* 下線のスタイル */
}
.header__link.is-active::after {
  background-color: #fe7981;
  bottom: -4px;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  width: 100%;
}

.header__tel {
  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: 0.25rem;
  position: relative;
}
.header__tel::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -49px;
  top: 0;
  width: 2.6875rem;
  height: 3.0625rem;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
}

.header__hour {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.45px;
}

.header__number {
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2.16px;
  line-height: 1;
}
.header__number .small-text {
  display: none;
}

.header__button {
  display: inline-block;
  width: 275px;
  font-size: 24px;
  font-weight: 500;
  line-height: 76px;
  height: 79px;
  background-color: #fe7981;
  padding-inline: 48px 24px;
  letter-spacing: 0.6px;
  color: #fff;
  border-radius: 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.header__button::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 1.5rem;
  background: url(../img/common/mail-icon.webp) center center/contain no-repeat;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

/* =====================================================
# footer
===================================================== */
.footer {
  position: relative;
  background-color: #61554b;
  color: white;
}
.footer__inner {
  max-width: 1295px;
  margin-inline: auto;
  padding-inline: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 98px 50px;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .address-area__text {
  margin-top: 1.9375rem;
  font-size: 24px;
  line-height: 1.38;
  letter-spacing: 0.6px;
}
.footer .copyright {
  background-color: #61554b;
  color: #efefef;
  padding-block: 1.5rem 4.0625rem;
  letter-spacing: 0.4px;
  text-align: center;
}

.footer__title {
  font-size: 24px;
  line-height: 1.38;
  letter-spacing: 0.6px;
}

.footer__nav {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__lists {
  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;
  position: relative;
  width: 100%;
  gap: 0.625rem;
}

.footer__list:nth-child(1) {
  width: 28%;
}
.footer__list:nth-child(2) {
  width: 28%;
}

.footer__link,
.footer__sub-link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 24px;
  line-height: 1.38;
  letter-spacing: 0.6px;
}
.footer__link.is-active,
.footer__sub-link.is-active {
  background: #fe7981;
}
.footer__link .fa-solid,
.footer__sub-link .fa-solid {
  color: #fe7981;
}

.footer__sub-list {
  margin-top: 2.0625rem;
  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: 2.0625rem;
}

.footer__sub-link {
  position: relative;
  padding-left: 1.5625rem;
}
.footer__sub-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 1.3125rem;
  height: 0.25rem;
  background-color: #fe7981;
}

.over-wrap {
  overflow: hidden;
}

/* =====================================================
# メインヴィジュアル
===================================================== */
.fv {
  position: relative;
  z-index: 1;
}

.fv__slide {
  position: relative;
  width: 100%;
  height: 64.625rem;
}

.fv__slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/fv-bg.webp);
}

.fv__blue-deco {
  position: absolute;
  bottom: -14%;
  right: -1.5%;
  z-index: 1;
}
.fv__blue-deco img {
  width: min(20.3149606299vw, 387px);
}

.fv__title-box {
  position: absolute;
  top: 21.5%;
  left: 18%;
  text-align: center;
}

.fv__title img {
  width: min(32.0734908136vw, 611px);
}

.fv__catch {
  margin-top: 3rem;
}
.fv__catch img {
  width: min(30.2887139108vw, 577px);
}

.fv__image {
  position: absolute;
  top: 32%;
  right: 8%;
  z-index: 2;
}
.fv__image img {
  width: min(44.2519685039vw, 843px);
}

.fv__scroll {
  position: absolute;
  top: 58%;
  left: 35%;
  z-index: 3;
}
.fv__scroll img {
  width: min(13.280839895vw, 253px);
}

.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 {
  position: relative;
  overflow: hidden;
}
.mv__image {
  position: absolute;
  bottom: 0;
  right: 1%;
}
.mv__image img {
  height: 280px;
  width: auto;
}
.mv-jumbotron {
  background-color: #fdfdfd;
  background-size: cover;
  background-position: center center;
  height: 300px;
  position: relative;
  z-index: 1;
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  padding-inline: 15px;
}
.mv-jumbotron__inner-wrapper {
  position: absolute;
  top: 50%;
  left: 2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
.mv .mv-h2 {
  display: inline-block;
  font-size: 50px;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
  display: inline-block;
}
.mv .mv-h2::before {
  content: attr(data-en);
  font-weight: 500;
  position: absolute;
  top: 70px;
  left: 0%;
  font-size: 1.5625rem;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  color: #fe7981;
}

.h2 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  display: inline-block;
  line-height: 1.5;
  background: linear-gradient(135deg, #c0d3bd 10%, #fe7981 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2 span {
  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: 21px;
  color: #61554b;
}
.h2 span::after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  width: 80px;
  height: 2px;
  background: #c0d3bd;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  margin-top: -5.3125rem;
  position: relative;
}

.top-about__inner {
  position: relative;
  width: 100%;
  height: 37.125rem;
}
.top-about__bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/top-about-bg.webp);
}

.top-about__decoration {
  position: absolute;
  bottom: -10.5%;
  right: 1%;
  z-index: 10;
}
.top-about__decoration img {
  width: min(26.1942257218vw, 499px);
  height: auto;
}

.top-about__content {
  position: absolute;
  top: 50%;
  left: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.9375rem;
  width: 100%;
  max-width: 1150px;
}

.top-about__head {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  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: 6.0625rem;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-about__h2 {
  position: relative;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 1.2px;
}
.top-about__h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: -1;
  left: -110px;
  top: -160px;
  width: 17.875rem;
  height: 17.5rem;
  width: 17.875rem;
  height: 17.5rem;
  background: url(../img/common/top-about-treat.webp) center center/contain no-repeat;
}

.top-about__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 50px 57px 46px 26px;
  background-color: #fff;
  border-bottom-left-radius: 60px;
  border-top-right-radius: 60px;
}

.top-about__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 1.08px;
  color: #6e6e6e;
  text-align: justify;
}

/* =====================================================
# top-service
===================================================== */
.top-service {
  position: relative;
  padding-block: 4.875rem 8.75rem;
  background: url(../img/common/top-service-bg.webp) center center/cover no-repeat;
  z-index: 2;
}

.top-service__inner {
  max-width: calc(1470px + 1.875rem);
  padding-inline: 0.9375rem;
  margin-inline: auto;
}

.top-service__head {
  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: 1.25rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.top-service__h2 {
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.2px;
}

.top-service__en {
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
  color: #fe7981;
}

.top-service__content {
  margin-top: 5.8125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.4375rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-service__button {
  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: 3.125rem;
}

.top-service__image {
  position: relative;
}

.top-service__text {
  position: absolute;
  bottom: 9%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}

/* =====================================================
# top-recruit
===================================================== */
.top-recruit {
  position: relative;
  z-index: 1;
  margin-top: -5rem;
  overflow: hidden;
}

.top-recruit__slide {
  position: relative;
  width: 100%;
  height: 59.375rem;
}

.top-recruit__slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/top-recruit-bg.webp);
}

.top-recruit__content-image {
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1241px;
}
.top-recruit__content-image::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: -70px;
  top: -18px;
  width: 26.375rem;
  height: 22.625rem;
  background: url(../img/common/top-recruit-illust1.webp) center center/contain no-repeat;
}
.top-recruit__content-image::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 300px;
  bottom: 30px;
  width: 19.3125rem;
  height: 18.9375rem;
  background: url(../img/common/top-recruit-illust2.webp) center center/contain no-repeat;
}

.top-recruit__left {
  width: 50%;
}

.top-recruit__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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 54%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1241px;
}
.top-recruit__content::before {
  content: "";
  display: inline-block;
  position: absolute;
  right: -70px;
  top: -170px;
  width: 15.25rem;
  height: 15rem;
  background: url(../img/common/top-recruit-treat.webp) center center/contain no-repeat;
}

.top-recruit__h2 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.2px;
}

.top-recruit__button {
  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: 3.75rem;
}

.top-recruit__text {
  margin-top: 3.125rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.75px;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  position: relative;
  margin-top: -7.125rem;
  background: url(../img/common/top-contact-bg.webp) center center/cover no-repeat;
  height: 69.8125rem;
  padding-block: 14.375rem 8.125rem;
  overflow: hidden;
}
.top-contact.is-page {
  margin-top: 0;
  padding-block: 100px 150px;
  height: auto;
}

.top-contact__inner {
  max-width: calc(1470px + 1.875rem);
  padding-inline: 0.9375rem;
  margin-inline: auto;
}

.top-contact__heading {
  text-align: center;
  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: 1.25rem;
  position: relative;
}
.top-contact__heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 19.875rem;
  height: 0.9375rem;
  background: url(../img/common/dotline.webp) center center/contain no-repeat;
}

.top-contact__en {
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.75px;
  color: #fe7981;
}

.top-contact__ja {
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 0.69;
  letter-spacing: 1.2px;
}

.top-contact__content {
  margin-top: 4.0625rem;
  padding: 48px 67px 26px;
  border-radius: 50px;
  background-color: #fff;
  position: relative;
}

.top-contact__reaf1 {
  position: absolute;
  bottom: -22px;
  left: -33px;
}

.top-contact__reaf2 {
  position: absolute;
  top: -25px;
  right: -10px;
}

.top-contact__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 7.5rem;
  -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-contact__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-contact__title {
  text-align: center;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 36px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.92;
  letter-spacing: 0.9px;
  position: relative;
}
.top-contact__title::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 9.6875rem;
  height: 0.375rem;
  background: url(../img/common/pinkline1.webp) center center/contain no-repeat;
}
.top-contact__title.is-type2::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 14.375rem;
  height: 0.375rem;
  background: url(../img/common/pinkline2.webp) center center/contain no-repeat;
}

.top-contact__number {
  margin-top: 3.75rem;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: min(3.7795275591vw, 72px);
  font-weight: bold;
  line-height: 0.46;
  letter-spacing: 3.24px;
  padding-left: min(4.9868766404vw, 95px);
  position: relative;
}
.top-contact__number::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(4.3569553806vw, 83px);
  height: min(4.3569553806vw, 83px);
  background: url(../img/common/top-contact-tel-icon.webp) center center/contain no-repeat;
}

.top-contact__label {
  margin-top: 3.75rem;
  text-align: center;
}

.top-contact__hour {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 24px;
  background-color: #61554b;
  color: #fff;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 24px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.6px;
}

.top-contact__catch {
  text-align: center;
}
.top-contact__catch span {
  display: inline-block;
  margin-top: 4.625rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.69;
  letter-spacing: 2.16px;
  padding-inline: 4.6875rem;
  position: relative;
}
.top-contact__catch span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 0%;
  width: min(3.0971128609vw, 59px);
  height: min(3.1496062992vw, 60px);
  background: url(../img/common/popline-left.webp) center center/contain no-repeat;
}
.top-contact__catch span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -3px;
  right: 0%;
  width: min(3.0971128609vw, 59px);
  height: min(3.1496062992vw, 60px);
  background: url(../img/common/popline-right.webp) center center/contain no-repeat;
}

.top-contact__btn {
  margin-top: 1.625rem;
  text-align: center;
  position: relative;
}
.top-contact__btn::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0%;
  right: -6.5%;
  width: 19.8125rem;
  height: 23.5rem;
  background: url(../img/common/top-contact-illust.webp) center center/contain no-repeat;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.top-contact__btn a {
  display: inline-block;
  width: 972px;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2.16px;
  background-color: #fe7981;
  padding-block: 40px;
  padding-left: 4.0625rem;
  color: #fff;
  border-radius: 28px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.top-contact__btn a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 65px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6.1875rem;
  height: 4.625rem;
  background: url(../img/common/top-contact-mail-icon.webp) center center/contain no-repeat;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

/* =====================================================
# recruit
===================================================== */
.recruit {
  padding-block: 6.25rem;
  background-color: #fdece3;
}

.recruit-profile {
  padding-block: 6.25rem;
  background-color: #fafafa;
}
.recruit-profile .horizontal-table {
  margin-top: 3.125rem;
  background-color: #fff;
  border-radius: 10px;
  padding: 3.125rem;
}
.recruit-profile .horizontal-table__header {
  background-color: #fdf7e3;
}

/* =====================================================
# service
===================================================== */
.recruit-service {
  padding-block: 6.25rem;
  background-color: #fdfdfd;
}

.recruit-service__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: 6.25rem;
}

.recruit-service__lists {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(2.624671916vw, 50px);
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.service2 .is-type2 .recruit-service__lists {
  gap: 1.5625rem;
}

.recruit-service__list {
  width: 200px;
  height: 12.5rem;
  background: #dcf2da;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.is-type1 .recruit-service__list {
  width: 262px;
  height: 12.5rem;
}
.is-type2 .recruit-service__list {
  background: #fdece3;
}
.service2 .is-type2 .recruit-service__list {
  width: 220px;
  height: 11.25rem;
}
.recruit-service__list .recruit-service__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  background-color: #fe7981;
  border-radius: 20px;
  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;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
}

.recruit-service__body {
  width: 181px;
  height: 10.625rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 30%;
  gap: 0.75rem;
}
.is-type1 .recruit-service__body {
  width: 240px;
  height: 11.25rem;
  background-color: #fff;
  border-radius: 15px;
}
.service2 .is-type2 .recruit-service__body {
  background-color: #fff;
  border-radius: 15px;
  height: 10rem;
  width: 200px;
}

.recruit-service__image {
  text-align: center;
}
.recruit-service__image img {
  width: 75px;
}

.recruit-service__title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
.recruit-service__title.underline {
  position: relative;
}
.recruit-service__title.underline::before {
  content: "";
  display: inline-block;
  width: 150px;
  height: 5px;
  background-color: #fdece3;
  position: absolute;
  bottom: -5px;
  left: 0%;
}

.recruit-service__list-text {
  display: block;
  text-align: center;
  font-weight: bold;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

/* =====================================================
# company
===================================================== */
.vision {
  padding-block: 6.25rem;
}

.company-map__inner iframe {
  margin-top: 3.75rem;
  width: 100%;
}

.company-map {
  background-color: #fdfdfd;
}

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

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

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

.attention {
  max-width: 56.25rem;
  padding-inline: 0.9375rem;
  margin-inline: auto;
  margin-top: 6.25rem;
}

.attention__text {
  text-align: center;
  border: 1px solid #c0d3bd;
  padding: 0.625rem 1.25rem;
  color: #c0d3bd;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
}

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

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

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

.tel-fax {
  background-color: #fdece3;
  padding-block: 98px;
}
.tel-fax__inner {
  max-width: 1100px;
  padding-inline: 0.9375rem;
  margin-inline: auto;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tel-fax__box {
  width: 100%;
  background: #fe7981;
  margin-inline: auto;
  padding: 35px 10px;
  border-radius: 0.625rem;
  text-align: center;
}
.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;
}
.tel-fax__title {
  font-size: 1.3125rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.8125rem;
  letter-spacing: 0.1em;
}
.tel-fax__text {
  margin-top: 0.625rem;
  color: #fff;
  font-size: 0.9375rem;
}
.tel-fax .tel__img img {
  width: 2.5rem;
}
.tel-fax .tel-number {
  font-size: 40px;
  font-weight: 600;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  line-height: 1;
  padding-left: 15px;
}

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

.detail__category-title {
  margin-top: 0.625rem;
}

.detail__date {
  display: block;
  margin-top: 3.75rem;
}

.detail__title {
  margin-top: 0.625rem;
  font-size: 1.875rem;
}

.detail__text {
  margin-top: 1.875rem;
  overflow-wrap: break-word;
}

.detail__slider {
  margin-block: 3.125rem;
}

/* 共通パーツ
----------------------------------------------------- */
.media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.125rem;
  background-color: #fff;
  border-radius: 20px;
  padding: 3.125rem min(6.25rem, 100px);
  margin-top: 3.125rem;
}

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

.media__title {
  position: relative;
  font-size: 1.375rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  color: #333;
  text-align: left;
}

.media__text {
  font-size: 1.25rem;
  text-align: justify;
}
.is-service .media__text {
  font-size: 1rem;
  margin-top: 1.25rem;
}
.service2 .media__text {
  font-size: 1.25rem;
  line-height: 1.8;
}

.media__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 35%;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
  text-align: center;
}
.is-service .media__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40%;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}
.media__image img {
  display: inline-block;
  width: 11.875rem;
}
.is-service .media__image img {
  width: 100%;
  max-width: 15.625rem;
}

.roboto {
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}

.font-size21 {
  font-size: 1.3125rem;
  vertical-align: -1px;
}

.heading {
  text-align: center;
  font-size: 2rem;
  font-family: "M PLUS Rounded 1c", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  position: relative;
  padding-left: 4.375rem;
}
.heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 3.125rem;
  height: 4.1875rem;
  background: url(../img/common/right-reaf.webp) center center/contain no-repeat;
}
.heading::after {
  content: attr(data-en);
  font-weight: 500;
  font-family: "Roboto", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  position: absolute;
  top: 45px;
  left: 4.375rem;
  font-size: 1.125rem;
  color: #fe7981;
  -webkit-text-fill-color: initial;
  background: none;
}

.button {
  display: inline-block;
  width: 350px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2.04px;
  line-height: 95px;
  height: 95px;
  background-color: #61554b;
  padding-inline: 66px 41px;
  color: #fff;
  border-radius: 19px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.button::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 33px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../img/common/arrow-btn.webp) center center/contain no-repeat;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.button.is-top-recruit {
  padding-inline: 42px 41px;
}

.recruit__button-wrap {
  margin-top: 3.125rem;
  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;
  gap: 1.25rem;
}
.recruit__button-wrap .twitter_x {
  vertical-align: middle;
  width: 1.125rem;
  margin-right: 0.625rem;
}

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

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

.text-red {
  color: #dd2222;
}

#mail-form {
  margin-top: -100px;
  padding-top: 100px;
}

.header__insta {
  display: block;
  margin-right: 1.875rem;
}

/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

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;
  letter-spacing: 0.05em;
  color: #61554b;
}

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

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

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

.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: #c0d3bd;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  #js-pagetop {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    line-height: 47px;
  }
  .fv__slide {
    height: 37.5rem;
  }
  .mv__image {
    bottom: 0%;
    right: 1.5%;
  }
  .mv__image img {
    height: 100px;
  }
  .mv-jumbotron {
    height: 140px;
  }
  .mv-jumbotron__inner-wrapper {
    left: 3%;
    padding: 0.9375rem 0 1.875rem;
    font-size: 2.5rem;
    width: 100%;
  }
  .mv .mv-h2 {
    top: -10px;
    font-size: 25px;
  }
  .mv .mv-h2::before {
    font-size: 15px;
    font-weight: normal;
    top: 100%;
    width: 100%;
  }
  .h2 span {
    font-size: 1rem;
  }
  .h2 span::after {
    width: 1.5625rem;
    margin-right: 10px;
  }
  .top-about__head {
    gap: 1.875rem;
  }
  .top-about__h2 {
    font-size: 1.875rem;
  }
  .top-service__head {
    gap: 0.625rem;
  }
  .top-service__h2 {
    font-size: 1.875rem;
  }
  .top-service__en {
    font-size: 1.5rem;
  }
  .top-service__content {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }
  .top-recruit__content-image {
    top: 60%;
    width: 180%;
  }
  .top-recruit__body {
    margin-top: 5rem;
  }
  .top-recruit__h2 {
    font-size: 1.875rem;
  }
  .top-contact {
    padding-block: 10rem;
    height: 62.5rem;
  }
  .top-contact.is-page {
    padding-top: 60px;
  }
  .top-contact__heading::before {
    width: 10rem;
    height: 0.5rem;
    bottom: -20px;
  }
  .top-contact__en {
    font-size: 1.25rem;
  }
  .top-contact__ja {
    font-size: 1.875rem;
  }
  .top-contact__content {
    margin-top: 3.125rem;
    padding: 40px 10px;
  }
  .top-contact__reaf2 img {
    width: 3.75rem;
  }
  .top-contact__title {
    font-size: 1.875rem;
  }
  .top-contact__title::before {
    width: 7.5rem;
  }
  .top-contact__title.is-type2::before {
    width: 11.25rem;
  }
  .top-contact__number {
    margin-top: 2.5rem;
    font-size: 1.875rem;
    padding-left: 2.5rem;
    letter-spacing: 1px;
  }
  .top-contact__number::before {
    width: 2.0625rem;
    height: 2.0625rem;
  }
  .top-contact__label {
    margin-top: 3.125rem;
  }
  .top-contact__hour {
    font-size: 1rem;
  }
  .top-contact__catch span::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .top-contact__catch span::after {
    width: 1.25rem;
    height: 1.25rem;
  }
  .recruit {
    padding-block: 3.125rem;
  }
  .recruit-profile {
    padding-block: 3.125rem;
  }
  .recruit-profile .horizontal-table {
    background-color: transparent;
    margin-top: 1.5625rem;
    padding: 1.25rem 0;
  }
  .recruit-profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .recruit-service {
    padding-block: 3.125rem;
  }
  .recruit-service__content {
    gap: 3.125rem;
  }
  .vision {
    padding-block: 3.125rem;
  }
  .company-map__items {
    gap: 3.125rem;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table {
    margin-top: 2.8125rem;
    padding: 1.875rem 0.9375rem;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .attention {
    margin-top: 3.125rem;
  }
  .attention__text {
    font-size: 1.25rem;
  }
  .horizontal-table {
    padding-top: 1.25rem;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .tel-fax {
    padding-block: 50px;
  }
  .tel-fax .heading {
    font-size: 1.125rem;
    padding-left: 3.125rem;
  }
  .tel-fax__box {
    padding: 25px 10px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__title {
    font-size: 1rem;
  }
  .tel-fax__text {
    margin-top: 0rem;
  }
  .mail-form {
    padding-block: 30px;
  }
  .mail-form .heading {
    font-size: 1rem;
    padding-left: 3.125rem;
    line-height: normal;
    font-weight: 600;
  }
  .mail-form .heading::after {
    top: 26px;
  }
  .mail-form__title {
    font-size: 1.125rem;
  }
  .mail-form__text {
    margin-top: 2.5rem;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
  .mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form input[type=radio] + span:before {
    top: 3px;
  }
  .mail-form input[type=radio]:checked + span:after {
    top: 6px;
  }
  .mail-form input[type=checkbox] + span:before {
    top: 0.3em;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .mail-form .fileUpload {
    font-size: 0.9em; /* 文字を小さくする */
    width: 90%; /* 幅を小さくする */
    display: inline-block; /* インラインブロックにして幅を適用 */
  }
  .detail__date {
    margin-top: 1.875rem;
  }
  .detail__title {
    font-size: 1.25rem;
  }
  .detail__slider {
    margin-block: 1.875rem;
  }
  .media__title {
    font-size: 1.125rem;
  }
  .media__text {
    font-size: 1rem;
  }
  .service2 .media__text {
    font-size: 1rem;
    line-height: normal;
  }
  .heading.is-recruit {
    font-size: 1.25rem;
  }
  .heading::before {
    width: 2.5rem;
    height: 3.125rem;
  }
  .heading::after {
    font-size: 0.9375rem;
    top: 35px;
    left: 3.125rem;
  }
  .button {
    padding-inline: 20px;
    font-size: 18px;
    line-height: 65px;
    height: 65px;
    width: 70%;
  }
  .button.is-top-recruit {
    padding-inline: 20px;
    width: 100%;
  }
  .recruit__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md-none {
    display: none;
  }
  .header__insta {
    margin-right: 0rem;
  }
  .header__insta img {
    width: 3.125rem;
    height: 3.125rem;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #js-pagetop:focus, #js-pagetop:hover {
    opacity: 0.6;
  }
  .footer__link:focus, .footer__link:hover,
  .footer__sub-link:focus,
  .footer__sub-link:hover {
    color: #fe7981;
  }
  .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;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  #header {
    position: fixed;
    z-index: 100;
    background-color: #fdf7e3;
  }
  .header__top {
    height: 80px;
    padding-inline: 0.9375rem;
  }
  .header__logo a img {
    width: 7.5rem;
  }
  .header__nav {
    background: #61554b;
    width: 270px;
    height: calc(100% - 80px);
    position: fixed;
    right: 0;
    top: 5rem;
    padding: 32px 0.9375rem;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    overflow-x: auto;
  }
  .header__nav.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.1875rem;
  }
  .header__link {
    display: inline-block;
    color: #fff;
    font-size: 1.25rem;
  }
  .header__number {
    color: #fff;
    font-size: 24px;
  }
  .header__number .small-text {
    display: inline-block;
    font-size: 1rem;
  }
  .header__button {
    padding-inline: 30px;
    font-size: 18px;
    line-height: 65px;
    height: 65px;
    width: 220px;
  }
  .header__button::after {
    right: 30px;
  }
  .drawer-icon {
    width: 40px;
    height: 18px;
    position: relative;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 0.5625rem;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-icon__bar {
    position: absolute;
    left: 0;
    width: 40px;
    height: 3px;
    background: #61554b;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer-icon__bar:nth-child(1) {
    top: 0;
  }
  .drawer-icon__bar:nth-child(2) {
    top: 8px;
  }
  .drawer-icon__bar:nth-child(3) {
    top: 16px;
  }
  .footer__inner {
    display: block;
    padding-block: 60px;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer__nav {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: unset;
  }
  .footer__lists {
    margin-top: 2.8125rem;
    -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;
    gap: 2.0625rem;
    text-align: center;
  }
  .footer__list:nth-child(1) {
    width: 100%;
  }
  .footer__list:nth-child(2) {
    width: 100%;
  }
  .footer__link,
  .footer__sub-link {
    text-align: center;
    height: auto;
    line-height: 1.6;
  }
  .footer__sub-link::before {
    display: none;
  }
  .fv__blue-deco img {
    width: 25.0208507089vw;
  }
  .fv__title-box {
    top: 15.5%;
    left: 10.5%;
  }
  .fv__title img {
    width: 50.9591326105vw;
  }
  .fv__catch {
    margin-top: 2.25rem;
  }
  .fv__catch img {
    width: 41.7014178482vw;
  }
  .fv__image {
    top: 43%;
    right: 5%;
  }
  .fv__image img {
    width: min(54.2118432027vw, 650px);
  }
  .fv__scroll {
    left: 15%;
  }
  .fv__scroll img {
    width: min(21.1009174312vw, 253px);
  }
  .mv {
    padding-top: 4.375rem;
  }
  .top-about__decoration img {
    width: 300px;
  }
  .top-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    left: 50%;
    padding-inline: 0.9375rem;
  }
  .top-about__h2::before {
    left: 0px;
    top: 15px;
    width: 11.4375rem;
    height: 11.25rem;
  }
  .top-about__body {
    padding: 30px;
    border-bottom-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .top-about__text {
    font-size: 1.25rem;
  }
  .top-service__text {
    font-size: 24px;
  }
  .top-recruit__content-image::before {
    left: -10%;
    top: -25%;
    width: 60%;
    height: 60%;
  }
  .top-recruit__content-image::after {
    left: -10%;
    bottom: -5%;
    width: 60%;
    height: 60%;
  }
  .top-recruit__left {
    width: 20%;
  }
  .top-recruit__content::before {
    right: -15%;
    top: -50%;
    width: 60%;
    height: 60%;
  }
  .top-contact__items {
    gap: min(5.249343832vw, 100px);
  }
  .top-contact__catch span {
    font-size: 35px;
    padding-inline: 2.5rem;
  }
  .top-contact__btn::before {
    bottom: -140%;
    right: 5px;
    width: 10rem;
    height: 10.9375rem;
  }
  .top-contact__btn a {
    padding-block: 20px;
    padding-left: 40px;
    font-size: 38px;
    width: 70%;
  }
  .top-contact__btn a::after {
    right: 30px;
    width: 3.75rem;
    height: 2.5rem;
  }
  .recruit-service__lists {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recruit-service__title {
    text-align: center;
  }
  .recruit-service__title.underline::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .media {
    padding: 3.125rem;
  }
  .button::after {
    right: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .header__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
  .header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.375rem;
  }
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:focus, .header__logo a:hover {
    opacity: 0.6;
  }
  .header__icon {
    display: none;
  }
  .header__list.is-sp {
    display: none;
  }
  .header__link {
    /* 下線のスタイル */
    /* リンクにホバーした際の下線の表示 */
  }
  .header__link::after {
    background-color: #fe7981;
    bottom: -4px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 100%;
  }
  .header__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
  }
  .header__button:focus, .header__button:hover {
    background-color: #61554b;
  }
  .header__button:hover::after {
    right: 0.5em;
  }
  .top-contact__btn a:focus, .top-contact__btn a:hover {
    background-color: #61554b;
  }
  .top-contact__btn a:hover::after {
    right: 0.5em;
  }
  .button:focus, .button:hover {
    background-color: #fe7981;
  }
  .button:hover::after {
    right: 0.5em;
  }
}

@media screen and (max-width: 1400px) {
  .footer__sub-link {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 1400px) and (max-width: 1199px) {
  .footer__sub-link {
    font-size: 24px;
    padding-left: 0rem;
  }
}

@media screen and (max-width: 1500px) {
  .fv__blue-deco {
    bottom: -3%;
    right: 0%;
  }
}

@media screen and (max-width: 1500px) and (max-width: 1023px) {
  .fv__blue-deco {
    bottom: 10%;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .fv__title-box {
    top: 20%;
    left: 5%;
  }
  .fv__catch {
    margin-top: 1.5625rem;
  }
  .fv__image {
    top: 50%;
  }
  .fv__image img {
    width: 220px;
  }
  .fv__scroll {
    top: 70%;
    left: 5%;
  }
  .fv__scroll img {
    width: 100px;
  }
  .top-about__decoration img {
    display: none;
  }
  .top-about__content {
    gap: 1.875rem;
  }
  .top-about__h2::before {
    left: unset;
    right: 0;
    top: 0;
    width: 6.25rem;
    height: 6.25rem;
  }
  .top-about__body {
    padding: 20px 15px;
  }
  .top-about__text {
    font-size: 1rem;
  }
  .top-recruit__content-image::before {
    left: 15%;
    width: 35%;
    height: 35%;
  }
  .top-recruit__content-image::after {
    top: -28%;
    right: 30%;
    left: unset;
    bottom: unset;
    width: 35%;
    height: 35%;
  }
  .top-recruit__left {
    width: 0%;
  }
  .top-recruit__content::before {
    right: 0%;
    top: 0%;
    width: 100px;
    height: 100px;
  }
  .top-contact__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.75rem;
  }
  .top-contact__catch span {
    margin-top: 2.5rem;
    font-size: 20px;
    letter-spacing: 1.5px;
    padding-inline: 1.375rem;
  }
  .top-contact__btn::before {
    bottom: -230%;
    width: 8.125rem;
  }
  .top-contact__btn a::after {
    left: 25px;
    right: unset;
    width: 1.875rem;
    height: 1.25rem;
  }
  .recruit-service__lists {
    gap: 1.5625rem;
  }
  .button::after {
    right: 20px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .fv__title img {
    width: 500px;
  }
  .fv__catch img {
    width: 430px;
  }
  .top-contact__btn a {
    padding-left: 4.6875rem;
    font-size: 28px;
  }
  .media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 1.875rem;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .fv__title img {
    width: 290px;
  }
  .fv__catch img {
    width: 290px;
  }
  .top-contact__btn a {
    padding-left: 40px;
    width: 290px;
    font-size: 1rem;
  }
  .media {
    padding: 1.875rem 0.9375rem;
  }
}

@media screen and (max-width: 1023px) {
  .h2 {
    font-size: 2.375rem;
  }
  .top-recruit__slide {
    height: 46.875rem;
  }
  .top-recruit__button {
    margin-top: 1.875rem;
  }
  .top-recruit__text {
    margin-top: 2.5rem;
  }
  .company-map__inner iframe {
    margin-top: 3.125rem;
  }
  .tel-fax__wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .heading {
    text-align: left;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .h2 {
    font-size: 1.875rem;
  }
  .top-recruit__slide {
    height: 31.25rem;
  }
  .top-recruit__text {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }
  .company-map__inner iframe {
    height: 18.75rem;
    margin-top: 2.5rem;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
  .heading {
    width: 100%;
    letter-spacing: 0em;
    font-size: 1.5625rem;
    padding-left: 3.125rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1800px) {
  .top-about__decoration {
    right: -5%;
  }
}

@media screen and (max-width: 1800px) and (max-width: 1199px) {
  .top-about__decoration {
    right: 10%;
    bottom: 40%;
  }
}

@media screen and (max-width: 1199px) and (max-width: 360px) {
  .top-service__text {
    font-size: 1.25rem;
    bottom: 8.5%;
  }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
  .top-contact__hour {
    padding-inline: 0.9375rem;
  }
}

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