@charset "UTF-8";
/*###################################################################
※※※※ 直接編集禁止 ※※※※
このCSSファイルはSassから生成されていますので直接編集しないようご注意ください。
  編集は拡張子「.scss」ファイルを編集して当ファイルにコンパイルしてください。
  もしくは別途cssファイルを作成して読み込ませてください。
###################################################################*/
:root {
  --base: #fff;
  --base2: #e2f6fb;
  --main: #172c75;
  --main-l: #1f97ba;
  --text: #5a5f73;
}

/*###################################################################
  base（共通設定）
###################################################################*/
/*----------------------------------
  html
----------------------------------*/
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 70px;
}
@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 60px;
  }
}

body {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 2;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

img {
  width: 100%;
  height: auto;
}

/*###################################################################
  animation（共通設定）
###################################################################*/
/*----------------------------------
  zoom
----------------------------------*/
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 10;
  background-color: var(--base);
}
.header_sticky {
  position: fixed;
  top: 0;
}
.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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding: 10px clamp(1.25rem, -3.0476900149rem + 8.9418777943vw, 5rem);
}
@media (max-width: 768px) {
  .header__inner {
    padding: 5px 20px;
  }
}
.header__logo {
  max-width: clamp(10.625rem, 3.8203241431rem + 14.1579731744vw, 16.5625rem);
  width: 100%;
}
.header__menu {
  max-width: clamp(29.375rem, 15.7656482861rem + 28.3159463487vw, 41.25rem);
  width: 100%;
  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;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 768px) {
  .header__menu {
    max-width: 90px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.header__tel {
  max-width: clamp(8.25rem, 6.2444113264rem + 4.172876304vw, 10rem);
  width: 100%;
  height: 40px;
  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;
  -webkit-column-gap: clamp(0.3125rem, 0.2408718331rem + 0.1490312966vw, 0.375rem);
     -moz-column-gap: clamp(0.3125rem, 0.2408718331rem + 0.1490312966vw, 0.375rem);
          column-gap: clamp(0.3125rem, 0.2408718331rem + 0.1490312966vw, 0.375rem);
  background-color: var(--main-l);
}
@media (max-width: 768px) {
  .header__tel {
    max-width: 40px;
  }
}
.header__tel::before {
  content: "";
  min-width: clamp(0.875rem, 0.8033718331rem + 0.1490312966vw, 0.9375rem);
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 768px) {
  .header__tel::before {
    min-width: 18px;
  }
}
.header__tel-num {
  color: var(--base);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(0.875rem, 0.8033718331rem + 0.1490312966vw, 0.9375rem);
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .header__tel-num {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__tel {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .header__tel:hover, .header__tel:focus {
    background-color: var(--main);
  }
}
.header-nav {
  max-width: clamp(20.1875rem, 11.8070044709rem + 17.436661699vw, 27.5rem);
  width: 100%;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__items {
  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;
}
.header-nav__link {
  color: var(--main);
  font-size: clamp(0.8125rem, 0.5976154993rem + 0.4470938897vw, 1rem);
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .header-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .header-nav__link:hover, .header-nav__link:focus {
    color: var(--main-l);
  }
}
/*###################################################################
  footer（module）
###################################################################*/
.footer__gmap {
  width: 100%;
  height: clamp(27.5rem, 23rem + 19.2vw, 35rem);
}
.footer__inner {
  max-width: 825px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  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;
  gap: clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem) 20px;
  margin-top: clamp(2.375rem, -0.1297709924rem + 10.6870229008vw, 5rem);
}
@media (max-width: 768px) {
  .footer__inner {
    -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;
    padding: 0 clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem);
  }
}
.footer__group {
  max-width: clamp(12.5rem, 8.6235687023rem + 16.5394402036vw, 16.5625rem);
  width: 100%;
}
.footer__tel {
  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;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  color: var(--main);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 1.0114503817rem + 1.0178117048vw, 1.5rem);
  line-height: 1.2;
  margin-top: clamp(0.625rem, 0.0286259542rem + 2.5445292621vw, 1.25rem);
}
.footer__tel::before {
  content: "";
  min-width: clamp(1rem, 0.7614503817rem + 1.0178117048vw, 1.25rem);
  aspect-ratio: 1/1;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer__copy {
  height: 77px;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: clamp(0.75rem, 0.6307251908rem + 0.5089058524vw, 0.875rem);
  font-weight: 400;
  line-height: 1.2;
  margin-top: clamp(2.5rem, 0.9625rem + 6.56vw, 5.0625rem);
}

@media (hover: hover) and (pointer: fine) {
  .footer__tel {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .footer__tel::before {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .footer__tel:hover {
    color: var(--main-l);
  }
  .footer__tel:hover::before {
    background-color: var(--main-l);
  }
}
.footer-contact {
  background: url(../images/footer-contact-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/footer-contact-bg.webp) 1x, url(../images/footer-contact-bg@2x.webp) 2x);
  background-image: image-set(url(../images/footer-contact-bg.webp) 1x, url(../images/footer-contact-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .footer-contact {
    background: url(../images/footer-contact-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/footer-contact-bg_sp.webp) 1x, url(../images/footer-contact-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/footer-contact-bg_sp.webp) 1x, url(../images/footer-contact-bg_sp@2x.webp) 2x);
  }
}
.footer-contact__inner {
  max-width: 580px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 80px 30px 100px;
}
@media (max-width: 1280px) {
  .footer-contact__inner {
    padding: clamp(1.875rem, 0rem + 8vw, 5rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
  }
}
.footer-contact__title {
  color: var(--base) !important;
}
@media (max-width: 768px) {
  .footer-contact__en {
    text-transform: uppercase;
  }
}
.footer-contact__text {
  color: var(--base);
  font-size: clamp(0.8125rem, 0.7rem + 0.48vw, 1rem);
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 0.1765267176rem + 4.5801526718vw, 2.375rem);
}
.footer-contact__buttons {
  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: clamp(0.625rem, 0.0286259542rem + 2.5445292621vw, 1.25rem) 10px;
  margin-top: clamp(1.875rem, 0.026240458rem + 7.8880407125vw, 3.8125rem);
}
@media (max-width: 768px) {
  .footer-contact__buttons {
    -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;
  }
}
.footer-contact__link {
  min-width: 174px;
}
.footer-contact__link_tel {
  -webkit-column-gap: 6px !important;
     -moz-column-gap: 6px !important;
          column-gap: 6px !important;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(1rem, 0.7614503817rem + 1.0178117048vw, 1.25rem) !important;
}
.footer-contact__link_tel::before {
  content: "";
  min-width: clamp(0.8125rem, 0.5143129771rem + 1.272264631vw, 1.125rem);
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.footer-nav {
  max-width: 440px;
  width: 100%;
}
.footer-nav__items {
  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-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.footer-nav__link {
  color: var(--main);
  font-size: clamp(0.875rem, 0.7557251908rem + 0.5089058524vw, 1rem);
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link {
    -webkit-transition: color 0.4s ease;
    transition: color 0.4s ease;
  }
  .footer-nav__link:hover, .footer-nav__link:focus {
    color: var(--main-l);
  }
}
/*###################################################################
  c-link（module）
###################################################################*/
.c-link-1 {
  max-width: clamp(10rem, 2.8435114504rem + 30.534351145vw, 17.5rem);
  width: 100%;
  height: clamp(2rem, 0.8072519084rem + 5.0890585242vw, 3.25rem);
  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;
  -webkit-column-gap: clamp(0.625rem, -0.5677480916rem + 5.0890585242vw, 1.875rem);
     -moz-column-gap: clamp(0.625rem, -0.5677480916rem + 5.0890585242vw, 1.875rem);
          column-gap: clamp(0.625rem, -0.5677480916rem + 5.0890585242vw, 1.875rem);
  background-color: var(--main-l);
  color: var(--base);
  font-size: clamp(0.875rem, 0.5171755725rem + 1.5267175573vw, 1.25rem);
  font-weight: bold;
  line-height: 1;
}
.c-link-1__arrow {
  width: clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: 0.09375rem solid var(--base);
  border-radius: 50%;
}
.c-link-1__arrow::before {
  content: "";
  width: clamp(0.3125rem, 0.1335877863rem + 0.7633587786vw, 0.5rem);
  aspect-ratio: 6/10;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow-1.svg);
          mask-image: url(../images/icon-link-arrow-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-1 {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .c-link-1:hover, .c-link-1:focus {
    background-color: var(--main);
  }
}
/*###################################################################
  c-title（module）
###################################################################*/
/*###################################################################
  br（module）
###################################################################*/
.br-1100-b {
  display: none;
}
@media (max-width: 1100px) {
  .br-1100-b {
    display: block;
  }
}
.br-1000-b {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000-b {
    display: block;
  }
}
.br-900-b {
  display: none;
}
@media (max-width: 900px) {
  .br-900-b {
    display: block;
  }
}
.br-800-b {
  display: none;
}
@media (max-width: 800px) {
  .br-800-b {
    display: block;
  }
}
.br-sp-b {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-b {
    display: block;
  }
}
.br-600-b {
  display: none;
}
@media (max-width: 600px) {
  .br-600-b {
    display: block;
  }
}
.br-500-b {
  display: none;
}
@media (max-width: 500px) {
  .br-500-b {
    display: block;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 40px;
  height: 40px;
  display: inline-block;
  position: relative;
  z-index: 30;
  background-color: var(--main);
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(-8px) rotate(135deg);
      -ms-transform: translateY(-8px) rotate(135deg);
          transform: translateY(-8px) rotate(135deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(8px) rotate(-135deg);
      -ms-transform: translateY(8px) rotate(-135deg);
          transform: translateY(8px) rotate(-135deg);
}
.hamburger__line {
  width: 30px;
  height: 3px;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: var(--base);
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: 8px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
  }
  .hamburger:hover {
    background-color: var(--main-l);
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 227px;
  height: 100vh;
  -webkit-transform: translateX(227px);
      -ms-transform: translateX(227px);
          transform: translateX(227px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--base);
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0;
}
.drawer__inner {
  padding-bottom: 100px;
}
.drawer__top {
  width: 100%;
  height: 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--base);
  z-index: 1;
}
.drawer__items {
  max-width: 120px;
  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;
  row-gap: 40px;
  margin-inline: auto;
  padding-top: 110px;
}
.drawer__link {
  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;
  line-height: 1.2;
  color: var(--main);
  border-bottom: 1px solid var(--main);
  padding-bottom: 4px;
}
.drawer__link::after {
  content: "";
  min-width: 6px;
  aspect-ratio: 6/10;
  background-color: var(--main);
  -webkit-mask-image: url(../images/icon-link-arrow-1.svg);
          mask-image: url(../images/icon-link-arrow-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.is-drawer-active {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .drawer__link::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .drawer__link:hover, .drawer__link:focus {
    color: var(--main-l);
    border-color: var(--main-l);
  }
  .drawer__link:hover::after, .drawer__link:focus::after {
    background-color: var(--main-l);
  }
}
.drawer-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: transparent;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*###################################################################
  hover（module）
###################################################################*/
@media (hover: hover) and (pointer: fine) {
  .op {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op:hover, .op:focus {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fn {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fn:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-im {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-im:hover, .op-im:focus {
    opacity: 0.7 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fnim {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fnim:hover {
    opacity: 0.7 !important;
  }
}
/*###################################################################
  lower（module）
###################################################################*/
.lower-mv {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .lower-mv {
    padding-top: 50px;
  }
}
.lower-mv__bg {
  height: clamp(8.125rem, 3.2044198895rem + 20.9944751381vw, 20rem);
  display: grid;
  place-items: center;
  background: url(../images/lower-mv-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
}
@media (max-width: 768px) {
  .lower-mv__bg {
    background: url(../images/lower-mv-1_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/lower-mv-1_sp.webp) 1x, url(../images/lower-mv-1_sp@2x.webp) 2x);
    background-image: image-set(url(../images/lower-mv-1_sp.webp) 1x, url(../images/lower-mv-1_sp@2x.webp) 2x);
  }
}
.lower-mv__title {
  color: var(--base);
  font-size: clamp(1.75rem, 1.2320441989rem + 2.2099447514vw, 3rem);
  font-weight: bold;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
}

/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
/*###################################################################
  top（page）
###################################################################*/
.top-mv {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .top-mv {
    padding-top: 50px;
  }
}
.top-mv__outer {
  container-type: inline-size;
  position: relative;
}
.top-mv__box {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}
@media (max-width: 768px) {
  .top-mv__box {
    top: initial;
    bottom: 21.6cqw;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.top-mv__title {
  color: var(--base);
  font-size: 3.3333333333cqw;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  white-space: pre-line;
  text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .top-mv__title {
    font-size: 8.5333333333cqw;
  }
}
.top-mv .swiper-slide-active img,
.top-mv .swiper-slide-duplicate-active img,
.top-mv .swiper-slide-prev img {
  -webkit-animation: zoom 7s linear 0s normal both;
          animation: zoom 7s linear 0s normal both;
}

.top-about {
  position: relative;
  background: url(../images/top-about-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-about-bg.webp) 1x, url(../images/top-about-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-about-bg.webp) 1x, url(../images/top-about-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-about {
    background: url(../images/top-about-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-about-bg_sp.webp) 1x, url(../images/top-about-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-about-bg_sp.webp) 1x, url(../images/top-about-bg_sp@2x.webp) 2x);
  }
}
.top-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.top-about_pos {
  margin-top: clamp(1.875rem, 1.2786259542rem + 2.5445292621vw, 2.5rem);
}
.top-about__inner {
  max-width: 776px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 80px 30px 100px;
  position: relative;
  z-index: 1;
  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: 40px;
  color: var(--base);
}
@media (max-width: 1280px) {
  .top-about__inner {
    padding: clamp(3.75rem, 2.5572519084rem + 5.0890585242vw, 5rem) clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem);
  }
}
@media (max-width: 768px) {
  .top-about__inner {
    gap: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
  }
}
.top-about__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .top-about__title {
    gap: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
  }
}
.top-about__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
.top-about__jp {
  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;
  font-size: clamp(1.25rem, 0.65rem + 2.56vw, 2.25rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-about__jp {
    gap: 25px;
  }
}
.top-about__jp::before, .top-about__jp::after {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: clamp(3.75rem, 3rem + 3.2vw, 5rem);
  height: 3px;
  background-color: var(--base);
}
.top-about__text {
  font-size: clamp(0.9rem, 0.5670995671rem + 0.6926406926vw, 1rem);
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .top-about__text {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
    text-align: left;
  }
}

.top-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(0.3125rem, 0.0143129771rem + 1.272264631vw, 0.625rem);
  color: var(--main);
  font-weight: bold;
}
.top-title__en {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 0.8rem + 5.12vw, 4rem);
  line-height: 1.2;
}
.top-title__jp {
  font-size: 1.5rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-title__jp {
    font-size: clamp(1rem, 0.5229007634rem + 2.0356234097vw, 1.5rem);
  }
}

.top-greet_pos {
  margin-top: clamp(1.875rem, 0rem + 8vw, 5rem);
}
.top-greet__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .top-greet__inner {
    padding: 0 clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem);
  }
}
.top-greet__body {
  position: relative;
}
@media (max-width: 768px) {
  .top-greet__body {
    max-width: 550px;
    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;
    margin-inline: auto;
  }
}
.top-greet__pc-wrapper {
  max-width: clamp(31.25rem, 12.7320490368rem + 38.5288966725vw, 45rem);
  width: 100%;
  position: relative;
  z-index: 1;
  margin-left: auto;
}
@media (max-width: 768px) {
  .top-greet__pc-wrapper {
    display: contents;
  }
}
.top-greet__title {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-transform: translateX(calc(clamp(-6.9375rem, -13.839645359rem + 14.3607705779vw, -1.8125rem) * -1));
      -ms-transform: translateX(calc(clamp(-6.9375rem, -13.839645359rem + 14.3607705779vw, -1.8125rem) * -1));
          transform: translateX(calc(clamp(-6.9375rem, -13.839645359rem + 14.3607705779vw, -1.8125rem) * -1));
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-greet__title {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.top-greet__box-border {
  -webkit-filter: drop-shadow(-1px 1px 0px var(--main)) drop-shadow(1px 0px 0px var(--main)) drop-shadow(0px -1px 0 var(--main)) drop-shadow(0px 0px 0 var(--main));
          filter: drop-shadow(-1px 1px 0px var(--main)) drop-shadow(1px 0px 0px var(--main)) drop-shadow(0px -1px 0 var(--main)) drop-shadow(0px 0px 0 var(--main));
  margin-top: calc(clamp(-8.875rem, -17.8814579685rem + 18.7390542907vw, -2.1875rem) * -1);
}
@media (max-width: 768px) {
  .top-greet__box-border {
    max-width: 100%;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-top: calc(clamp(1.375rem, 0.8979007634rem + 2.0356234097vw, 1.875rem) * -1);
  }
}
.top-greet__box {
  -webkit-clip-path: polygon(0 0, 93.1% 0, 100% 100%, 6.9% 100%);
          clip-path: polygon(0 0, 93.1% 0, 100% 100%, 6.9% 100%);
  background-color: var(--base);
  padding: 52px 30px 43px;
}
@media (max-width: 768px) {
  .top-greet__box {
    padding: clamp(2.6875rem, 2.1507633588rem + 2.2900763359vw, 3.25rem) 40px clamp(2.5625rem, 2.4432251908rem + 0.5089058524vw, 2.6875rem);
  }
}
.top-greet__box-inner {
  max-width: 509px;
  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;
  color: var(--main);
  text-align: center;
  margin-inline: auto;
}
.top-greet__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-greet__subtitle {
    font-size: clamp(1rem, 0.5229007634rem + 2.0356234097vw, 1.5rem);
  }
}
.top-greet__text {
  color: var(--text);
  font-size: clamp(0.875rem, 0.7066549912rem + 0.350262697vw, 1rem);
  line-height: 2;
  white-space: pre-line;
  margin-top: 19px;
}
@media (max-width: 768px) {
  .top-greet__text {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
    -moz-text-align-last: left;
         text-align-last: left;
    margin-top: 21px;
  }
}
.top-greet__sign {
  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: clamp(0.3125rem, 0.1335877863rem + 0.7633587786vw, 0.5rem);
  color: var(--main);
  font-weight: bold;
  line-height: 1.6;
  margin-top: clamp(1.25rem, 0.5939885496rem + 2.7989821883vw, 1.9375rem);
}
.top-greet__company {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .top-greet__company {
    font-size: clamp(0.9375rem, 0.4007633588rem + 2.2900763359vw, 1.5rem);
  }
}
.top-greet__name-line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 0.55em;
}
@media (max-width: 768px) {
  .top-greet__name-line {
    gap: 0;
  }
}
.top-greet__role {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .top-greet__role {
    font-size: clamp(1.25rem, 0.7729007634rem + 2.0356234097vw, 1.75rem);
  }
}
.top-greet__name {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .top-greet__name {
    font-size: clamp(1.5rem, 0.784351145rem + 3.0534351145vw, 2.25rem);
  }
}
.top-greet__img {
  max-width: clamp(29.0625rem, 7.5985113835rem + 44.6584938704vw, 45rem);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .top-greet__img {
    max-width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    margin-top: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
  }
}
.top-greet__img::after {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 93.1% 0, 100% 100%, 6.9% 100%);
          clip-path: polygon(0 0, 93.1% 0, 100% 100%, 6.9% 100%);
  position: absolute;
  top: clamp(0.625rem, -0.2695610687rem + 3.8167938931vw, 1.5625rem);
  left: calc(clamp(0.625rem, -0.2695610687rem + 3.8167938931vw, 1.5625rem) * -1);
  z-index: -1;
  background-color: var(--main-l);
}

.top-business {
  background-color: var(--base2);
}
.top-business_pos {
  margin-top: clamp(2.5625rem, -0.2404580153rem + 11.9592875318vw, 5.5rem);
}
.top-business__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 80px 30px 100px;
}
@media (max-width: 1280px) {
  .top-business__inner {
    padding: clamp(1.875rem, 0rem + 8vw, 5rem) clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem) clamp(2.5625rem, 0.35rem + 9.44vw, 6.25rem);
  }
}
.top-business__text {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
  white-space: pre-line;
  margin-top: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
  margin-inline: auto;
}
.top-business__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
}
@media (max-width: 768px) {
  .top-business__items {
    max-width: clamp(20rem, 0.9160305344rem + 81.4249363868vw, 40rem);
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    margin-inline: auto;
  }
}
.top-business__link {
  container-type: inline-size;
  aspect-ratio: 32/30;
  display: grid;
  place-items: center;
  position: relative;
  background-color: yellow;
}
.top-business__link::after {
  content: "";
  inset: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
.top-business__link_odd {
  -webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
          clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.top-business__link_even {
  -webkit-clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
          clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}
.top-business__link_1 {
  background: url(../images/top-business-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-business-1.webp) 1x, url(../images/top-business-1@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-1.webp) 1x, url(../images/top-business-1@2x.webp) 2x);
}
.top-business__link_2 {
  background: url(../images/top-business-2.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-business-2.webp) 1x, url(../images/top-business-2@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-2.webp) 1x, url(../images/top-business-2@2x.webp) 2x);
}
.top-business__link_3 {
  background: url(../images/top-business-3.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-business-3.webp) 1x, url(../images/top-business-3@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-3.webp) 1x, url(../images/top-business-3@2x.webp) 2x);
}
.top-business__link_4 {
  background: url(../images/top-business-4.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-business-4.webp) 1x, url(../images/top-business-4@2x.webp) 2x);
  background-image: image-set(url(../images/top-business-4.webp) 1x, url(../images/top-business-4@2x.webp) 2x);
}
.top-business__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5.9375cqw;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-business__box {
    row-gap: clamp(0.3125rem, -0.5224236641rem + 3.5623409669vw, 1.1875rem);
  }
}
.top-business__box-title {
  color: var(--base);
  font-size: 7.5cqw;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .top-business__box-title {
    font-size: clamp(1.125rem, 0.7671755725rem + 1.5267175573vw, 1.5rem);
  }
}
.top-business__icon {
  max-width: 15.625cqw;
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: 2px solid var(--base);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .top-business__icon {
    max-width: clamp(1.875rem, 0.6822519084rem + 5.0890585242vw, 3.125rem);
  }
}
.top-business__icon::before {
  content: "";
  width: 3.4375cqw;
  aspect-ratio: 6/10;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow-1.svg);
          mask-image: url(../images/icon-link-arrow-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 768px) {
  .top-business__icon::before {
    width: clamp(0.5rem, 0.3210877863rem + 0.7633587786vw, 0.6875rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-business__link::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .top-business__link:hover::after, .top-business__link:focus::after {
    background-color: transparent;
  }
}
.top-recruit_pos {
  margin-top: clamp(2.4375rem, 0.15rem + 9.76vw, 6.25rem);
}
.top-recruit__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .top-recruit__inner {
    max-width: clamp(20.9375rem, 5.1335877863rem + 67.4300254453vw, 37.5rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem);
    padding: 0 clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem);
  }
}
.top-recruit__box {
  max-width: 560px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(0rem, -2.6093476357rem + 5.4290718039vw, 1.9375rem);
}
.top-recruit__text {
  font-size: clamp(0.875rem, 0.7066549912rem + 0.350262697vw, 1rem);
  margin-top: clamp(1.25rem, -0.4334500876rem + 3.5026269702vw, 2.5rem);
}
@media (max-width: 768px) {
  .top-recruit__text {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
    margin-top: clamp(1.3125rem, 0.7757633588rem + 2.2900763359vw, 1.875rem);
  }
}
.top-recruit__link {
  margin-top: clamp(1.875rem, -0.6501751313rem + 5.2539404553vw, 3.75rem);
}
@media (max-width: 768px) {
  .top-recruit__link {
    margin-top: clamp(1.875rem, 1.2786259542rem + 2.5445292621vw, 2.5rem);
  }
}
.top-recruit__img {
  max-width: 720px;
  width: 100%;
}

.top-company {
  background: url(../images/top-company-bg.webp) epeat top center/auto;
  background-image: -webkit-image-set(url(../images/top-company-bg.webp) 1x, url(../images/top-company-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-company-bg.webp) 1x, url(../images/top-company-bg@2x.webp) 2x);
}
.top-company_pos {
  margin-top: clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
}
.top-company__inner {
  max-width: 1060px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 80px 30px 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1280px) {
  .top-company__inner {
    padding: clamp(1.875rem, 0rem + 8vw, 5rem) clamp(1.25rem, 0.6536259542rem + 2.5445292621vw, 1.875rem) clamp(2.5rem, 0.25rem + 9.6vw, 6.25rem);
  }
}
@media (max-width: 768px) {
  .top-company__en {
    text-transform: uppercase;
  }
}
.top-company__dl {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(6.25rem, 1rem + 22.4vw, 15rem) 1fr;
  -webkit-column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
     -moz-column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
          column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
  margin-top: clamp(1.25rem, 0.6875rem + 2.4vw, 2.1875rem);
}
.top-company__dt, .top-company__dd {
  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;
  border-bottom: clamp(0.0625rem, 0.025rem + 0.16vw, 0.125rem) solid var(--text);
  font-size: clamp(0.8125rem, 0.625rem + 0.8vw, 1.125rem);
}
.top-company__dt {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  text-align: center;
  padding: clamp(0.59375rem, 0.2375rem + 1.52vw, 1.1875rem) 0;
}
.top-company__dd {
  padding: clamp(0.59375rem, 0.2375rem + 1.52vw, 1.1875rem) clamp(0.625rem, -0.125rem + 3.2vw, 1.875rem);
}
.top-company__link {
  margin-top: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem);
}

/*###################################################################
  business（page）
###################################################################*/
.business1 {
  background-color: var(--base2);
}
.business1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 60px 30px 80px;
}
@media (max-width: 1280px) {
  .business1__inner {
    padding: clamp(3.125rem, 2.5286259542rem + 2.5445292621vw, 3.75rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 80px;
  }
}
.business1__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;
  row-gap: 40px;
}
@media (max-width: 768px) {
  .business1__items {
    row-gap: clamp(2.5rem, 1.3072519084rem + 5.0890585242vw, 3.75rem);
  }
}
.business1__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .business1__item {
    -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;
  }
}
.business1__img {
  max-width: 640px;
  width: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .business1__img {
    max-width: clamp(20.9375rem, -0.8301526718rem + 92.8753180662vw, 43.75rem);
    width: 100%;
  }
}
.business1__box {
  max-width: 680px;
  width: 53.125%;
  min-height: 400px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: var(--base);
  padding: 60px;
  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: 17px;
  margin-top: 60px;
  margin-left: -3.125%;
  padding: clamp(1.25rem, -0.4334500876rem + 3.5026269702vw, 2.5rem);
}
@media (max-width: 768px) {
  .business1__box {
    max-width: clamp(20.9375rem, 5.1335877863rem + 67.4300254453vw, 37.5rem);
    width: 100%;
    min-height: 0;
    margin-top: calc(clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem) * -1);
    margin-left: 0;
    padding: clamp(1.25rem, 0.0572519084rem + 5.0890585242vw, 2.5rem);
    gap: clamp(0.625rem, 0.2075381679rem + 1.7811704835vw, 1.0625rem);
  }
}
.business1__heading {
  color: var(--main);
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .business1__heading {
    font-size: clamp(1.5rem, 0.784351145rem + 3.0534351145vw, 2.25rem);
  }
}
@media (max-width: 768px) {
  .business1__text {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
  }
}

/*###################################################################
  recruit（page）
###################################################################*/
.recruit1 {
  background-color: var(--base2);
}
.recruit1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 60px 30px 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1280px) {
  .recruit1__inner {
    padding: clamp(3.125rem, 2.5286259542rem + 2.5445292621vw, 3.75rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 80px;
  }
}
.recruit1__title {
  color: var(--main);
  font-weight: bold;
  font-size: clamp(1.5rem, 1.05rem + 1.92vw, 2.25rem);
  line-height: 1.6;
  text-align: center;
}
.recruit1__dl {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(6.25rem, -5rem + 48vw, 25rem) 1fr;
  margin-top: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
}
.recruit1__dt, .recruit1__dd {
  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;
  border-bottom: 1px solid;
  font-weight: normal;
  font-size: clamp(0.8125rem, 0.625rem + 0.8vw, 1.125rem);
  line-height: 1.6;
  padding-block: clamp(0.9375rem, 0.4575rem + 2.048vw, 1.7375rem);
}
.recruit1__dt {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 10px;
  background-color: var(--main);
  border-bottom-color: var(--base);
  color: var(--base);
  text-align: center;
}
.recruit1__dd {
  padding-inline: clamp(0.9375rem, 0rem + 4vw, 2.5rem);
  background-color: var(--base);
  border-bottom-color: var(--main);
  color: var(--main);
}
.recruit1__link {
  max-width: clamp(13.75rem, 8.3826335878rem + 22.9007633588vw, 19.375rem);
  margin-top: 40px;
}

/*###################################################################
  company（page）
###################################################################*/
.company1 {
  background-color: var(--base2);
}
.company1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 60px 30px 80px;
}
@media (max-width: 1280px) {
  .company1__inner {
    padding: clamp(3.125rem, 2.5286259542rem + 2.5445292621vw, 3.75rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 80px;
  }
}
.company1__title {
  color: var(--main);
  font-weight: bold;
  font-size: clamp(1.5rem, 1.05rem + 1.92vw, 2.25rem);
  line-height: 1.6;
  text-align: center;
}
.company1__body {
  background-color: var(--base);
  margin-top: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
  padding: clamp(2.5rem, 1.75rem + 3.2vw, 3.75rem) clamp(0.9375rem, -2.625rem + 15.2vw, 6.875rem) clamp(3.75rem, 3rem + 3.2vw, 5rem);
}
.company1__dl {
  display: grid;
  grid-template-columns: clamp(5.3125rem, -0.5rem + 24.8vw, 15rem) 1fr;
  -webkit-column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
     -moz-column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
          column-gap: clamp(0.3125rem, -0.25rem + 2.4vw, 1.25rem);
}
.company1__dt, .company1__dd {
  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;
  border-bottom: clamp(0.0625rem, 0.025rem + 0.16vw, 0.125rem) solid var(--main);
  color: var(--main);
  font-size: clamp(0.8125rem, 0.625rem + 0.8vw, 1.125rem);
  padding-block: clamp(0.625rem, 0.2875rem + 1.44vw, 1.1875rem);
}
.company1__dt {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 10px;
  text-align: center;
}
.company1__dd {
  padding-inline: clamp(0rem, -1.125rem + 4.8vw, 1.875rem);
}
.company1__map {
  margin-top: clamp(2.5rem, 1.3072519084rem + 5.0890585242vw, 3.75rem);
}
.company1__gmap {
  width: 100%;
  height: clamp(27.5rem, 23rem + 19.2vw, 35rem);
}

/*###################################################################
  contact（page）
###################################################################*/
.contact1 {
  background-color: var(--base2);
}
.contact1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 57px 30px 80px;
}
@media (max-width: 1280px) {
  .contact1__inner {
    padding: clamp(3.125rem, 2.7075381679rem + 1.7811704835vw, 3.5625rem) clamp(0.9375rem, 0.0429389313rem + 3.8167938931vw, 1.875rem) 80px;
  }
}
.contact1__title {
  color: var(--main);
  font-weight: bold;
  font-size: clamp(1.5rem, 1.05rem + 1.92vw, 2.25rem);
  line-height: 1.6;
  text-align: center;
}
.contact1__card {
  width: 100%;
  background-color: var(--base);
  margin-top: clamp(1.875rem, 1.5rem + 1.6vw, 2.5rem);
  padding: clamp(1.875rem, 0.75rem + 4.8vw, 3.75rem) clamp(0.9375rem, -0.75rem + 7.2vw, 3.75rem) 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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, 1.3875rem + 2.08vw, 2.6875rem);
}
.contact1__lead {
  font-size: clamp(0.8125rem, 0.5143129771rem + 1.272264631vw, 1.125rem);
  text-align: center;
}
@media (max-width: 768px) {
  .contact1__lead {
    text-align: left;
  }
}
.contact1__form {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form .wpcf7-response-output {
  margin: 10px auto 0;
}
.form .wpcf7-form-control-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 650px;
  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;
}
@media (max-width: 768px) {
  .form .wpcf7-form-control-wrap {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    max-width: 100%;
  }
}
.form .wpcf7-not-valid-tip {
  margin-top: 5px;
  font-size: clamp(0.75rem, 0.6307251908rem + 0.5089058524vw, 0.875rem);
}
.form__body {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.form__paragraph {
  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: clamp(1.25rem, -8.0089754816rem + 19.2644483363vw, 8.125rem);
  padding-bottom: 13px;
  border-bottom: 1px solid #b6b6b6;
}
@media (max-width: 768px) {
  .form__paragraph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
  }
}
.form__paragraph_message {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 11px;
  padding-bottom: 25px;
}
@media (max-width: 768px) {
  .form__paragraph_message {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.form__title {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: clamp(13.75rem, 7.0161996497rem + 14.0105078809vw, 18.75rem);
  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;
  padding: 20px clamp(0.625rem, -1.0584500876rem + 3.5026269702vw, 1.875rem);
}
@media (max-width: 768px) {
  .form__title {
    width: 100%;
    padding: 0;
  }
}
.form__required, .form__optional {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 10px;
  color: var(--base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .form__required, .form__optional {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
    padding: clamp(0.3125rem, 0.0143129771rem + 1.272264631vw, 0.625rem);
  }
}
.form__required {
  background-color: #1d2088;
}
.form__optional {
  background-color: #919191;
}
.form__label {
  color: #3f4065;
  font-size: 1rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .form__label {
    font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
  }
}
.form__input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  background-color: var(--base);
  border: 2px solid #b6b6b6;
  border-radius: 10px;
  color: var(--text);
  font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
  line-height: 1.2;
}
.form__input_message {
  min-height: clamp(17.5rem, 15.7705152672rem + 7.3791348601vw, 19.3125rem);
  padding: 15px;
  resize: vertical;
  line-height: 2;
}
.form__button-wrapper {
  width: 100%;
  margin-top: clamp(1.875rem, 1.125rem + 3.2vw, 3.125rem);
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
}
.form__action-button {
  width: 100%;
  max-width: 192px;
  background-color: #1d2088;
  border: none;
  border-radius: 230px;
  color: var(--base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
  padding: 20px 0px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .form__action-button {
    padding: clamp(0.9375rem, 0.6393129771rem + 1.272264631vw, 1.25rem) clamp(2.5rem, 0.1145038168rem + 10.1781170483vw, 5rem);
    font-size: clamp(0.875rem, 0.7557251908rem + 0.5089058524vw, 1rem);
  }
}
.form[data-status=sent] .form__button-wrapper {
  display: none;
}

/*###################################################################
  page-404（page）
###################################################################*/
.page-404_pos {
  margin-top: clamp(3.125rem, 2.7083333333rem + 1.6666666667vw, 3.75rem);
}
.page-404__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .page-404__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) 100px;
  }
}
.page-404__title {
  font-size: clamp(1.25rem, 1.0114503817rem + 1.0178117048vw, 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}
.page-404__text {
  font-size: clamp(0.8125rem, 0.6335877863rem + 0.7633587786vw, 1rem);
  line-height: 2;
  white-space: pre-line;
  margin-top: 40px;
}
.page-404__button {
  margin: 54px auto 0;
}

@media (hover: hover) and (pointer: fine) {
  .page-404__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .page-404__button:hover, .page-404__button:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  js-（js制御用）
###################################################################*/