@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 45px;
  z-index: 999;
}

.section {
  padding-block: 100px;
}

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

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

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

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

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

/* =====================================================
# header
===================================================== */
.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;
  padding-inline: 40px;
}
.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-right-area,
.header-right-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-right__items,
.header-right__items {
  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-header__h1 img,
.header__h1 img {
  width: min(15.7480314961vw, 300px);
}
.top-header-nav-area,
.header-nav-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.top-header-nav,
.header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.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__item + .top-header-nav__item,
.top-header-nav__item + .header-nav__item,
.header-nav__item + .top-header-nav__item,
.header-nav__item + .header-nav__item {
  margin-left: min(1.8372703412vw, 35px);
}
.top-header-nav__link,
.header-nav__link {
  position: relative;
  display: block;
  font-size: min(0.8398950131vw, 16px);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.is-top .top-header-nav__link,
.is-top .header-nav__link {
  color: #2c2d48;
}
.top-header-nav__link::after,
.header-nav__link::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #02569f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1); /*X方向0、Y方向1*/
  -webkit-transform-origin: center top;
          transform-origin: center top; /*上部中央基点*/
}
.top-header-insta,
.header-insta {
  width: min(2.624671916vw, 50px);
  height: min(2.624671916vw, 50px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-header-button,
.header-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(1.312335958vw, 25px);
  -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-header-button a,
.header-button a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-header-button img,
.header-button img {
  width: min(12.5984251969vw, 240px);
  height: min(3.1496062992vw, 60px);
}

.top-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
  background-color: transparent;
}
.top-header__inner {
  height: 140px;
}
.top-header-nav__link {
  color: white;
}

.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 620;
  width: 100%;
  background-color: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.header.displayBlock {
  display: block;
}
.header.displayNone {
  display: none;
}
.header__inner {
  height: 100px;
}

/*　上に上がる動き　*/
#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: 15px;
  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;
  border-radius: 5px;
}
.drawer-icon.is-checked {
  -webkit-transform: translateX(-260px);
          transform: translateX(-260px);
}
.drawer-bars {
  display: inline-block;
  width: 28px;
  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: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.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: #02569f;
  -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;
  border-radius: 5px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}
.drawer-tel img {
  width: 20px;
  vertical-align: -4px;
}

.drawer__insta {
  display: inline-block;
  margin-left: 15px;
  margin-top: 20px;
}
.drawer__insta img {
  width: 60px;
}

.drawer__tel {
  margin-top: 30px;
  margin-inline: 15px;
}
.drawer__tel img {
  width: 100%;
}

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

#stay,
.stay {
  color: #02569f;
}
#stay::after,
.stay::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #02569f;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* =====================================================
# footer
===================================================== */
.footer {
  padding-block: 100px 150px;
  background: #f8f5f0;
}
.footer__icon {
  display: block;
  margin-top: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__logo {
  display: block;
}
.footer__company-area {
  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;
}
.footer .address-area__address {
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 1.6px;
}
.footer .address-area__tel {
  font-weight: 500;
  line-height: 2.25;
}
.footer .name-area {
  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;
}
.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: 38px;
}
.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: #02569f;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.footer__btn-area {
  display: block;
}
.footer__btn-area .copyright {
  font-size: 14px;
  letter-spacing: 1.4px;
}

/* =====================================================
# TOPメインヴィジュアル
===================================================== */
.fv {
  background-color: #f8f5f0;
  padding-top: 10px;
}
.fv__inner {
  position: relative;
}
.fv__head {
  position: absolute;
  bottom: 16.6%;
  left: 1.8%;
  z-index: 610;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
}
.fv__head .ja-title img {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fv__head .ja-subtitle {
  margin-top: 35px;
}
.fv__head .ja-subtitle img {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

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

.fv-wrapper {
  height: 980px;
}

.fv-slide img {
  height: 980px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

/* =====================================================
# 下層ページ メインビジュアル
===================================================== */
.mv {
  background-color: #02569f;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.2);
  background-blend-mode: soft-light;
  height: 442px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: calc(1200px + 30px);
  margin-right: auto;
  margin-left: auto;
  padding-inline: 15px;
}
.mv-jumbotron__text-wrapper {
  position: absolute;
  top: 55%;
  left: 0%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 500px;
}
.mv .mv-h2 {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: white;
  font-weight: 600;
}
.mv .mv-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;
  color: #fff593;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.mv .mv-h2 span::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 50px;
  height: 2px;
  background-color: #fff593;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
}
.mv .mv-h2::before {
  content: attr(data-en);
  font-weight: 500;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
}

/* =====================================================
# top-news
===================================================== */
.top-news {
  padding-block: 90px 10px;
  background-color: #fdf6c0;
  background: url(../img/common/top-bg1.webp) center center/cover no-repeat;
}

.top-news__content {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: min(4.9868766404vw, 95px) min(2.624671916vw, 50px);
  border-radius: 30px;
  -webkit-box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
          box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
}

.top-news__button {
  margin-top: 58px;
}
.top-news__button.is-sp {
  display: none;
}

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

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

.top-news__new {
  text-transform: uppercase;
  color: #f00;
}

.top-news__category {
  min-width: 75px;
  padding: 9px 20px;
  background-color: #fff593;
  line-height: 1;
}

.top-news__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  height: 470px;
  width: 100%;
}

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

.top-news__title {
  margin-top: 26px;
  padding-right: 80px;
  position: relative;
}
.top-news__title::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url(../img/common/top-news-arrow.webp) center center/contain no-repeat;
}

/* =====================================================
# top-service
===================================================== */
.top-service {
  padding-block: min(17.3228346457vw, 330px) min(16.5354330709vw, 315px);
  background-color: #ffe699;
  position: relative;
}

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

.top-service__text {
  margin-top: 70px;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 3.6px;
  text-align: center;
}

.top-service__button {
  text-align: center;
  margin-top: 70px;
}

.top-service__left-top {
  position: absolute;
  top: 9%;
  left: 22%;
}
.top-service__left-top img {
  width: min(15.9580052493vw, 304px);
}

.top-service__left-bottom {
  position: absolute;
  bottom: 9%;
  left: 3%;
}
.top-service__left-bottom img {
  width: min(28.3464566929vw, 540px);
}

.top-service__right-top {
  position: absolute;
  top: 11%;
  right: 2%;
}
.top-service__right-top img {
  width: min(24.5669291339vw, 468px);
}

.top-service__right-bottom {
  position: absolute;
  bottom: 0%;
  right: 22%;
}
.top-service__right-bottom img {
  width: min(17.8477690289vw, 340px);
}

/* =====================================================
# top-recruit
===================================================== */
.top-recruit {
  padding-block: 140px 30px;
  background-color: #fdf6c0;
  background: url(../img/common/top-bg2.webp) center center/cover no-repeat;
}

.top-recruit__content {
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(3.6745406824vw, 70px);
  padding: 48px;
  border-radius: 30px;
  -webkit-box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
          box-shadow: 0.7px 0.7px 2.9px 0.1px rgba(0, 0, 0, 0.05);
}

.top-recruit__body {
  width: 53%;
}

.top-recruit__text {
  margin-top: 68px;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 2.5px;
}

.top-recruit__button {
  margin-top: 68px;
}

.top-recruit__image {
  width: 47%;
}
.top-recruit__image img {
  width: 500px;
}

/* =====================================================
# top-others
===================================================== */
.top-others {
  padding-block: 120px 150px;
  background-color: #fdf6c0;
}

.top-others__inner {
  max-width: 985px;
  margin-inline: auto;
  padding-inline: 15px;
}

.top-others__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(6.8241469816vw, 130px);
  -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-others__item {
  width: 50%;
  text-align: center;
}

.top-others__image {
  width: 100%;
}

.top-others__button {
  margin-top: 40px;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  background-color: #fdf6c0;
}

.top-contact__wrap {
  background-color: #2c2d48;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding-block: 100px;
}

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

.top-contact__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(6.8241469816vw, 130px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-contact__description {
  margin-top: 35px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 3.6px;
  text-align: center;
}

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

.top-contact__image {
  width: 100%;
}

.top-contact__button {
  margin-top: 20px;
}

.top-contact__text {
  margin-top: 17px;
  color: #fff;
}

.top-contact__tel {
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
}

.text-style-1 {
  font-size: 25px;
  letter-spacing: 2.5px;
}

.top-contact__hour {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: 1.8px;
  text-align: center;
}

/* =====================================================
# news
===================================================== */
.news {
  padding-block: 50px 100px;
}

.news-categories {
  padding-top: 100px;
}

.news__head {
  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;
  padding-bottom: 10px;
  border-bottom: 3px solid #ccc;
  margin-bottom: 30px;
}

.news__h3 {
  font-size: 21px;
  font-weight: 600;
}

.news__category {
  font-size: 14px;
  font-weight: 600;
  min-width: 100px;
  text-align: center;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
}
.news__category.is-news {
  background-color: #02569f;
  color: #fff593;
}
.news__category.is-blog {
  background-color: #e8dc69;
  color: #02569f;
}

.news__button {
  margin-top: 30px;
  text-align: right;
}

.news-categories__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -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;
}

.news-categories__item {
  display: block;
  width: 240px;
  background-color: #02569f;
  color: #fff593;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.news-categories__item.is-type2 {
  background-color: #e8dc69;
  color: #02569f;
}

/* =====================================================
# service
===================================================== */
.service__outer {
  background-color: #fbfaef;
}

.service__wrap {
  max-width: 2400px;
  margin-inline: auto;
  padding-block: 100px;
}
.service__wrap .number {
  font-size: 30px;
  font-weight: 600;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  background-color: #02569f;
  color: #fff593;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  line-height: 100%;
  border-radius: 50%;
}

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

.service__title {
  font-size: 30px;
  font-weight: 600;
  color: #02569f;
}

.business__text {
  display: block;
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
  text-align: justify;
}

.business__intro {
  overflow: hidden; /*横スクロールの発生を防止*/
}

.business__wide {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

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

/* =====================================================
# staff
===================================================== */
.staff__title {
  color: #02569f;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
}

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

.staff__item {
  background-color: #fdf6c0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5.249343832vw;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.624671916vw;
  padding: 3.1496062992vw 2.624671916vw;
  z-index: -1;
}

.staff__image {
  width: 40%;
}
.staff__image img {
  border-radius: 20px;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  border: 10px solid white;
}

.staff__body {
  width: 60%;
}

.staff__name {
  font-weight: 600;
  background-color: #02569f;
  color: white;
  font-size: 25px;
  padding: 5px 20px;
  border-radius: 10px;
}

.staff__meta {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  position: relative;
  padding: 5px 15px;
  border-radius: 15px;
  border: 1px solid #e8dc69;
  border-bottom: 5px solid #e8dc69;
  background-color: #fff;
  color: #02569f;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.staff__meta:before {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 18px;
  width: 1px;
  background-color: #e8dc69;
  content: "";
}

.staff__text {
  margin-top: 20px;
  background-color: white;
  padding: 40px;
  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;
  gap: 30px;
}
.staff__text p {
  margin-top: 10px;
}

.staff__head {
  display: inline-block;
  font-weight: 500;
  -webkit-text-decoration-color: #fbd1e6;
          text-decoration-color: #fbd1e6;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 7px;
  text-underline-offset: -2px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #02569f;
  font-size: 17px;
}

/* =====================================================
# recruit
===================================================== */
.recruit__media {
  background-color: #fff;
  padding: 2.624671916vw;
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 2.624671916vw;
  -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-radius: 2.624671916vw;
}

.recruit__image {
  width: 40%;
}
.recruit__image img {
  border-radius: 20px;
}

.recruit__body {
  width: 60%;
}

.number-yolk__inner {
  max-width: 800px;
}

.number-yolk__items {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.number-yolk__items.is-type2 {
  margin-top: 40px;
}

.number-yolk__image {
  width: 50%;
}

.number-yolk__graph {
  margin-top: 20px;
}
.number-yolk__h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.number-yolk__heading {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}

.number-yolk__body {
  width: 50%;
}

.number-yolk__box {
  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;
  border-radius: 20px;
  padding: min(2.624671916vw, 50px) min(1.5748031496vw, 30px);
  border: 3px solid #02569f;
  position: relative;
}

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

.number-yolk__text {
  font-size: 24px;
  font-weight: 500;
}

.number-yolk__attention {
  position: absolute;
  bottom: 12%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
}

.number-yolk__text .large-num {
  font-size: 50px;
  font-weight: 600;
}
.is-type2 .number-yolk__text .large-num {
  color: #ff8400;
}

/* =====================================================
# recruitment
===================================================== */
.ballon {
  position: relative;
  padding: 5px;
  border-radius: 15px;
  border: 1px solid #e8dc69;
  border-bottom: 5px solid #e8dc69;
  background-color: #fff;
  color: #02569f;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
}

.ballon:before {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 18px;
  width: 1px;
  background-color: #e8dc69;
  content: "";
}

.flow_design03 {
  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;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  text-align: center;
  width: 70px;
  height: 2em;
  line-height: 2;
  font-weight: bold;
  border-radius: 5px;
  color: #fff;
  background: #8eb83c;
  display: inline-block;
  margin-right: 15px;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8eb83c;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 18px;
  font-weight: 600;
  color: #8eb83c;
  margin-bottom: 0.5em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}

.area__inner {
  max-width: 1330px;
  margin-inline: auto;
  padding-inline: 15px;
}

.flow__items {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.flow__area {
  margin-top: 100px;
}
.flow__area h3 {
  color: #02569f;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
.flow__area ul {
  width: 100%;
  max-width: 290px;
  margin-inline: auto;
  margin-top: 20px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  border: 3px solid #eee;
}
.flow__area li {
  font-size: 20px;
  line-height: 2.2;
}

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

.flow__item {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  background-color: #fff;
  padding: 50px 15px;
  border-radius: 20px;
}

.flow__image {
  margin-top: 40px;
}

.recruitment-attention {
  margin-top: 10px;
  font-size: 14px;
}

.recruitment-link__group {
  padding-block: 40px;
  max-width: 550px;
  padding-inline: 15px;
  margin-inline: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.recruitment-link__group.is-flow, .recruitment-link__group.is-recruit {
  max-width: 780px;
}
.recruitment-link__group.is-flow {
  display: none;
}

.recruitment-link {
  width: 240px;
  display: inline-block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff593;
  background-color: #02569f;
  border-radius: 30px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.recruitment-subtitle {
  width: 240px;
  display: inline-block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff593;
  background-color: #02569f;
  border-radius: 10px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.employee {
  background-color: #f8f5f0;
}
.employee__table {
  margin-top: 80px;
}

.part {
  background-color: #f9f9f9;
}

.recruitment-link__button-wrap {
  padding: 50px 15px;
  text-align: center;
}

.recruitment-link__button {
  display: inline-block;
  width: 100%;
  max-width: 450px;
  font-size: 35px;
  font-weight: 600;
  color: #fff593;
  background-color: #02569f;
  border-radius: 30px;
  padding: 20px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.recruitment-link__button::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 14px;
  background: url(../img/common/chevron-right_white.webp) center center/contain no-repeat;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

/* =====================================================
# company
===================================================== */
.profile-h2 {
  text-align: center;
}

.profile-h2__title {
  display: inline-block;
  color: #02569f;
  font-size: 40px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  border-bottom: 3px solid #fff593;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.profile-h2__title::before {
  content: attr(data-en);
  display: block;
  letter-spacing: 0.2em;
  font-size: 18px;
  font-weight: 400;
}

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

.greeting__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.greeting__content.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.greeting__title {
  font-size: 30px;
  color: #02569f;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.greeting__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.is-reverse .greeting__body {
  text-align: center;
}

.greeting__name {
  margin-top: 40px;
  text-align: right;
  font-weight: 500;
}

.greeting__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33%;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  margin-top: 10px;
}
.greeting__image img {
  border-radius: 20px;
}
.greeting__image span {
  display: block;
  margin-top: 10px;
  text-align: right;
}
.is-reverse .greeting__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
}

.greeting__text {
  text-align: justify;
  line-height: 2;
}

.company {
  background-color: #fff;
}
.company .business__title {
  display: inline-block;
}
.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .profile.is-type2 {
  background-color: #f8f5f0;
}
.company .profile .horizontal-table__header {
  background-color: #fff;
}
.company .profile__text-box {
  margin-top: 50px;
  line-height: 2;
  word-wrap: break-word;
}

.company__table-box {
  margin-top: 40px;
  background-color: white;
  padding: 60px;
  border-radius: 20px;
}

.company-map {
  padding-block: 80px;
}

.company-map__btn-wrap {
  text-align: center;
  padding-top: 50px;
}

.company-map__inner {
  padding-top: 35px;
  position: relative;
  aspect-ratio: 5/1;
  margin-inline: auto;
}
.company-map__inner iframe {
  width: 100%;
  height: 450px;
}

.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #fdf6c0;
  padding: 15px;
  border-bottom: 1px solid #02569f;
  font-weight: 600;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-of-type {
  border-top: 1px solid #02569f;
}
.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;
}

.business__title {
  display: block;
  font-size: 40px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  color: #02569f;
  border-bottom: 3px solid #e8dc69;
  padding-bottom: 15px;
}
.business__title::before {
  content: attr(data-en);
  display: block;
  font-weight: 400;
  letter-spacing: 0.15em;
  font-size: 18px;
}

/* =====================================================
# contact
===================================================== */
.tel-fax {
  padding-block: 70px;
  background-color: #f8f5f0;
}
.tel-fax__intro {
  text-align: center;
  font-size: 20px;
  color: #fff593;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tel-fax__box {
  width: 100%;
  background-color: #02569f;
  margin-inline: auto;
  padding: 35px 30px;
  border-radius: 25px;
  text-align: center;
}
.tel-fax__line {
  margin-top: 10px;
  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__text {
  margin-top: 10px;
  color: white;
}
.tel-fax .tel__img img {
  width: 38px;
}
.tel-fax .tel-number {
  font-size: 40px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 500;
  color: #fff593;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  background-color: #fff;
  padding-block: 100px;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__title {
  display: inline-block;
  font-size: 25px;
  font-weight: 600;
  color: #02569f;
  padding-bottom: 3px;
  border-bottom: 1px solid #02569f;
}
.mail-form__text {
  margin-top: 20px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 80%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form .label {
  display: inline-block;
  background-color: #02569f;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 30px;
}
.mail-form .horizontal-table table {
  width: 100%;
}
.mail-form .horizontal-table th {
  width: 27%;
  padding: 20px;
  background-color: #f6f6f6;
  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;
  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: #02569f;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 35px;
}
.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: #02569f;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 35px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #02569f;
  background-color: #fff;
  border: 2px solid #02569f;
}
.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;
}

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

.column {
  width: 58%;
  position: relative;
  z-index: 2;
}
.column._reverse {
  margin-left: -10%;
}
.column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -10%;
}
.column-outside-right img {
  border-top-left-radius: min(5.249343832vw, 100px);
  border-bottom-left-radius: min(5.249343832vw, 100px);
}
.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;
}
.column-outside-left img {
  border-top-right-radius: min(5.249343832vw, 100px);
  border-bottom-right-radius: min(5.249343832vw, 100px);
}
._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: 50px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.16);
}
.is-business-intro .column .text-box {
  background-color: #fff;
}
._top-intro .column .text-box {
  background-color: unset;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.column .text-box p {
  font-size: 16px;
  text-align: justify;
}
.is-business-intro .column .text-box p {
  margin-top: 30px;
}
._top-intro .column .text-box p {
  color: #2c2d48;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.btn {
  font-weight: 500;
  display: inline-block;
  width: 240px;
  line-height: 60px;
  height: 60px;
  background-color: #02569f;
  padding-inline: 24px;
  color: #fff593;
  border-radius: 30px;
  font-weight: 500;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.btn.is-map {
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}
.btn.is-top-service {
  width: 300px;
}
.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/common/btn-arrow.webp) center center/contain no-repeat;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.btn.is-top-contact {
  width: 300px;
  color: #2c2d48;
  background-color: #fff;
}
.btn.is-top-contact::after {
  background: url(../img/common/mail-arrow.webp) center center/contain no-repeat;
}

.button {
  display: inline-block;
  width: 200px;
  line-height: 50px;
  height: 50px;
  background-color: #02569f;
  padding-inline: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.button::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 16px;
  background: url(../img/common/chevron-right_white.webp) center center/contain no-repeat;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #02569f;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.top-h2.is-top-service {
  text-align: center;
}
.top-h2.is-top-contact {
  color: #fff593;
  text-align: center;
}

.top-h2__en {
  font-family: Fredoka;
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
}

.top-h2__ja {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2.4px;
}

.heading {
  text-align: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  position: relative;
}
.heading::before {
  position: absolute;
  bottom: -25px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 70px;
  height: 3px;
  background-color: #e8dc69;
}

.heading__ja {
  display: block;
  font-size: 35px;
  color: #02569f;
  font-weight: 600;
  line-height: 1.3;
}

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

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

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

.text-red {
  color: #dd3333;
}

.link {
  color: #02569f;
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration 0.3s;
  transition: -webkit-text-decoration 0.3s;
  transition: text-decoration 0.3s;
  transition: text-decoration 0.3s, -webkit-text-decoration 0.3s;
}

.link:hover {
  text-decoration: none;
}

#day,
#night,
#deep,
#help,
#number,
#flow,
#employee,
#part {
  margin-top: -120px;
  padding-top: 120px;
}

/* 左から右にカーテン
---------------------------------------------------- */
.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);
  }
}
/* =====================================================
# detail
===================================================== */
.photo-ofi {
  height: 0;
  display: block;
  background-color: #f7f7f7;
  overflow: hidden;
  position: relative;
  padding-bottom: 66.6666%; /* 高さを指定（ボックスの横幅を基準） */
}

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

.detail {
  padding-block: 100px;
  position: relative;
}

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

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

.detail__title {
  font-size: 27px;
  font-weight: 600;
  border-bottom: 3px solid #e8dc69;
  padding-bottom: 15px;
}

.detail__date {
  display: block;
  color: #777;
}
.detail__text-box {
  margin-top: 30px;
  max-width: 700px;
  margin-inline: auto;
}
.detail__history-back {
  padding-top: 100px;
  text-align: center;
}

.history__btn {
  display: inline-block;
  width: 200px;
  background: #fff593;
  color: #2c2d48;
  border-radius: 9999px;
  position: relative;
  padding: 15px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  line-height: 1.2;
}
.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__image {
  margin-top: 30px;
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}

/* 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;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.6px;
  color: #2c2d48;
}

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: #02569f;
}

.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.8;
  }
  .top-header-nav__link:hover,
  .header-nav__link:hover {
    color: #02569f;
  }
  .top-header-nav__link:hover::after,
  .header-nav__link:hover::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #02569f;
    top: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1, 1);
            transform: translateX(-50%) scale(1, 1);
  }
  .top-header-insta:focus, .top-header-insta:hover,
  .header-insta:focus,
  .header-insta:hover {
    opacity: 0.6;
  }
  .top-header-button a:focus, .top-header-button a:hover,
  .header-button a:focus,
  .header-button a:hover {
    opacity: 0.7;
  }
  #stay:hover::after,
  .stay:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer__icon:focus, .footer__icon:hover {
    opacity: 0.6;
  }
  .footer-nav__link:focus, .footer-nav__link:hover {
    opacity: 0.6;
  }
  .top-news__link:focus, .top-news__link:hover {
    background-color: rgba(255, 245, 147, 0.1);
  }
  .news-categories__item:focus, .news-categories__item:hover {
    background-color: #bbb;
  }
  .recruitment-link:focus, .recruitment-link:hover {
    background-color: #67a4da;
  }
  .recruitment-link__button:focus, .recruitment-link__button:hover {
    background-color: #67a4da;
  }
  .recruitment-link__button:hover::after {
    right: 0.5em;
  }
  .mail-form .privacy__link:hover {
    color: #999;
  }
  .mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
    opacity: 0.6;
  }
  .mail-form .send-btn:focus, .mail-form .send-btn:hover {
    opacity: 0.6;
  }
  .btn:focus, .btn:hover {
    background-color: #67a4da;
  }
  .btn:hover::after {
    right: 0.5em;
  }
  .button:focus, .button:hover {
    background-color: #fff593;
  }
  .history__btn:focus, .history__btn:hover {
    background: #02569f;
    color: #fff;
  }
  .history__btn:focus:after, .history__btn:hover:after {
    border-color: #fff;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    padding-block: 50px;
  }
  #stay::after,
  .stay::after {
    display: none;
  }
  .footer {
    padding-top: 50px;
  }
  .footer__logo img {
    width: 220px;
  }
  .fv__head {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5.2151238592vw 1.9556714472vw;
    border-radius: 3.9113428944vw;
  }
  .mv-jumbotron {
    height: 252px;
  }
  .mv .mv-h2 span {
    font-size: 13px;
  }
  .mv .mv-h2 span::before {
    width: 30px;
  }
  .mv .mv-h2 {
    font-size: 22px;
    padding-bottom: 25px;
    width: 100%;
  }
  .mv .mv-h2::before {
    font-size: 16px;
    top: 55%;
    width: 100%;
  }
  .top-news {
    padding-block: 0 10px;
  }
  .top-news__button.is-sp {
    display: block;
    margin-block: 0 30px;
  }
  .top-news__meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .top-news__category {
    padding: 6px 10px;
    min-width: 60px;
    font-size: 14px;
  }
  .top-news__title::after {
    right: 10px;
    width: 25px;
    height: 25px;
  }
  .top-service__button {
    margin-top: 35px;
  }
  .top-service__left-top {
    top: 0;
    left: 0;
  }
  .top-service__left-top img {
    width: 100px;
  }
  .top-service__left-bottom img {
    width: 100px;
  }
  .top-service__right-bottom img {
    width: 100px;
  }
  .top-recruit {
    padding-block: 50px 30px;
  }
  .top-recruit__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }
  .top-recruit__body {
    width: 100%;
  }
  .top-recruit__text {
    margin-top: 40px;
  }
  .top-recruit__button {
    margin-top: 35px;
  }
  .top-recruit__image {
    width: 100%;
    text-align: center;
  }
  .top-recruit__image img {
    width: 80%;
  }
  .top-others {
    padding-block: 50px;
  }
  .top-others__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .top-others__item {
    width: 100%;
  }
  .top-contact__wrap {
    padding-block: 50px;
  }
  .top-contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .top-contact__item {
    width: 100%;
  }
  .top-contact__tel {
    font-size: 30px;
  }
  .text-style-1 {
    font-size: 20px;
  }
  .top-contact__hour {
    font-size: 16px;
  }
  .news {
    padding-block: 0px 50px;
  }
  .news-categories {
    padding-top: 50px;
  }
  .news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .news__h3 {
    font-size: 18px;
  }
  .news-categories__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .news-categories__item {
    font-size: 16px;
  }
  .business__text {
    font-size: 16px;
  }
  .business__intro {
    padding-bottom: 50px;
  }
  .staff__title {
    font-size: 20px;
  }
  .staff__items {
    gap: 50px;
  }
  .staff__body {
    width: 100%;
  }
  .staff__name {
    font-size: 21px;
  }
  .staff__text {
    padding: 20px 15px;
    border-radius: 10px;
    font-size: 15px;
  }
  .staff__head {
    font-size: 16px;
  }
  .recruit__body {
    width: 100%;
  }
  .number-yolk__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 50px;
  }
  .number-yolk__items.is-type2 {
    margin-top: 30px;
  }
  .number-yolk__image {
    width: 100%;
  }
  .number-yolk__heading {
    font-size: 20px;
  }
  .number-yolk__body {
    width: 100%;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
  .flow03 > li {
    font-size: 14px;
  }
  .flow03 > li .icon03 {
    width: 60px;
    margin-right: 10px;
    font-size: 13px;
  }
  .flow03 > li dl dt {
    font-size: 15px;
  }
  .flow__area ul {
    padding: 30px 15px;
  }
  .flow__area li {
    font-size: 18px;
  }
  .flow__item {
    padding: 30px 15px;
  }
  .recruitment-link {
    display: inline-block;
    width: 100%;
  }
  .recruitment-subtitle {
    display: inline-block;
    width: 100%;
  }
  .profile-h2__title {
    font-size: 27px;
  }
  .profile-h2__title::before {
    font-size: 16px;
  }
  .greeting__wrap {
    margin-top: 40px;
    gap: 80px;
  }
  .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: 15px;
  }
  .greeting__content.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .greeting__title {
    font-size: 20px;
  }
  .greeting__name {
    margin-top: 30px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .company__table-box {
    padding: 20px 12px;
  }
  .company-map {
    padding-block: 40px;
  }
  .company-map__btn-wrap {
    padding-top: 30px;
  }
  .company-map__inner iframe {
    height: 270px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-of-type {
    border-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-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;
  }
  .business__title {
    font-size: 27px;
  }
  .business__title::before {
    font-size: 16px;
  }
  .tel-fax {
    padding-block: 40px;
  }
  .tel-fax__intro {
    font-size: 17px;
  }
  .tel-fax__box {
    padding: 25px 15px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__text {
    margin-top: 0px;
  }
  .mail-form {
    padding-block: 30px;
  }
  .mail-form__title {
    font-size: 20px;
  }
  .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;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .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-right img {
    border-radius: 20px;
  }
  .column-outside-left {
    margin-left: 0;
    margin-right: 0;
  }
  .column-outside-left img {
    border-radius: 20px;
  }
  ._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;
  }
  .btn.is-top-service {
    width: 260px;
  }
  .btn.is-top-contact {
    width: 260px;
  }
  .top-h2__en {
    font-size: 50px;
  }
  .top-h2__ja {
    font-size: 18px;
  }
  .heading {
    font-size: 22px;
  }
  .heading::before {
    bottom: -20px;
  }
  .heading__ja {
    font-size: 22px;
  }
  .md-none {
    display: none;
  }
  #day,
  #night,
  #deep,
  #help,
  #number,
  #flow,
  #employee,
  #part {
    margin-top: -100px;
    padding-top: 100px;
  }
  .detail {
    padding-block: 50px;
  }
  .detail__head {
    margin-top: 0px;
  }
  .detail__title {
    font-size: 20px;
  }
  .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 {
    padding-inline: 15px;
    height: 80px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top-header-logo-area,
  .header-logo-area {
    height: 60px;
  }
  .top-header-right__items,
  .header-right__items {
    display: none;
  }
  .top-header__h1 img,
  .header__h1 img {
    width: 220px;
  }
  .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;
  }
  .top-header-nav__item + .top-header-nav__item,
  .top-header-nav__item + .header-nav__item,
  .header-nav__item + .top-header-nav__item,
  .header-nav__item + .header-nav__item {
    margin-left: 0px;
  }
  .top-header-nav__link,
  .header-nav__link {
    font-size: 16px;
  }
  .top-header-insta,
  .header-insta {
    display: none;
  }
  .top-header-button,
  .header-button {
    display: none;
  }
  .top-header__inner {
    height: 80px;
  }
  .header__inner {
    height: 80px;
  }
  .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__logo {
    text-align: center;
  }
  .footer__company-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area__address {
    text-align: center;
  }
  .footer .address-area__tel {
    text-align: center;
  }
  .footer .name-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .footer-nav {
    display: block;
    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 {
    padding: 0 10px 15px;
  }
  .footer__btn-area {
    margin-top: 30px;
  }
  .fv__head .ja-title img {
    width: 540px;
  }
  .fv__head .ja-subtitle {
    margin-top: 20px;
  }
  .fv__head .ja-subtitle img {
    width: 340px;
  }
  .fv-wrapper {
    height: calc(60vh + 30px);
  }
  .fv-slide img {
    height: calc(60vh + 30px);
    -o-object-position: 58% 0%;
       object-position: 58% 0%;
  }
  .mv {
    background-color: #fff;
  }
  .mv-jumbotron__text-wrapper {
    padding-left: 15px;
  }
  .top-service__text {
    font-size: 16px;
  }
  .top-service__left-bottom {
    bottom: -5%;
    left: 2%;
  }
  .top-service__right-bottom {
    bottom: -5%;
    right: 2%;
  }
  .service__wrap {
    padding-block: 50px 0px;
  }
  .business__wide {
    padding-block: 50px;
  }
  .staff__item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .staff__image {
    margin-top: 10px;
  }
  .recruit__media {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    padding: 40px 30px;
  }
  .recruit__image {
    margin-top: 10px;
  }
  .number-yolk__box {
    padding: 40px 15px;
  }
  .recruitment-link__button {
    font-size: 28px;
  }
  .column .text-box {
    padding: 30px;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
}

@media screen and (max-width: 767px) and (max-width: 360px) {
  .fv__head {
    left: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .fv__head .ja-title img {
    width: 300px;
  }
  .fv__head .ja-subtitle img {
    width: 240px;
  }
  .mv-jumbotron__text-wrapper {
    top: 60%;
    font-size: 40px;
    width: 100%;
  }
  .top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: 15px;
    gap: 30px;
  }
  .business__wide {
    padding-block: 0px;
  }
  .staff__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    border-radius: 20px;
    padding: 30px 15px;
    gap: 30px;
  }
  .staff__image {
    width: 100%;
    margin-top: 0px;
  }
  .recruit__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    padding: 30px 15px;
  }
  .recruit__image {
    margin-top: 0px;
    width: 100%;
  }
  .number-yolk__box {
    gap: 15px;
  }
  .recruitment-link__button {
    font-size: 20px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
}

@media screen and (min-width: 2001px) {
  .fv-wrapper {
    height: 51.4435695538vw;
  }
  .fv-slide img {
    height: 51.4435695538vw;
  }
  .service__wrap {
    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: 50px;
  }
  .column-outside-right img {
    border-top-left-radius: 110px;
    border-bottom-left-radius: 110px;
  }
  .column-outside-left img {
    border-top-right-radius: 110px;
    border-bottom-right-radius: 110px;
  }
}

@media screen and (max-width: 1023px) {
  .top-news__button {
    margin-top: 30px;
  }
  .service__title {
    font-size: 20px;
  }
  .flow__items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 0px;
  }
  .recruitment-link__group {
    gap: 30px;
  }
  .recruitment-link__group.is-flow {
    margin-top: 25px;
    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;
    gap: 20px;
  }
  .tel-fax__wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .form-input {
    width: 100%;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    overflow-wrap: anywhere;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-news__button {
    display: none;
  }
  .flow__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruitment-link__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
}

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

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-service__text {
    font-size: 16px;
    margin-top: 40px;
  }
  .column .text-box {
    padding: 30px 15px;
    margin-bottom: 20px;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
}

@media screen and (max-width: 1350px) {
  .flow__area {
    margin-top: 20px;
  }
  .flow__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

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