@charset "UTF-8";
/*!
global > content-width
------------------------------
*/
/*!
global > font
------------------------------
*/
/*!
global > mixin
------------------------------
*/
.l-header__bottom-item-box .c-recruit-btn-text_small {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .l-header__bottom-item-box .c-recruit-btn-text_small {
    font-size: clamp(0.875rem, 0.2604166667vw + 0.75rem, 1rem);
  }
}

/*!
global > color
------------------------------
*/
/*!
global > content-width
------------------------------
*/
/*!
global > font
------------------------------
*/
/*--------------------------------------------------------------
* フォントサイズ の変数
----------------------------------------------------------------*/
/* pc
_______________________________________________________________________________________________________*/
/*!
global > mixin
------------------------------
*/
/*!
foundation > base
------------------------------
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-display: swap;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: inherit;
  color: #333333;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  overflow-x: hidden;
}

body.is-nav-open {
  overflow: hidden;
}

a:link, a:visited, a:hover, a:active {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: middle;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

/*!
component > header
------------------------------
*/
.l-header {
  background-color: transparent;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
  /* 回避手段 */
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 60px;
}

.l-header__inner-left {
  padding-left: 20px;
}

.l-header__inner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__logo {
  margin-top: 20px;
}

.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 172px;
}

.l-header__logo-title {
  display: block;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Staatliches", cursive;
  line-height: 1;
  margin-top: 4px;
}

.l-header__inner-right-item {
  display: none;
}

.l-header__inner-right-item:nth-of-type(1):hover a {
  opacity: 1;
}

.l-header__inner-right-item:nth-of-type(1):hover .l-header__recruit-link {
  background-color: #1a9283;
}

.l-header__inner-right-item:nth-of-type(2):hover a {
  opacity: 1;
}

.l-header__inner-right-item:nth-of-type(2):hover .l-header__career-link {
  background-color: #23ba5f;
}

.l-header__recruit-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: #1EA896;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 120px;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.l-header__career-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background-color: #27CF6A;
  color: #FFFFFF;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: 120px;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.l-header__hamberger-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333333;
  color: #FFFFFF;
  height: 100%;
  width: 60px;
  cursor: pointer;
  position: relative;
  z-index: 150;
}

.l-header__global-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333333;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.is-nav-open .l-header__global-nav {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.is-nav-close .l-header__global-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.l-header__global-nav-inner {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0 auto;
}

.l-header__top-right {
  margin-top: 19px;
}

.l-header__list-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.l-header__list-item + .l-header__list-item {
  margin-top: 6%;
}

.is-nav-open .l-header__list-item {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.is-nav-close .l-header__list-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.l-header__list-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__list-item-title01 {
  display: inline-block;
  text-transform: uppercase;
  color: #27CF6A;
  font-family: "Staatliches", cursive;
  font-size: 60px;
  font-size: 3.75rem;
  font-size: clamp(32px, 4.8387096774vw, 60px);
  font-size: clamp(2rem, 4.8387096774vw, 3.75rem);
  position: relative;
  padding-left: 50px;
  letter-spacing: 0.05em;
}

.l-header__list-item-title01::before {
  content: "";
  width: 60px;
  width: clamp(40px, 4.8387096774vw, 60px);
  height: 4px;
  background-color: #27CF6A;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-header__list-item-title02 {
  padding-left: 16px;
  color: #27CF6A;
  white-space: nowrap;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(14px, 3.7333333333vw, 20px);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0;
}

.l-header__menu-lists {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.is-nav-open .l-header__menu-lists {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.is-nav-close .l-header__menu-lists {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.l-header__menu-lists {
  padding-top: 1px;
  padding-left: 50px;
}

.l-header__menu-item + .l-header__menu-item {
  margin-top: 19px;
  margin-top: clamp(8px, 1.5322580645vw, 19px);
}

.l-header__menu-item:hover a {
  opacity: 1;
}

.l-header__menu-item:hover .l-header__menu-item-name::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

.l-header__menu-item-name {
  color: #FFFFFF;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 1.6129032258vw, 20px);
  font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.l-header__menu-item-name::after {
  content: "";
  background-color: #FFFFFF;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.3s ease-in-out transform;
  transition: 0.3s ease-in-out transform;
}

.l-header__bottom {
  margin-top: 40px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.is-nav-open .l-header__bottom {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.is-nav-close .l-header__bottom {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.l-header__bottom-item {
  color: #FFFFFF;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: clamp(18px, 1.935483871vw, 24px);
  font-size: clamp(1.125rem, 1.935483871vw, 1.5rem);
  font-weight: 700;
}

.l-header__bottom-item:nth-of-type(2) .l-header__bottom-item-box {
  margin-top: 16px;
  background-color: #27CF6A;
}

.l-header__bottom-item:hover a {
  opacity: 1;
}

.l-header__bottom-item:hover .l-header__bottom-item-box {
  background-color: #1a9283;
}

.l-header__bottom-item:hover:nth-of-type(2) .l-header__bottom-item-box {
  background-color: #23ba5f;
}

.l-header__bottom-item-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #1EA896;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  padding: 62px 0;
  padding-top: clamp(30px, 4.0322580645vw, 50px);
  padding-bottom: clamp(40px, 5.6451612903vw, 70px);
}

/*!
component > footer
------------------------------
*/
.l-footer {
  color: #FFFFFF;
  position: relative;
  z-index: 10;
}

.l-footer__top-list:nth-of-type(1) .l-footer__top-box {
  background-color: #1EA896;
}

.l-footer__top-list:nth-of-type(2) {
  margin-top: 12px;
}

.l-footer__top-list:nth-of-type(2) .l-footer__top-box {
  background-color: #27CF6A;
}

.l-footer__top-list:hover a {
  opacity: 1;
}

.l-footer__top-list:hover:nth-of-type(1) .l-footer__top-box {
  background-color: #1a9283;
}

.l-footer__top-list:hover:nth-of-type(2) .l-footer__top-box {
  background-color: #23ba5f;
}

.l-footer__top-box {
  background-color: #1EA896;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(14px, 3.7333333333vw, 24px);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.5rem);
  line-height: 1.4583333333;
  padding-top: 20px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  position: relative;
}

.l-footer__btn-text {
  position: relative;
  display: block;
}

.l-footer__btn-text::after {
  content: "募集要項はこちら";
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: -18px;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(12px, 3.2vw, 14px);
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
}

.l-footer__bottom {
  padding-top: 32px;
  padding-top: clamp(32px, 8.5333333333vw, 140px);
  background-color: #333333;
  padding-bottom: 100px;
}

.l-footer__logo {
  max-width: 221px;
  width: 100%;
}

.l-footer__copyright {
  margin-top: 30px;
  margin-top: clamp(16px, 2.4193548387vw, 30px);
  font-size: 14px;
  font-size: 0.875rem;
}

.l-footer__bottom-icon {
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.l-footer__bottom-icon::after {
  content: "";
  background: url("../images/common/icon-tab.svg") no-repeat center center;
  background-size: contain;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.l-footer__under-top {
  background-color: #1EA896;
  padding-top: 90px;
  padding-bottom: 90px;
}

.l-footer__under-top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-footer__entry-btn {
  margin-top: 29px;
  width: 45.775862069%;
}

.l-footer__entry-box {
  background-color: #FFFFFF;
  text-align: center;
  padding-top: 38px;
  padding-bottom: 32px;
}

.l-footer__entry-box span {
  display: block;
}

.l-footer__entry-text01 {
  color: #1EA896;
  font-family: "Staatliches", cursive;
  font-size: 60px;
  font-size: 3.75rem;
  font-size: clamp(34px, 4.8387096774vw, 60px);
  font-size: clamp(2.125rem, 4.8387096774vw, 3.75rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.l-footer__entry-text02 {
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(16px, 1.6129032258vw, 20px);
  font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
  font-weight: 700;
}

.l-footer__entry-lead {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  font-size: clamp(34px, 10.625vw, 80px);
  font-size: clamp(2.125rem, 10.625vw, 5rem);
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-footer__entry-lead .l-footer__title-mirror {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  display: inline-block;
  font-weight: 100;
}

.c-hamburger-menu {
  display: inline-block;
  position: relative;
  width: 22px;
  height: 21px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-hamburger-menu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.c-hamburger-menu__line01 {
  top: 0;
}

.c-hamburger-menu__line02 {
  top: 9px;
}

.c-hamburger-menu__line02::before, .c-hamburger-menu__line02::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.c-hamburger-menu__line03 {
  bottom: 0px;
}

.is-nav-open .c-hamburger-menu__line01 {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background: transparent;
}

.is-nav-open .c-hamburger-menu__line02 {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background: transparent;
}

.is-nav-open .c-hamburger-menu__line02::before {
  opacity: 1;
  -webkit-transform: translateY(20px) rotate(-315deg);
  transform: translateY(20px) rotate(-315deg);
}

.is-nav-open .c-hamburger-menu__line02::after {
  opacity: 1;
  -webkit-transform: translateY(20px) rotate(315deg);
  transform: translateY(20px) rotate(315deg);
}

.is-nav-open .c-hamburger-menu__line03 {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  background: transparent;
}

.c-page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.c-page-top-btn.is-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-page-top-btn__body {
  display: block;
  background-color: #27CF6A;
  width: 50px;
  height: 50px;
  position: relative;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
  /* 回避手段 */
}

.c-page-top-btn__body:hover {
  background-color: #23ba5f;
}

.c-page-top-btn__body::before {
  content: "";
  background: url("../images/common/icon_arrow-top.svg") no-repeat center;
  background-size: contain;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-content-width01 {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.c-content-width02 {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.c-content-width03 {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.c-scroll {
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  right: 2.7%;
  bottom: 20%;
}

.c-scroll__item {
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #FFFFFF;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Staatliches", cursive;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  position: relative;
}

.c-scroll__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #FFFFFF;
  -webkit-animation: sdl 1.5s ease infinite;
  animation: sdl 1.5s ease infinite;
}

.c-scroll__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: rgba(244, 244, 244, 0.5);
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  50%, 100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
@keyframes sdl {
  0% {
    -webkit-transform: translateY(-70px);
    transform: translateY(-70px);
  }
  50%, 100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
}
.c-content-title-top {
  font-family: "Staatliches", cursive;
  font-size: 80px;
  font-size: 5rem;
  font-size: clamp(80px, 21.3333333333vw, 240px);
  font-size: clamp(5rem, 21.3333333333vw, 15rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.c-line {
  position: absolute;
}

.c-line__body {
  display: block;
  background-color: #1EA896;
  width: 200px;
  height: 4px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-animation: line-show 4s infinite;
  animation: line-show 4s infinite;
}

@-webkit-keyframes line-show {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  30% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
@keyframes line-show {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
  30% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  80% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }
}
.c-link-btn {
  margin-right: 20px;
}

.c-link-btn__item {
  display: inline-block;
  color: #FFFFFF;
  background-color: #333333;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(14px, 3.7333333333vw, 20px);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.25rem);
  line-height: 1.45;
  padding: 20px 0;
  padding-left: 20px;
  white-space: nowrap;
  position: relative;
  width: 100%;
  text-transform: uppercase;
}

.c-link-btn__item:after {
  content: "";
  height: 4px;
  width: 60px;
  background-color: #27CF6A;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.c-link-btn:hover a {
  opacity: 1;
}

.c-link-btn:hover .c-link-btn__item::after {
  -webkit-transform: translateY(-50%) translateX(10px);
  transform: translateY(-50%) translateX(10px);
}

.c-more-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: none;
  position: fixed;
  z-index: 200;
  top: -82px;
  left: -82px;
  width: 164px;
  height: 164px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.c-more-btn.is-in01 {
  visibility: visible;
  opacity: 1;
}

.c-more-btn.is-in01 .c-more-btn__body {
  background-color: #27CF6A;
}

.c-more-btn.is-in02 {
  visibility: visible;
  opacity: 1;
}

.c-more-btn.is-in02 .c-more-btn__body {
  background-color: #1EA896;
}

.c-more-btn__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Staatliches", cursive;
  font-size: 24px;
  font-size: 1.5rem;
  font-size: clamp(16px, 1.935483871vw, 24px);
  font-size: clamp(1rem, 1.935483871vw, 1.5rem);
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-transform: uppercase;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 100px;
  height: 100px;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.c-more-btn:hover a {
  opacity: 1;
}

.c-more-btn:hover .c-more-btn__body {
  background-color: #1a9283;
}

.c-flip-img__inner {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
  height: 100%;
  width: 100%;
  display: grid;
}

.c-flip-img__front, .c-flip-img__back {
  grid-column: 1/-1;
  grid-row: 1/-1;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.c-flip-img__front {
  -webkit-transform: translateZ(1px);
  transform: translateZ(1px);
}

.c-flip-img__back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.is-hover-active .c-flip-img .c-flip-img__inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.c-text-bk-ani {
  position: relative;
  overflow: hidden;
}

.c-text-bk-ani::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform-origin: center left;
  transform-origin: center left;
  -webkit-transform: translateX(-10%) scaleX(0);
  transform: translateX(-10%) scaleX(0);
  background-color: #1EA896;
  -webkit-animation: ani-throughtBar 800ms linear 0s 1 both;
  animation: ani-throughtBar 800ms linear 0s 1 both;
}

@-webkit-keyframes ani-throughtBar {
  0% {
    -webkit-transform: translateX(-10%) scaleX(0);
    transform: translateX(-10%) scaleX(0);
  }
  35%, 65% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  100% {
    -webkit-transform: translateX(110%) scaleX(1);
    transform: translateX(110%) scaleX(1);
  }
}
@keyframes ani-throughtBar {
  0% {
    -webkit-transform: translateX(-10%) scaleX(0);
    transform: translateX(-10%) scaleX(0);
  }
  35%, 65% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  100% {
    -webkit-transform: translateX(110%) scaleX(1);
    transform: translateX(110%) scaleX(1);
  }
}
.c-recruit-btn-text {
  position: relative;
  display: block;
}

.c-recruit-btn-text::after {
  content: "募集要項はこちら";
  font-weight: 500;
  position: absolute;
  left: 50%;
  bottom: -18px;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 12px;
  font-size: 0.75rem;
  font-size: clamp(12px, 3.2vw, 14px);
  font-size: clamp(0.75rem, 3.2vw, 0.875rem);
}

.c-page-main-title {
  font-family: "Staatliches", cursive;
  font-size: 80px;
  font-size: 5rem;
  font-size: clamp(80px, 21.3333333333vw, 240px);
  font-size: clamp(5rem, 21.3333333333vw, 15rem);
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.c-page-header-title__text01 {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(16px, 4.2666666667vw, 18px);
  font-size: clamp(1rem, 4.2666666667vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}

.c-page-header-title__text02 {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  font-size: clamp(20px, 5.3333333333vw, 24px);
  font-size: clamp(1.25rem, 5.3333333333vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.c-page-main-catcy {
  font-size: 18px;
  font-size: 1.125rem;
  font-size: clamp(18px, 4.8vw, 20px);
  font-size: clamp(1.125rem, 4.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-page-main-catcy__text01, .c-page-main-catcy__text02 {
  display: inline-block;
  position: relative;
  z-index: 10;
  padding: 4px 0px;
  padding-right: 8px;
}

.c-page-main-catcy__text01::before, .c-page-main-catcy__text02::before {
  content: "";
  display: block;
  background-color: #FFFFFF;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.c-page-main-catcy__text02 {
  margin-top: 4px;
  padding-right: 6px;
}

.c-under-deco01 {
  width: clamp(72px, 10vw, 120px);
  height: 4px;
  background-color: #1EA896;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
  position: absolute;
  z-index: -1;
}

.c-entry {
  background: #1EA896;
  width: 100%;
  padding: 15px 20px;
  display: block;
  margin: 0 auto;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.c-entry .en {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 400;
  font-family: "Staatliches", cursive;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  display: block;
}

.c-entry .jp {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
  color: #FFFFFF;
  display: block;
}

.c-entry:hover {
  opacity: 1;
  background-color: #1a9283;
}

.c-entry-btn {
  margin-top: 36px;
}

.c-link01 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75;
  display: inline-block;
  padding-right: 25px;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.c-link01::after {
  content: "";
  background: url("../images/common/icon_tab02.svg") no-repeat center;
  background-size: contain;
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-link01:hover {
  opacity: 0.8;
}

.c-btn01 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  display: block;
  margin: 0 auto;
  background: #333333;
  padding: 15px 20px;
  color: #FFFFFF;
  min-width: 230px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  width: 100%;
}

.c-btn01:hover {
  opacity: 0.8;
}

.c-search {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.8;
  background: #1EA896;
  border: 2px solid #27CF6A;
  color: #FFFFFF;
  display: inline-block;
  border-radius: 5px;
  padding: 5px 15px 5px 35px;
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.c-search::before {
  content: "";
  background: url(../images/feature/icon_search.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-search:hover {
  opacity: 1;
  background-color: #1a9283;
}

.c-search--orange {
  background: #F99A0A;
  border: 2px solid #F96A0A;
}

.c-search--orange:hover {
  opacity: 1;
  background-color: #E9910C;
}

.c-checkbox input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
}

.c-checkbox input[type=checkbox] ~ span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75;
  cursor: pointer;
}

.c-checkbox input[type=checkbox] ~ span::before {
  content: "";
  background: #FFFFFF;
  border: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-checkbox input[type=checkbox] ~ span::after {
  content: "";
  border-left: 3px solid #1EA896;
  border-bottom: 3px solid #1EA896;
  display: inline-block;
  width: 12px;
  height: 8px;
  position: absolute;
  top: calc(50% - 1px);
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  display: none;
}

.c-checkbox input[type=checkbox]:checked ~ span::after {
  display: block;
}

.c-input {
  background: #FFFFFF;
  width: 100%;
  font-size: 14px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  padding: 10px 15px;
}

.c-input::-webkit-input-placeholder {
  color: #CECECE;
}

.c-input::-moz-placeholder {
  color: #CECECE;
}

.c-input::-ms-input-placeholder {
  color: #CECECE;
}

.c-input::placeholder {
  color: #CECECE;
}

.c-radio input[type=radio] {
  width: 0;
  height: 0;
  opacity: 0;
}

.c-radio input[type=radio] ~ span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  cursor: pointer;
}

.c-radio input[type=radio] ~ span::before {
  content: "";
  background: #FFFFFF;
  border-radius: 100%;
  border: none;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-radio input[type=radio] ~ span::after {
  content: "";
  background: #1EA896;
  border-radius: 100%;
  border: none;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.c-radio input[type=radio]:checked ~ span::after {
  display: block;
}

.c-select {
  background: #FFFFFF;
  position: relative;
  width: 100%;
  padding: 10px 15px;
}

.c-select.nice-select {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  border: none;
  border-radius: 0;
  padding-left: 15px;
  padding-right: 45px;
}

.c-select.nice-select::after {
  border-bottom: 2px solid #333333;
  border-right: 2px solid #333333;
  height: 8px;
  margin-top: 0;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  z-index: 2;
}

.c-select.nice-select.open:after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
}

.c-select.nice-select .list {
  width: 100%;
  max-height: 410px;
  overflow: auto;
}

.c-select.nice-select .list li[data-value=""], .c-select.nice-select .list li[data-value="0"] {
  display: none;
}

.c-select.nice-select .list li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}

.c-select__txt {
  position: absolute;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
}

.c-select__placeholder {
  color: #CECECE;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  padding: 10px 15px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #FFFFFF;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.c-textarea {
  background: #FFFFFF;
  width: 100% !important;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  padding: 10px 15px;
  resize: none;
  min-height: 160px;
}

.c-textarea::-webkit-input-placeholder {
  color: #CECECE;
}

.c-textarea::-moz-placeholder {
  color: #CECECE;
}

.c-textarea::-ms-input-placeholder {
  color: #CECECE;
}

.c-textarea::placeholder {
  color: #CECECE;
}

.c-anchor {
  margin-bottom: 50px;
}

.c-anchor__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}

.c-anchor__item {
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
  margin: 10px;
}

.c-anchor__item__link {
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 7px 0 7px 0;
  letter-spacing: 0;
  line-height: 1.45;
  font-weight: 700;
  position: relative;
  padding-right: 20px;
  display: block;
  min-width: 150px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.c-anchor__item__link::before {
  content: "";
  background: url(../images/culture/icon_09.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.c-anchor__item__link:hover {
  opacity: 0.8;
}

.c-ttl01 {
  position: relative;
  padding-left: 55px;
  font-size: clamp(18px, 4.8vw, 20px);
  font-size: clamp(1.125rem, 4.8vw, 1.25rem);
  font-weight: 900;
  line-height: 1.625;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.c-ttl01::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #27CF6A;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.txt {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
}

.txt--bold {
  font-weight: 700;
}

.c-taps {
  margin-bottom: 40px;
}

.c-taps__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-taps__title__txt {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  color: #FFFFFF;
  background: #27CF6A;
  min-width: 140px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.c-taps__title__txt.new {
  background: #1EA896;
}

.c-taps__title__txt:hover {
  background-color: #23ba5f;
}

.c-taps__title__txt:hover.new {
  background: #1a9283;
}

.c-taps__item-section + .c-taps__item-section {
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
}

.c-taps__item-section + .c-taps__item-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  right: -10px;
  border-top: 2px solid #1EA896;
}

.c-taps__content {
  background: #FFFFFF;
  border-top: 2px solid #1EA896;
}

.c-taps__item {
  padding: 40px 10px;
  display: none;
}

.c-taps__item.active {
  display: block;
}

.c-taps__item .list {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75;
  padding: 20px 10px;
  border-top: 1px solid rgba(51, 51, 51, 0.05);
}

.c-taps__item .list:last-child {
  border-bottom: 1px solid rgba(51, 51, 51, 0.05);
}

.c-taps__item .list__ttl {
  margin-bottom: 10px;
}

.c-list02 .ttl {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 1.2;
  color: #1EA896;
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  padding-left: 55px;
  margin-bottom: 10px;
  min-height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-list02 .ttl .num {
  font-size: 50px;
  font-size: 3.125rem;
  letter-spacing: 0.05em;
  line-height: 0.4;
  font-weight: 400;
  font-family: "Staatliches", cursive;
  position: absolute;
  left: 0;
  top: 50%;
  color: #27CF6A;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-list02 .img {
  margin-bottom: 15px;
}

.c-list02 .img img {
  width: 100%;
}

.c-list02__item {
  margin-bottom: 35px;
}

.c-list02__item:first-child .ttl {
  padding-left: 45px;
}

.l-top-mv {
  position: relative;
  z-index: 90;
  margin-top: 45px;
}

.l-top-mv::before {
  content: "";
  position: absolute;
  top: 21.5%;
  bottom: -3%;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  background-color: #27CF6A;
  -webkit-transform: skewY(-8.5deg);
  transform: skewY(-8.5deg);
  z-index: -1;
}

.l-top-message {
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  z-index: -1;
}

.l-top-message::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 14.5vw solid #1EA896;
  /* 三角を白にする */
  border-left: 100vw solid transparent;
}

.l-top-message__inner {
  position: relative;
  z-index: 10;
}

.l-top-message__bk-line01 {
  top: 4.5%;
  left: 49%;
  -webkit-transform: rotate(49deg);
  transform: rotate(49deg);
}

.l-top-message__bk-line01 .c-line__body {
  background-color: #1EA896;
}

.l-top-message__bk-line02 {
  top: 23%;
  left: 69%;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.l-top-message__bk-line02 .c-line__body {
  width: 80px;
  background-color: #27CF6A;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.l-top-message__bk-line03 {
  top: auto;
  bottom: 3.5%;
  left: 29%;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.l-top-message__bk-line03 .c-line__body {
  width: 120px;
}

.l-top-message__bk-text-area {
  position: absolute;
  left: -2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-top-message__bk-text {
  display: block;
  font-family: "Staatliches", cursive;
  font-size: 80px;
  font-size: 5rem;
  font-size: clamp(80px, 21.3333333333vw, 240px);
  font-size: clamp(5rem, 21.3333333333vw, 15rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.05;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-top-message__bk-text li {
  margin-bottom: 100px;
  margin-bottom: clamp(40px, 8.064516129vw, 100px);
}

.l-top-message .l-top-message__bk-text01 {
  -webkit-animation: loop01 60s linear infinite;
  animation: loop01 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-top-message .l-top-message__bk-text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop02 60s linear infinite;
  animation: loop02 60s linear infinite;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-top-message .u-bk-text01 .l-top-message__bk-text01 {
  -webkit-animation: loop01 60s linear infinite;
  animation: loop01 60s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-top-message .u-bk-text01 .l-top-message__bk-text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop02 60s linear infinite;
  animation: loop02 60s linear infinite;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-top-message .u-bk-text02 .l-top-message__bk-text01 {
  -webkit-animation: loop01 60s -20s linear infinite;
  animation: loop01 60s -20s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.l-top-message .u-bk-text02 .l-top-message__bk-text02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: loop02 60s -20s linear infinite;
  animation: loop02 60s -20s linear infinite;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@-webkit-keyframes loop01 {
  0% {
    -webkit-transform: translateY(0%) rotate(180deg);
    transform: translateY(0%) rotate(180deg);
  }
  to {
    -webkit-transform: translateY(-100%) rotate(180deg);
    transform: translateY(-100%) rotate(180deg);
  }
}
@keyframes loop01 {
  0% {
    -webkit-transform: translateY(0%) rotate(180deg);
    transform: translateY(0%) rotate(180deg);
  }
  to {
    -webkit-transform: translateY(-100%) rotate(180deg);
    transform: translateY(-100%) rotate(180deg);
  }
}
@-webkit-keyframes loop02 {
  0% {
    -webkit-transform: translateY(0%) rotate(180deg);
    transform: translateY(0%) rotate(180deg);
  }
  to {
    -webkit-transform: translateY(-100%) rotate(180deg);
    transform: translateY(-100%) rotate(180deg);
  }
}
@keyframes loop02 {
  0% {
    -webkit-transform: translateY(0%) rotate(180deg);
    transform: translateY(0%) rotate(180deg);
  }
  to {
    -webkit-transform: translateY(-100%) rotate(180deg);
    transform: translateY(-100%) rotate(180deg);
  }
}
.l-top-feature {
  background-color: #1EA896;
  z-index: 90;
  position: relative;
  padding-bottom: 18px;
}

.l-top-feature::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 14.5vw solid #FFFFFF;
  /* 三角を白にする */
  border-left: 100vw solid transparent;
}

.l-top-about {
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
  padding-top: 30px;
  padding-top: clamp(30px, 8vw, 283px);
  padding-bottom: 60px;
  padding-bottom: clamp(60px, 16vw, 204px);
}

.l-top-about__bk {
  position: relative;
}

.l-top-about__bk-line01 {
  top: -26%;
  left: 35%;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.l-top-about__bk-line01 .c-line__body {
  background-color: #1EA896;
}

.l-top-about__bk-line02 {
  bottom: 5%;
  left: 60%;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.l-top-about__bk-line02 .c-line__body {
  width: 160px;
  background-color: #1EA896;
  -webkit-animation-delay: 0.16;
  animation-delay: 0.16;
}

.l-top-about__bk-line03 {
  top: auto;
  bottom: -3%;
  left: 25.5%;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.l-top-about__bk-line03 .c-line__body {
  width: 240px;
  background-color: #27CF6A;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.l-top-work {
  background-color: #FFFFFF;
  position: relative;
  padding-top: 91px;
  padding-top: clamp(40px, 7.3387096774vw, 91px);
  padding-bottom: 200px;
  padding-bottom: clamp(100px, 16.1290322581vw, 200px);
}

.l-top-work__bk {
  position: relative;
}

.l-top-work__bk-line01 {
  bottom: 5.5%;
  left: 35.5%;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.l-top-work__bk-line01 .c-line__body {
  width: 160px;
  background-color: #27CF6A;
}

.l-top-work__bk-line02 {
  bottom: -15%;
  left: 25.5%;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.l-top-work__bk-line02 .c-line__body {
  width: 240px;
  background-color: #1EA896;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.l-top-people {
  position: relative;
  background-color: #1EA896;
  z-index: 1;
  margin-bottom: 40px;
  margin-bottom: clamp(40px, 10.6666666667vw, 156px);
}

.l-top-people::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-top: 14.5vw solid #FFFFFF;
  /* 三角を白にする */
  border-left: 100vw solid transparent;
  z-index: -1;
}

.l-top-people::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 14.5vw solid #FFFFFF;
  /* 三角を白にする */
  border-right: 100vw solid transparent;
  z-index: -1;
}

.l-top-people__bk {
  position: relative;
}

.l-top-people__bk-line01 {
  bottom: -9.5%;
  left: 10.5%;
  -webkit-transform: rotate(130deg);
  transform: rotate(130deg);
}

.l-top-people__bk-line01 .c-line__body {
  width: 200px;
  background-color: #27CF6A;
}

.l-top-project {
  position: relative;
  z-index: 90;
}

.l-top-project__bk {
  background: url("../images/top/bk_project01.jpg") no-repeat center center;
  background-size: cover;
  padding-top: 60px;
  padding-top: clamp(60px, 16vw, 6px);
  padding-bottom: 60px;
  padding-bottom: clamp(60px, 16vw, 150px);
}

.l-top-culture {
  background-color: #FFFFFF;
  overflow: hidden;
  position: relative;
  padding-top: 40px;
  padding-top: clamp(40px, 10.6666666667vw, 179px);
  margin-bottom: 36px;
  margin-bottom: clamp(36px, 9.6vw, 124px);
}

.l-top-culture__bk {
  position: relative;
}

.l-top-culture__bk-line01 {
  top: -20%;
  left: 29%;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.l-top-culture__bk-line01 .c-line__body {
  width: 240px;
  background-color: #1EA896;
}

.l-top-culture__bk-line02 {
  top: -11%;
  left: 38.2%;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
}

.l-top-culture__bk-line02 .c-line__body {
  width: 200px;
  background-color: #27CF6A;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.p-top-mv {
  position: relative;
}

.p-top-mv__content {
  margin-right: calc(50% - 50vw);
}

.p-top-mv__title {
  position: absolute;
  top: 59.5%;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  font-size: clamp(34px, 10.625vw, 80px);
  font-size: clamp(2.125rem, 10.625vw, 5rem);
  line-height: 1.25;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-top-mv__title .p-top-mv__title-mirror {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  display: inline-block;
  font-weight: 100;
}

.p-top-mv__title .p-top-mv__title-bk {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 4px;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.p-top-mv__title .p-top-mv__title-bk + .p-top-mv__title-bk {
  margin-top: 4px;
  letter-spacing: 0.12em;
}

.p-top-mv__title .p-top-mv__title-bk + .p-top-mv__title-bk::after {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.p-top-mv__scroll {
  display: none;
}

.p-top-message__content {
  padding-top: 48px;
  padding-top: clamp(48px, 12.8vw, 256px);
  padding-bottom: 116px;
  padding-bottom: clamp(116px, 30.9333333333vw, 256px);
  margin-left: calc(50% - 50vw);
}

.p-top-message__left-img {
  width: 80%;
  width: 80vw;
  width: clamp(280px, 80vw, 400px);
  position: absolute;
  z-index: -1;
}

.p-top-message__left-img img {
  opacity: 0.2;
}

.p-top-message__right {
  padding-left: 20px;
}

.p-top-message__lead {
  font-weight: 900;
  font-size: 40px;
  font-size: 2.5rem;
  font-size: clamp(20px, 3.2258064516vw, 40px);
  font-size: clamp(1.25rem, 3.2258064516vw, 2.5rem);
  letter-spacing: 0.04em;
  margin-top: 40px;
  margin-top: clamp(20px, 3.2258064516vw, 40px);
}

.p-top-message__text-content {
  margin-top: 56px;
  margin-top: clamp(24px, 4.5161290323vw, 56px);
}

.p-top-message__text {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  font-size: clamp(14px, 3.7333333333vw, 20px);
  font-size: clamp(0.875rem, 3.7333333333vw, 1.25rem);
  line-height: 1.8;
}

.p-top-message__text + .p-top-message__text {
  margin-top: 37px;
  margin-top: clamp(20px, 2.9838709677vw, 37px);
}

.p-top-feature__title {
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
  padding-top: 10px;
  position: relative;
  z-index: 30;
}

.p-top-feature__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-top-feature__link {
  display: inline-block;
  z-index: 30;
}

.p-top-feature__link:hover + .p-top-feature__text-area .p-top-feature__text-lead-under-line:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.p-top-feature__link:hover ~ .p-top-feature__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-feature__text-area {
  position: relative;
  z-index: 30;
  margin-top: 32px;
  margin-top: clamp(32px, 8.5333333333vw, 133px);
}

.p-top-feature__text-lead {
  display: inline-block;
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(20px, 2.5806451613vw, 32px);
  font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.625;
}

.p-top-feature__text-lead-under-line {
  position: relative;
  display: block;
  padding-bottom: 1px;
}

.p-top-feature__text-lead-under-line:after {
  content: "";
  background-color: #333333;
  height: 4px;
  width: 97%;
  position: absolute;
  left: 0;
  right: 5%;
  bottom: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s transform ease-out;
  transition: 0.4s transform ease-out, 0.4s -webkit-transform ease-out;
}

.p-top-feature__img {
  overflow: hidden;
}

.p-top-feature__img img {
  -webkit-transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s transform ease-in;
  transition: 0.4s transform ease-in, 0.4s -webkit-transform ease-in;
  max-width: 1049px;
}

.p-top-feature__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 46px;
  margin-top: clamp(20px, 3.7096774194vw, 46px);
}

.p-top-feature__link {
  margin-top: 59px;
  margin-top: clamp(24px, 4.7580645161vw, 59px);
  display: inline-block;
}

.p-top-about {
  position: relative;
  padding-top: 30px;
  padding-top: clamp(30px, 8vw, 283px);
}

.p-top-about__title {
  color: #1EA896;
  position: relative;
  z-index: 30;
}

.p-top-about__content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 48px;
  padding-bottom: clamp(48px, 12.8vw, 160px);
  margin-top: 20px;
  margin-top: clamp(20px, 5.3333333333vw, 158px);
}

.p-top-about__content-flex::after {
  content: "";
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: 0;
}

.p-top-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-top-about__link {
  display: inline-block;
  z-index: 30;
}

.p-top-about__link:hover + .p-top-about__text-area .p-top-about__text-lead-under-line:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.p-top-about__link:hover ~ .p-top-about__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-about__text-area {
  position: relative;
  z-index: 30;
  margin-top: 32px;
  margin-top: clamp(32px, 8.5333333333vw, 154px);
}

.p-top-about__text-lead {
  display: inline-block;
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(20px, 2.5806451613vw, 32px);
  font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.625;
}

.p-top-about__text-lead-under-line {
  position: relative;
  display: block;
  padding-bottom: 1px;
}

.p-top-about__text-lead-under-line:after {
  content: "";
  background-color: #333333;
  height: 6px;
  width: 97%;
  position: absolute;
  left: 0;
  right: 5%;
  bottom: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s transform ease-out;
  transition: 0.4s transform ease-out, 0.4s -webkit-transform ease-out;
}

.p-top-about__img {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-top-about__img img {
  -webkit-transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s transform ease-in;
  transition: 0.4s transform ease-in, 0.4s -webkit-transform ease-in;
}

.p-top-about__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 36px;
  margin-top: clamp(20px, 2.9032258065vw, 36px);
}

.p-top-about__link {
  margin-top: 79px;
  margin-top: clamp(24px, 6.3709677419vw, 79px);
}

.p-top-work {
  position: relative;
}

.p-top-work__title {
  color: transparent;
  -webkit-text-stroke: 2px #333333;
  position: relative;
  top: 0;
  z-index: 30;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
}

.p-top-work__title > span {
  display: block;
  position: relative;
}

.p-top-work__title > span::before {
  content: "仕事を知る";
  position: absolute;
  right: 0px;
  bottom: -8px;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(20px, 2.5806451613vw, 32px);
  font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-stroke: currentcolor;
  color: #333333;
}

.p-top-work__content-flex::after {
  content: "";
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 11%;
  left: calc(50% - 50vw);
}

.p-top-work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-top-work__link {
  display: inline-block;
  z-index: 30;
  margin-top: 60px;
  margin-top: clamp(60px, 16vw, 112px);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-top-work__link:hover + .p-top-about__text-area .p-top-about__text-lead-under-line:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.p-top-work__link:hover ~ .p-top-work__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-work__img {
  z-index: 1;
  overflow: hidden;
}

.p-top-work__img img {
  -webkit-transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s transform ease-in;
  transition: 0.4s transform ease-in, 0.4s -webkit-transform ease-in;
}

.p-top-people__title {
  color: #27CF6A;
}

.p-top-people__content {
  padding-top: 32px;
  padding-top: clamp(32px, 8.5333333333vw, 95px);
  padding-bottom: 40px;
  padding-bottom: clamp(40px, 10.6666666667vw, 105px);
  position: relative;
}

.p-top-people__content-img {
  position: relative;
}

.p-top-people__content-text {
  padding-top: 20px;
  padding-top: clamp(20px, 5.3333333333vw, 229px);
}

.p-top-people__text-slider-item a:hover {
  opacity: 1;
}

.p-top-people__slider-item {
  position: relative;
}

.p-top-people__slider-item a:hover {
  opacity: 1;
}

.p-top-people__slider-item a:hover .c-more-btn__body {
  background-color: #23ba5f;
}

.p-top-people__slider-dots {
  margin-bottom: 10px;
}

.p-top-people__slider-text-area {
  color: #FFFFFF;
}

.p-top-people__slider-text-lead {
  display: inline-block;
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(20px, 2.5806451613vw, 32px);
  font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.625;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-top-people__slider-text {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
}

.p-top-people__slider-text-under {
  display: block;
}

.p-top-people__text-lead-under-line {
  position: relative;
  display: inline-block;
  padding-bottom: 1px;
}

.p-top-people__text-lead-under-line:after {
  content: "";
  background-color: #FFFFFF;
  height: 2px;
  width: 98%;
  position: absolute;
  left: 0;
  right: 5%;
  bottom: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s transform ease-out;
  transition: 0.4s transform ease-out, 0.4s -webkit-transform ease-out;
}

.is-hover-active .p-top-people__text-lead-under-line:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.p-top-people__slider-img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-top-people__slider-item-img {
  margin-right: 2%;
}

.p-top-people__link {
  margin-top: 20px;
}

.p-top-people__link .c-link-btn__item {
  padding-right: 202px;
}

.p-top-project__bk {
  position: relative;
}

.p-top-project__link:hover {
  opacity: 1;
}

.p-top-project__link:hover .p-top-project__bk-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-project__link:hover .p-top-project__text {
  color: #FFFFFF;
}

.p-top-project__link:hover .p-top-project__text .p-top-project__text-bk {
  background-color: #1EA896;
}

.p-top-project__bk-img {
  overflow: hidden;
}

.p-top-project__bk-img img {
  height: 500px;
  height: 40.3225806452vw;
  max-height: 500px;
  -webkit-transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s transform ease-in;
  transition: 0.4s transform ease-in, 0.4s -webkit-transform ease-in;
}

.p-top-project__title {
  color: transparent;
  -webkit-text-stroke: 2px #FFFFFF;
  position: absolute;
  top: -16.5%;
  z-index: 30;
}

.p-top-project__btn {
  position: absolute;
  bottom: -5%;
  right: -2%;
}

.p-top-project__btn:hover + .p-top-project__text {
  color: #FFFFFF;
}

.p-top-project__btn:hover + .p-top-project__text .p-top-project__text-bk {
  background-color: #1EA896;
}

.p-top-project__text {
  position: absolute;
  bottom: -24%;
  left: 2%;
  font-size: 16px;
  font-size: 1rem;
  font-size: clamp(16px, 4.2666666667vw, 32px);
  font-size: clamp(1rem, 4.2666666667vw, 2rem);
  font-size: clamp(0.78rem, 1.9183673469vw + 0.3303826531rem, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-top-project__text.u-sp-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-top-project__text-bk {
  display: block;
  background-color: #FFFFFF;
  padding: 3px 0;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
  padding-right: 10px;
}

.p-top-project__text-bk + .p-top-project__text-bk {
  margin-top: 7px;
  padding-right: 10px;
}

.p-top-culture {
  position: relative;
  padding-top: 30px;
  padding-top: clamp(30px, 8vw, 283px);
}

.p-top-culture__title {
  color: #1EA896;
  position: relative;
  z-index: 30;
}

.p-top-culture__content-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 32px;
  padding-bottom: clamp(32px, 8.5333333333vw, 160px);
  margin-top: 20px;
  margin-top: clamp(20px, 5.3333333333vw, 158px);
}

.p-top-culture__content-flex::after {
  content: "";
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  bottom: 0;
  left: 0;
}

.p-top-culture__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.p-top-culture__link {
  display: inline-block;
  z-index: 30;
}

.p-top-culture__link:hover + .p-top-culture__text-area .p-top-culture__text-lead-under-line:after {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
}

.p-top-culture__link:hover ~ .p-top-culture__img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-top-culture__text-area {
  position: relative;
  z-index: 30;
  margin-top: 32px;
  margin-top: clamp(32px, 8.5333333333vw, 154px);
}

.p-top-culture__text-lead {
  display: inline-block;
  font-weight: 900;
  font-size: 32px;
  font-size: 2rem;
  font-size: clamp(20px, 2.5806451613vw, 32px);
  font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
  letter-spacing: 0.04em;
  line-height: 1.625;
}

.p-top-culture__text-lead-under-line {
  position: relative;
  display: block;
  padding-bottom: 1px;
}

.p-top-culture__text-lead-under-line:after {
  content: "";
  background-color: #333333;
  height: 4px;
  width: 97%;
  position: absolute;
  left: 0;
  right: 5%;
  bottom: 0;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s -webkit-transform ease-out;
  transition: 0.4s transform ease-out;
  transition: 0.4s transform ease-out, 0.4s -webkit-transform ease-out;
}

.p-top-culture__img {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-top-culture__img img {
  -webkit-transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s -webkit-transform ease-in;
  transition: 0.4s transform ease-in;
  transition: 0.4s transform ease-in, 0.4s -webkit-transform ease-in;
}

.p-top-culture__text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 36px;
  margin-top: clamp(20px, 2.9032258065vw, 36px);
}

.p-top-culture__link {
  margin-top: 79px;
  margin-top: clamp(24px, 6.3709677419vw, 79px);
}

.js-scroll-show {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.js-scroll-show.is-show {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-scroll-show.is-delay01 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.js-scroll-show.is-delay02 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js-scroll-show.is-delay03 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js-scroll-show.is-delay04 {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.js-type {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}

.js-type.js-type-active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-type span:nth-of-type(2) {
  position: absolute;
}

/*--------------------------------------------------------------
* javascriptフォルダの_index.scss
----------------------------------------------------------------*/
.js-people {
  /* ここから矢印カスタマイズ */
}

.js-people .slick-dots li button {
  font-size: medium;
  font-size: initial;
  color: #27CF6A;
  background: transparent none repeat 0 0/auto auto padding-box border-box scroll;
  background: initial;
}

.js-people .slick-dots li button:before {
  content: none;
}

.js-people .slick-dots {
  position: relative;
  bottom: 0;
  text-align: left;
}

.js-people .slick-dots li {
  font-family: "Staatliches", cursive;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
}

.js-people .slick-dots li + li {
  position: relative;
  margin-left: 4px;
}

.js-people .slick-dots li + li::before {
  content: "";
  background-color: #27CF6A;
  width: 3px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -3px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.js-people .slick-dots li.slick-active button {
  color: #FFFFFF;
}

.js-people .slick-arrow {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.js-people .slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

.js-people .prev-arrow {
  left: 0%;
  width: 20px;
}

.js-people .next-arrow {
  right: 0;
  width: 20px;
}

.js-people .slick-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 46.875vw;
  width: auto;
  max-height: 720px;
  min-height: 400px;
}

ul.js-mv-slider > li:not(:first-child) {
  display: none;
}

.people {
  /* ここから矢印カスタマイズ */
}

.people .slider .slide {
  margin: 10px;
}

.people .slick-list {
  padding-right: 40px;
  padding-right: clamp(40px, 10.6666666667vw, 60px);
}

.people .slick-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 46.875vw;
  width: auto;
  max-height: 720px;
  min-height: 400px;
}

.people .slick-arrow {
  position: relative;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.people .slick-arrow:hover {
  cursor: pointer;
  opacity: 0.7;
}

.people .prev-arrow {
  left: 0%;
  width: 14px;
}

.people .next-arrow {
  right: 0;
  width: 14px;
}

/*--------------------------------------------------------------
* externalフォルダの_index.scss 
----------------------------------------------------------------*/
.u-pc-only {
  display: none;
}

.u-sp-only {
  display: block;
}

.u-white-space {
  white-space: nowrap;
}

.u-footer-top {
  position: relative;
  background-color: #FFFFFF;
}

.u-footer-top::before {
  content: "";
  position: absolute;
  top: 63%;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #333333;
}

.u-footer-lead-mt {
  margin-top: 18px;
}

.u-footer-top-bottom-content {
  padding-top: 32px;
  padding-top: clamp(32px, 8.5333333333vw, 81px);
  background-color: #333333;
}

.u-footer-mt01 {
  margin-top: 0;
}

.u-icon-tab02 {
  position: relative;
}

.u-icon-tab02::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  background: url("../images/common/icon_tab02.svg") no-repeat center;
  margin-left: 4px;
}

.u-clgreen02 {
  color: #27CF6A;
}

.u-textcenter {
  text-align: center;
}

.u-textcenter-sp {
  text-align: center;
}

.u-textcenter-pc {
  text-align: unset;
}

.u-db {
  display: block;
}

/*--------------------------------------------------------------
* utilityフォルダの_index.scss
----------------------------------------------------------------*/
@media screen and (min-width: 0) {
  body {
    position: relative;
  }
}
@media screen and (min-width: 576px) {
  body {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  body {
    position: relative;
  }
  .l-header__inner {
    height: 120px;
  }
  .l-header__inner-left {
    padding-left: 50px;
  }
  .l-header__logo {
    margin-top: 40px;
  }
  .l-header__logo a {
    max-width: 216px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-header__logo-title {
    margin-top: 0px;
    margin-left: 15px;
    line-height: 1.5;
  }
  .l-header__inner-right-item {
    display: block;
  }
  .l-header__hamberger-area {
    width: 120px;
  }
  .l-header__global-nav {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .l-header__global-nav-inner {
    max-height: 100%;
    max-width: 1240px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .l-header__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-header__top-left, .l-header__top-right {
    width: calc(50% - 20px);
  }
  .l-header__top-right {
    margin-top: 0;
    margin-left: 3.5%;
  }
  .l-header__list-item-title01 {
    padding-left: 18%;
  }
  .l-header__list-item-title02 {
    padding-left: 27px;
    padding-left: 5%;
    font-size: 1.25rem;
    font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
  }
  .l-header__menu-lists {
    padding-left: 18%;
  }
  .l-header__bottom-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-header__bottom-item {
    width: calc(50% - 20px);
  }
  .l-header__bottom-item:nth-of-type(2) .l-header__bottom-item-box {
    margin-top: 0;
  }
  .l-footer__top-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-footer__top-list {
    width: 48.275862069%;
  }
  .l-footer__top-list:nth-of-type(2) {
    margin-top: 0;
  }
  .l-footer__top-box {
    font-size: 1.5rem;
    font-size: clamp(1.125rem, 1.935483871vw, 1.5rem);
    padding-top: 50px;
    padding-bottom: 70px;
  }
  .l-footer__btn-text::after {
    font-size: 0.875rem;
    bottom: -24px;
  }
  .l-footer__bottom {
    padding-top: 140px;
    padding-top: clamp(40px, 11.2903225806vw, 140px);
    padding-bottom: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .l-footer__bottom-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .l-footer__entry-lead {
    font-size: clamp(2.5rem, 6.4516129032vw, 5rem);
  }
  .c-hamburger-menu {
    width: 30px;
    height: 32px;
  }
  .c-hamburger-menu span {
    height: 4px;
  }
  .c-hamburger-menu__line02 {
    top: 14px;
  }
  .c-hamburger-menu__line02::before, .c-hamburger-menu__line02::after {
    height: 4px;
  }
  .is-nav-open .c-hamburger-menu {
    width: 40px;
  }
  .c-page-top-btn {
    right: 30px;
    bottom: 20px;
  }
  .c-page-top-btn__body {
    width: 80px;
    height: 80px;
  }
  .c-page-top-btn__body::before {
    width: 40px;
    height: 40px;
  }
  .c-content-width01 {
    max-width: 1240px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-content-width02 {
    max-width: 1120px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-content-width03 {
    max-width: 1040px;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-scroll {
    bottom: 38%;
  }
  .c-content-title-top {
    font-size: 15rem;
    font-size: clamp(7.5rem, 19.3548387097vw, 15rem);
  }
  .c-link-btn {
    margin-right: 0;
  }
  .c-link-btn__item {
    width: auto;
    font-size: 1.25rem;
    font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
    padding: 25px 0;
    padding-left: 40px;
    padding-right: 180px;
  }
  .c-more-btn__body {
    width: 164px;
    height: 164px;
  }
  .c-recruit-btn-text::after {
    font-size: 1rem;
    font-size: clamp(0.875rem, 1.2903225806vw, 1rem);
    bottom: -24px;
  }
  .c-page-main-title {
    font-size: 15rem;
    font-size: clamp(7.5rem, 19.3548387097vw, 15rem);
  }
  .c-page-header-title__text01 {
    font-size: 1.25rem;
    font-size: clamp(1rem, 1.6666666667vw, 1.25rem);
  }
  .c-page-header-title__text02 {
    font-size: 2.5rem;
    font-size: clamp(1.5rem, 3.3333333333vw, 2.5rem);
  }
  .c-page-main-catcy {
    font-size: 2rem;
    font-size: clamp(1.25rem, 2.6666666667vw, 2rem);
  }
  .c-page-main-catcy__text01, .c-page-main-catcy__text02 {
    padding: 9px 0px;
    padding-right: 17px;
  }
  .c-page-main-catcy__text02 {
    margin-top: 5px;
    padding-right: 13px;
  }
  .c-entry {
    width: 560px;
    padding: 39px 20px 31px 20px;
  }
  .c-entry .en {
    font-size: 3.75rem;
    line-height: 1.025;
  }
  .c-entry .jp {
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .c-entry-btn {
    margin-top: 108px;
  }
  .c-link01 {
    font-size: 1rem;
  }
  .c-link01::after {
    width: 16px;
    height: 16px;
  }
  .c-btn01 {
    font-size: 1.25rem;
    padding: 26px 20px 25px 20px;
    min-width: 320px;
    width: auto;
  }
  .c-search {
    font-size: 1.125rem;
    border-radius: 10px;
    border: 4px solid #27CF6A;
    padding: 5px 15px 5px 35px;
  }
  .c-search::before {
    width: 22px;
    height: 22px;
    left: 8px;
  }
  .c-search--orange {
    border: 4px solid #F96A0A;
  }
  .c-checkbox input[type=checkbox] ~ span {
    font-size: 1rem;
    padding-left: 50px;
  }
  .c-checkbox input[type=checkbox] ~ span::before {
    width: 30px;
    height: 30px;
  }
  .c-checkbox input[type=checkbox] ~ span::after {
    border-left: 4px solid #1EA896;
    border-bottom: 4px solid #1EA896;
    width: 16px;
    height: 10px;
    left: 7px;
  }
  .c-input {
    font-size: 1rem;
    padding: 16px 21px;
  }
  .c-radio input[type=radio] ~ span {
    font-size: 1rem;
    padding: 16px 20px 16px 47px;
    margin-right: 23px;
  }
  .c-radio input[type=radio] ~ span::before {
    width: 30px;
    height: 30px;
  }
  .c-radio input[type=radio] ~ span::after {
    width: 16px;
    height: 16px;
    left: 7px;
  }
  .c-select {
    padding: 16px 21px;
  }
  .c-select.nice-select {
    height: 60px;
    font-size: 1rem;
  }
  .c-select.nice-select::after {
    height: 11px;
    right: 29px;
    top: calc(50% - 1px);
    width: 12px;
  }
  .c-select__txt {
    font-size: 1rem;
    right: -36px;
  }
  .c-select__placeholder {
    font-size: 1rem;
    padding: 16px 21px;
  }
  .c-textarea {
    font-size: 1rem;
    padding: 18px 21px;
    min-height: 280px;
  }
  .c-anchor {
    margin-bottom: 97px;
  }
  .c-anchor__inner {
    width: calc(100% + 60px);
    margin-left: -30px;
  }
  .c-anchor__item {
    margin: 10px 30px;
  }
  .c-anchor__item__link {
    min-width: 245px;
    padding: 20px 0 20px 0;
  }
  .c-anchor__item__link::before {
    width: 20px;
    height: 12px;
    top: calc(50% + 2px);
  }
  .c-anchor__item__link {
    font-size: 1.25rem;
    padding-right: 25px;
  }
  .c-ttl01 {
    padding-left: 110px;
    font-size: clamp(1.25rem, 2.6666666667vw, 2rem);
    margin-bottom: 35px;
  }
  .c-ttl01::before {
    width: 80px;
    height: 4px;
  }
  .txt {
    font-size: 1rem;
  }
  .c-taps {
    margin-bottom: 72px;
  }
  .c-taps__title__txt {
    font-size: 1.25rem;
    min-width: 320px;
    padding: 26px 20px;
  }
  .c-taps__item-section + .c-taps__item-section {
    margin-top: 100px;
    padding-top: 38px;
  }
  .c-taps__item-section + .c-taps__item-section::before {
    left: -80px;
    right: -80px;
  }
  .c-taps__item {
    padding: 38px 40px;
  }
  .c-taps__item .list {
    padding: 27px 30px 27px 30px;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-top: 2px solid rgba(51, 51, 51, 0.05);
  }
  .c-taps__item .list:last-child {
    border-bottom: 2px solid rgba(51, 51, 51, 0.05);
  }
  .c-taps__item .list__ttl {
    margin-bottom: 0;
    width: 180px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .c-taps__item .list__txt {
    width: calc(100% - 180px);
  }
  .c-list02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .c-list02 .ttl {
    font-size: 1.5rem;
    padding-left: 125px;
    min-height: 100px;
    margin-bottom: 5px;
  }
  .c-list02 .ttl .num {
    font-size: 6.25rem;
  }
  .c-list02 .img {
    margin-bottom: 21px;
  }
  .c-list02__item {
    width: 100%;
    max-width: 560px;
    margin: 20px 20px 60px 20px;
  }
  .c-list02__item:first-child .ttl {
    padding-left: 105px;
  }
  .l-top-mv {
    margin-top: 0;
  }
  .l-top-message__bk-line02 .c-line__body {
    width: 160px;
  }
  .l-top-message__bk-line03 {
    bottom: 7.5%;
  }
  .l-top-message__bk-line03 .c-line__body {
    width: 240px;
  }
  .l-top-message__bk-text {
    font-size: 15rem;
    font-size: clamp(7.5rem, 19.3548387097vw, 15rem);
  }
  .l-top-about {
    padding-top: 283px;
    padding-top: clamp(120px, 22.8225806452vw, 283px);
    padding-bottom: 204px;
    padding-bottom: clamp(100px, 16.4516129032vw, 204px);
  }
  .l-top-about__bk-line02 {
    bottom: 3%;
    left: auto;
    right: 23.2%;
  }
  .l-top-about__bk-line03 {
    bottom: -17%;
    left: 48.5%;
  }
  .l-top-work__bk-line01 {
    bottom: 1.5%;
    left: 45.5%;
  }
  .l-top-work__bk-line02 {
    bottom: -15.5%;
    left: 42%;
  }
  .l-top-work__bk-line02 .c-line__body {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
  }
  .l-top-people {
    margin-bottom: 156px;
    margin-bottom: clamp(80px, 12.5806451613vw, 156px);
  }
  .l-top-people__bk-line01 {
    left: 29.5%;
    bottom: -20.5%;
  }
  .l-top-project__bk {
    padding-top: 150px;
    padding-top: clamp(80px, 12.0967741935vw, 150px);
    padding-bottom: 150px;
    padding-bottom: clamp(80px, 12.0967741935vw, 150px);
  }
  .l-top-culture {
    padding-top: 179px;
    padding-top: clamp(80px, 14.435483871vw, 179px);
    margin-bottom: 240px;
    margin-bottom: clamp(124px, 19.3548387097vw, 240px);
  }
  .p-top-mv__title {
    font-size: clamp(2.5rem, 6.4516129032vw, 5rem);
    left: -1.5%;
  }
  .p-top-mv__title .p-top-mv__title-bk {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
  }
  .p-top-mv__title .p-top-mv__title-bk + .p-top-mv__title-bk {
    margin-top: 6px;
  }
  .p-top-mv__scroll {
    display: block;
  }
  .p-top-message__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 256px;
    padding-top: clamp(120px, 20.6451612903vw, 256px);
    padding-bottom: 256px;
    padding-bottom: clamp(120px, 20.6451612903vw, 256px);
  }
  .p-top-message__left-img {
    width: 40.7270029674%;
    position: relative;
    z-index: 10;
  }
  .p-top-message__left-img img {
    opacity: 1;
  }
  .p-top-message__right {
    padding-left: 0;
    width: 47.4777448071%;
  }
  .p-top-message__text {
    font-size: 1.25rem;
    font-size: clamp(1rem, 1.6129032258vw, 1.25rem);
  }
  .p-top-feature__content {
    margin-right: calc(50% - 50vw);
  }
  .p-top-feature__text-area {
    margin-top: 133px;
    margin-top: clamp(100px, 10.7258064516vw, 133px);
  }
  .p-top-feature__img {
    position: absolute;
    z-index: 1;
    top: -21.5%;
    right: 0;
  }
  .p-top-feature__img img {
    width: 1049px;
    width: 68.2942708333vw;
  }
  .p-top-feature__text {
    font-size: 1rem;
  }
  .p-top-about {
    position: static;
    padding-top: 0;
  }
  .p-top-about__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: -24%;
    right: -2.5%;
  }
  .p-top-about__content-flex {
    position: relative;
    margin-top: 158px;
    margin-top: clamp(80px, 12.7419354839vw, 158px);
    padding-bottom: 160px;
    padding-bottom: clamp(80px, 12.9032258065vw, 160px);
  }
  .p-top-about__content {
    width: 42.9032258065%;
    margin-right: 35px;
    margin-right: clamp(20px, 2.8225806452vw, 35px);
  }
  .p-top-about__text-area {
    margin-top: 153px;
    margin-top: clamp(80px, 12.3387096774vw, 153px);
  }
  .p-top-about__img {
    position: absolute;
    top: -24%;
    left: calc(50% - 50vw);
  }
  .p-top-about__img img {
    width: 670px;
    width: 43.6197916667vw;
    max-width: 670px;
  }
  .p-top-about__text {
    font-size: 1rem;
  }
  .p-top-work__title > span::before {
    right: 4px;
    bottom: 0;
  }
  .p-top-work__title {
    position: absolute;
    top: 0;
    z-index: 30;
  }
  .p-top-work__content-flex {
    position: relative;
  }
  .p-top-work__content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-top-work__link {
    margin-right: 20px;
    margin-top: 0;
  }
  .p-top-work__img {
    margin-right: calc(50% - 50vw);
    margin-top: 112px;
    margin-top: clamp(60px, 9.0322580645vw, 112px);
  }
  .p-top-work__img img {
    width: 1200px;
    width: 78.125vw;
    max-width: 1200px;
  }
  .p-top-people__title {
    position: absolute;
    top: -2%;
    left: -4%;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
  }
  .p-top-people__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 95px;
    padding-top: clamp(40px, 7.6612903226vw, 95px);
    padding-bottom: 105px;
    padding-bottom: clamp(40px, 8.4677419355vw, 105px);
  }
  .p-top-people__content-img {
    width: 51.724137931%;
  }
  .p-top-people__content-text {
    padding-top: 229px;
    padding-top: clamp(100px, 18.4677419355vw, 229px);
    padding-left: 106px;
    padding-left: clamp(50px, 8.5483870968vw, 106px);
    width: 48.275862069%;
  }
  .p-top-people__slider-text {
    font-size: 1rem;
    margin-top: 36px;
  }
  .p-top-people__slider-img-area {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .p-top-people__link {
    position: absolute;
    right: 20px;
    bottom: 4%;
    margin-top: 0;
  }
  .p-top-project__bk-img img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 300px;
  }
  .p-top-project__title {
    position: absolute;
    top: -16.5%;
    left: -5%;
    z-index: 30;
  }
  .p-top-project__btn {
    bottom: auto;
    top: 50%;
    right: -2%;
  }
  .p-top-project__text {
    font-size: 2rem;
    font-size: clamp(1.25rem, 2.5806451613vw, 2rem);
    position: absolute;
    top: auto;
    bottom: 6%;
    left: 8.5%;
  }
  .p-top-project__text.u-sp-only {
    display: none;
  }
  .p-top-project__text-bk {
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
  }
  .p-top-culture {
    position: static;
    padding-top: 0;
  }
  .p-top-culture__title {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: -24%;
    right: -2.5%;
  }
  .p-top-culture__content-flex {
    position: relative;
    margin-top: 158px;
    margin-top: clamp(80px, 12.7419354839vw, 158px);
    padding-bottom: 160px;
    padding-bottom: clamp(80px, 12.9032258065vw, 160px);
  }
  .p-top-culture__content {
    width: 42.9032258065%;
    margin-right: 35px;
    margin-right: clamp(20px, 2.9166666667vw, 35px);
  }
  .p-top-culture__text-area {
    margin-top: 154px;
    margin-top: clamp(80px, 12.4193548387vw, 154px);
  }
  .p-top-culture__img {
    position: absolute;
    top: -24%;
    left: calc(50% - 50vw);
  }
  .p-top-culture__img img {
    width: 670px;
    width: 43.6197916667vw;
    max-width: 670px;
  }
  .p-top-culture__text {
    font-size: 1rem;
  }
  .js-people .prev-arrow {
    left: 16.5%;
    width: 40px;
  }
  .js-people .next-arrow {
    width: 40px;
  }
  .people .slick-list {
    padding-right: 0;
  }
  .people .prev-arrow {
    width: 20px;
  }
  .people .next-arrow {
    width: 20px;
  }
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
  .u-footer-top-bottom-content {
    padding-top: 81px;
    padding-top: clamp(40px, 6.5322580645vw, 81px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .u-footer-mt01 {
    margin-top: -27px;
  }
  .u-textcenter-sp {
    text-align: unset;
  }
  .u-textcenter-pc {
    text-align: center;
  }
  .u-top-slider-text {
    font-size: 1.875rem;
    font-size: clamp(1.25rem, 2.4193548387vw, 1.875rem);
  }
}
@media screen and (min-width: 1025px) {
  body {
    position: relative;
  }
  .l-header__menu-lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-header__menu-item + .l-header__menu-item {
    margin-top: 0;
  }
  .l-header__menu-item:nth-of-type(even) {
    margin-left: 60px;
    margin-left: clamp(32px, 4.8387096774vw, 60px);
  }
  .l-header__menu-item:nth-of-type(n+3) {
    margin-top: 19px;
    margin-top: clamp(8px, 1.5322580645vw, 19px);
  }
  .c-taps__item {
    padding: 38px 80px;
  }
  .c-taps__item .list__ttl {
    width: 300px;
  }
  .c-taps__item .list__txt {
    width: calc(100% - 300px);
  }
  .c-list02__item {
    width: calc(50% - 40px);
  }
  .people .slick-list {
    padding-right: 160px;
    padding-right: clamp(160px, 20.8333333333vw, 320px);
  }
}
@media screen and (min-width: 1200px) {
  body {
    position: relative;
  }
  .c-search {
    font-size: 1.25rem;
    padding: 11px 28px 11px 52px;
  }
  .c-search::before {
    width: 30px;
    height: 30px;
    left: 12px;
  }
}
@media screen and (min-width: 1400px) {
  body {
    position: relative;
  }
}

.c-recruit-btn-text::after {
  display: none;
}

@media screen and (min-width: 768px) {
  .l-header__bottom-lists {
    gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__bottom-item {
    margin-bottom: 40px;
  }
}
.l-header__bottom-item:nth-of-type(3) .l-header__bottom-item-box {
  margin-top: 16px;
  background-color: #A9CF27;
}
@media screen and (min-width: 768px) {
  .l-header__bottom-item:nth-of-type(3) .l-header__bottom-item-box {
    margin: 0;
  }
}
.l-header__bottom-item a {
  display: block;
  height: 100%;
  width: 100%;
}
.l-header__bottom-item-box {
  height: 100%;
  padding: 35px 0;
  flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .l-header__bottom-item-box {
    padding: clamp(1rem, 3.6458333333vw + -0.75rem, 2.75rem) 0;
    gap: 5px;
  }
}
.l-header__hamberger-area {
  width: clamp(6.25rem, 21.7391304348vw + -4.1847826087rem, 7.5rem);
}

.l-header__recruit-link {
  font-size: clamp(0.875rem, 2.1739130435vw + -0.1684782609rem, 1rem);
  width: clamp(6.25rem, 21.7391304348vw + -4.1847826087rem, 7.5rem);
}

.l-header__career-link {
  font-size: clamp(0.875rem, 2.1739130435vw + -0.1684782609rem, 1rem);
  width: clamp(6.25rem, 21.7391304348vw + -4.1847826087rem, 7.5rem);
}

.l-header__referral-link {
  background-color: #A9CF27;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #FFFFFF;
  font-size: clamp(0.875rem, 2.1739130435vw + -0.1684782609rem, 1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  width: clamp(6.25rem, 21.7391304348vw + -4.1847826087rem, 7.5rem);
  transition: 0.4s ease-out;
}

.l-footer .u-footer-top::before {
  top: 74%;
}
@media screen and (min-width: 768px) {
  .l-footer .u-footer-top::before {
    top: 63%;
  }
}

.l-footer__top-list a {
  height: 100%;
  display: block;
}
.l-footer__top-list a .l-footer__top-box {
  height: 100%;
  padding: 30px 0;
  align-items: center;
  min-height: clamp(7.1875rem, 1.2755102041vw + 6.8885522959rem, 7.5rem);
}
@media screen and (min-width: 768px) {
  .l-footer__top-list a .l-footer__top-box {
    padding: clamp(2.1875rem, 1.0416666667vw + 1.6875rem, 2.6875rem) 0;
  }
}
.l-footer__top-list:nth-of-type(3) {
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .l-footer__top-list:nth-of-type(3) {
    margin-top: 0;
  }
  .l-footer__top-list:nth-of-type(3):hover .l-footer__top-box {
    background-color: #9dcf27;
  }
}
.l-footer__top-list:nth-of-type(3) .l-footer__top-box {
  background-color: #A9CF27;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.l-footer__top-list:nth-of-type(3) .l-footer__top-box .c-recruit-btn-text__small {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .l-footer__top-list:nth-of-type(3) .l-footer__top-box .c-recruit-btn-text__small {
    font-size: 1.25rem;
  }
}


/*# sourceMappingURL=style.css.map */
