@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#js-pagetop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 40;
  background: #1259e6;
  color: #fff;
  border: 1px solid #fff;
  display: block;
  font-size: 16px;
  line-height: 58px;
  text-align: center;
  text-decoration: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

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

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

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

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

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

/* =====================================
/* header
---------------------------- */
#header {
  height: 90px;
  position: fixed;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.is-active {
  color: #1259e6;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-inline: 40px 0px;
}
.header__inner .button {
  font-size: 17px;
}

.header__left {
  display: contents;
}
.header__logo a img {
  width: min(25.1968503937vw, 480px);
  display: block;
}

.header__nav {
  height: inherit;
}

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

.header__list.is-top-contact-btn {
  margin-left: 10px;
}

.header__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  padding: 10px 20px;
  height: 90px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}
.header__contact img {
  display: block;
  margin-top: 4px;
  width: 38px;
}

.header__link {
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
  font-weight: 500;
  padding-block: 8px;
  padding-inline: 20px;
  height: 90px;
  line-height: 60px;
  position: relative;
}
.header__link::before {
  content: attr(data-en);
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10px;
  text-transform: uppercase;
  color: #1259e6;
  letter-spacing: 0.05em;
}
.header__link.is-active::before {
  color: #0cb1e8;
}

/* =====================================================
# footer
===================================================== */
.footer {
  position: relative;
  z-index: 30;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}
.footer__inner {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 30px;
}
.footer__inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 50px;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.footer .address-area__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer .address-area__box .location {
  width: 28px;
  margin-left: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer .address-area__address {
  margin-top: 20px;
}
.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;
}
.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:first-child::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 0;
  width: 1px;
  height: 17px;
  background-color: #999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-nav__item::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  width: 1px;
  height: 17px;
  background-color: #999;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer-nav__item--active {
  background-color: #1259e6;
  color: #fff;
}
.footer-nav__link {
  display: inline-block;
  padding: 0 15px 10px;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  text-transform: uppercase;
}
.footer-nav__link--last-child {
  padding-right: 0;
}
.footer .copyright {
  background-color: #000;
  color: #efefef;
  padding-block: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: center;
}
.footer__logo img {
  width: 400px;
}

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

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

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 12px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-size: 14px;
  letter-spacing: 0.15em;
}
.footer__link.is-active {
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
}
.footer__link .fa-solid {
  color: #1259e6;
}

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

.footer__tel-area {
  border-right: 1px solid #ccc;
  padding-inline: 0 30px;
  margin-right: 20px;
}

.footer-number {
  display: block;
  font-size: 24px;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  color: #1259e6;
}
.footer-number img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: -6px;
}

/* =====================================================
# メインヴィジュアル
===================================================== */
.slide {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  border-bottom-left-radius: min(20.9973753281vw, 400px);
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
}
.slide-image:nth-child(1) {
  background-image: url(../img/common/main1.webp);
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.slide-image:nth-child(2) {
  background-image: url(../img/common/main2.webp);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.slide-image:nth-child(3) {
  background-image: url(../img/common/main3.webp);
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}

@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
.fv {
  background-color: white;
  padding-top: 90px;
  height: calc(705px + 243px + 575px - 705px);
}

.fv__inner {
  position: relative;
  z-index: 2;
}

.fv__decoration {
  position: absolute;
  top: 2%;
  left: 3%;
}
.fv__decoration img {
  width: min(11.5485564304vw, 220px);
}

.fv__decoration2 {
  position: absolute;
  top: 20%;
  left: 15%;
}
.fv__decoration2 img {
  width: min(8.6614173228vw, 165px);
}

.fv__bg-grad {
  position: absolute;
  top: 282px;
  width: 87.3611111111%;
  height: 575px;
  background: linear-gradient(135deg, #1259e6 0%, #21e113 99.98%);
  border-bottom-right-radius: 20px;
  border-top-right-radius: min(15.7480314961vw, 300px);
}

.picture {
  margin-left: calc(100vw - 77.9166666667%);
  position: relative;
  z-index: 1;
}

.picture-copy {
  position: absolute;
  z-index: 2;
  bottom: 29.0909090909%;
  left: 10.4166666667%;
}

.picture-copy__title {
  font-size: 3.4120734908vw;
  font-weight: 650;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.1em;
}

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

.image-container img {
  display: block;
}

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

.mv {
  padding-top: 80px;
  background-color: #061a40;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: center center;
  height: 350px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron__inner {
  position: relative;
  height: 100%;
  width: 100%;
  padding-inline: 15px;
}
.mv-jumbotron__inner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 45px 0 80px;
}
.mv .mv-h2 {
  display: inline-block;
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 600;
  position: relative;
  z-index: 2;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}
.mv .mv-h2 span {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}
.mv .mv-h2::before {
  content: attr(data-en);
  font-weight: 500;
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 18px;
  font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}

.h2 {
  font-size: 45px;
  font-weight: 600;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  display: inline-block;
  line-height: 1.5;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h2 span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  color: #333;
}
.h2 span::after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  width: 80px;
  height: 2px;
  background: #1259e6;
}

/* news
---------------------------- */
.top-news {
  background-color: #fbf9f3;
  position: relative;
}
.top-news .h2 {
  font-size: 65px;
}

.top-news__decoration {
  position: absolute;
  bottom: 3%;
  right: 6%;
}
.top-news__decoration img {
  width: min(13.1233595801vw, 250px);
  opacity: 0.4;
}

.top-news__decoration2 {
  position: absolute;
  top: 18%;
  left: 5%;
}
.top-news__decoration2 img {
  width: min(16.7979002625vw, 320px);
  opacity: 0.2;
}

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

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

.top-news-inner {
  background: #fff;
  margin-top: 50px;
  border-radius: 20px;
  -webkit-box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
          box-shadow: 0 5px 12px rgba(62, 62, 62, 0.2);
}

.top-news__content {
  overflow-y: auto;
  height: 310px;
}

.top-news-list {
  border-top: solid 2px #f0f0f0;
}

.top-news-item {
  border-bottom: solid 2px #f0f0f0;
}

.top-news-itemLink {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3e3e3e;
  display: block;
  letter-spacing: 0.025em;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.top-news-itemDate {
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  white-space: nowrap;
  font-weight: 400;
  color: #1259e6;
}

.top-news-itemCategory {
  background: #fff;
  background: #f7785b;
  border-radius: 5px;
  display: inline-block;
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  padding: 0 12px;
}

.top-news__title {
  font-size: 19px;
  font-weight: bold;
}

.top-news-itemTxt {
  margin-top: 15px;
  line-height: 1.6;
  letter-spacing: 0.025em;
  font-weight: 500;
}

/* =====================================================
# top-content
===================================================== */
.top-content {
  background-color: #fbf9f3;
  padding-bottom: 150px;
  position: relative;
}
.top-content .h2 {
  font-size: 65px;
}

.top-content__decoration {
  position: absolute;
  bottom: 25%;
  right: 1%;
  z-index: 1;
}
.top-content__decoration img {
  width: min(15.7480314961vw, 300px);
  opacity: 0.3;
}

.top-content__decoration2 {
  position: absolute;
  top: 0%;
  left: 1%;
  z-index: 1;
}
.top-content__decoration2 img {
  width: min(18.3727034121vw, 350px);
  opacity: 0.2;
}

.top-content__boxes {
  position: relative;
  z-index: 2;
  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;
}

.top-content__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: white;
}
.top-content__media.is-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.top-content__image {
  width: 50%;
}
.top-content__image img {
  width: 100%;
}

.top-content__body {
  width: 50%;
  padding: 15px 50px;
}

.top-content__text {
  margin-top: 40px;
  text-align: justify;
  line-height: 2;
}

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

/* =====================================================
# top-contact
===================================================== */
.top-contact .h2 {
  font-size: 65px;
}

.top-contact__wrap {
  background: url(../img/common/top-contact_bg.webp) center center/cover no-repeat;
  padding-block: 60px;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}

.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;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 2px;
  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;
}

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

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

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

/* =====================================================
# domestic
===================================================== */
.domestic {
  background-color: #fbf9f3;
}

.domestic__inner,
.domestic-2__inner {
  max-width: calc(1300px + 15px * 2);
  padding-inline: 15px;
  margin-inline: auto;
}

.domestic__inner {
  padding-block: 100px;
}

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

.domestic__lists {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.domestic__list {
  width: 145px;
  height: 145px;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.domestic__body {
  width: 130px;
  height: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}

.domestic__text {
  margin-top: 30px;
}
.domestic__text.is-type2 {
  margin-top: 50px;
}

.domestic__image {
  text-align: center;
}
.domestic__image img {
  width: 80px;
}

.domestic__list-text {
  display: block;
  text-align: center;
  font-weight: bold;
}

/* =====================================================
# abroad
===================================================== */
.abroad__inner {
  padding-block: 80px;
  text-align: center;
}
.abroad__inner img {
  width: 100%;
  max-width: 940px;
  -webkit-box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0px 20px rgba(0, 0, 0, 0.1);
}

.business__intro {
  background-color: #fff;
  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; /* 基準位置とする */
  overflow: hidden; /* 疑似要素のはみ出しをクリップして細線回避 */
}

.business__transparent::before {
  content: ""; /* 疑似要素に必須 */
  /* 画像全面を正確に覆う（サブピクセルの隙間回避） */
  position: absolute;
  inset: -0.5px; /* わずかに外側へ広げて隙間を塞ぐ */
  display: block;
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, #fff 100%); /* 徐々に透明にする */
  z-index: 1; /* 画像の上に重ねる */
  pointer-events: none; /* ユーザー操作をブロックしない */
  -webkit-transform: translateZ(0);
          transform: translateZ(0); /* GPU合成で微小なズレを低減 */
}
.is-case2 .business__transparent::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #fff 100%);
}

/* 画像周りの余白/行間による細い線の発生を防ぐ */
.column figure {
  margin: 0;
}

.business__transparent img {
  display: block; /* baseline ギャップ解消 */
  width: 100%;
}

.business__text-box {
  margin-top: 30px;
  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: 15px;
}

.business__text-title {
  font-size: 18px;
  color: #0cb1e8;
  font-weight: 600;
}

.business__head {
  display: block;
  margin-top: 25px;
  font-size: 30px;
  line-height: 2;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  color: #0cb1e8;
}

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

.page-h2 {
  font-size: 36px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 3px;
  line-height: 1.2;
  position: relative;
}
.page-h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: min(10.498687664vw, 200px);
  height: 1px;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
}

/* =====================================================
# company
===================================================== */
.vision {
  padding-block: 100px;
  background-color: #fbf9f3;
}

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

.company-map__inner iframe {
  margin-top: 60px;
  width: 100%;
}

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

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

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

.attention {
  max-width: 900px;
  padding-inline: 15px;
  margin-inline: auto;
  margin-top: 100px;
}

.attention__text {
  text-align: center;
  border: 1px solid #1259e6;
  padding: 10px 20px;
  color: #1259e6;
  font-size: 30px;
  letter-spacing: 0.1em;
}

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

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

/* =====================================================
# contact
===================================================== */
.contact-intro {
  padding-block: 50px;
  background-color: #fbf9f3;
}

.contact-intro__text {
  text-align: center;
  line-height: 2.2;
}
.contact-intro__text .text-red {
  color: #cc3333;
}

.label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}

.tel-fax {
  padding-block: 100px 50px;
}
.tel-fax__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-top: 60px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tel-fax__box {
  width: 100%;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  margin-inline: auto;
  padding: 35px 10px;
  border-radius: 10px;
  text-align: center;
}
.tel-fax__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel-fax__title {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 13px;
  letter-spacing: 0.1em;
}
.tel-fax__text {
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
}
.tel-fax .tel__img img {
  width: 40px;
}
.tel-fax .tel-number {
  font-size: 40px;
  font-weight: 600;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  color: #fff;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  background-color: #fff;
  padding-block: 50px;
  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 {
  font-size: 25px;
  font-weight: 500;
  color: #1259e6;
  position: relative;
}
.mail-form__text {
  margin-top: 20px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 100%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 30px;
}
.mail-form .horizontal-table table {
  width: 100%;
}
.mail-form .horizontal-table th {
  width: 27%;
  padding: 20px;
  background-color: #e8f7e6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table th .required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mail-form .horizontal-table th:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table th:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table td {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table td:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  margin-bottom: 20px;
  text-align: center;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -21px;
  padding-left: 21px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 5px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 5px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #333;
  background-color: #fff;
  border: 2px solid #333;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0.2em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

.detail__category-title {
  margin-top: 10px;
}

.detail__date {
  display: block;
  margin-top: 60px;
}

.detail__title {
  margin-top: 10px;
  font-size: 30px;
}

.detail__text {
  margin-top: 30px;
  overflow-wrap: break-word;
}

.detail__slider {
  margin-block: 50px;
}

/* 重ねるメディア
----------------------------------------------------- */
.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-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: -10%;
  text-align: right;
}
._top-intro .column {
  width: 65%;
}
._top-intro .column-outside-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -20%;
}
.column .text-box {
  padding-block: 50px;
}
.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: #333;
  margin-top: 40px;
}

/* 共通パーツ
----------------------------------------------------- */
.heading {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
  position: relative;
  padding-left: 70px;
}
.heading::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 67px;
  background: url(../img/common/water-icon.webp) center center/contain no-repeat;
}
.heading::after {
  content: attr(data-en);
  font-weight: 500;
  font-family: "Fredoka", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  position: absolute;
  top: 45px;
  left: 70px;
  font-size: 18px;
  color: #0cb1e8;
  -webkit-text-fill-color: initial;
  background: none;
}

.button {
  display: inline-block;
  width: 200px;
  line-height: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1259e6 10%, #21e113 82%);
  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: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-radius: 1px;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}

.button2 {
  display: inline-block;
  font-weight: 500;
  padding-inline: 15px 100px;
  border-top: 1px solid #1259e6;
  border-bottom: 1px solid #1259e6;
  -webkit-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  height: 66px;
  line-height: 66px;
  position: relative;
  text-transform: uppercase;
}
.button2::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  height: 8px;
  border-bottom: 1px solid #1259e6;
  border-right: 2px solid #1259e6;
  -webkit-transform: skew(60deg);
          transform: skew(60deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.button2:hover::after {
  border-bottom: 1px solid #1b1b1b;
  border-right: 2px solid #1b1b1b;
  -webkit-transform: translateX(10px) skew(60deg);
          transform: translateX(10px) skew(60deg);
}
.button2.is-top-content-btn {
  width: 300px;
}
.button2.is-top-contact-btn {
  width: 300px;
  background-color: rgba(255, 255, 255, 0.6);
}

.recruit__button-wrap {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.recruit__button-wrap .twitter_x {
  vertical-align: middle;
  width: 18px;
  margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

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

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

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

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

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

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

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

dd {
  margin-left: 0;
}

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

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

img {
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

caption {
  text-align: left;
}

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

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

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

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

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

body {
  font-size: 16px;
  font-family: "BIZ UDPGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #333;
}

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: #1259e6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  #js-pagetop {
    bottom: 50px;
    width: 50px;
    height: 50px;
    line-height: 47px;
  }
  .is-active {
    color: #0cb1e8 !important;
  }
  .footer__logo img {
    width: 280px;
  }
  .slide {
    border-bottom-left-radius: 100px;
    height: 350px;
  }
  .fv__decoration {
    top: 1%;
    left: 0%;
  }
  .fv__decoration2 {
    top: 25%;
    left: 2%;
  }
  .fv__bg-grad {
    border-bottom-right-radius: 10px;
    top: 140px;
    height: 260px;
  }
  .picture {
    margin-left: 5%;
  }
  .picture-copy {
    bottom: unset;
    top: 45%;
  }
  .mv-jumbotron {
    height: 160px;
  }
  .mv-jumbotron__inner-wrapper {
    padding: 15px 0 30px;
    font-size: 40px;
    top: 15%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
  .mv .mv-h2 {
    top: -10px;
    font-size: 30px;
  }
  .mv .mv-h2::before {
    font-size: 15px;
    font-weight: normal;
    top: 100%;
    width: 100%;
  }
  .h2 span {
    font-size: 16px;
  }
  .h2 span::after {
    width: 25px;
    margin-right: 10px;
  }
  .top-news {
    padding-block: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
  }
  .top-news__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .top-news-inner {
    margin-top: 30px;
    padding: 20px 12px 18px;
  }
  .top-news-itemLink {
    padding: 20px 15px;
  }
  .top-news__title {
    font-size: 16px;
  }
  .top-news-itemTxt {
    font-size: 14px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    line-height: 1.7142857143;
  }
  .top-content {
    padding-bottom: 60px;
  }
  .top-content__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-content__media.is-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top-content__image {
    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__description {
    font-size: 16px;
  }
  .top-contact__item {
    width: 100%;
  }
  .top-contact__tel {
    font-size: 30px;
  }
  .text-style-1 {
    font-size: 20px;
  }
  .domestic__inner {
    padding-block: 50px;
  }
  .domestic__content {
    gap: 70px;
  }
  .domestic__lists {
    margin-top: 50px;
  }
  .abroad__inner {
    padding-block: 50px;
  }
  .business__intro {
    padding-bottom: 50px;
  }
  .business__text {
    text-align: left;
  }
  .vision {
    padding-block: 50px;
  }
  .company-map__items {
    gap: 50px;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table {
    margin-top: 25px;
    padding: 20px 0;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .attention {
    margin-top: 50px;
  }
  .attention__text {
    font-size: 20px;
  }
  .horizontal-table {
    padding-top: 20px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .tel-fax {
    padding-block: 50px;
  }
  .tel-fax .heading {
    font-size: 18px;
    padding-left: 50px;
  }
  .tel-fax__box {
    padding: 25px 10px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__title {
    font-size: 16px;
  }
  .tel-fax__text {
    margin-top: 0px;
  }
  .mail-form {
    padding-block: 30px;
  }
  .mail-form .heading {
    font-size: 16px;
    padding-left: 50px;
  }
  .mail-form__title {
    font-size: 18px;
  }
  .mail-form__text {
    margin-top: 10px;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
  .mail-form input[type=checkbox] + span {
    font-size: 15px;
    margin-right: 0;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form input[type=radio] + span:before {
    top: 3px;
  }
  .mail-form input[type=radio]:checked + span:after {
    top: 6px;
  }
  .mail-form input[type=checkbox] + span:before {
    top: 0.3em;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .mail-form .fileUpload {
    font-size: 0.9em; /* 文字を小さくする */
    width: 90%; /* 幅を小さくする */
    display: inline-block; /* インラインブロックにして幅を適用 */
  }
  .detail__date {
    margin-top: 30px;
  }
  .detail__title {
    font-size: 20px;
  }
  .detail__slider {
    margin-block: 30px;
  }
  .normal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .normal._reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column {
    width: 100%;
  }
  .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .column-outside-left {
    margin-left: 0;
    margin-right: 0;
  }
  ._top-intro .column {
    width: 100%;
  }
  ._top-intro .column-outside-right {
    margin-left: 0;
    margin-right: 0;
  }
  .is-business-intro .column .text-box {
    padding: 20px;
  }
  ._top-intro .column .text-box p {
    margin-top: 20px;
  }
  .heading {
    letter-spacing: 0em;
    font-size: 20px;
    padding-left: 50px;
  }
  .heading::before {
    width: 40px;
    height: 50px;
  }
  .heading::after {
    font-size: 15px;
    top: 30px;
    left: 50px;
  }
  .button2 {
    padding-inline: 30px 100px;
    font-size: 16px;
  }
  .button2::after {
    width: 25px;
  }
  .recruit__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .md-none {
    display: none;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #js-pagetop:focus, #js-pagetop:hover {
    opacity: 0.6;
  }
  .header__contact {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__contact:focus, .header__contact:hover {
    background: linear-gradient(135deg, #21e113 0%, #1259e6 99.98%);
    color: yellow;
  }
  .footer .address-area__box .location:focus, .footer .address-area__box .location:hover {
    opacity: 0.6;
  }
  .footer-nav__link:focus, .footer-nav__link:hover {
    opacity: 0.6;
  }
  .footer__link:focus, .footer__link:hover {
    color: #1259e6;
  }
  .top-news {
    padding-block: 250px 150px;
    width: 100%;
  }
  .top-news-inner {
    padding: 60px;
    width: 100%;
    margin-bottom: 0px;
  }
  .top-news-itemLink {
    padding: 38px 15px;
  }
  .top-news-itemLink:after {
    right: 30px;
  }
  .top-news-itemCategory {
    white-space: nowrap;
  }
  .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;
  }
  .button:focus, .button:hover {
    background: linear-gradient(135deg, #21e113 0%, #1259e6 99.98%);
  }
  .button:hover::after {
    right: 0.5em;
  }
  .button2:focus, .button2:hover {
    color: #1259e6;
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  #header {
    height: 70px;
  }
  .header__inner {
    padding-inline: 15px;
  }
  .header__logo a img {
    width: 350px;
  }
  .drawer-icon {
    width: 30px;
    height: 18px;
    position: relative;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 9px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-icon__bar {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #1259e6;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer-icon__bar:nth-child(1) {
    top: 0;
  }
  .drawer-icon__bar:nth-child(2) {
    top: 8px;
  }
  .drawer-icon__bar:nth-child(3) {
    top: 16px;
  }
  .header__nav {
    background: #333;
    width: 270px;
    height: calc(100% - 70px);
    position: fixed;
    right: 0;
    top: 70px;
    padding: 32px 15px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    max-width: 100%;
    overflow-x: auto;
  }
  .header__nav.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__list.is-top-contact-btn {
    margin-left: 0;
    margin-top: 30px;
  }
  .header__contact {
    border-radius: 5px;
  }
  .header__link {
    display: inline-block;
    color: #fff;
  }
  .footer__inner-wrapper {
    display: block;
    padding-block: 40px;
  }
  .footer__company-area {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
  .footer .address-area__box .location {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 10px;
  }
  .footer .address-area__address {
    font-size: 14px;
    text-align: center;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .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__item:first-child::before {
    display: none;
  }
  .footer-nav__item::after {
    display: none;
  }
  .footer-nav__link {
    font-size: 14px;
    letter-spacing: 0;
    padding: 0 10px 10px;
  }
  .footer__nav {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-top: unset;
  }
  .footer__lists {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .footer__link {
    text-align: center;
    height: auto;
    line-height: 1.6;
  }
  .footer__right-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__tel-area {
    padding-inline: 0 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    border-right: none;
  }
  .fv {
    padding-top: 70px;
  }
  .fv__decoration img {
    width: min(17.5145954962vw, 210px);
  }
  .fv__decoration2 img {
    width: min(12.9274395329vw, 155px);
  }
  .picture-copy__title {
    font-size: 5.0041701418vw;
  }
  .mv {
    background-color: #fff;
    padding-top: 70px;
  }
  .top-content__boxes {
    gap: 40px;
  }
  .page-h2 {
    font-size: 32px;
  }
  .page-h2::after {
    width: 16.6805671393vw;
  }
  .is-business-intro .column .text-box p {
    font-size: 1.5012510425vw;
  }
}

@media screen and (min-width: 1200px) {
  .header__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 32px;
  }
  .header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:focus, .header__logo a:hover {
    opacity: 0.6;
  }
  .header__icon {
    display: none;
  }
  .header__link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__link:focus, .header__link:hover {
    color: #1259e6;
  }
  .header__link:hover::before {
    color: #0cb1e8;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .header__logo a img {
    width: 300px;
  }
  .footer .address-area__box .location {
    margin-top: 7px;
  }
  .footer .address-area__address {
    font-size: 13px;
  }
  .fv {
    height: calc(350px + 143px + 74.9674054759vw - 350px);
  }
  .fv__decoration img {
    width: 100px;
  }
  .fv__decoration2 img {
    width: 50px;
  }
  .picture-copy__title {
    font-size: 5.6062581486vw;
  }
  .page-h2 {
    font-size: 22px;
  }
  .page-h2::after {
    width: 26.075619296vw;
    bottom: -18px;
  }
  .is-business-intro .column .text-box p {
    font-size: 16px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) and (max-width: 410px) {
  .header__logo a img {
    width: 71.7079530639vw;
  }
}

@media screen and (max-width: 1023px) {
  .footer__inner {
    padding-inline: 10px;
  }
  .footer__logo {
    text-align: center;
  }
  .h2 {
    font-size: 38px;
  }
  .top-news .h2 {
    font-size: 55px;
  }
  .top-content .h2 {
    font-size: 55px;
  }
  .top-content__image img {
    height: 550px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top-content__body {
    padding: 15px 30px;
  }
  .top-contact .h2 {
    font-size: 55px;
  }
  .business__head {
    font-size: 25px;
  }
  .company-map__inner iframe {
    margin-top: 50px;
  }
  .tel-fax__wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    word-break: break-all;
  }
  .button2.is-top-content-btn {
    width: 100%;
  }
  .button2.is-top-contact-btn {
    width: 100%;
    font-size: 14px;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (min-width: 2001px) {
  .slide {
    height: min(39.3700787402vw, 1100px);
  }
  .fv {
    height: calc(705px + 243px + 30.1837270341vw - 705px);
  }
  .fv__bg-grad {
    height: 30.1837270341vw;
  }
  .column {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .h2 {
    font-size: 30px;
  }
  .top-news .h2 {
    font-size: 40px;
  }
  .top-content .h2 {
    font-size: 40px;
  }
  .top-content__image img {
    margin-top: 10px;
    height: auto;
  }
  .top-content__body {
    padding: 20px;
    width: 100%;
  }
  .top-contact .h2 {
    font-size: 40px;
  }
  .business__head {
    font-size: 20px;
    line-height: unset;
  }
  .company-map__inner iframe {
    height: 300px;
    margin-top: 40px;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
}

@media (max-width: 959px) {
  .top-news-itemLink {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

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

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .column .text-box {
    padding-bottom: 30px;
  }
}

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