@charset "UTF-8";
/* color */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "helvetica-lt-pro", "Noto Sans JP", sans-serif;
  font-style: normal;
  background-color: #efefef;
}

/* header */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 90px;
  background-color: #efefef;
  border-bottom: solid 1px #ccc;
}

#header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header-inner .logo, #header-inner nav, #header-inner ul,
#header-inner .nav-text,
#header-inner .nav-right,
#header-inner .nav-right span,
#header-inner .nav-sns {
  display: flex;
  align-items: center;
}
#header-inner .logo-img {
  width: 25vw;
  height: 90px;
  margin: 0 20px;
  display: flex;
  align-items: center;
}
#header-inner .logo-img img {
  max-height: 30px;
}
#header-inner .name {
  font-size: clamp(0.875rem, 0.693rem + 0.91vw, 1.375rem);
}
#header-inner nav {
  height: 90px;
}
#header-inner nav .nav-text {
  height: 100%;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
}
#header-inner nav .nav-text .nav-left {
  padding-left: 0;
}
#header-inner nav .nav-text a {
  color: #000;
  text-decoration: none;
  height: 100%;
}
#header-inner nav li {
  list-style: none;
  margin-right: 20px;
}
#header-inner nav .nav-contact {
  position: relative;
  background-color: #efefef;
  transition: 0.3s;
  overflow: hidden;
}
#header-inner nav .nav-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff5500;
  transform: translateX(-100%);
  transition: 0.3s;
  z-index: -1;
}
#header-inner nav .nav-contact:hover {
  color: #fff;
  background: none;
}
#header-inner nav .nav-contact:hover .arrow-icon {
  background-color: #fff;
  transition: 0.6s;
}
#header-inner nav .nav-contact:hover .arrow {
  background-color: #ff5500;
}
#header-inner nav .nav-contact:hover .arrow::before, #header-inner nav .nav-contact:hover .arrow::after {
  background-color: #ff5500;
}
#header-inner nav .nav-contact:hover::before {
  transform: translateX(0);
}
#header-inner nav .nav-right {
  width: 175px;
  height: 100%;
  border-left: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
#header-inner nav .nav-right span {
  line-height: 90px;
}
#header-inner nav .nav-sns {
  height: 100%;
  padding: 0 15px;
  border-left: solid 1px #ccc;
}
#header-inner nav .nav-sns img {
  width: 29px;
  margin: 15px;
}
#header-inner nav .nav-sns img:hover {
  opacity: 0.5;
  transition: 0.3s;
}
#header-inner nav .nav-sns:last-child img {
  width: auto;
  height: 29px;
}
#header-inner .navigation {
  display: none;
}

.arrow-icon {
  width: 40px;
  height: 40px;
  margin-left: 20px;
  background-color: #ff5500;
  border-radius: 100%;
}

.arrow {
  position: relative;
  display: inline-block;
  margin: 20px 0 0 10px;
  width: 0;
  height: 2px;
  border-radius: 100px;
  background-color: #fff;
  padding-left: 20px;
}
.arrow::before, .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
.arrow .contact {
  margin-left: 5px;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  padding-left: 20px;
}

.hamburger-menu {
  display: none;
}

/* メニューホバー */
.menu-hover {
  position: relative;
  color: #000;
  overflow: hidden;
  background: linear-gradient(to right, #ff5500 50%, #000 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 0.3s ease;
  text-decoration: none;
}
.menu-hover:hover {
  background-position: 0 100%;
}

/* ドロップダウンメニュー */
#header .menu-item {
  position: relative;
}
#header .menu-item:hover .drop-menu-list {
  opacity: 1;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: visible; /* 下層メニューを表示 */
}
#header .drop-menu {
  position: relative;
}
#header .drop-menu-list {
  position: absolute;
  top: 220%;
  left: -1rem;
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 9999;
  flex-direction: column;
  align-items: start;
  background-color: #efefef;
  padding: 1rem;
  border: solid 1px #ccc;
  line-height: 2.5rem;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
#header .drop-menu-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  border-style: solid;
  border-width: 0 12px 14px 12px;
  border-color: transparent transparent #ccc;
  translate: -50% -100%;
}
#header .drop-menu-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  border-style: solid;
  border-width: 0 10.7px 12.5px 10.7px;
  border-color: transparent transparent #efefef;
  translate: -50% -100%;
}
#header .drop-menu-list .drop-menu-item {
  margin: 0;
  transition: opacity 0.3s; /* 不透明度の変化をアニメーション化 */
}

/* scroll text */
.bbs {
  align-items: center;
  color: #fff;
  font-weight: bold;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 90px;
  white-space: nowrap;
  z-index: -9999;
}
.bbs ul {
  animation: flowing 50s linear infinite;
  font-size: 200px;
  transform: translateX(100%);
  margin: 0;
  padding: 0;
}
.bbs ul li {
  display: inline-block;
  padding-right: 80px;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* top */
.page-top {
  vertical-align: text-bottom;
  height: 180px;
  padding-left: 40px;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  overflow: hidden;
}
.page-top .scroll-heading {
  margin: 0;
  font-weight: bold;
  font-size: 150px;
  transform-origin: left bottom;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.page-top .scroll-heading span {
  font-size: 1.25rem;
  font-weight: normal;
  padding-left: 20px;
}

.page-top-pp {
  height: 275px;
  line-height: min(12.5vw, 125px);
  padding-top: min(1vw, 1rem);
}
.page-top-pp .scroll-heading span {
  padding-left: 80px;
}

/* cta */
.cta {
  display: flex;
  font-weight: 500;
}
.cta .cta-left,
.cta .cta-right {
  width: 50%;
  padding: 40px 0 50px;
  text-align: center;
  color: #fff;
}
.cta .cta-left .cta-btn,
.cta .cta-right .cta-btn {
  display: flex;
  justify-content: center;
  max-width: 300px;
  height: 60px;
  line-height: 55px;
  margin: 20px auto 0;
  position: relative;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition-duration: 0.3s;
}
.cta .cta-left .cta-btn:hover,
.cta .cta-right .cta-btn:hover {
  background: #fff;
  color: #000;
}
.cta .cta-left h3,
.cta .cta-right h3 {
  font-size: 3rem;
  font-weight: 400;
  margin: 0;
}
.cta .cta-left h5,
.cta .cta-right h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1rem 0 0;
}
.cta .cta-left p,
.cta .cta-right p {
  margin-top: 1.5rem;
  line-height: 1.65rem;
}
.cta .cta-left {
  background-color: #ff5500;
}
.cta .cta-left h3 span {
  color: #000;
}
.cta .cta-right {
  background-color: #000;
}
.cta .cta-right h3 span {
  color: #ff5500;
}

/* footer */
.footer-top {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #ccc;
}
.footer-top .footer-left {
  padding: 20px 40px;
}
.footer-top .footer-left .footer-name {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-top .footer-left .footer-info p {
  margin: 0;
  line-height: 1.5rem;
}
.footer-top .footer-left .footer-info .footer-sns {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.footer-top .footer-left .footer-info .footer-sns div {
  width: 42px;
  height: 42px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-top .footer-left .footer-info .footer-sns div img {
  width: 29px;
}
.footer-top .footer-left .footer-info .footer-sns div img:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.footer-top .footer-left .footer-info .footer-sns div:last-child img {
  width: auto;
  height: 29px;
}
.footer-top .footer-right {
  display: flex;
  justify-content: space-between;
  width: 40%;
  max-width: 520px;
  border-left: solid 1px #ccc;
  font-size: 1.125rem;
  line-height: 2.5rem;
  padding: 20px 0;
}
.footer-top .footer-right ul {
  list-style: none;
  padding-left: 40px;
}
.footer-top .footer-right ul a {
  text-decoration: none;
  color: #000;
}
.footer-top .footer-right ul .arrow {
  background-color: #000;
  margin-top: 0;
  vertical-align: middle;
  transform: rotate(-45deg);
}
.footer-top .footer-right ul .arrow::before, .footer-top .footer-right ul .arrow::after {
  background-color: #000;
}
.footer-top .footer-right ul:last-child {
  padding-left: 0;
  padding-right: 40px;
}
.footer-top .footer-right ul:last-child li {
  text-align: right;
}
.footer-top .footer-right .menu-hover:hover .arrow {
  background-color: #ff5500;
  transition: 0.4s;
}
.footer-top .footer-right .menu-hover:hover .arrow::before, .footer-top .footer-right .menu-hover:hover .arrow::after {
  background-color: #ff5500;
  transition: 0.4s;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #ccc;
  padding: 20px 40px;
}
.footer-bottom a {
  text-decoration: none;
  color: #000;
}
.footer-bottom .menu-hover:hover .arrow {
  background-color: #ff5500;
  transition: 0.4s;
}
.footer-bottom .menu-hover:hover .arrow::before, .footer-bottom .menu-hover:hover .arrow::after {
  background-color: #ff5500;
  transition: 0.4s;
}
.footer-bottom p {
  font-size: 0.875rem;
}

ol#included-files-fie-on-wp-footer {
  display: none;
}

/* バナー */
.banner-area {
  position: relative;
  padding-bottom: 20px;
}

.recruit-banner {
  position: sticky;
  bottom: 20px;
  margin-left: auto;
  margin-right: 20px;
  width: 450px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
.recruit-banner a {
  width: 48%;
  transition: all 0.3s ease-in-out;
  transform: translateY(0);
}
.recruit-banner a:hover {
  transform: translateY(-5px);
}
.recruit-banner img {
  width: 100%;
  vertical-align: middle;
}
.recruit-banner .banner-mb {
  display: none;
}

/* home-top */
.home-top {
  width: 100%;
  height: calc(100vh - 90px);
  position: relative;
}
.home-top .home-top-img {
  padding-top: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-top .home-top-img .home-top-center {
  width: 35vw;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  object-fit: cover;
  overflow: visible;
}
.home-top .home-top-img .home-top-left {
  width: 35vw;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  overflow: visible;
}
.home-top .home-top-img .home-top-right {
  width: 35vw;
  height: 85%;
  position: absolute;
  bottom: 0;
  right: -3%;
  object-fit: cover;
  overflow: visible;
}
.home-top .home-copy {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}
.home-top .home-copy .copy-top {
  width: fit-content;
  font-size: min(2.2vw, 32px);
  font-weight: bold;
  background-color: #fff;
  padding: 1rem;
  margin: 0 0 -2px;
  border: solid 2px #000;
}
.home-top .home-copy .copy-top span {
  color: #ff5500;
}
.home-top .home-copy .copy-top br {
  display: none;
}
.home-top .home-copy .copy-bottom {
  width: fit-content;
  font-size: min(4.2vw, 60px);
  font-weight: bold;
  background-color: #fff;
  padding: 1rem;
  margin: 0;
  border: solid 2px #000;
}
.home-top .home-copy .copy-bottom br {
  display: none;
}
.home-top .top-slide {
  display: none;
}

/* home-news */
.home-news {
  margin: 80px 0 100px;
}
.home-news h3, .home-news h5 {
  text-align: center;
}
.home-news h3 span, .home-news h5 span {
  color: #ff5500;
}
.home-news .news-container {
  margin-top: 50px;
}
.home-news .cta-btn {
  display: flex;
  justify-content: center;
  max-width: 300px;
  height: 60px;
  line-height: 55px;
  margin: 50px auto 0;
  position: relative;
  background-color: #000;
  border: solid 2px #000;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition-duration: 0.3s;
}
.home-news .cta-btn:hover {
  background: none;
  color: #000;
}

/* newsページのを流用 */
.news-container {
  width: 90%;
  max-width: 860px;
  margin: 150px auto 0;
}

.news-link {
  border-bottom: solid 1px #ccc;
}
.news-link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  padding: 1.5rem 1rem;
}
.news-link a .news-list {
  display: flex;
  align-items: center;
  height: 100%;
}
.news-link a .news-list .news-info {
  width: 100px;
  font-weight: 500;
  margin-right: 2rem;
}
.news-link a .news-list .news-title {
  margin: 0;
  display: flex;
  align-items: center;
}
.news-link a .arrow-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  background-color: #ff5500;
  border-radius: 100%;
}
.news-link a .arrow {
  position: relative;
  display: inline-block;
  margin: 20px 0 0 10px;
  width: 0;
  height: 2px;
  border-radius: 100px;
  background-color: #fff;
  padding-left: 20px;
}
.news-link a .arrow::before, .news-link a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 1px) 50%;
}
.news-link a .arrow::before {
  transform: rotate(45deg);
}
.news-link a .arrow::after {
  transform: rotate(-45deg);
}
.news-link a .arrow .contact {
  margin-left: 5px;
  font-size: clamp(0.75rem, 0.614rem + 0.68vw, 1.125rem);
  padding-left: 20px;
}

/* home-business */
.home-business {
  position: relative;
  overflow: visible;
  padding: 180px 0;
}
.home-business::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ff5500;
  clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
  z-index: 0;
}

.home-business-inner {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto -15%;
  color: #fff;
  padding-bottom: 5vw;
}
.home-business-inner .img-side {
  position: absolute;
  top: -18%;
  left: 0;
  max-width: 280px;
  min-width: 150px;
  width: 20vw;
  height: auto;
}
.home-business-inner h3, .home-business-inner h5 {
  text-align: center;
}
.home-business-inner h3 span, .home-business-inner h5 span {
  color: #000;
}
.home-business-inner .row {
  width: 100%;
  margin: 150px auto 0;
  justify-content: space-between;
}
.home-business-inner .col-12 {
  width: 46%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  z-index: 10;
}
.home-business-inner .col-12 img {
  width: 100%;
  height: auto;
  border: solid 2px #fff;
  box-sizing: border-box;
  box-shadow: 10px 9px 10px rgba(63, 63, 63, 0.2);
}
.home-business-inner .col-12 .home-business-label {
  height: min(7vw, 69px);
  width: auto;
  margin-bottom: 1rem;
  border: none;
  box-shadow: none;
}
.home-business-inner .col-12 h4 {
  font-size: 1.75rem;
  border-bottom: solid 2px #fff;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.home-business-inner .col-12 .cta-btn {
  display: flex;
  justify-content: center;
  max-width: 300px;
  height: 60px;
  line-height: 55px;
  margin-top: 50px;
  position: relative;
  border: solid 2px #fff;
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition-duration: 0.3s;
}
.home-business-inner .col-12 .cta-btn:hover {
  background: #fff;
  color: #000;
}
.home-business-inner .home-business-sm {
  display: none;
}

/* home-strength */
.home-strength {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: max(10vw, 100px);
  padding: 0 0 100px;
  text-align: center;
}
.home-strength h3 span {
  color: #ff5500;
}
.home-strength .row {
  width: 100%;
  margin: 30px auto 0;
  justify-content: space-between;
}
.home-strength .row .col-12 {
  position: relative;
  border: solid 2px #ff5500;
  border-radius: 10px;
  width: 30%;
  margin-top: 50px;
  padding: 0 10px 10px;
}
.home-strength .row .col-12:hover {
  opacity: 0.5;
  transition: 0.3s;
}
.home-strength .row .col-12 a {
  text-decoration: none;
  color: #000;
}
.home-strength .row .col-12 .strength-title {
  top: -1.25rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  position: absolute;
  background-color: #ff5500;
  color: #fff;
  padding: 0.25rem 1rem;
  max-width: 185px;
  width: 90%;
  font-size: 1.25rem;
  border-radius: 25px;
}
.home-strength .row .col-12 img {
  width: 80%;
  height: 150px;
  object-fit: contain;
  margin: 25px 0 0;
}
.home-strength .row .col-12 .strength-text {
  margin: 0 0.5rem;
}
.home-strength .row .col-12 .strength-text-last {
  margin-bottom: 1.5rem;
}
.home-strength .strength-md div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-strength .strength-btn {
  background-color: #000;
  color: #fff;
  width: fit-content;
  margin: 1.5rem auto;
  padding: 0.35rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
}

@media screen and (max-width: 1024px) {
  #header {
    height: 8.75vw;
    min-height: 50px;
  }
  #header-inner {
    height: 100%;
  }
  #header-inner .logo-img {
    height: 8.75vw;
    min-height: 50px;
    margin-right: 2vw;
  }
  #header-inner .logo-img img {
    min-height: 14px;
  }
  #header-inner .name {
    font-size: max(1.85vw, 12px);
  }
  #header-inner nav {
    height: 100%;
  }
  #header-inner nav .nav-text, #header-inner nav .contact {
    font-size: 1.65vw;
  }
  #header-inner nav .nav-text .nav-left ul, #header-inner nav .contact .nav-left ul {
    padding-left: 4vw;
  }
  #header-inner nav .nav-text .nav-left ul .drop-menu-list, #header-inner nav .contact .nav-left ul .drop-menu-list {
    padding-left: 1rem;
  }
  #header-inner nav .nav-text .nav-right, #header-inner nav .contact .nav-right {
    width: 16vw;
    min-width: 120px;
    border-bottom: none;
  }
  #header-inner nav .nav-text .nav-right .arrow-icon, #header-inner nav .contact .nav-right .arrow-icon {
    width: 3.5vw;
    height: 3.5vw;
    margin-left: 1.6vw;
  }
  #header-inner nav .nav-text .nav-right .arrow-icon .arrow, #header-inner nav .contact .nav-right .arrow-icon .arrow {
    margin: 1.7vw 0 0 0.8vw;
    padding-left: 2vw;
  }
  #header-inner nav .nav-text .nav-right .arrow-icon .arrow::before, #header-inner nav .nav-text .nav-right .arrow-icon .arrow::after, #header-inner nav .contact .nav-right .arrow-icon .arrow::before, #header-inner nav .contact .nav-right .arrow-icon .arrow::after {
    width: 1vw;
  }
  #header-inner nav .nav-text .nav-right .contact, #header-inner nav .contact .nav-right .contact {
    padding-left: 1.6vw;
  }
  #header-inner nav li {
    margin-right: 1.65vw;
  }
  #header-inner nav .nav-sns {
    padding-left: max(1vw, 8px);
    padding-right: max(1vw, 8px);
  }
  #header-inner nav .nav-sns img {
    width: 2.5vw;
    min-width: 22px;
    margin: max(1.5vw, 10px);
  }
  #header-inner nav .nav-sns:last-child img {
    height: 2.5vw;
    min-height: 22px;
    width: auto;
  }
  .bbs {
    height: 9vw;
  }
  .bbs ul {
    font-size: 18.5vw;
  }
  .bbs ul li {
    padding-right: 8vw;
  }
  .page-top {
    padding-left: 20px;
    height: 18vw;
    line-height: 16vw;
  }
  .page-top .scroll-heading {
    font-size: 14.6vw;
  }
  .page-top-pp {
    height: 27vw;
    line-height: min(12.5vw, 125px);
    padding-top: 1vw;
  }
  .footer-top .footer-left {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .footer-top .footer-right ul {
    padding-left: 4vw;
  }
  .footer-top .footer-right ul:last-child {
    padding-right: 4vw;
  }
  .footer-bottom {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  /* home-top */
  .home-top {
    height: 75vh;
    min-height: 500px;
  }
  .home-top .home-top-img .home-top-left {
    left: -5%;
  }
  .home-top .home-top-img .home-top-right {
    right: -8%;
  }
  .home-top .home-copy {
    bottom: 20px;
  }
  .home-top .home-copy .copy-top {
    font-size: clamp(1rem, 0.636rem + 1.82vw, 2rem);
  }
  .home-top .home-copy .copy-bottom {
    font-size: clamp(1.5rem, 0.682rem + 4.09vw, 3.75rem);
  }
}
@media screen and (min-width: 768px) {
  .hamburger-menu {
    display: none !important;
  }
  .navigation {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  #header-inner > :first-child {
    margin-right: auto;
  }
  #header-inner nav .nav-text {
    display: none;
    border: none;
  }
  #header-inner nav .nav-sns {
    border: none;
  }
  #header-inner .hamburger-menu {
    display: block;
    width: 8.75vw;
    min-width: 50px;
    height: 8.75vw;
    min-height: 50px;
    position: relative;
    border: none;
    border-left: solid 1px #ccc;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  #header-inner .hamburger-menu .hamburger-menu__bar {
    display: inline-block;
    width: 44%;
    height: 2px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  #header-inner .hamburger-menu .hamburger-menu__bar:first-child {
    top: 35%;
  }
  #header-inner .hamburger-menu .hamburger-menu__bar:nth-child(2) {
    top: 50%;
  }
  #header-inner .hamburger-menu .hamburger-menu__bar:last-child {
    top: 65%;
  }
  #header-inner .hamburger-menu--open .hamburger-menu__bar:first-child {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  #header-inner .hamburger-menu--open .hamburger-menu__bar:last-child {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  #header-inner .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  #header-inner .navigation {
    background: #efefef;
    position: absolute;
    top: max(8.75vw, 50px);
    height: calc(100vh - max(8.75vw, 50px));
    width: 100%;
    z-index: 9999;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #header-inner .navigation::-webkit-scrollbar {
    display: none;
  }
  #header-inner .navigation.is-open {
    min-height: 100vh;
    position: fixed;
  }
  #header-inner .navigation .navigation__list {
    display: block;
    list-style: none;
    padding: 0 3vw;
    margin: 0;
  }
  #header-inner .navigation .navigation__list .navigation__list-item {
    border-bottom: solid 1px #ccc;
  }
  #header-inner .navigation .navigation__list .navigation__list-item .navigation__link {
    color: #fff;
    font-size: min(10vw, 36px);
    font-weight: 700;
    text-decoration: none;
    display: block;
    padding-top: min(8vw, 24px);
    padding-bottom: min(8vw, 24px);
    transition: 0.5s;
  }
  #header-inner .navigation .navigation__list .navigation__list-item .navigation__link:nth-child(2) {
    padding-bottom: 0;
  }
  #header-inner .navigation .navigation__list .navigation__list-item .navigation__link span {
    padding-left: 5vw;
    font-size: min(5vw, 16px);
  }
  #header-inner .navigation .navigation__list .navigation__list-item div {
    padding-bottom: min(8vw, 24px);
  }
  #header-inner .navigation .navigation__list .navigation__list-item div .navigation__sub {
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
  }
  #header-inner .navigation .navigation__list .navigation__list-item div .navigation__sub:last-child {
    margin-bottom: 0;
  }
  .cta {
    display: block;
  }
  .cta .cta-left,
  .cta .cta-right {
    width: 100%;
  }
  .footer-top {
    display: block;
  }
  .footer-top .footer-right {
    border-top: 1px solid #ccc;
    max-width: 100%;
    width: 100%;
  }
  /* topページ */
  .home-strength .row .col-12 {
    width: 100%;
  }
  .home-strength .row .col-12 .strength-text-last {
    margin-bottom: 0;
  }
  .home-strength .row .strength-md {
    display: flex;
    align-items: center;
  }
  .home-strength .row .strength-md img {
    width: 30%;
    height: auto;
  }
  .home-strength .row .strength-md p {
    margin: 0 0 0 10px;
    text-align: left;
  }
  .home-strength .row .strength-md .strength-btn {
    margin-top: 1.5rem;
  }
  .home-strength .row .strength-md div {
    justify-content: flex-start;
  }
  /* home-business */
  .home-business {
    padding: 100px 0 150px;
  }
  .home-business::before {
    clip-path: polygon(0 0, 100% 3%, 100% 97%, 0% 100%);
  }
  .home-business-inner .img-side {
    top: auto;
    bottom: -4%;
    left: -5%;
    z-index: 20;
    max-width: 250px;
    min-width: 150px;
    width: 40vw;
  }
  .home-business-inner .row {
    margin-top: 50px;
  }
  .home-business-inner .col-12 {
    width: 100%;
  }
  .home-business-inner .col-12 .home-business-label {
    margin-top: 2rem;
    height: max(10vw, 50px);
  }
  .home-business-inner .col-12 .cta-btn {
    margin: 50px auto;
  }
  .home-business-inner .home-business-sm {
    display: flex;
  }
  .home-business-inner .home-business-pc {
    display: none;
  }
  /* バナー */
  .recruit-banner {
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 0;
  }
  .recruit-banner a {
    width: 49%;
  }
  .recruit-banner img {
    height: auto;
    object-fit: cover;
  }
  .recruit-banner .banner-pc {
    display: none;
  }
  .recruit-banner .banner-mb {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  main p {
    font-size: 14px;
  }
  .page-top {
    height: 25vw;
    line-height: 18.5vw;
    padding-top: 0;
  }
  .page-top .scroll-heading span {
    font-size: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
    display: block;
    padding-left: 0;
    margin-top: -8vw;
  }
  .page-top-pp {
    height: 34.5vw;
    line-height: 12.5vw;
    padding-top: 1vw;
  }
  .page-top-pp span {
    line-height: 27vw;
  }
  .cta .cta-left,
  .cta .cta-right {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .cta .cta-left h3,
  .cta .cta-right h3 {
    font-size: max(8vw, 2.25rem);
  }
  .cta .cta-left h5,
  .cta .cta-right h5 {
    font-size: max(3.5vw, 0.875rem);
  }
  .cta .cta-left .cta-btn,
  .cta .cta-right .cta-btn {
    width: 90%;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p {
    line-height: 2rem;
    line-height: 1.5rem;
  }
  .footer-bottom .footer-copy {
    font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
  }
  .footer-bottom .menu-hover {
    display: block;
  }
  /* home-top */
  .home-top {
    overflow: hidden;
  }
  .home-top .home-top-img {
    display: none;
  }
  .home-top .top-slide {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .home-top .top-slide .slide-img {
    width: auto;
    height: 97%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: image-switch-animation 15s infinite;
  }
  .home-top .top-slide .slide-img:nth-of-type(1) {
    animation-delay: 0s;
  }
  .home-top .top-slide .slide-img:nth-of-type(2) {
    animation-delay: 5s;
  }
  .home-top .top-slide .slide-img:nth-of-type(3) {
    animation-delay: 10s;
  }
  @keyframes image-switch-animation {
    0% {
      opacity: 0;
    }
    8% {
      opacity: 1;
    }
    25% {
      opacity: 1;
    }
    41% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  .home-strength .row .col-12 .strength-text {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 476px) {
  .banner-area .home-top .home-copy {
    max-width: 90%;
    left: 0px;
    right: 0px;
    margin: 0 auto;
  }
  .banner-area .home-top .home-copy .copy-top {
    font-size: 5.5vw;
    padding: 2vw;
    line-height: 7.5vw;
  }
  .banner-area .home-top .home-copy .copy-top br {
    display: block;
  }
  .banner-area .home-top .home-copy .copy-bottom {
    padding: 2vw;
    font-size: 6.5vw;
    line-height: 11vw;
  }
  .home-strength .row .col-12 .strength-text {
    margin-top: 8vw;
  }
}/*# sourceMappingURL=style.css.map */