@charset "UTF-8";
/*======================
  reset
======================*/
html, body, div, span, iframe, h1, h2, h3, h4, p, a, img, dl, dt, dd, ol, ul, li, label, table, tbody, tr, th, td, figure, blockquote {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, figure, footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

input[type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
}

/*======================*/
body {
  font-family: "Lato", "Noto Sans Japanese", "Noto Sans JP", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #111;
}

HTML {
  font-size: 10px;
}

body {
  color: #351f01;
  font-size: calc(20vw / 14.4);
  font-family: "Noto Sans JP";
  background: -webkit-gradient(linear, left top, right top, from(rgba(249, 153, 122, 0.1)), to(rgba(250, 134, 129, 0.1)));
  background: linear-gradient(90deg, rgba(249, 153, 122, 0.1), rgba(250, 134, 129, 0.1));
  background-repeat: repeat;
  background-size: auto;
  overflow-x: hidden;
}

.wrapper {
  width: calc(1440vw / 14.4);
  margin: 0 auto;
  padding: 0 6%;
}

a:hover {
  opacity: 0.8;
}

img {
  width: 100%;
}

.arrow {
  position: relative;
  display: inline-block;
  margin-top: 7.5px;
  background-color: #583726;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 16px;
  height: 1px;
  background-color: #583726;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
}

.arrow-btn {
  width: calc(78vw / 14.4);
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffd6bb), to(#ffe4e4));
  background: linear-gradient(0deg, #ffd6bb 0%, #ffe4e4 100%);
  border-radius: 999px;
  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;
}
@media (max-width: 600px) {
  .arrow-btn {
    width: 40px;
  }
}
.arrow-btn span {
  position: relative;
  display: inline-block;
  width: calc(42vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
}
@media (max-width: 600px) {
  .arrow-btn span {
    width: 24px;
  }
}
.arrow-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0vw / 14.4);
  width: calc(10vw / 14.4);
  height: 1.5px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 600px) {
  .arrow-btn span::before {
    width: 5px;
  }
}

.js-fade-up-trigger {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fade-up {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
.fade-up.is-delay1 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media (max-width: 600px) {
  .fade-up.is-delay1.only-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
.fade-up.is-delay2 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media (max-width: 600px) {
  .fade-up.is-delay2.only-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
.fade-up.is-delay3 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
@media (max-width: 600px) {
  .fade-up.is-delay3.only-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}
.fade-up.is-delay4 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media (max-width: 600px) {
  .fade-up.is-delay4.only-pc {
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
  }
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.page-top {
  position: fixed;
  bottom: calc(20vw / 14.4);
  right: calc(20vw / 14.4);
  width: calc(70vw / 14.4);
  max-width: 100px;
  aspect-ratio: 1/1;
  z-index: 10;
  -webkit-filter: drop-shadow(0 0 2px #ff6a2a);
          filter: drop-shadow(0 0 2px #ff6a2a);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media (max-width: 980px) {
  .page-top {
    width: 50px;
    bottom: 20px;
    right: 20px;
  }
}
.page-top.is-show {
  opacity: 1;
}

.top_section-title {
  overflow: auto;
}
.top_section-title-ja {
  font-size: calc(24vw / 14.4);
}
.top_section-title-en {
  font-size: calc(96vw / 14.4);
  font-weight: 100;
  font-family: "League Spartan";
  margin: 16px 0 40px 0;
}
@media (max-width: 980px) {
  .top_section-title-ja {
    font-size: calc(24vw / 9.8);
  }
  .top_section-title-en {
    font-size: calc(96vw / 9.8);
    margin: 16px 0 24px 0;
  }
}
@media (max-width: 600px) {
  .top_section-title-ja {
    font-size: calc(20vw / 3.75);
  }
  .top_section-title-en {
    font-size: calc(52vw / 3.75);
    margin: calc(10vw / 3.75) 0 calc(20vw / 3.75) 0;
  }
}

.top_works .top_section-title,
.top_works .top_column-readmore,
.top_column .top_section-title,
.top_column .top_column-readmore,
.top_instagram .top_section-title,
.top_instagram .top_column-readmore {
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg_wrap {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#fa8681), to(#f9997a));
  background: linear-gradient(to right, #fa8681, #f9997a);
}

.mv {
  padding-top: calc(135vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  text-align: right;
  position: relative;
}
@media (max-width: 980px) {
  .mv {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
@media (max-width: 600px) {
  .mv {
    padding-top: 90px;
    padding-bottom: 0;
  }
}
.mv::after {
  content: "Your smile \a changes care";
  font-family: "League Spartan";
  font-size: calc(77vw / 14.4);
  font-weight: 100;
  text-align: left;
  line-height: 1;
  white-space: pre;
  color: #fff;
  position: absolute;
  top: calc(405vw / 14.4);
  left: calc(86vw / 14.4);
  opacity: 0.6;
  z-index: 6;
  pointer-events: none;
}
@media (max-width: 980px) {
  .mv::after {
    font-size: calc(77vw / 9.8);
    top: calc(405vw / 9.8);
    left: calc(64vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv::after {
    font-size: calc(39vw / 3.75);
    top: calc(215vw / 3.75);
    left: calc(24vw / 3.75);
  }
}
.mv_bg {
  position: absolute;
  top: calc(-40vw / 14.4);
  left: calc(-200vw / 14.4);
  width: calc(967vw / 14.4);
  height: auto;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 980px) {
  .mv_bg {
    width: calc(967vw / 9.8);
    top: calc(0vw / 3.75);
    left: calc(-100vw / 3.75);
  }
}
@media (max-width: 600px) {
  .mv_bg {
    width: calc(456vw / 3.75);
    top: calc(0vw / 3.75);
    left: calc(-120vw / 3.75);
  }
}
.mv_text {
  position: absolute;
  color: #fff;
  font-size: calc(50vw / 14.4);
  font-family: "Noto Serif JP";
  text-align: left;
  line-height: 1.75;
  white-space: nowrap;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.6);
  top: calc(210vw / 14.4);
  left: calc(82vw / 14.4);
  z-index: 6;
  pointer-events: none;
}
@media (max-width: 980px) {
  .mv_text {
    font-size: calc(50vw / 9.8);
    top: calc(210vw / 9.8);
    left: calc(60vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv_text {
    font-size: calc(32vw / 3.75);
    top: calc(95vw / 3.75);
    left: calc(20vw / 3.75);
  }
}
.mv_img {
  width: 100%;
  z-index: 2;
}
@media (max-width: 980px) {
  .mv_img {
    margin-top: calc(80vw / 9.8);
  }
}
@media (max-width: 600px) {
  .mv_img {
    margin-top: calc(90vw / 3.75);
  }
}
.mv_img-top, .mv_img-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20vw / 14.4);
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  padding: calc(60vw / 14.4) 0;
  margin-top: calc(-60vw / 14.4);
}
@media (max-width: 600px) {
  .mv_img-top, .mv_img-bottom {
    padding: calc(60vw / 3.75) 0;
    margin-top: calc(-60vw / 3.75);
  }
}
.mv_img-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.mv_img-bottom {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: calc(-120vw / 14.4);
}
@media (max-width: 600px) {
  .mv_img-bottom {
    margin-top: calc(-130vw / 3.75);
    padding-bottom: calc(40vw / 3.75);
  }
}
.mv_img-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(20vw / 14.4);
  -webkit-animation: slideLoop 40s linear infinite;
          animation: slideLoop 40s linear infinite;
  will-change: transform;
}
@media (max-width: 600px) {
  .mv_img-wrapper {
    gap: calc(20vw / 3.75);
  }
}
.mv_img-top .mv_img-wrapper {
  -webkit-animation-direction: normal;
          animation-direction: normal;
}
.mv_img-bottom .mv_img-wrapper {
  animation-direction: reverse;
}
@-webkit-keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes slideLoop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.flip_card {
  width: calc(466vw / 14.4);
  aspect-ratio: 16/9;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  text-align: center;
}
@media (max-width: 980px) {
  .flip_card {
    width: calc(466vw / 9.8);
  }
}
@media (max-width: 600px) {
  .flip_card {
    width: calc(212vw / 3.75);
    aspect-ratio: 16/9;
  }
}
.flip_card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.8s;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.flip_card:hover .flip_card-inner {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.flip_card-front, .flip_card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 10px;
}
.flip_card-front {
  -o-object-fit: cover;
     object-fit: cover;
}
.flip_card-back {
  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;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.flip_card-back-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  border-radius: 10px;
}
.flip_card-back-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/mv-msg-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  z-index: 2;
}
.flip_card-back-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(115, 99, 91, 0.6);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  z-index: 1;
}
.flip_card-back-text {
  color: #fff;
  font-size: calc(27vw / 14.4);
  font-family: "Shippori Mincho B1";
  font-weight: 700;
  line-height: 180%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) translateZ(1px);
          transform: translate(-50%, -50%) translateZ(1px);
  z-index: 3;
  width: 100%;
  text-align: left;
  padding: 0 calc(40vw / 14.4);
}
@media (max-width: 980px) {
  .flip_card-back-text {
    font-size: calc(16vw / 9.8);
    padding: 0 calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .flip_card-back-text {
    font-size: calc(12vw / 3.75);
    padding: 0 calc(20vw / 3.75);
  }
}

.top_works {
  background-image: url(../img/shape_works-bg.png);
  background-size: 70%;
  background-position: right -40% top 0px;
  padding: calc(40vw / 14.4) 0 calc(120vw / 14.4) 0;
}
@media (max-width: 600px) {
  .top_works {
    padding: calc(0vw / 3.75) 0 calc(60vw / 3.75) 0;
  }
}
.top_works-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 600px) {
  .top_works-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top_works-text {
  width: 48%;
}
@media (max-width: 600px) {
  .top_works-text {
    width: 100%;
  }
}
.top_works-text p {
  line-height: 2.4;
  margin-bottom: calc(24vw / 14.4);
  font-size: calc(18vw / 14.4);
}
@media (max-width: 980px) {
  .top_works-text p {
    font-size: calc(18vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_works-text p {
    font-size: calc(14vw / 3.75);
  }
}
.top_works-link {
  font-size: calc(17vw / 14.4);
  line-height: 1.8;
}
@media (max-width: 980px) {
  .top_works-link {
    font-size: calc(17vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_works-link {
    font-size: calc(15vw / 3.75);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: calc(20vw / 3.75);
  }
}
.top_works-link li {
  padding: calc(8vw / 14.4) 0;
  border-top: 1px solid #583726;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media (max-width: 600px) {
  .top_works-link li {
    padding: calc(8vw / 3.75) 0;
  }
}
.top_works-link li:last-child {
  border-bottom: 1px solid #583726;
}
.top_works-link li a {
  width: 100%;
  display: inline-block;
}
.top_works-link li .arrow {
  width: 40px;
  height: 1px;
  position: absolute;
  right: 24px;
  bottom: 42%;
}
.top_works-img {
  width: 45%;
  text-align: right;
}
.top_works-img .works_circle1 {
  width: 70%;
  max-width: 360;
  max-height: 360;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../img/img_works.jpg);
  background-size: 210%;
  background-position: right calc(-120vw / 14.4) top 0;
  margin-left: auto;
}
.top_works-img .works_circle2 {
  width: 60%;
  max-width: 300;
  max-height: 300;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: url(../img/img_works2.jpg);
  background-size: 220%;
  background-position: right calc(-180vw / 14.4) top 0;
  margin-top: -24%;
}
@media (max-width: 600px) {
  .top_works-img {
    width: 70%;
  }
  .top_works-img .works_circle1 {
    width: 60%;
  }
  .top_works-img .works_circle2 {
    width: 50%;
    margin-top: -40%;
  }
}

.top_environment {
  background-image: url(../img/shape_environment-bg-left.png), url(../img/shape_environment-bg-right.png);
  background-size: 60% 70%;
  background-position: left -50% bottom 0px, right -60% top 0px;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 980px) {
  .top_environment {
    padding-top: calc(40vw / 9.8);
    padding-bottom: calc(60vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment {
    padding-top: calc(40vw / 3.75);
    padding-bottom: calc(60vw / 3.75);
  }
}
.top_environment-left {
  margin-bottom: calc(64vw / 14.4);
}
@media (max-width: 980px) {
  .top_environment-left {
    margin-bottom: calc(64vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-left {
    margin-bottom: calc(30vw / 3.75);
  }
}
.top_environment-left .btn-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.26)), to(rgba(0, 0, 0, 0.26))), url(../img/img_career.png) center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)), url(../img/img_career.png) center/cover no-repeat;
}
.top_environment-right {
  text-align: right;
  margin-bottom: calc(40vw / 14.4);
}
@media (max-width: 980px) {
  .top_environment-right {
    margin-bottom: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-right {
    margin-bottom: calc(40vw / 3.75);
  }
}
.top_environment-right .btn-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.26)), to(rgba(0, 0, 0, 0.26))), url(../img/img_environment.png) center/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)), url(../img/img_environment.png) center/cover no-repeat;
}
.top_environment-btn {
  position: relative;
  display: inline-block;
  max-width: calc(720vw / 14.4);
  width: 100%;
  aspect-ratio: 720/280;
}
@media (max-width: 980px) {
  .top_environment-btn {
    max-width: calc(720vw / 9.8);
    aspect-ratio: 720/240;
  }
}
@media (max-width: 600px) {
  .top_environment-btn {
    max-width: 100%;
    aspect-ratio: 212/90;
  }
}
.top_environment-btn .btn-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
}
.top_environment-btn .btn-content {
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.top_environment-btn .btn-subtitle {
  font-family: "League Spartan";
  font-size: calc(36vw / 14.4);
  font-weight: 100;
}
@media (max-width: 980px) {
  .top_environment-btn .btn-subtitle {
    font-size: calc(36vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-btn .btn-subtitle {
    font-size: calc(22vw / 3.75);
  }
}
.top_environment-btn .btn-title {
  font-size: calc(36vw / 14.4);
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 980px) {
  .top_environment-btn .btn-title {
    font-size: calc(32vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-btn .btn-title {
    font-size: calc(20vw / 3.75);
  }
}
.top_environment-btn .btn-arrow {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#ffe4e4), to(#ffd6bb));
  background: linear-gradient(to left, #ffe4e4, #ffd6bb);
  position: absolute;
  bottom: -32px;
  right: -32px;
  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;
  z-index: 1;
}
@media (max-width: 980px) {
  .top_environment-btn .btn-arrow {
    width: calc(60vw / 9.8);
    height: calc(60vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-btn .btn-arrow {
    width: calc(40vw / 3.75);
    height: calc(40vw / 3.75);
    bottom: -13px;
    right: -16px;
  }
}
.top_environment-btn .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media (max-width: 980px) {
  .top_environment-btn .arrow {
    width: calc(28vw / 9.8);
    height: calc(1vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-btn .arrow {
    width: calc(20vw / 3.75);
    height: calc(1vw / 3.75);
    margin-bottom: calc(3vw / 3.75);
  }
}
.top_environment-btn .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 980px) {
  .top_environment-btn .arrow::before {
    width: calc(12vw / 9.8);
    height: calc(1vw / 9.8);
  }
}
@media (max-width: 600px) {
  .top_environment-btn .arrow::before {
    width: calc(8vw / 3.75);
    height: calc(1vw / 3.75);
  }
}

.top_diversity {
  background-image: url(../img/shape_diversity-bg.png);
  background-size: 50%;
  background-position: right -30% bottom 0px;
  padding-bottom: 80px;
}

.top_page .swiper {
  padding: 0 5vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
.top_page .swiper_container {
  position: relative;
}
.top_page .swiper-slide {
  width: calc(380vw / 14.4);
  -webkit-transform: scale(0.75) !important;
          transform: scale(0.75) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top_page .swiper-slide-active {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
.top_page .swiper-slide-active .staff_card-comment,
.top_page .swiper-slide-active .staff_card-text {
  visibility: visible;
}
.top_page .swiper-slide-active .staff_card-text,
.top_page .swiper-slide-active .staff_card-comment {
  -webkit-animation: 1s fadeIn;
          animation: 1s fadeIn;
}
@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.staff_card-img {
  position: relative;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.staff_card-img img {
  position: relative;
  z-index: 1;
  width: auto;
  height: calc(480vw / 14.4);
  max-height: 600px;
  aspect-ratio: auto;
}
.staff_card-img-bg {
  position: absolute;
  height: calc(380vw / 14.4);
  width: calc(380vw / 14.4);
  max-width: 500px;
  max-height: 500px;
  aspect-ratio: 1/1;
  background: -webkit-gradient(linear, left top, right top, from(#ffdcd9), to(#ffcb76));
  background: linear-gradient(to right, #ffdcd9, #ffcb76);
  border-radius: 20px;
}
@media (max-width: 980px) {
  .staff_card-img img {
    height: calc(480vw / 9.8);
  }
  .staff_card-img-bg {
    height: calc(380vw / 9.8);
    width: calc(380vw / 9.8);
  }
}
@media (max-width: 600px) {
  .staff_card-img img {
    height: calc(240vw / 3.75);
  }
  .staff_card-img-bg {
    height: calc(200vw / 3.75);
    width: calc(200vw / 3.75);
  }
}
.staff_card-comment {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  white-space: nowrap;
  color: #e0573e;
  position: absolute;
  left: -10%;
  top: calc(-50vw / 14.4);
  background: rgba(255, 255, 255, 0.9);
  padding: calc(20vw / 14.4) calc(20vw / 14.4) calc(30vw / 14.4) calc(20vw / 14.4);
  border-radius: 200px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
  visibility: hidden;
}
.staff_card-comment span {
  padding-top: 2em;
}
.staff_card-text {
  width: calc(380vw / 14.4);
  font-size: 2rem;
  padding: 20px 0;
  visibility: hidden;
}
.staff_card-name {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: 2px dashed #fff;
}
.staff_card-main {
  line-height: 1.6;
}
@media (max-width: 980px) {
  .staff_card-comment {
    font-size: 1.8rem;
  }
  .staff_card-text {
    width: calc(380vw / 9.8);
  }
}
@media (max-width: 600px) {
  .staff_card-comment {
    font-size: 1.6rem;
  }
  .staff_card-text {
    width: calc(200vw / 3.75);
    font-size: 1.6rem;
  }
}

.swiper-button-prev {
  width: calc(50vw / 14.4);
  height: calc(50vw / 14.4);
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#ffe4e4), to(#ffd6bb));
  background: linear-gradient(to left, #ffe4e4, #ffd6bb);
  position: absolute;
  top: calc(490vw / 14.4);
  left: 32%;
  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;
  z-index: 1;
}
.swiper-button-prev::after {
  display: none;
}
.swiper-button-prev .arrow {
  position: relative;
  display: inline-block;
  width: calc(28vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.swiper-button-prev .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(-12vw / 14.4);
  width: calc(12vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.swiper-button-next {
  width: calc(50vw / 14.4);
  height: calc(50vw / 14.4);
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#ffe4e4), to(#ffd6bb));
  background: linear-gradient(to left, #ffe4e4, #ffd6bb);
  position: absolute;
  top: calc(490vw / 14.4);
  right: 32%;
  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;
  z-index: 1;
}
.swiper-button-next::after {
  display: none;
}
.swiper-button-next .arrow {
  position: relative;
  display: inline-block;
  width: calc(28vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.swiper-button-next .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: calc(12vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

@media (max-width: 980px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
    top: calc(520vw / 9.8);
  }
  .swiper-button-prev .arrow,
  .swiper-button-next .arrow {
    width: 22px;
  }
  .swiper-button-prev {
    left: 22%;
  }
  .swiper-button-next {
    right: 22%;
  }
}
@media (max-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
    top: calc(260vw / 3.75);
  }
  .swiper-button-prev .arrow,
  .swiper-button-next .arrow {
    width: 18px;
  }
  .swiper-button-prev .arrow::before,
  .swiper-button-next .arrow::before {
    width: calc(5vw / 3.75);
  }
  .swiper-button-prev {
    left: 12%;
  }
  .swiper-button-prev .arrow::before {
    left: calc(-17vw / 14.4);
  }
  .swiper-button-next {
    right: 12%;
  }
}
.top_special-infographic {
  background-image: url(../img/shape_special-bg.png);
  background-size: 60%;
  background-position: right -40% bottom 100px;
  padding: 80px 0;
}
.top_special-infographic-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 600px) {
  .top_special-infographic {
    padding: 40px 0;
  }
}

.top_special {
  width: 45%;
}

.top_infographic {
  width: 45%;
  margin-top: 72px;
}

.top_column {
  background-image: url(../img/shape_column-bg.png);
  background-size: 50%;
  background-position: left -30% bottom 50%;
  padding-top: 80px;
  margin-bottom: 80px;
  font-size: 1.6rem;
  font-weight: 500;
}
.top_column-box {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(40vw / 14.4);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6% 4%;
  position: relative;
}
.top_column-card {
  width: 30%;
}
.top_column-card-img {
  overflow: hidden;
  border-radius: 10px;
}
.top_column-card .wrapper {
  position: relative;
}
.top_column-readmore {
  position: relative;
  font-size: 2.2rem;
  position: absolute;
  right: 50px;
  bottom: -10px;
}
.top_column-readmore .btn-arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#ffe4e4), to(#ffd6bb));
  background: linear-gradient(to left, #ffe4e4, #ffd6bb);
  position: absolute;
  top: -64%;
  right: -80px;
  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;
  z-index: 1;
}
.top_column-readmore .arrow {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.top_column-readmore .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 980px) {
  .top_column .btn-arrow {
    width: calc(70vw / 9.8);
    height: calc(70vw / 9.8);
    top: -50%;
    right: -70px;
  }
}
@media (max-width: 600px) {
  .top_column {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .top_column-box {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_column-card {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .top_column-card-img {
    width: 35%;
    margin-right: 24px;
  }
  .top_column-card-text {
    width: 60%;
  }
  .top_column .btn-arrow {
    width: 40px;
    height: 40px;
    top: -30%;
    right: -75%;
  }
  .top_column-readmore {
    font-size: 1.8rem;
  }
  .top_column-readmore .arrow {
    width: 24px;
  }
}

.column-date {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 16px 0 8px 0;
}
.column-clock {
  width: 1.8rem;
  margin-right: 8px;
}
@media (max-width: 600px) {
  .column-date {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 8px 0;
  }
  .column-title {
    font-size: 1.4rem;
  }
}

.top_instagram {
  background-image: url(../img/shape_instagram-bg.png);
  background-size: 30%;
  background-position: right -100px top -50px;
  padding-top: calc(80vw / 14.4);
  margin-bottom: calc(80vw / 14.4);
  font-size: calc(18vw / 14.4);
  font-weight: 500;
}
.top_instagram-flex {
  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;
  gap: calc(40vw / 14.4);
}
@media (max-width: 600px) {
  .top_instagram-flex {
    gap: calc(20vw / 3.75);
  }
}
.top_instagram-left p {
  line-height: 2.5em;
}
@media (max-width: 600px) {
  .top_instagram {
    font-size: calc(14vw / 3.75);
    padding-top: calc(60vw / 3.75);
    margin-bottom: calc(40vw / 3.75);
  }
  .top_instagram-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_instagram-left {
    width: 100%;
  }
  .top_instagram-left p {
    line-height: 2;
  }
}
.top_instagram-right {
  width: calc(560vw / 14.4);
}
@media (max-width: 600px) {
  .top_instagram-right {
    width: calc(335vw / 3.75);
  }
}

.icon_insta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-top: 20px;
}
.icon_insta img {
  width: 50px;
}
@media (max-width: 600px) {
  .icon_insta img {
    width: 30px;
  }
}

.top_recruit {
  padding-top: calc(80vw / 14.4);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .top_recruit {
    padding-top: calc(60vw / 3.75);
  }
}
.top_recruit .top_section-title-en {
  margin-bottom: calc(10vw / 14.4);
}
.top_recruit-container {
  width: calc(520vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top_recruit-left {
  width: 50%;
  padding: calc(40vw / 14.4);
  background-image: url(../img/img_recruit.jpg);
  background-position: right 40% center;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 600px) {
  .top_recruit-left {
    padding: calc(30vw / 3.75);
  }
}
.top_recruit-right {
  width: 50%;
}
@media (max-width: 980px) {
  .top_recruit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top_recruit-container {
    width: calc(520vw / 9.8);
  }
  .top_recruit-left {
    width: 100%;
  }
  .top_recruit-right {
    width: 100%;
    height: 220px;
  }
}
@media (max-width: 600px) {
  .top_recruit-container {
    width: calc(520vw / 3.75);
  }
}

.recruit_btn-entry {
  width: 100%;
  color: #33616b;
  font-size: calc(28vw / 14.4);
  font-weight: 500;
  text-align: center;
  padding: calc(26vw / 14.4) calc(16vw / 14.4);
  background-color: #fff;
  border-radius: 12px;
  display: block;
  position: relative;
}
@media (max-width: 600px) {
  .recruit_btn-entry {
    font-size: calc(20vw / 3.75);
    padding: calc(20vw / 3.75) 0;
  }
}
.recruit_btn-entry .arrow-svg {
  width: calc(45vw / 14.4);
  height: calc(45vw / 14.4);
}
@media (max-width: 600px) {
  .recruit_btn-entry .arrow-svg {
    width: calc(36vw / 3.75);
    height: calc(36vw / 3.75);
  }
}
.recruit_btn-entry .circle-path {
  fill: none;
  stroke: #33616b;
  stroke-width: 4;
  stroke-dasharray: 280;
  /* 円の全体長さ */
  stroke-dashoffset: 40;
  /*「一部を切る」 */
}
.recruit_btn-entry .arrow-path {
  stroke: #33616b;
}
.recruit_btn-new, .recruit_btn-mid {
  font-size: calc(28vw / 14.4);
  font-weight: 600;
  width: 100%;
  height: 50%;
  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;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .recruit_btn-new, .recruit_btn-mid {
    font-size: calc(21vw / 3.75);
  }
}
.recruit_btn-new::after, .recruit_btn-mid::after {
  content: "New graduate";
  font-size: calc(144vw / 14.4);
  font-weight: 100;
  font-family: "League Spartan";
  opacity: 0.1;
  position: absolute;
  bottom: -33px;
  left: 24px;
}
@media (max-width: 600px) {
  .recruit_btn-new::after, .recruit_btn-mid::after {
    font-size: calc(65vw / 3.75);
    bottom: calc(-10vw / 3.75);
    left: calc(8vw / 3.75);
  }
}
.recruit_btn-new .arrow-svg, .recruit_btn-mid .arrow-svg {
  width: calc(50vw / 14.4);
  height: calc(50vw / 14.4);
}
@media (max-width: 600px) {
  .recruit_btn-new .arrow-svg, .recruit_btn-mid .arrow-svg {
    width: calc(36vw / 3.75);
    height: calc(36vw / 3.75);
  }
}
.recruit_btn-new .circle-path, .recruit_btn-mid .circle-path {
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-dasharray: 280;
  /* 円の全体長さ */
  stroke-dashoffset: 40;
  /*「一部を切る」 */
}
.recruit_btn-new .arrow-path, .recruit_btn-mid .arrow-path {
  stroke: #fff;
}
.recruit_btn-new {
  background-color: #3f9eb3;
}
.recruit_btn-new::after {
  content: "New graduate";
}
.recruit_btn-mid {
  background-color: #32abb1;
}
.recruit_btn-mid::after {
  content: "Mid-career";
}

.circle-arrow {
  display: inline-block;
  width: calc(60vw / 14.4);
  height: calc(60vw / 14.4);
  position: relative;
}

.arrow-svg {
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  /* 円の切れ目を好きな位置に調整 */
  position: absolute;
  top: 50%;
  right: 8%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.circle-path {
  fill: none;
  stroke: #333;
  stroke-width: 4;
  stroke-dasharray: 280;
  /* 円の全体長さ */
  stroke-dashoffset: 40;
  /*「一部を切る」 */
}

.arrow-path {
  fill: none;
  stroke: #333;
  stroke-width: 4;
  stroke-linecap: round;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (max-width: 600px) {
  .career_page .is-pc {
    display: none;
  }
}
.career_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .career_page .is-sp {
    display: block;
  }
}
.career_page .page-mv {
  padding: 168px 0 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 600px) {
  .career_page .page-mv {
    display: block;
    padding: 120px 0 calc(85vw / 3.75);
    overflow: hidden;
  }
}
.career_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .career_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.career_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .career_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
  }
}
.career_page .page-mv__title-ja {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .career_page .page-mv__title-ja {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
.career_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .career_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.career_page .page-mv__img {
  width: 100%;
  aspect-ratio: 760/420;
}
@media (max-width: 600px) {
  .career_page .page-mv__img {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 61%;
  }
}
.career_page .pass {
  position: relative;
  overflow: hidden;
}
.career_page .pass::before {
  content: "";
  position: absolute;
  top: calc(-48vw / 14.4);
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .career_page .pass::before {
    top: 70px;
    right: -100px;
    width: 350px;
  }
}
.career_page .pass__inner {
  padding: 0 15px;
}
.career_page .pass__title {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: calc(34vw / 14.4);
  line-height: 1.6;
  background: var(--8, linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .career_page .pass__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .career_page .pass__title {
    margin-top: -4px;
  }
}
.career_page .pass__head-text {
  margin: 40px auto 0;
  padding: 0 6px;
  color: #351f01;
  font-size: calc(20vw / 14.4);
  line-height: 2.5;
  max-width: 840px;
}
@media (max-width: 980px) {
  .career_page .pass__head-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .career_page .pass__head-text {
    margin: 24px auto 0;
  }
}
.career_page .pass__box {
  margin: 70px auto 0;
  width: calc(1200vw / 14.4);
  aspect-ratio: 1200/711;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.03);
  background: rgba(253, 253, 253, 0.6) url("../img/career/graph_arrows_pc.png") no-repeat center center/88%;
  padding: calc(66vw / 14.4) calc(116vw / 14.4) calc(115vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .pass__box {
    margin: 40px auto 0;
    background: rgba(253, 253, 253, 0.6) url("../img/career/graph_arrows_sp.png") no-repeat center center/92% 91%;
    aspect-ratio: 345/550;
    width: 100%;
    border-radius: 10px;
    padding: calc(49vw / 3.75) calc(39vw / 3.75) calc(51vw / 3.75);
  }
}
.career_page .pass__box-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.career_page .pass__btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(186vw / 14.4);
  height: calc(70vw / 14.4);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: calc(20vw / 14.4);
  color: #fff;
  font-size: calc(18vw / 14.4);
  font-weight: 700;
  line-height: 1.1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 600px) {
  .career_page .pass__btn {
    width: calc(155vw / 3.75);
    height: calc(50vw / 3.75);
    font-size: calc(15vw / 3.75);
    border-radius: calc(10vw / 3.75);
  }
}
.career_page .pass__btn::before {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -4px;
  width: calc(30vw / 14.4);
  aspect-ratio: 1/1;
  background: url("../img/career/magnifying-glass.svg") no-repeat center center/contain;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 600px) {
  .career_page .pass__btn::before {
    width: calc(20vw / 3.75);
    bottom: 0;
    right: 0;
  }
}
.career_page .pass__btn--1 {
  background: #ff927f;
  left: 0;
  bottom: 33%;
}
@media (max-width: 600px) {
  .career_page .pass__btn--1 {
    bottom: 28%;
  }
}
.career_page .pass__btn--2 {
  background: #ff9395;
  top: 40%;
  left: 20.5%;
}
@media (max-width: 600px) {
  .career_page .pass__btn--2 {
    top: 45%;
    left: 14%;
  }
}
.career_page .pass__btn--3 {
  background: #ffac9a;
  top: 27%;
  left: 42%;
}
@media (max-width: 600px) {
  .career_page .pass__btn--3 {
    top: 30%;
    left: 26%;
  }
}
.career_page .pass__btn--4 {
  background: #ff9385;
  top: 13%;
  right: 18%;
}
@media (max-width: 600px) {
  .career_page .pass__btn--4 {
    top: 15.5%;
    right: 4%;
  }
}
.career_page .pass__btn--5 {
  background: #ff7577;
  top: 0%;
  right: -2%;
}
@media (max-width: 600px) {
  .career_page .pass__btn--5 {
    right: -8%;
    top: 0%;
  }
}
.career_page .pass__btn--7 {
  width: calc(980vw / 14.4);
  background: #ffac6c;
  bottom: 16%;
  left: 0;
}
@media (max-width: 600px) {
  .career_page .pass__btn--7 {
    bottom: 13%;
    width: calc(280vw / 3.75);
  }
}
.career_page .pass__btn--8 {
  width: calc(980vw / 14.4);
  background: #f18271;
  bottom: 0;
  left: 0;
}
@media (max-width: 600px) {
  .career_page .pass__btn--8 {
    width: calc(280vw / 3.75);
  }
}
.career_page .modal {
  margin: auto;
  width: calc(670vw / 14.4);
  border-radius: 5px;
  border: none;
  background: #fef1ee;
  padding: calc(42vw / 14.4) calc(50vw / 14.4) calc(102vw / 14.4);
  overflow: visible;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.career_page .modal.is-visible {
  opacity: 1;
}
.career_page .modal:not(.is-visible) {
  pointer-events: none;
}
@media (max-width: 980px) {
  .career_page .modal {
    width: calc(860vw / 9.8);
    padding: calc(42vw / 9.8) calc(50vw / 9.8) calc(102vw / 9.8);
  }
}
@media (max-width: 600px) {
  .career_page .modal {
    width: 90%;
    padding: 26px 20px;
  }
}
.career_page .modal::-ms-backdrop {
  background-color: rgba(63, 52, 47, 0.6);
}
.career_page .modal::backdrop {
  background-color: rgba(63, 52, 47, 0.6);
}
.career_page .modal__btn {
  content: "";
  position: absolute;
  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;
  width: 40.5px;
  aspect-ratio: 1/1;
  background: #583726 url("../img/career/modal_close.svg") no-repeat center center/50%;
  border-radius: 999px;
  top: calc(-12vw / 14.4);
  right: calc(-12vw / 14.4);
  top: -12px;
  right: -12px;
}
.career_page .modal__head {
  width: 100%;
  height: calc(47vw / 14.4);
  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;
  color: #fdfdfd;
  font-weight: 500;
  font-size: calc(22vw / 14.4);
  border-radius: calc(10vw / 14.4);
  background: #ff927f;
}
@media (max-width: 980px) {
  .career_page .modal__head {
    height: 47px;
    border-radius: 10px;
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .career_page .modal__head {
    height: 47px;
  }
}
.career_page .modal__flex {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 600px) {
  .career_page .modal__flex {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.career_page .modal__text {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0 calc(15vw / 14.4);
  color: #351f01;
  font-size: calc(18vw / 14.4);
  line-height: 2.5;
}
@media (max-width: 980px) {
  .career_page .modal__text {
    font-size: 1.5rem;
    padding: 0 calc(15vw / 3.75);
  }
}
.career_page .modal__img {
  border-radius: 10px;
  background: #d9d9d9;
  width: 100%;
  aspect-ratio: 329/228;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.career_page .training {
  margin-top: calc(135vw / 14.4);
  padding-bottom: calc(135vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training {
    margin-top: 80px;
    padding-bottom: 80px;
  }
}
.career_page .training__inner {
  padding: 0 15px;
}
.career_page .training__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 39px;
}
@media (max-width: 600px) {
  .career_page .training__flex {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px;
  }
}
.career_page .training__title {
  width: calc(40vw / 14.4);
  color: #f18271;
  font-size: calc(36vw / 14.4);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.25em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 980px) {
  .career_page .training__title {
    width: calc(40vw / 9.8);
    font-size: calc(36vw / 9.8);
  }
}
@media (max-width: 600px) {
  .career_page .training__title {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    font-size: 2.4rem;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin: auto;
    padding-bottom: 8px;
    border-bottom: 2px solid #f18271;
  }
}
.career_page .training__figure {
  margin-top: calc(64vw / 14.4);
  width: calc(1130vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: calc(99vw / 14.4);
}
@media (max-width: 980px) {
  .career_page .training__figure {
    margin-top: calc(105vw / 9.8);
  }
}
@media (max-width: 600px) {
  .career_page .training__figure {
    margin-top: 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.career_page .training__figure::before {
  content: "";
  position: absolute;
  width: 99%;
  height: calc(161vw / 14.4);
  bottom: calc(39vw / 14.4);
  left: 0;
  background: #ffdfdb;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  z-index: -1;
}
@media (max-width: 600px) {
  .career_page .training__figure::before {
    bottom: auto;
    left: auto;
    top: -7px;
    right: 0;
    width: 91%;
    height: 109%;
    clip-path: polygon(73% 0%, 0% 100%, 100% 0);
  }
}
.career_page .training__step {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
}
@media (max-width: 600px) {
  .career_page .training__step {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 7px;
  }
}
@media (max-width: 600px) {
  .career_page .training__step--1, .career_page .training__step--2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (max-width: 600px) {
  .career_page .training__step--3, .career_page .training__step--4 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 600px) {
  .career_page .training__step--1 {
    margin-left: calc(31vw / 3.75);
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .career_page .training__step--2 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
@media (max-width: 600px) {
  .career_page .training__step--4 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
.career_page .training__bubble {
  position: absolute;
  height: calc(99vw / 14.4);
  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;
  color: #583726;
  font-size: calc(18vw / 14.4);
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .career_page .training__bubble {
    position: static;
    height: calc(60vw / 3.75);
    font-size: calc(14vw / 3.75);
  }
}
.career_page .training__bubble p {
  margin-top: calc(-15vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__bubble p {
    margin-top: 0;
  }
}
.career_page .training__bubble--1, .career_page .training__bubble--4 {
  width: calc(250vw / 14.4);
  background: url("../img/career/training_bubble_pc1.png") no-repeat center center/contain;
}
.career_page .training__bubble--1 {
  top: calc(-28vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__bubble--1 {
    background: url("../img/career/training_bubble_sp1.png") no-repeat center center/contain;
    width: calc(199vw / 3.75);
    margin-top: calc(10vw / 3.75);
    margin-left: calc(3vw / 3.75);
  }
}
@media (max-width: 600px) {
  .career_page .training__bubble--1 p {
    margin-left: calc(15vw / 3.75);
  }
}
.career_page .training__bubble--2 {
  top: calc(-55vw / 14.4);
  width: calc(190vw / 14.4);
  background: url("../img/career/training_bubble_pc2.png") no-repeat center center/contain;
}
@media (max-width: 600px) {
  .career_page .training__bubble--2 {
    background: url("../img/career/training_bubble_sp2.png") no-repeat center center/contain;
    width: calc(143vw / 3.75);
    margin-top: 23px;
  }
}
@media (max-width: 600px) {
  .career_page .training__bubble--2 p {
    margin-left: calc(15vw / 3.75);
  }
}
.career_page .training__bubble--3 {
  top: calc(-88vw / 14.4);
  width: calc(210vw / 14.4);
  background: url("../img/career/training_bubble_pc3.png") no-repeat center center/contain;
}
@media (max-width: 600px) {
  .career_page .training__bubble--3 {
    background: url("../img/career/training_bubble_sp3.png") no-repeat center center/contain;
    width: calc(143vw / 3.75);
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .career_page .training__bubble--3 p {
    margin-right: calc(16vw / 3.75);
  }
}
.career_page .training__bubble--4 {
  top: calc(-116vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__bubble--4 {
    background: url("../img/career/training_bubble_sp4.png") no-repeat center center/contain;
    width: calc(185vw / 3.75);
    margin-right: 3px;
    margin-bottom: 6px;
  }
}
@media (max-width: 600px) {
  .career_page .training__bubble--4 p {
    margin-right: calc(16vw / 3.75);
  }
}
.career_page .training__circle {
  border-radius: 999px;
  background: linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%);
  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;
  color: #fff;
  text-align: center;
  font-size: calc(19vw / 14.4);
  font-weight: 700;
  line-height: normal;
  aspect-ratio: 1/1;
}
@media (max-width: 600px) {
  .career_page .training__circle {
    font-size: calc(14vw / 3.75);
  }
}
.career_page .training__circle--1 {
  width: calc(143vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__circle--1 {
    width: calc(92vw / 3.75);
  }
}
.career_page .training__circle--2 {
  width: calc(170vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__circle--2 {
    width: calc(110vw / 3.75);
  }
}
.career_page .training__circle--3 {
  width: calc(202vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__circle--3 {
    width: calc(125vw / 3.75);
  }
}
.career_page .training__circle--4 {
  width: calc(230vw / 14.4);
}
@media (max-width: 600px) {
  .career_page .training__circle--4 {
    width: calc(140vw / 3.75);
  }
}
.career_page .training__circle p {
  line-height: 1.2;
}
@media (max-width: 600px) {
  .career_page .training__circle p {
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}
.career_page .training__systems {
  width: calc(914vw / 14.4);
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: calc(60vw / 14.4);
}
@media (max-width: 980px) {
  .career_page .training__systems {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .career_page .training__systems {
    margin: calc(49vw / 3.75) auto 0;
    padding: 0 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.career_page .training__system-title {
  color: #351f01;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
  line-height: 1;
  padding: 3.5px 0 3.5px 10px;
  border-left: 10px solid #f18271;
}
@media (max-width: 980px) {
  .career_page .training__system-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 600px) {
  .career_page .training__system-title {
    padding: 2px 0 2px 10px;
    border-left: 8px solid #f18271;
  }
}
.career_page .training__system-text {
  margin-top: 14px;
  color: #351f01;
  font-size: calc(18vw / 14.4);
  line-height: 1.8;
}
@media (max-width: 980px) {
  .career_page .training__system-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .career_page .training__system-text {
    line-height: 2;
  }
}
.career_page .benefits {
  margin: calc(200vw / 14.4) 0 calc(118vw / 14.4);
  padding: 0 15px;
}
.career_page .benefits__link {
  position: relative;
  margin: 0 auto;
  display: block;
  width: calc(713vw / 14.4);
  aspect-ratio: 713/282;
  border-radius: 19px;
  background: url("../img/career/benefits_bg.png") no-repeat center center/cover;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
}
@media (max-width: 600px) {
  .career_page .benefits__link {
    width: 100%;
    padding-bottom: 0;
  }
}
.career_page .benefits__link-inner {
  margin-left: calc(45vw / 14.4);
}
.career_page .benefits__text-en {
  margin: 0 auto;
  color: #fff;
  font-family: "League Spartan";
  font-size: calc(36vw / 14.4);
  font-weight: 100;
  line-height: 1;
}
@media (max-width: 980px) {
  .career_page .benefits__text-en {
    font-size: calc(36vw / 9.8);
  }
}
@media (max-width: 600px) {
  .career_page .benefits__text-en {
    font-size: 2.2rem;
  }
}
.career_page .benefits__text-ja {
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: calc(36vw / 14.4);
}
@media (max-width: 980px) {
  .career_page .benefits__text-ja {
    font-size: calc(36vw / 9.8);
  }
}
@media (max-width: 600px) {
  .career_page .benefits__text-ja {
    font-size: 2.2rem;
  }
}
.career_page .benefits__btn {
  content: "";
  position: absolute;
  width: calc(78vw / 14.4);
  aspect-ratio: 1/1;
  bottom: -19px;
  right: -11px;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffd6bb), to(#ffe4e4));
  background: linear-gradient(0deg, #ffd6bb 0%, #ffe4e4 100%);
  border-radius: 999px;
  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;
}
@media (max-width: 600px) {
  .career_page .benefits__btn {
    width: 40px;
  }
}
.career_page .benefits__arrow {
  position: relative;
  display: inline-block;
  width: calc(42vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
}
@media (max-width: 600px) {
  .career_page .benefits__arrow {
    width: 24px;
  }
}
.career_page .benefits__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0vw / 14.4);
  width: calc(10vw / 14.4);
  height: 1.5px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 600px) {
  .career_page .benefits__arrow::before {
    width: 5px;
  }
}

@media (max-width: 600px) {
  .facility_page .is-pc {
    display: none;
  }
}
.facility_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .facility_page .is-sp {
    display: block;
  }
}
.facility_page .page-mv {
  padding: 168px 0 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .facility_page .page-mv {
    display: block;
    padding: 120px 0 calc(63vw / 3.75);
  }
}
.facility_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .facility_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.facility_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38.5%;
          flex: 0 0 38.5%;
  margin-left: calc(129vw / 14.4);
  margin-bottom: calc(105vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .facility_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
  }
}
.facility_page .page-mv__title-ja {
  white-space: nowrap;
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
  display: inline-block;
}
@media (max-width: 980px) {
  .facility_page .page-mv__title-ja {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
.facility_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .facility_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.facility_page .page-mv__img {
  width: 100%;
  aspect-ratio: 760/420;
}
@media (max-width: 600px) {
  .facility_page .page-mv__img {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 61%;
  }
}
.facility_page .facility {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(135vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .facility {
    padding-bottom: 80px;
  }
}
.facility_page .facility::before {
  content: "";
  position: absolute;
  top: calc(-48vw / 14.4);
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .facility_page .facility::before {
    right: -100px;
    width: 350px;
    top: 110px;
  }
}
.facility_page .facility__bg {
  position: relative;
}
.facility_page .facility__bg--1::before {
  content: "";
  position: absolute;
  top: calc(1320vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(659vw / 14.4);
  aspect-ratio: 659/786;
  background: url("../img/page-common/shape_common2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .facility_page .facility__bg--1::before {
    left: -100px;
    top: 1116px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__bg--1::before {
    width: 274px;
  }
}
.facility_page .facility__bg--2::before {
  content: "";
  position: absolute;
  top: calc(2760vw / 14.4);
  right: calc(-169vw / 14.4);
  width: calc(622vw / 14.4);
  aspect-ratio: 622/951;
  background: url("../img/facility/shape_facility1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .facility_page .facility__bg--2::before {
    right: -100px;
    top: 2190px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__bg--2::before {
    width: 260px;
  }
}
.facility_page .facility__bg--3::before {
  content: "";
  position: absolute;
  top: calc(3650vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(693vw / 14.4);
  aspect-ratio: 693/1163;
  background: url("../img/facility/shape_facility2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .facility_page .facility__bg--3::before {
    left: -100px;
    top: 3000px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__bg--3::before {
    width: 290px;
  }
}
.facility_page .facility__inner {
  padding: 0 15px;
}
.facility_page .facility__title {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: calc(34vw / 14.4);
  line-height: 1.6;
  background: var(--8, linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .facility_page .facility__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__title {
    margin-top: -4px;
  }
}
.facility_page .facility__head-text {
  margin: 40px auto 0;
  padding: 0 6px;
  color: #351f01;
  font-size: calc(20vw / 14.4);
  line-height: 2.5;
  max-width: calc(840vw / 14.4);
}
@media (max-width: 980px) {
  .facility_page .facility__head-text {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__head-text {
    margin: calc(24vw / 3.75) auto 0;
    padding: 0 calc(6vw / 3.75);
    font-size: calc(14vw / 3.75);
    max-width: 100%;
  }
}
.facility_page .facility__groups {
  margin: 60px auto 0;
  width: calc(1100vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 110px;
}
@media (max-width: 980px) {
  .facility_page .facility__groups {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .facility_page .facility__groups {
    margin: 38px auto 0;
    gap: 60px;
  }
}
.facility_page .facility__group-title {
  color: #351f01;
  font-size: calc(26vw / 14.4);
  font-weight: 400;
  line-height: normal;
  padding-left: 26px;
  position: relative;
}
@media (max-width: 980px) {
  .facility_page .facility__group-title {
    font-size: 2rem;
    padding-left: 18px;
  }
}
.facility_page .facility__group-title::before {
  content: "";
  position: absolute;
  width: calc(11vw / 14.4);
  height: calc(38vw / 14.4);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%);
}
@media (max-width: 980px) {
  .facility_page .facility__group-title::before {
    width: 8px;
    height: 25px;
  }
}
.facility_page .facility__cards {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (max-width: 600px) {
  .facility_page .facility__cards {
    margin-top: 18px;
    gap: 20px;
  }
}
.facility_page .facility-card {
  margin: 0 auto;
  width: 100%;
  border-radius: calc(10vw / 14.4);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  scroll-margin-top: 120px;
}
@media (max-width: 980px) {
  .facility_page .facility-card {
    border-radius: 15px;
  }
}
.facility_page .facility-card__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(39vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .facility-card__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.facility_page .facility-card__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 44%;
          flex: 0 0 44%;
  padding-top: calc(60vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .facility-card__body {
    padding-top: 20px;
    padding-left: 20px;
  }
}
.facility_page .facility-card__text-inner {
  margin-left: calc(50vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .facility-card__text-inner {
    margin-left: 0;
  }
}
.facility_page .facility-card__head {
  color: #ffac9a;
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 980px) {
  .facility_page .facility-card__head {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__head {
    line-height: 1;
  }
}
.facility_page .facility-card__name {
  color: #351f01;
  font-size: calc(26vw / 14.4);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .facility_page .facility-card__name {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__name {
    margin-top: 10px;
  }
}
.facility_page .facility-card__sub-inner {
  margin-top: calc(20vw / 14.4);
  margin-left: calc(20vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .facility-card__sub-inner {
    margin-top: 10px;
    margin-left: 10px;
  }
}
.facility_page .facility-card__text {
  padding-left: 16px;
  color: #351f01;
  font-size: calc(18vw / 14.4);
  line-height: 1;
  position: relative;
}
@media (max-width: 980px) {
  .facility_page .facility-card__text {
    font-size: 1.5rem;
  }
}
.facility_page .facility-card__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 10px;
  background: #3e8899;
}
.facility_page .facility-card__address {
  margin-top: calc(20vw / 14.4);
  gap: calc(8vw / 14.4);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .facility_page .facility-card__address {
    margin-top: 15px;
    gap: 7px;
  }
}
.facility_page .facility-card__address span {
  display: block;
  color: #351f01;
  font-size: calc(20vw / 14.4);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 980px) {
  .facility_page .facility-card__address span {
    font-size: 1.5rem;
  }
}
.facility_page .facility-card__map {
  margin-top: calc(18vw / 14.4);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 999px;
  background: #f28149;
  color: #fff;
  font-size: calc(16vw / 14.4);
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 980px) {
  .facility_page .facility-card__map {
    font-size: 1.6rem;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__map {
    margin-top: 16px;
  }
}
.facility_page .facility-card__map::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(16vw / 14.4);
  aspect-ratio: 16/23;
  background: url("../img/page-common/icon-map.svg") no-repeat center/contain;
}
@media (max-width: 980px) {
  .facility_page .facility-card__map::before {
    width: 16px;
  }
}
.facility_page .facility-card__links {
  margin-top: calc(26vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 980px) {
  .facility_page .facility-card__links {
    margin-top: 26px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__links {
    margin-top: 19px;
  }
}
.facility_page .facility-card__recruit, .facility_page .facility-card__detail {
  width: calc(241vw / 14.4);
  height: calc(61vw / 14.4);
  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;
  color: #fff;
  font-size: calc(18vw / 14.4);
  font-weight: 500;
}
@media (max-width: 980px) {
  .facility_page .facility-card__recruit, .facility_page .facility-card__detail {
    width: 23%;
    font-size: calc(18vw / 9.8);
    height: 60px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__recruit, .facility_page .facility-card__detail {
    font-size: 1.6rem;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.facility_page .facility-card__recruit {
  border-radius: 0 0 0 calc(10vw / 14.4);
  background: linear-gradient(86deg, #ff9c9d 0.73%, #f1aa00 164.66%);
  padding-left: calc(18vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .facility_page .facility-card__recruit {
    padding-left: 12px;
    border-radius: 0 0 0 15px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__recruit {
    padding-left: 26px;
  }
}
.facility_page .facility-card__recruit::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 18%;
  width: calc(15vw / 14.4);
  aspect-ratio: 15/18;
  background: url("../img/facility/icon-document.svg") no-repeat center center/contain;
}
@media (max-width: 980px) {
  .facility_page .facility-card__recruit::before {
    width: 15px;
    left: 10%;
  }
}
.facility_page .facility-card__jobs {
  position: absolute;
  left: 95%;
  top: -20%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-filter: drop-shadow(0 0 10px rgba(104, 91, 88, 0.1));
          filter: drop-shadow(0 0 10px rgba(104, 91, 88, 0.1));
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 10px;
  cursor: auto;
  z-index: 1;
}
@media (max-width: 600px) {
  .facility_page .facility-card__jobs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: auto;
    bottom: 20px;
    left: 95%;
    -webkit-transform: none;
            transform: none;
    padding: 10px 8px;
  }
}
.facility_page .facility-card__jobs::before {
  content: "";
  position: absolute;
  width: calc(16vw / 14.4);
  height: calc(24vw / 14.4);
  background: rgba(255, 255, 255, 0.9);
  bottom: 16%;
  left: calc(-16vw / 14.4);
  clip-path: polygon(100% 0, 0 80%, 100% 100%);
}
@media (max-width: 980px) {
  .facility_page .facility-card__jobs::before {
    width: 16px;
    height: 24px;
    left: -16px;
    bottom: 14%;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__jobs::before {
    bottom: 4%;
  }
}
.facility_page .facility-card__jobs.is-show {
  display: grid;
}
@media (max-width: 600px) {
  .facility_page .facility-card__jobs.is-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.facility_page .facility-card__jobs-link {
  border-radius: 5px;
  background: #ff9d96;
  color: #fff;
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  letter-spacing: 0.15em;
  width: calc(187vw / 14.4);
  height: calc(57vw / 14.4);
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 980px) {
  .facility_page .facility-card__jobs-link {
    width: 100px;
    height: 45px;
    font-size: 1rem;
    line-height: 1.2;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__jobs-link {
    width: clamp(128px, 46vw, 170px);
    height: 45px;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
.facility_page .facility-card__jobs-link--green {
  background: #3f9eb3;
}
.facility_page .facility-card__jobs-link--ls {
  letter-spacing: 0.05em;
}
.facility_page .facility-card__jobs-link-sub {
  font-size: 0.85em;
}
.facility_page .facility-card__jobs-link.is-disabled {
  text-decoration: line-through;
  opacity: 0.5;
  cursor: default;
}
.facility_page .facility-card__detail {
  border-radius: 0 calc(10vw / 14.4) 0 0;
  background: #ffac9a;
}
@media (max-width: 980px) {
  .facility_page .facility-card__detail {
    border-radius: 0 10px 0 0;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__detail {
    border-radius: 0 0 15px 0;
  }
}
.facility_page .facility-card__slides {
  padding-top: calc(90vw / 14.4);
  padding-bottom: calc(25vw / 14.4);
  padding-right: 20px;
  height: 100%;
}
@media (max-width: 980px) {
  .facility_page .facility-card__slides {
    padding-bottom: 18px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__slides {
    padding: 0 20px 17px;
    width: 100%;
  }
}
.facility_page .facility-card__slide {
  width: calc(375vw / 14.4);
  aspect-ratio: 375/283;
}
@media (max-width: 980px) {
  .facility_page .facility-card__slide {
    width: 260px;
  }
}
.facility_page .facility-card__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.facility_page .facility-card__slide-pagination {
  width: calc(375vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9px;
  bottom: 0 !important;
}
@media (max-width: 980px) {
  .facility_page .facility-card__slide-pagination {
    gap: 6px;
    width: 260px;
  }
}
@media (max-width: 600px) {
  .facility_page .facility-card__slide-pagination {
    width: 100%;
  }
}
.facility_page .facility-card__slide-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: #d9d9d9;
  opacity: 1;
}
@media (max-width: 980px) {
  .facility_page .facility-card__slide-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.facility_page .facility-card__slide-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #f18149;
}
.facility_page .environment {
  margin-top: 140px;
  margin-bottom: 60px;
}
.facility_page .environment__inner {
  width: calc(1180vw / 14.4);
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 980px) {
  .facility_page .environment__inner {
    width: 100%;
  }
}
.facility_page .environment__title-ja {
  font-size: calc(24vw / 14.4);
  line-height: 3.5;
  background: -webkit-gradient(linear, right top, left top, from(#f9997a), to(#fa8681));
  background: linear-gradient(270deg, #f9997a 0%, #fa8681 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .facility_page .environment__title-ja {
    font-size: 1.6rem;
  }
}
.facility_page .environment__title-en {
  margin-top: calc(-18vw / 14.4);
  font-family: "League Spartan";
  font-size: calc(96vw / 14.4);
  font-weight: 100;
  line-height: 1;
  background: -webkit-gradient(linear, right top, left top, from(#f9997a), to(#fa8681));
  background: linear-gradient(270deg, #f9997a 0%, #fa8681 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .facility_page .environment__title-en {
    font-size: 6rem;
  }
}
.facility_page .environment__links {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.facility_page .environment__link {
  position: relative;
  display: block;
  width: calc(713vw / 14.4);
  aspect-ratio: 713/282;
  border-radius: 19px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 980px) {
  .facility_page .environment__link {
    width: 100%;
    max-width: 486px;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.facility_page .environment__link:first-of-type {
  background: url("../img/facility/link_benefits.png") no-repeat center center/cover;
  margin-left: calc(50vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .environment__link:first-of-type {
    margin-left: 0;
  }
}
.facility_page .environment__link:last-of-type {
  background: url("../img/facility/link_career.png") no-repeat center center/cover;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: calc(10vw / 14.4);
}
@media (max-width: 600px) {
  .facility_page .environment__link:last-of-type {
    margin-right: 0;
  }
}
.facility_page .environment__link-inner {
  margin-left: calc(45vw / 14.4);
}
.facility_page .environment__text-en {
  margin: 0 auto;
  color: #fff;
  font-family: "League Spartan";
  font-size: calc(36vw / 14.4);
  font-weight: 100;
  line-height: 1;
}
@media (max-width: 980px) {
  .facility_page .environment__text-en {
    font-size: 2.4rem;
  }
}
.facility_page .environment__text-ja {
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: calc(36vw / 14.4);
}
@media (max-width: 980px) {
  .facility_page .environment__text-ja {
    font-size: 2.2rem;
  }
}
.facility_page .environment__btn {
  content: "";
  position: absolute;
  width: calc(78vw / 14.4);
  aspect-ratio: 1/1;
  bottom: -19px;
  right: -11px;
  background: -webkit-gradient(linear, left bottom, left top, from(#ffd6bb), to(#ffe4e4));
  background: linear-gradient(0deg, #ffd6bb 0%, #ffe4e4 100%);
  border-radius: 999px;
  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;
}
@media (max-width: 600px) {
  .facility_page .environment__btn {
    width: 40px;
  }
}
.facility_page .environment__arrow {
  position: relative;
  display: inline-block;
  width: calc(42vw / 14.4);
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
}
@media (max-width: 600px) {
  .facility_page .environment__arrow {
    width: 24px;
  }
}
.facility_page .environment__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0vw / 14.4);
  width: calc(10vw / 14.4);
  height: 1.5px;
  background: -webkit-gradient(linear, right top, left top, from(#ff6363), to(#ff6a2a));
  background: linear-gradient(to left, #ff6363, #ff6a2a);
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 600px) {
  .facility_page .environment__arrow::before {
    width: 5px;
  }
}

@media (max-width: 600px) {
  .works_page {
    overflow: hidden;
  }
}
@media (max-width: 600px) {
  .works_page .is-pc {
    display: none;
  }
}
.works_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .works_page .is-sp {
    display: block;
  }
}
.works_page .page-mv {
  padding: 153px 0 135px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .works_page .page-mv {
    display: block;
    padding: 120px 0 calc(63vw / 3.75);
  }
}
.works_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .works_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.works_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38.5%;
          flex: 0 0 38.5%;
  margin-left: calc(122vw / 14.4);
  margin-bottom: calc(44vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .works_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
  }
}
@media (max-width: 600px) {
  .works_page .page-mv__left {
    margin-bottom: calc(100vw / 3.75);
  }
}
.works_page .page-mv__title-ja {
  white-space: nowrap;
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: calc(-10vw / 14.4);
  font-weight: 400;
}
@media (max-width: 600px) {
  .works_page .page-mv__title-ja {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
.works_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 600px) {
  .works_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.works_page .page-mv__img {
  width: 100%;
  aspect-ratio: 760/420;
}
@media (max-width: 600px) {
  .works_page .page-mv__img {
    position: absolute;
    bottom: 40px;
    right: 0;
    width: 61%;
  }
}
.works_page .works {
  position: relative;
  color: #583726;
}
.works_page .works::before {
  content: "";
  position: absolute;
  top: calc(-48vw / 14.4);
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .works_page .works::before {
    right: -100px;
    width: 350px;
    top: 110px;
  }
}
.works_page .works__bg {
  position: relative;
  overflow-x: hidden;
}
.works_page .works__bg--1::before {
  content: "";
  position: absolute;
  top: calc(1320vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(659vw / 14.4);
  aspect-ratio: 659/786;
  background: url("../img/page-common/shape_common2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .works_page .works__bg--1::before {
    left: -100px;
    top: 1116px;
  }
}
@media (max-width: 600px) {
  .works_page .works__bg--1::before {
    width: 274px;
  }
}
.works_page .works__bg--2::before {
  content: "";
  position: absolute;
  top: calc(2760vw / 14.4);
  right: calc(-169vw / 14.4);
  width: calc(622vw / 14.4);
  aspect-ratio: 622/951;
  background: url("../img/facility/shape_facility1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .works_page .works__bg--2::before {
    right: -100px;
    top: 2190px;
  }
}
@media (max-width: 600px) {
  .works_page .works__bg--2::before {
    width: 260px;
  }
}
.works_page .works__bg--3::before {
  content: "";
  position: absolute;
  top: calc(3650vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(693vw / 14.4);
  aspect-ratio: 693/1163;
  background: url("../img/facility/shape_facility2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .works_page .works__bg--3::before {
    left: -100px;
    top: 3000px;
  }
}
@media (max-width: 600px) {
  .works_page .works__bg--3::before {
    width: 290px;
  }
}
.works_page .works__inner {
  padding: 0 15px;
}
.works_page .works__title {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: calc(34vw / 14.4);
  line-height: 1.6;
  background: var(--8, linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .works_page .works__title {
    font-size: 2.4rem;
  }
}
@media (max-width: 600px) {
  .works_page .works__title {
    margin-top: -4px;
  }
}
.works_page .works__head-text {
  margin: 40px auto 0;
  padding: 0 6px;
  color: #351f01;
  font-size: calc(20vw / 14.4);
  line-height: 2.5;
  max-width: calc(840vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works__head-text {
    max-width: none;
    font-size: 1.5rem;
    max-width: 830px;
  }
}
@media (max-width: 600px) {
  .works_page .works__head-text {
    margin: calc(24vw / 3.75) auto 0;
    padding: 0 calc(6vw / 3.75);
    font-size: calc(14vw / 3.75);
    max-width: 100%;
  }
}
.works_page .works__flex {
  margin: 100px auto 0;
  width: calc(1360vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: calc(40vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .works_page .works__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 842px;
  }
}
.works_page .works-side {
  width: 27%;
  position: sticky;
  top: calc(100vw / 14.4);
  left: 0;
}
@media (max-width: 980px) {
  .works_page .works-side {
    position: static;
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 600px) {
  .works_page .works-side {
    max-width: 100%;
  }
}
.works_page .works-side__lists {
  background: rgba(255, 255, 255, 0.8);
  border-radius: calc(5vw / 14.4);
  padding: calc(10vw / 14.4) calc(30vw / 14.4) calc(10vw / 14.4) calc(35vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (max-width: 980px) {
  .works_page .works-side__lists {
    border-radius: 5px;
    padding: 14px 24px;
  }
}
.works_page .works-side__lists::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(10vw / 14.4);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, #ffa260), color-stop(80%, #ff9c9d));
  background: linear-gradient(#ffa260 20%, #ff9c9d 80%);
}
@media (max-width: 980px) {
  .works_page .works-side__lists::before {
    width: 8px;
  }
}
.works_page .works-side__lists li:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
}
.works_page .works-side__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: calc(16vw / 14.4) 0;
  font-size: calc(17vw / 14.4);
  line-height: 1;
}
@media (max-width: 980px) {
  .works_page .works-side__link {
    padding: 8px 0;
    font-size: 1.4rem;
  }
}
.works_page .works-side__arrow {
  width: calc(43vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-side__arrow {
    width: 30px;
  }
}
.works_page .works-side__arrow span {
  width: calc(23vw / 14.4);
  height: calc(1.5vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-side__arrow span {
    width: 15px;
    height: 1.5px;
  }
}
.works_page .works-side__arrow span::before {
  width: calc(6vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-side__arrow span::before {
    width: 4px;
  }
}
.works_page .works-main {
  width: 69%;
  padding: calc(40vw / 14.4) calc(50vw / 14.4) calc(80vw / 14.4) calc(50vw / 14.4);
  border-radius: calc(5vw / 14.4);
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 980px) {
  .works_page .works-main {
    width: 100%;
    padding: 30px 15px 54px;
  }
}
.works_page .works-main__groups {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(92vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main__groups {
    gap: 62px;
  }
}
.works_page .works-main__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(40vw / 14.4);
  scroll-margin-top: calc(130vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main__group {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main__group {
    scroll-margin-top: 82px;
  }
}
.works_page .works-main__title {
  padding: calc(14vw / 14.4) calc(35vw / 14.4);
  border-radius: calc(5vw / 14.4);
  background: linear-gradient(87deg, #ff9c9d 0.7%, #ffa260 93.58%);
  text-align: center;
  color: #fffcfc;
  font-family: "Noto Serif JP";
  font-size: calc(28vw / 14.4);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media (max-width: 980px) {
  .works_page .works-main__title {
    border-radius: 5px;
    padding: 10px 24px;
    font-size: 2.2rem;
  }
}
.works_page .works-main__title span {
  display: inline-block;
  font-weight: 300;
}
.works_page .works-main__sub-title {
  color: #351f01;
  font-size: calc(22vw / 14.4);
  padding-left: calc(20vw / 14.4);
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background: linear-gradient(87deg, #ff9c9d 0.7%, #ffa260 93.58%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .works_page .works-main__sub-title {
    font-size: 1.6rem;
    padding-left: 14px;
  }
}
.works_page .works-main__sub-title::before {
  content: "";
  position: absolute;
  width: calc(10vw / 14.4);
  height: calc(30vw / 14.4);
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: linear-gradient(19deg, #ff9c9d 22.05%, #f1aa00 87.92%);
}
@media (max-width: 980px) {
  .works_page .works-main__sub-title::before {
    width: 7px;
    height: 20px;
  }
}
.works_page .works-main-top__images {
  position: relative;
  margin-bottom: 22px;
  width: 100%;
  aspect-ratio: 795/406;
}
.works_page .works-main-top__images img {
  position: absolute;
  width: calc(430vw / 14.4);
  border-radius: 10px;
}
@media (max-width: 980px) {
  .works_page .works-main-top__images img {
    width: 54%;
  }
}
.works_page .works-main-top__images img:first-of-type {
  top: 0;
  left: 0;
  z-index: 1;
}
.works_page .works-main-top__images img:last-of-type {
  bottom: 0;
  right: 0;
}
.works_page .works-main-top__text {
  margin-top: 20px;
  padding: 0 calc(20vw / 14.4);
  font-size: calc(17vw / 14.4);
  line-height: 2;
}
@media (max-width: 980px) {
  .works_page .works-main-top__text {
    font-size: 1.4rem;
    padding: 0 14px;
  }
}
.works_page .works-main-flow__table {
  margin-top: 32px;
  margin-bottom: -8px;
}
.works_page .works-main-flow__table table {
  width: 100%;
  border-radius: 0 0 calc(10vw / 14.4) calc(10vw / 14.4);
  background: linear-gradient(87deg, #ff9c9d 0.7%, #ffa260 93.58%);
  overflow: hidden;
  border: 4px solid transparent;
  margin-top: -1px;
  display: none;
  opacity: 0;
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table table {
    border-radius: 0 0 10px 10px;
  }
}
.works_page .works-main-flow__table table.is-active {
  display: table;
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.works_page .works-main-flow__table tr {
  background: #fff;
}
.works_page .works-main-flow__table tr:not(:last-of-type) {
  border-bottom: 2px dashed #ff6363;
}
.works_page .works-main-flow__table th,
.works_page .works-main-flow__table td {
  padding: calc(12vw / 14.4) calc(15vw / 14.4);
  vertical-align: middle;
  height: calc(70vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table th,
  .works_page .works-main-flow__table td {
    padding: 8px 10px;
    height: 50px;
  }
}
.works_page .works-main-flow__table th {
  border-right: 2px solid #ffac9a;
  background: #fef0ef;
  color: #f28149;
  font-size: calc(18vw / 14.4);
  font-weight: 400;
  width: calc(230vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table th {
    font-size: 1.4rem;
    width: 170px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main-flow__table th {
    width: 100px;
  }
}
.works_page .works-main-flow__table th span {
  display: inline-block;
  text-align: left;
}
.works_page .works-main-flow__table th span:first-of-type {
  width: calc(92vw / 14.4);
  font-size: calc(20vw / 14.4);
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  gap: calc(10vw / 14.4);
  padding-left: calc(32vw / 14.4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table th span:first-of-type {
    width: 68px;
    font-size: 1.6rem;
    gap: 8px;
    padding-left: 22px;
  }
}
.works_page .works-main-flow__table th span:first-of-type::before {
  position: absolute;
  content: "";
  width: calc(21vw / 14.4);
  aspect-ratio: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: url("../img/works/time-icon.svg") no-repeat center center/contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table th span:first-of-type::before {
    width: 16px;
  }
}
.works_page .works-main-flow__table th span:last-of-type {
  line-height: 1.1;
}
.works_page .works-main-flow__table td {
  font-size: calc(17vw / 14.4);
  line-height: 1.4;
  background: #fff;
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table td {
    font-size: 1.4rem;
  }
}
.works_page .works-main-flow__table .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-flow__table .flex {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main-flow__table .flex {
    gap: 4px;
    -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: start;
  }
}
.works_page .works-main-flow__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.works_page .works-main-flow__tab li {
  width: 100%;
}
.works_page .works-main-flow__tab li.is-active a, .works_page .works-main-flow__tab li:hover a, .works_page .works-main-flow__tab li:focus a {
  background: linear-gradient(87deg, #ff9c9d 0.7%, #ffa260 93.58%);
  border: 2px solid transparent;
  color: #fff;
  -webkit-text-fill-color: #fff;
}
.works_page .works-main-flow__tab li.is-active a {
  cursor: inherit;
}
.works_page .works-main-flow__tab li a {
  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;
  width: 100%;
  height: calc(48vw / 14.4);
  border-radius: calc(15vw / 14.4) calc(15vw / 14.4) 0 0;
  border: 2px solid #ffa263;
  text-align: center;
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  background: linear-gradient(87deg, #ff9c9d 0.7%, #ffa260 93.58%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 0s;
  transition: all 0s;
}
@media (max-width: 980px) {
  .works_page .works-main-flow__tab li a {
    height: 34px;
    font-size: 1.4rem;
    border-radius: 15px 15px 0 0;
  }
}
.works_page .works-main-flow__tab li a:hover {
  opacity: 1;
}
.works_page .works-main-interview__flex {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__flex {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main-interview__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.works_page .works-main-interview__img {
  width: 45.5%;
  position: relative;
  margin-left: calc(3vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-interview__img {
    width: 50%;
    margin-left: 0;
    max-width: 280px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main-interview__img {
    width: 100%;
    margin: auto;
    aspect-ratio: 280/222;
  }
}
.works_page .works-main-interview__img img {
  width: 70%;
}
.works_page .works-main-interview__img figcaption {
  position: absolute;
  top: calc(34vw / 14.4);
  right: 0;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__img figcaption {
    top: 24px;
  }
}
.works_page .works-main-interview__img span {
  display: block;
  text-align: right;
  color: #3e8899;
  font-family: "Noto Serif JP";
  font-size: calc(18vw / 14.4);
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__img span {
    font-size: 1.4rem;
  }
}
.works_page .works-main-interview__img span.is-job {
  font-size: calc(22vw / 14.4);
  margin-bottom: 5px;
  background: url("../img/works/dot-line.svg") no-repeat center bottom/100%;
  background: url(../img/works/dot-line.svg) no-repeat center bottom/112%;
  padding-bottom: 3px;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__img span.is-job {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.works_page .works-main-interview__img span.is-facility {
  font-family: "Noto Sans JP";
  margin-top: 5px;
  background: -webkit-gradient(linear, right top, left top, from(#f9997a), to(#fa8681));
  background: linear-gradient(270deg, #f9997a 0%, #fa8681 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
.works_page .works-main-interview__qa {
  width: 50.4%;
  margin: 14px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 600px) {
  .works_page .works-main-interview__qa {
    width: 100%;
  }
}
.works_page .works-main-interview__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.works_page .works-main-interview__q span {
  color: #ff6a2a;
  font-size: calc(20vw / 14.4);
  line-height: 1.6;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__q span {
    font-size: 1.5rem;
  }
}
.works_page .works-main-interview__q span:first-of-type {
  font-size: calc(24vw / 14.4);
  font-family: "Shippori Mincho B1", "Noto Serif JP";
  font-weight: 700;
  position: relative;
  bottom: 4px;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__q span:first-of-type {
    font-size: 1.8rem;
  }
}
.works_page .works-main-interview__a {
  margin-top: 5px;
  margin-left: calc(28vw / 14.4);
  font-size: calc(18vw / 14.4);
  font-weight: 400;
  line-height: 2;
}
@media (max-width: 980px) {
  .works_page .works-main-interview__a {
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.works_page .works-main-facility__lists {
  margin: 26px auto 0;
  gap: calc(28vw / 14.4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: calc(752vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-facility__lists {
    max-width: 640px;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .works_page .works-main-facility__lists {
    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: 230px;
    margin: 20px auto 0;
  }
}
.works_page .works-main-facility__list {
  aspect-ratio: 23/16;
}
.works_page .works-main-facility__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.works_page .works-main-facility__link--fureai {
  background: url("../img/works/fureai-no-sato.png") no-repeat center center/cover;
}
.works_page .works-main-facility__link--manyo {
  background: url("../img/works/manyo-no-sato.png") no-repeat center center/cover;
}
.works_page .works-main-facility__link--kawaguchi {
  background: url("../img/works/kawaguchi-miyabi.png") no-repeat center center/cover;
}
.works_page .works-main-facility__link--nanohana {
  background: url("../img/works/fureai-nanohana.png") no-repeat center center/cover;
}
.works_page .works-main-facility__link--kirara {
  background: url("../img/works/day-service-kirara.png") no-repeat center center/cover;
}
.works_page .works-main-facility__link--step {
  background: url("../img/works/step.png") no-repeat center center/cover;
}
.works_page .works-main-facility__name {
  position: absolute;
  bottom: calc(1vw / 14.4);
  left: calc(1vw / 14.4);
  border-radius: 0 calc(10vw / 14.4);
  background: #fff;
  height: calc(30vw / 14.4);
  padding: 0 calc(15vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(18vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-facility__name {
    bottom: 1px;
    left: 1px;
    border-radius: 0 10px;
    font-size: 1.4rem;
    height: 24px;
  }
}
.works_page .works-main-facility__arrow {
  position: absolute;
  bottom: calc(-10vw / 14.4);
  right: calc(-10vw / 14.4);
  width: calc(35vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-facility__arrow {
    bottom: -10px;
    right: -10px;
    width: 30px;
  }
}
.works_page .works-main-facility__arrow span {
  width: calc(19vw / 14.4);
  height: calc(3vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-facility__arrow span {
    width: 18px;
    height: 2px;
  }
}
.works_page .works-main-facility__arrow span::before {
  width: calc(6vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .works-main-facility__arrow span::before {
    width: 6px;
  }
}
.works_page .environment {
  margin-top: 44px;
  margin-bottom: 60px;
}
.works_page .environment__inner {
  width: calc(1180vw / 14.4);
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 980px) {
  .works_page .environment__inner {
    width: 100%;
  }
}
.works_page .environment__title-ja {
  font-size: calc(24vw / 14.4);
  line-height: 3.5;
  background: -webkit-gradient(linear, right top, left top, from(#f9997a), to(#fa8681));
  background: linear-gradient(270deg, #f9997a 0%, #fa8681 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .works_page .environment__title-ja {
    font-size: 1.6rem;
  }
}
.works_page .environment__title-en {
  margin-top: calc(-18vw / 14.4);
  font-family: "League Spartan";
  font-size: calc(96vw / 14.4);
  font-weight: 100;
  line-height: 1;
  background: -webkit-gradient(linear, right top, left top, from(#f9997a), to(#fa8681));
  background: linear-gradient(270deg, #f9997a 0%, #fa8681 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .works_page .environment__title-en {
    font-size: 6rem;
  }
}
.works_page .environment__links {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.works_page .environment__link {
  position: relative;
  display: block;
  width: calc(713vw / 14.4);
  aspect-ratio: 713/282;
  border-radius: 19px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
  padding-left: 20px;
}
@media (max-width: 980px) {
  .works_page .environment__link {
    width: 100%;
    max-width: 486px;
    padding-bottom: 0;
    padding-left: 0;
  }
}
.works_page .environment__link:first-of-type {
  background: url("../img/facility/link_benefits.png") no-repeat center center/cover;
  margin-left: calc(50vw / 14.4);
}
@media (max-width: 600px) {
  .works_page .environment__link:first-of-type {
    margin-left: 0;
  }
}
.works_page .environment__link:last-of-type {
  background: url("../img/facility/link_career.png") no-repeat center center/cover;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-right: calc(10vw / 14.4);
}
@media (max-width: 600px) {
  .works_page .environment__link:last-of-type {
    margin-right: 0;
  }
}
.works_page .environment__link-inner {
  margin-left: calc(45vw / 14.4);
}
.works_page .environment__text-en {
  margin: 0 auto;
  color: #fff;
  font-family: "League Spartan";
  font-size: calc(36vw / 14.4);
  font-weight: 100;
  line-height: 1;
}
@media (max-width: 980px) {
  .works_page .environment__text-en {
    font-size: 2.4rem;
  }
}
.works_page .environment__text-ja {
  margin: 0 auto;
  color: #fff;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  font-size: calc(36vw / 14.4);
}
@media (max-width: 980px) {
  .works_page .environment__text-ja {
    font-size: 2.2rem;
  }
}
.works_page .environment__btn {
  content: "";
  position: absolute;
  bottom: -19px;
  right: -11px;
}

.recruit-graduate_page {
  position: relative;
  overflow: hidden;
}
.recruit-graduate_page::before {
  content: "";
  position: absolute;
  top: 618px;
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-graduate_page::before {
    right: -100px;
    width: 350px;
    top: 460px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .is-pc {
    display: none;
  }
}
.recruit-graduate_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .recruit-graduate_page .is-sp {
    display: block;
  }
}
.recruit-graduate_page .page-mv {
  padding: 204px 0 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-graduate_page .page-mv {
    display: block;
    padding: 124px 0 74px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .page-mv {
    overflow: hidden;
  }
}
.recruit-graduate_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-graduate_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.recruit-graduate_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit-graduate_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
    margin-bottom: 0;
  }
}
.recruit-graduate_page .page-mv__title-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .recruit-graduate_page .page-mv__title-ja {
    display: grid;
  }
}
.recruit-graduate_page .page-mv__title-ja span {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .page-mv__title-ja span {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .page-mv__title-ja span:last-of-type {
    margin-left: 1em;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .page-mv__title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-graduate_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .recruit-graduate_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.recruit-graduate_page .page-mv__title-sub {
  color: #fff;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.6);
  font-family: "Noto Serif JP";
  font-size: calc(39vw / 14.4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .page-mv__title-sub {
    font-size: clamp(2.2rem, 7vw, 2.6rem);
  }
}
.recruit-graduate_page .flow {
  margin-top: 94px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow {
    margin-top: -9px;
  }
}
.recruit-graduate_page .flow__inner {
  padding: 0 20px;
  width: calc(1100vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__inner {
    width: 100%;
  }
}
.recruit-graduate_page .flow__heading-en {
  font-family: "League Spartan";
  font-size: calc(32vw / 14.4);
  line-height: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: var(--2, linear-gradient(180deg, #fabd5a 0%, #f28149 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__heading-en {
    font-size: 2.6rem;
  }
}
.recruit-graduate_page .flow__heading-ja {
  color: #583726;
  font-size: calc(28vw / 14.4);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__heading-ja {
    font-size: 2.2rem;
  }
}
.recruit-graduate_page .flow__lists {
  margin-top: 42px;
  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;
  gap: calc(39vw / 14.4);
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow__lists {
    display: block;
    width: 100%;
    max-width: 290px;
    margin: 30px auto 0;
  }
}
.recruit-graduate_page .flow__boxes {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-graduate_page .flow__box {
  background: #fffcfc;
  width: 100%;
}
.recruit-graduate_page .flow__box-title {
  background: linear-gradient(292deg, #ff8c8c 13.39%, #ffa189 85.38%);
  height: calc(47vw / 14.4);
  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-size: calc(18vw / 14.4);
  font-weight: 500;
  color: #fff;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__box-title {
    height: 30px;
    font-size: 1.2rem;
  }
}
.recruit-graduate_page .flow__box-text {
  height: calc(126vw / 14.4);
  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;
  text-align: center;
  color: #583726;
  font-size: calc(18vw / 14.4);
  font-weight: 600;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__box-text {
    height: 85px;
    font-size: 1.2rem;
  }
}
.recruit-graduate_page .flow__caption {
  margin-top: 25px;
  margin-left: calc(10vw / 14.4);
  color: #583726;
  font-size: calc(16vw / 14.4);
  line-height: 1.5;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow__caption {
    font-size: 1.1rem;
  }
}
.recruit-graduate_page .flow-list {
  width: calc(180vw / 14.4);
  aspect-ratio: 1;
  background: linear-gradient(292deg, #ff8c8c 13.39%, #ffa189 85.38%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(10vw / 14.4);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  padding-top: calc(33vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow-list {
    width: 140px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list {
    padding-top: 23px;
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list:not(:first-of-type) {
    margin: -42px 0 0;
  }
}
.recruit-graduate_page .flow-list:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-26vw / 14.4);
  width: calc(15vw / 14.4);
  height: calc(34vw / 14.4);
  background: #ffcb76;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list:not(:first-of-type)::before {
    width: 12px;
    height: 24px;
    top: 8px;
    left: auto;
    right: -11px;
    -webkit-transform: rotate(149deg);
            transform: rotate(149deg);
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list:nth-of-type(even) {
    margin: -42px 0 0 auto;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list:nth-of-type(even)::before {
    -webkit-transform: rotate(32deg);
            transform: rotate(32deg);
    left: -9px;
    right: auto;
  }
}
.recruit-graduate_page .flow-list__number {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow-list__number {
    font-size: 18px;
  }
}
.recruit-graduate_page .flow-list__text {
  color: #fff;
  text-align: center;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
  line-height: 1.2;
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 980px) {
  .recruit-graduate_page .flow-list__text {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .flow-list__text {
    font-size: 16px;
  }
}
.recruit-graduate_page .detail {
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail {
    padding: 70px 0;
  }
}
.recruit-graduate_page .detail::before {
  content: "";
  position: absolute;
  top: calc(700vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(659vw / 14.4);
  aspect-ratio: 659/786;
  background: url("../img/page-common/shape_common2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail::before {
    left: -100px;
    width: 350px;
    top: 540px;
  }
}
.recruit-graduate_page .detail::after {
  content: "";
  position: absolute;
  top: calc(2200vw / 14.4);
  right: calc(-140vw / 14.4);
  width: calc(622vw / 14.4);
  aspect-ratio: 622/951;
  background: url("../img/page-common/shape_common3.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail::after {
    top: 2660px;
    right: -100px;
    width: 250px;
  }
}
.recruit-graduate_page .detail__inner {
  padding: 0 20px;
  width: calc(1100vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__inner {
    width: 100%;
  }
}
.recruit-graduate_page .detail__heading-en {
  font-family: "League Spartan";
  font-size: calc(32vw / 14.4);
  line-height: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: var(--2, linear-gradient(180deg, #fabd5a 0%, #f28149 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__heading-en {
    font-size: 2.6rem;
  }
}
.recruit-graduate_page .detail__heading-ja {
  color: #583726;
  font-size: calc(28vw / 14.4);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__heading-ja {
    font-size: 2.2rem;
  }
}
.recruit-graduate_page .detail__box {
  margin: 39px auto 0;
  width: calc(960vw / 14.4);
  border-radius: 20px;
  border: 2px solid #ffac9a;
  background: rgba(255, 255, 255, 0.8);
  padding: calc(60vw / 14.4) calc(45vw / 14.4) calc(60vw / 14.4);
  color: #583726;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__box {
    width: 100%;
    max-width: 650px;
    padding: 30px 30px 40px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail__box {
    padding: 30px 18px 40px;
  }
}
.recruit-graduate_page .detail__title {
  font-size: calc(26vw / 14.4);
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__title {
    font-size: 1.8rem;
  }
}
.recruit-graduate_page .detail__head {
  margin: 28px 0.8em 0;
  font-size: calc(16vw / 14.4);
  line-height: 2;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__head {
    font-size: 1.2rem;
  }
}
.recruit-graduate_page .detail__table {
  margin: 0 auto;
  width: 100%;
  max-width: calc(834vw / 14.4);
  font-size: calc(16vw / 14.4);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__table {
    font-size: 1.2rem;
    max-width: none;
  }
}
.recruit-graduate_page .detail__table tr {
  border-bottom: 2px solid #fff;
}
.recruit-graduate_page .detail__table tr:last-of-type {
  border-bottom: 2px solid #f9f9f9;
}
.recruit-graduate_page .detail__table tr:nth-of-type(odd) td {
  background: #f9f9f9;
}
.recruit-graduate_page .detail__table tr:nth-of-type(even) td {
  background: #fff;
}
.recruit-graduate_page .detail__table th {
  width: calc(190vw / 14.4);
  background: #fef0ef;
  padding: 13px 20px;
  text-align: left;
  font-weight: 400;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__table th {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail__table th {
    padding: 10px;
    width: 100px;
  }
}
.recruit-graduate_page .detail__table td {
  padding: 13px 22px;
}
@media (max-width: 600px) {
  .recruit-graduate_page .detail__table td {
    padding: 10px;
  }
}
.recruit-graduate_page .detail__caption-box {
  margin: 51px auto 0;
  max-width: calc(660vw / 14.4);
  width: 100%;
  padding: calc(20vw / 14.4);
  border: 2px solid #fef0ef;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: #583726;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__caption-box {
    max-width: 450px;
    padding: 14px;
  }
}
.recruit-graduate_page .detail__caption-box-heading {
  font-size: calc(16vw / 14.4);
  font-weight: 700;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__caption-box-heading {
    font-size: 1.2rem;
  }
}
.recruit-graduate_page .detail__caption-box-text {
  font-size: calc(14vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__caption-box-text {
    font-size: 1rem;
  }
}
.recruit-graduate_page .detail__link-inner {
  margin: 58px auto 0;
  width: calc(338vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__link-inner {
    width: 200px;
  }
}
.recruit-graduate_page .detail__link {
  border-radius: calc(10vw / 14.4);
  background: linear-gradient(86deg, #ff9c9d 0.73%, #f1aa00 164.66%);
  height: calc(70vw / 14.4);
  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;
  color: #fff;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__link {
    border-radius: 10px;
    font-size: 1.4rem;
    width: 200px;
    height: 45px;
  }
}
.recruit-graduate_page .detail__link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(38vw / 14.4);
  width: calc(30vw / 14.4);
  aspect-ratio: 1;
  background: url("../img/page-common/icon-arrow-right.svg") no-repeat center center/contain;
}
@media (max-width: 980px) {
  .recruit-graduate_page .detail__link::before {
    width: 20px;
    right: 25px;
  }
}
.recruit-graduate_page .detail__mynavi {
  display: block;
  margin-top: calc(40vw / 14.4);
  aspect-ratio: 338/137;
}

@media (max-width: 600px) {
  .recruit-job_page .is-pc {
    display: none;
  }
}
.recruit-job_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .recruit-job_page .is-sp {
    display: block;
  }
}
.recruit-job_page .page-mv {
  padding: 204px 0 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-job_page .page-mv {
    display: block;
    padding: 124px 0 74px;
  }
}
@media (max-width: 600px) {
  .recruit-job_page .page-mv {
    overflow: hidden;
  }
}
.recruit-job_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-job_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.recruit-job_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit-job_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
    margin-bottom: 0;
  }
}
.recruit-job_page .page-mv__title-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .recruit-job_page .page-mv__title-ja {
    display: grid;
  }
}
.recruit-job_page .page-mv__title-ja span {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .recruit-job_page .page-mv__title-ja span {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 600px) {
  .recruit-job_page .page-mv__title-ja span:last-of-type {
    margin-left: 1em;
  }
}
@media (max-width: 600px) {
  .recruit-job_page .page-mv__title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-job_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .recruit-job_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.recruit-job_page .page-mv__title-sub {
  color: #fff;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.6);
  font-family: "Noto Serif JP";
  font-size: calc(39vw / 14.4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-job_page .page-mv__title-sub {
    font-size: clamp(2.2rem, 7vw, 2.6rem);
  }
}
.recruit-job_page .job {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(167vw / 14.4);
}
.recruit-job_page .job::before {
  content: "";
  position: absolute;
  top: calc(-48vw / 14.4);
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-job_page .job::before {
    right: -100px;
    width: 350px;
    top: 60px;
  }
}
.recruit-job_page .job__inner {
  width: calc(800vw / 14.4);
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-job_page .job__inner {
    width: 100%;
    max-width: 815px;
  }
}
.recruit-job_page .job__title {
  color: #351f01;
  font-size: calc(34vw / 14.4);
  padding-left: calc(43vw / 14.4);
  line-height: 1.6;
  font-weight: 400;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-job_page .job__title {
    font-size: 2.2rem;
    padding-left: 10px;
  }
}
.recruit-job_page .job__title::before {
  content: "";
  position: absolute;
  width: calc(22vw / 14.4);
  aspect-ratio: 1/1;
  left: calc(6vw / 14.4);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 99px;
  background: #ff9385;
}
@media (max-width: 980px) {
  .recruit-job_page .job__title::before {
    width: 10px;
    left: -10px;
  }
}
.recruit-job_page .job__links {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 980px) {
  .recruit-job_page .job__links {
    margin-top: 20px;
    gap: 14px;
  }
}
.recruit-job_page .job__link {
  width: 100%;
  min-height: calc(83vw / 14.4);
  border-radius: calc(20vw / 14.4);
  background: rgba(255, 255, 255, 0.9);
  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;
  color: #ff9385;
  font-size: calc(24vw / 14.4);
  font-weight: 400;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-job_page .job__link {
    min-height: 72px;
    border-radius: 10px;
    font-size: 2rem;
    text-align: center;
    line-height: 1.2;
	          padding-right: 70px;
        padding-left: 40px;
  }
}
.recruit-job_page .job__link--disabled {
  cursor: default;
  pointer-events: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 30px;
  color: #999;
}
@media (max-width: 980px) {
  .recruit-job_page .job__link--disabled {
    padding: 15px 70px 15px 40px;

  }
}
.recruit-job_page .job__link-name {
  display: block;
}
.recruit-job_page .job__link-note {
  display: block;
  font-size: calc(14vw / 14.4);
  color: #999;
  margin-top: 4px;
}
@media (max-width: 980px) {
  .recruit-job_page .job__link-note {
    font-size: 1.2rem;
  }
}
.recruit-job_page .job__btn {
  content: "";
  position: absolute;
  width: calc(45vw / 14.4);
  aspect-ratio: 1/1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(30vw / 14.4);
  border-radius: 999px;
  background: #ff9385;
  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;
}
@media (max-width: 600px) {
  .recruit-job_page .job__btn {
    width: 30px;
    right: 20px;
  }
}
.recruit-job_page .job__btn--disabled {
  background: #999;
}
.recruit-job_page .job__arrow {
  position: relative;
  display: inline-block;
  width: calc(32vw / 14.4);
  height: 2px;
  background: #fff;
}
@media (max-width: 980px) {
  .recruit-job_page .job__arrow {
    width: 16px;
  }
}
.recruit-job_page .job__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0vw / 14.4);
  width: calc(8vw / 14.4);
  height: 1.5px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 980px) {
  .recruit-job_page .job__arrow::before {
    width: 5px;
  }
}

.recruit-area_page .page-mv {
  padding: 204px 0 128px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-area_page .page-mv {
    display: block;
    padding: 124px 0 74px;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .page-mv {
    overflow: hidden;
  }
}
.recruit-area_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-area_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.recruit-area_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit-area_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
    margin-bottom: 0;
  }
}
.recruit-area_page .page-mv__title-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .recruit-area_page .page-mv__title-ja {
    display: grid;
  }
}
.recruit-area_page .page-mv__title-ja span {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .recruit-area_page .page-mv__title-ja span {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .page-mv__title-ja span:last-of-type {
    margin-left: 1em;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .page-mv__title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction:column; 
  }
}
.recruit-area_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .recruit-area_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.recruit-area_page .page-mv__title-sub {
  color: #fff;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.8);
  font-family: "Noto Serif JP";
  font-size: calc(39vw / 14.4);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  word-break: auto-phrase;
}
@media (max-width: 980px) {
  .recruit-area_page .page-mv__title-sub {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
  }
}
.recruit-area_page .area {
  position: relative;
  overflow: hidden;
  padding-bottom: calc(143vw / 14.4);
}
.recruit-area_page .area::before {
  content: "";
  position: absolute;
  top: calc(25vw / 14.4);
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-area_page .area::before {
    right: -100px;
    width: 350px;
    top: 0;
  }
}
.recruit-area_page .area::after {
  content: "";
  position: absolute;
  top: calc(1300vw / 14.4);
  left: 0;
  width: calc(659vw / 14.4);
  aspect-ratio: 659/786;
  background: url("../img/page-common/shape_common2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-area_page .area::after {
    left: -100px;
    width: 350px;
    top: 2000px;
  }
}
.recruit-area_page .area__inner {
  padding: 0 20px;
  width: calc(1016vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-area_page .area__inner {
    width: 100%;
  }
}
.recruit-area_page .area__head-text {
  color: #ff9385;
  text-align: center;
  font-size: calc(32vw / 14.4);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 980px) {
  .recruit-area_page .area__head-text {
    font-size: 2.2rem;
  }
}
.recruit-area_page .area__head-links {
  margin: 30px auto 0;
  width: calc(851vw / 14.4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(35vw / 14.4) calc(28vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-area_page .area__head-links {
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .area__head-links {
    gap: 10px;
  }
}
.recruit-area_page .area__head-link {
  border-radius: calc(10vw / 14.4);
  background: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: calc(83vw / 14.4);
  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;
  color: #ff9385;
  font-size: calc(30vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .recruit-area_page .area__head-link {
    border-radius: 10px;
    font-size: 20px;
    height: 56px;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .area__head-link {
    font-size: 14px;
  }
}
.recruit-area_page .area__head-link::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(32vw / 14.4);
  width: calc(22vw / 14.4);
  aspect-ratio: 22/12;
  background: url("../img/page-common/arrow-down.svg") no-repeat center center/contain;
}
@media (max-width: 980px) {
  .recruit-area_page .area__head-link::after {
    right: 20px;
    width: 15px;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .area__head-link::after {
    right: 12px;
  }
}
.recruit-area_page .area__groups {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.recruit-area_page .area__group-title {
  color: #351f01;
  font-size: calc(26vw / 14.4);
  padding-left: calc(15vw / 14.4);
  font-weight: 500;
  line-height: normal;
  border-left: calc(11vw / 14.4) solid #ff9385;
}
@media (max-width: 980px) {
  .recruit-area_page .area__group-title {
    font-size: 1.8rem;
    padding-left: 10px;
    border-left: 6px solid #ff9385;
  }
}
.recruit-area_page .area__cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(35vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-area_page .area__cards {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .recruit-area_page .area__cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-area_page .area-card {
  border-radius: calc(10vw / 14.4);
  background: rgba(255, 255, 255, 0.8);
  padding-top: calc(12vw / 14.4);
  padding-bottom: 4.1666666667vw;
  position: relative;
  min-height: calc(275vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-area_page .area-card {
    border-radius: 10px;
    padding-top: 6px;
    padding-bottom: 40px;
    min-height: 200px;
  }
}
.recruit-area_page .area-card__title {
  padding: 0 calc(30vw / 14.4);
  color: #351f01;
  font-size: calc(22vw / 14.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  min-height: calc(64vw / 14.4);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__title {
    padding: 0 20px;
    font-size: 1.5rem;
    min-height: 44px;
  }
}
.recruit-area_page .area-card__label {
  padding: 0 calc(30vw / 14.4);
  color: #ffac9a;
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 1.8;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__label {
    padding: 0 20px;
    font-size: 1.5rem;
  }
}
.recruit-area_page .area-card__flex {
  margin-top: calc(20vw / 14.4);
  padding: 0 calc(30vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: calc(26vw / 14.4);
  min-height: 67px;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__flex {
    margin-top: 14px;
    padding: 0 20px;
    gap: 14px;
  }
}
.recruit-area_page .area-card__address {
  color: #351f01;
  font-size: calc(20vw / 14.4);
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 57%;
          flex: 0 0 57%;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__address {
    font-size: 1.4rem;
  }
}
.recruit-area_page .area-card__map {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(10vw / 14.4);
  padding: calc(5vw / 14.4) calc(15vw / 14.4);
  border-radius: 999px;
  background: #f28149;
  color: #fff;
  font-size: calc(16vw / 14.4);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  margin-top: 2em;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__map {
    gap: 5px;
    padding: 4px 10px;
    font-size: 1rem;
  }
}
.recruit-area_page .area-card__map::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(16vw / 14.4);
  aspect-ratio: 16/23;
  background: url("../img/page-common/icon-map.svg") no-repeat center/contain;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__map::before {
    width: 10px;
  }
}
.recruit-area_page .area-card__links {
  margin-top: calc(40vw / 14.4);
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__links {
    margin-top: 25px;
  }
}
.recruit-area_page .area-card__link {
  height: calc(51vw / 14.4);
  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;
  color: #fff;
  font-size: calc(22vw / 14.4);
  position: relative;
  background: #3e8899;
  border-radius: 0 0 calc(10vw / 14.4) calc(10vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__link {
    height: 35px;
    font-size: 1.5rem;
    border-radius: 0 0 10px 10px;
  }
}
.recruit-area_page .area-card__arrow {
  position: absolute;
  right: calc(25vw / 14.4);
  display: inline-block;
  width: calc(18vw / 14.4);
  height: 1px;
  background: #fff;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__arrow {
    width: 16px;
    right: 15px;
  }
}
.recruit-area_page .area-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0vw / 14.4);
  width: calc(6vw / 14.4);
  height: 1px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media (max-width: 980px) {
  .recruit-area_page .area-card__arrow::before {
    width: 5px;
  }
}

.recruit-career_page {
  position: relative;
}
.recruit-career_page::before {
  content: "";
  position: absolute;
  top: 618px;
  right: 0;
  width: calc(510vw / 14.4);
  aspect-ratio: 544/786;
  background: url("../img/page-common/shape_common1.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-career_page::before {
    top: 550px;
    width: calc(215vw / 3.75);
  }
}
@media (max-width: 600px) {
  .recruit-career_page .is-pc {
    display: none;
  }
}
.recruit-career_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .recruit-career_page .is-sp {
    display: block;
  }
}
.recruit-career_page .page-mv {
  padding: 204px 0 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-career_page .page-mv {
    display: block;
    padding: 124px 0 74px;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .page-mv {
    overflow: hidden;
  }
}
.recruit-career_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .recruit-career_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.recruit-career_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit-career_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
    margin-bottom: 0;
  }
}
.recruit-career_page .page-mv__title-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .recruit-career_page .page-mv__title-ja {
    display: grid;
  }
}
.recruit-career_page .page-mv__title-ja span {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .recruit-career_page .page-mv__title-ja span {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .page-mv__title-ja span:last-of-type {
    margin-left: 1em;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .page-mv__title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.recruit-career_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .recruit-career_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.recruit-career_page .page-mv__title-sub {
  color: #fff;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.6);
  font-family: "Noto Serif JP";
  font-size: calc(39vw / 14.4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-career_page .page-mv__title-sub {
    font-size: clamp(2.2rem, 7vw, 2.6rem);
  }
}
.recruit-career_page .flow {
  margin-top: 94px;
  padding-bottom: 144px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 600px) {
  .recruit-career_page .flow {
    margin-top: -9px;
    padding-bottom: 70px;
  }
}
.recruit-career_page .flow__inner {
  padding: 0 20px;
  width: calc(1100vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-career_page .flow__inner {
    width: 100%;
  }
}
.recruit-career_page .flow__heading-en {
  font-family: "League Spartan";
  font-size: calc(32vw / 14.4);
  line-height: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: var(--2, linear-gradient(180deg, #fabd5a 0%, #f28149 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .recruit-career_page .flow__heading-en {
    font-size: 2.6rem;
  }
}
.recruit-career_page .flow__heading-ja {
  color: #583726;
  font-size: calc(28vw / 14.4);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-career_page .flow__heading-ja {
    font-size: 2.2rem;
  }
}
.recruit-career_page .flow__lists {
  margin-top: 42px;
  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;
  gap: calc(39vw / 14.4);
}
@media (max-width: 600px) {
  .recruit-career_page .flow__lists {
    display: block;
    width: 100%;
    max-width: 290px;
    margin: 30px auto 0;
  }
}
.recruit-career_page .flow-list {
  width: calc(180vw / 14.4);
  aspect-ratio: 1;
  background: linear-gradient(292deg, #ff8c8c 13.39%, #ffa189 85.38%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(10vw / 14.4);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 999px;
  padding-top: calc(33vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .recruit-career_page .flow-list {
    width: 140px;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list {
    padding-top: 23px;
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list:not(:first-of-type) {
    margin: -42px 0 0;
  }
}
.recruit-career_page .flow-list:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-26vw / 14.4);
  width: calc(15vw / 14.4);
  height: calc(34vw / 14.4);
  background: #ffcb76;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list:not(:first-of-type)::before {
    width: 12px;
    height: 24px;
    top: 8px;
    left: auto;
    right: -11px;
    -webkit-transform: rotate(149deg);
            transform: rotate(149deg);
  }
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list:nth-of-type(even) {
    margin: -42px 0 0 auto;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list:nth-of-type(even)::before {
    -webkit-transform: rotate(32deg);
            transform: rotate(32deg);
    left: -9px;
    right: auto;
  }
}
.recruit-career_page .flow-list__number {
  color: #fff;
  text-align: center;
  font-family: "League Spartan";
  font-size: calc(18vw / 14.4);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media (max-width: 980px) {
  .recruit-career_page .flow-list__number {
    font-size: 18px;
  }
}
.recruit-career_page .flow-list__text {
  color: #fff;
  text-align: center;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
  line-height: 1.2;
  height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 980px) {
  .recruit-career_page .flow-list__text {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .recruit-career_page .flow-list__text {
    font-size: 16px;
  }
}
.recruit-career_page .detail {
  margin-bottom: 148px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .recruit-career_page .detail {
    margin-bottom: 70px;
  }
}
.recruit-career_page .detail::before {
  content: "";
  position: absolute;
  top: calc(1030vw / 14.4);
  left: calc(-169vw / 14.4);
  width: calc(659vw / 14.4);
  aspect-ratio: 659/786;
  background: url("../img/page-common/shape_common2.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .recruit-career_page .detail::before {
    left: 0;
  }
}
.recruit-career_page .detail::after {
  content: "";
  position: absolute;
  bottom: calc(460vw / 14.4);
  right: calc(-140vw / 14.4);
  width: calc(622vw / 14.4);
  aspect-ratio: 622/951;
  background: url("../img/page-common/shape_common3.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 980px) {
  .recruit-career_page .detail::after {
    right: 0;
  }
}
.recruit-career_page .detail__inner {
  padding: 0 20px;
  width: calc(1100vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__inner {
    width: 100%;
  }
}
.recruit-career_page .detail__heading-en {
  font-family: "League Spartan";
  font-size: calc(32vw / 14.4);
  line-height: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: var(--2, linear-gradient(180deg, #fabd5a 0%, #f28149 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__heading-en {
    font-size: 2.6rem;
  }
}
.recruit-career_page .detail__heading-ja {
  color: #583726;
  font-size: calc(28vw / 14.4);
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__heading-ja {
    font-size: 2.2rem;
  }
}
.recruit-career_page .detail__box {
  margin: 39px auto 0;
  width: calc(960vw / 14.4);
  border-radius: 20px;
  border: 2px solid #ffac9a;
  background: rgba(255, 255, 255, 0.8);
  padding: calc(46vw / 14.4) calc(45vw / 14.4) calc(60vw / 14.4);
  color: #583726;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__box {
    width: 100%;
    max-width: 650px;
    padding: 30px 30px 40px;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .detail__box {
    padding: 30px 18px 40px;
  }
}
.recruit-career_page .detail__title {
  font-size: calc(26vw / 14.4);
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__title {
    font-size: 1.8rem;
  }
}
.recruit-career_page .detail__head {
  margin: 28px 0.8em 0;
  font-size: calc(16vw / 14.4);
  line-height: 2;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__head {
    font-size: 1.2rem;
  }
}
.recruit-career_page .detail__table {
  margin: 58px auto 0;
  width: 100%;
  max-width: calc(834vw / 14.4);
  font-size: calc(16vw / 14.4);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__table {
    font-size: 1.2rem;
    max-width: none;
  }
}
.recruit-career_page .detail__table tr {
  border-bottom: 2px solid #fff;
}
.recruit-career_page .detail__table tr:last-of-type {
  border-bottom: 2px solid #f9f9f9;
}
.recruit-career_page .detail__table tr:nth-of-type(odd) td {
  background: #f9f9f9;
}
.recruit-career_page .detail__table tr:nth-of-type(even) td {
  background: #fff;
}
.recruit-career_page .detail__table th {
  width: calc(190vw / 14.4);
  background: #fef0ef;
  padding: 13px 20px;
  text-align: left;
  font-weight: 400;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__table th {
    width: 130px;
  }
}
@media (max-width: 600px) {
  .recruit-career_page .detail__table th {
    padding: 10px;
    width: 100px;
  }
}
.recruit-career_page .detail__table td {
  padding: 13px 23px;
}
@media (max-width: 600px) {
  .recruit-career_page .detail__table td {
    padding: 10px;
  }
}
.recruit-career_page .detail__caption-box {
  margin: 30px auto 0;
  max-width: calc(660vw / 14.4);
  width: 100%;
  padding: calc(20vw / 14.4);
  border: 2px solid #fef0ef;
  background: #fff;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__caption-box {
    max-width: 450px;
    padding: 14px;
  }
}
.recruit-career_page .detail__caption-box p {
  font-size: calc(14vw / 14.4);
  line-height: 1.5;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__caption-box p {
    font-size: 1rem;
  }
}
.recruit-career_page .detail__link-inner {
  margin-top: 40px;
}
.recruit-career_page .detail__link {
  margin: auto;
  border-radius: calc(10vw / 14.4);
  background: linear-gradient(86deg, #ff9c9d 0.73%, #f1aa00 164.66%);
  width: calc(338vw / 14.4);
  height: calc(70vw / 14.4);
  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;
  color: #fff;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
  position: relative;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__link {
    border-radius: 10px;
    font-size: 1.4rem;
    width: 200px;
    height: 45px;
  }
}
.recruit-career_page .detail__link::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(38vw / 14.4);
  width: calc(30vw / 14.4);
  aspect-ratio: 1;
  background: url("../img/page-common/icon-arrow-right.svg") no-repeat center center/contain;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__link::before {
    width: 20px;
    right: 25px;
  }
}
.recruit-career_page .detail__tel {
  display: block;
  margin: 30px auto 0;
  text-align: center;
}
.recruit-career_page .detail__tel span {
  display: inline-block;
  font-size: calc(36.121vw / 14.4);
  background: var(--2, linear-gradient(180deg, #fabd5a 0%, #f28149 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "League Spartan";
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 980px) {
  .recruit-career_page .detail__tel span {
    font-size: 2.4rem;
  }
}
.recruit-career_page .detail__tel span:nth-of-type(1) {
  position: relative;
  bottom: 0.1em;
}
.recruit-career_page .detail__tel span:nth-of-type(2) {
  position: relative;
  bottom: 0.2em;
  margin: 0 calc(6vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-career_page .detail__tel span:nth-of-type(2) {
    margin: 0 4px;
  }
}
.recruit-career_page .detail__tel span:nth-of-type(3) {
  font-size: calc(50.57vw / 14.4);
}
@media (max-width: 980px) {
  .recruit-career_page .detail__tel span:nth-of-type(3) {
    font-size: 3.4rem;
  }
}

@media (max-width: 600px) {
  .entry_page .is-pc {
    display: none;
  }
}
.entry_page .is-sp {
  display: none;
}
@media (max-width: 600px) {
  .entry_page .is-sp {
    display: block;
  }
}
.entry_page .page-mv {
  padding: 204px 0 109px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (max-width: 980px) {
  .entry_page .page-mv {
    display: block;
    padding: 124px 0 74px;
  }
}
@media (max-width: 600px) {
  .entry_page .page-mv {
    overflow: hidden;
  }
}
.entry_page .page-mv::before {
  position: absolute;
  content: "";
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(-264vw / 14.4);
  width: calc(1100vw / 14.4);
  aspect-ratio: 110/85;
  background: url("../img/page-common/shape_top-bg.png") no-repeat center center/contain;
  z-index: -1;
}
@media (max-width: 600px) {
  .entry_page .page-mv::before {
    background: url("../img/page-common/shape_top-bg_sp.png") no-repeat center center/contain;
    width: 375px;
    aspect-ratio: 375/422;
    left: 0;
    top: 55%;
  }
}
.entry_page .page-mv__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 39%;
          flex: 0 0 39%;
  margin-left: calc(120vw / 14.4);
  margin-bottom: calc(20vw / 14.4);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .entry_page .page-mv__left {
    margin-left: calc(20vw / 3.75);
    margin-bottom: 0;
  }
}
.entry_page .page-mv__title-ja {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 600px) {
  .entry_page .page-mv__title-ja {
    display: grid;
  }
}
.entry_page .page-mv__title-ja span {
  font-family: "Noto Serif JP";
  color: #fff;
  text-shadow: 0 0 20.3px rgba(255, 111, 0, 0.6);
  font-size: calc(48vw / 14.4);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media (max-width: 980px) {
  .entry_page .page-mv__title-ja span {
    font-size: 3.4rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 600px) {
  .entry_page .page-mv__title-ja span:last-of-type {
    margin-left: 1em;
  }
}
@media (max-width: 600px) {
  .entry_page .page-mv__title-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.entry_page .page-mv__title-en {
  color: #fff5eb;
  font-family: "League Spartan";
  font-size: calc(134vw / 14.4);
  font-weight: 100;
  line-height: 1.2;
  letter-spacing: 0.05em;
  opacity: 0.6;
}
@media (max-width: 980px) {
  .entry_page .page-mv__title-en {
    font-size: 4.7rem;
  }
}
.entry_page .page-mv__title-sub {
  color: #fff;
  text-shadow: 0 0 21px rgba(255, 111, 0, 0.6);
  font-family: "Noto Serif JP";
  font-size: calc(39vw / 14.4);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (max-width: 980px) {
  .entry_page .page-mv__title-sub {
    font-size: clamp(2.2rem, 7vw, 2.6rem);
  }
}
.entry_page .entry {
  overflow: hidden;
  font-size: calc(16vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .entry {
    font-size: 1.2rem;
  }
}
.entry_page .entry__inner {
  padding: 0 20px;
  width: calc(990vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .entry_page .entry__inner {
    width: 100%;
  }
}
.entry_page .entry__form {
  border-radius: calc(20vw / 14.4);
  border: 2px solid #ffac9a;
  background: rgba(255, 255, 255, 0.8);
  padding: calc(103vw / 14.4) calc(150vw / 14.4) calc(120vw / 14.4);
  margin: auto;
}
@media (max-width: 980px) {
  .entry_page .entry__form {
    max-width: 600px;
    padding: 60px 40px 50px;
    border-radius: 14px;
  }
}
@media (max-width: 600px) {
  .entry_page .entry__form {
    padding: 60px 20px 50px;
  }
}
.entry_page .entry__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(30vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .entry__fields {
    gap: 20px;
  }
}
.entry_page .entry__confirm-inner {
  margin: calc(100vw / 14.4) auto 0;
  width: calc(338vw / 14.4);
  height: calc(70vw / 14.4);
  position: relative;
}
@media (max-width: 980px) {
  .entry_page .entry__confirm-inner {
    margin: 60px auto 0;
    width: 230px;
    height: 48px;
  }
}
.entry_page .entry__confirm-inner::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(38vw / 14.4);
  width: calc(30vw / 14.4);
  aspect-ratio: 1;
  background: url("../img/page-common/icon-arrow-right.svg") no-repeat center center/contain;
  pointer-events: none;
}
@media (max-width: 980px) {
  .entry_page .entry__confirm-inner::before {
    width: 20px;
    right: 20px;
  }
}
.entry_page .entry__confirm {
  border-radius: calc(10vw / 14.4);
  background: linear-gradient(86deg, #ff9c9d 0.73%, #f1aa00 164.66%);
  width: 100%;
  height: 100%;
  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;
  color: #fff;
  font-size: calc(20vw / 14.4);
  font-weight: 500;
}
@media (max-width: 980px) {
  .entry_page .entry__confirm {
    border-radius: 10px;
    font-size: 1.4rem;
  }
}
.entry_page .entry__text {
  font-size: calc(16vw / 14.4);
  text-align: center;
  margin-bottom: calc(40vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .entry__text {
    font-size: calc(16vw / 3.75);
    margin-bottom: calc(40vw / 3.75);
  }
}
@media (max-width: 600px) {
  .entry_page .entry__text {
    margin-bottom: calc(20vw / 3.75);
    font-size: calc(14vw / 3.75);
  }
}
.entry_page .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: calc(30vw / 14.4);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 600px) {
  .entry_page .form-field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.entry_page .form-field__label {
  width: calc(150vw / 14.4);
  height: calc(40vw / 14.4);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  padding-left: calc(18vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 980px) {
  .entry_page .form-field__label {
    width: 100px;
    height: 30px;
    padding-left: 12px;
  }
}
@media (max-width: 600px) {
  .entry_page .form-field__label {
    width: auto;
  }
}
.entry_page .form-field__label::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(8vw / 14.4);
  height: calc(24vw / 14.4);
  background: linear-gradient(292deg, #ff8c8c 13.39%, #ffa189 85.38%);
}
@media (max-width: 980px) {
  .entry_page .form-field__label::before {
    width: 6px;
    height: 20px;
  }
}
.entry_page .form-field__head, .entry_page .form-field__tag {
  display: inline-block;
  color: #583726;
  font-weight: 500;
  line-height: 1.5;
}
.entry_page .form-field__head {
  margin-right: 0.5em;
  white-space: nowrap;
  font-size: calc(14vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .form-field__head {
    font-size: calc(14vw / 3.75);
  }
}
.entry_page .form-field__tag {
  margin-top: 0.4em;
  font-size: calc(12vw / 14.4);
  color: #ff8c8c;
}
@media (max-width: 980px) {
  .entry_page .form-field__tag {
    font-size: calc(12vw / 3.75);
  }
}
.entry_page .form-field__item {
  width: 100%;
}
.entry_page .form-field__text {
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  width: 100%;
  height: calc(40vw / 14.4);
  padding: 0.5em;
  font-size: calc(14vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .form-field__text {
    height: 30px;
    font-size: calc(14vw / 3.75);
  }
}
.entry_page .form-field__select {
  font-size: calc(14vw / 14.4);
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  width: 100%;
  height: calc(40vw / 14.4);
  padding: 0.5em;
}
@media (max-width: 980px) {
  .entry_page .form-field__select {
    font-size: calc(14vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_page .form-field__select {
    font-size: calc(14vw / 3.75);
    height: calc(40vw / 3.75);
  }
}
.entry_page .form-field__select::picker(select) {
  display: block;
  font-size: calc(14vw / 14.4);
  width: calc(640vw / 14.4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-clamp: 1;
  -webkit-line-clamp: 1;
}
@media (max-width: 980px) {
  .entry_page .form-field__select::picker(select) {
    font-size: calc(14vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_page .form-field__select::picker(select) {
    font-size: calc(14vw / 3.75);
    width: calc(300vw / 3.75);
  }
}
.entry_page .form-field__textarea {
  height: calc(80vw / 14.4);
}
@media (max-width: 980px) {
  .entry_page .form-field__textarea {
    height: 80px;
  }
}
.entry_page .form-field__confirm {
  margin-top: 0.4em;
}
@media (max-width: 980px) {
  .entry_page .form-field__confirm {
    font-size: 1.4rem;
  }
}

.entry_thanks {
  text-align: center;
  margin-bottom: calc(160vw / 14.4);
  padding-top: calc(160vw / 14.4);
}
@media (max-width: 980px) {
  .entry_thanks {
    margin-bottom: calc(160vw / 9.8);
    padding-top: calc(140vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_thanks {
    margin-bottom: calc(100vw / 3.75);
    padding-top: calc(140vw / 3.75);
  }
}
.entry_thanks__title {
  margin-top: calc(15vw / 14.4);
  font-size: calc(134vw / 14.4);
  font-weight: 500;
  font-family: "Shippori Mincho B1";
  line-height: 1.5;
  /* グラデ8 */
  background: linear-gradient(86.69deg, #FF9C9D 0.7%, #F1AA00 93.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 980px) {
  .entry_thanks__title {
    font-size: calc(134vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_thanks__title {
    font-size: calc(44vw / 3.75);
  }
}
.entry_thanks__textL {
  font-size: calc(34vw / 14.4);
  font-weight: 600;
  font-family: "Noto Serif JP";
  line-height: 1.6;
  background: linear-gradient(87deg, #ff9c9d 0.7%, #f1aa00 93.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-top: calc(15vw / 14.4);
}
@media (max-width: 980px) {
  .entry_thanks__textL {
    font-size: calc(34vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_thanks__textL {
    font-size: calc(24vw / 3.75);
  }
}
.entry_thanks__text {
  font-size: calc(17vw / 14.4);
  font-weight: 500;
  line-height: 2.5;
  color: #351f01;
  margin-top: calc(40vw / 14.4);
}
@media (max-width: 980px) {
  .entry_thanks__text {
    font-size: calc(17vw / 9.8);
    margin-top: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_thanks__text {
    font-size: calc(14vw / 3.75);
    margin-top: calc(20vw / 3.75);
  }
}
.entry_thanks__btn {
  margin: auto;
  margin-top: calc(40vw / 14.4);
  padding: calc(12vw / 14.4) calc(40vw / 14.4);
  border-radius: calc(10vw / 14.4);
  color: #fff;
  font-size: calc(16vw / 14.4);
  font-weight: 500;
  border-radius: calc(10vw / 14.4);
  background: linear-gradient(86deg, #ff9c9d 0.73%, #f1aa00 164.66%);
  width: calc(240vw / 14.4);
  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;
}
@media (max-width: 980px) {
  .entry_thanks__btn {
    font-size: calc(16vw / 9.8);
    margin-top: calc(40vw / 9.8);
    padding: calc(12vw / 9.8) calc(40vw / 9.8);
    width: calc(240vw / 9.8);
  }
}
@media (max-width: 600px) {
  .entry_thanks__btn {
    font-size: calc(14vw / 3.75);
    margin-top: calc(40vw / 3.75);
    padding: calc(12vw / 3.75) calc(40vw / 3.75);
    width: calc(240vw / 3.75);
  }
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px calc(48vw / 14.4);
  position: fixed;
  z-index: 10;
}

.header.scrolled {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 248, 248, 0.3);
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
@media (max-width: 600px) {
  .header.scrolled {
    background-color: rgba(255, 248, 248, 0.6);
  }
}
.header_logo {
  width: calc(344vw / 14.4);
  max-width: 400px;
}
@media (max-width: 980px) {
  .header_logo {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .header_logo {
    width: 240px;
  }
}
.header_logo a {
  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;
}
.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.header_nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 980px) {
  .header_nav-list {
    display: none;
  }
}
.header_nav-list li {
  position: relative;
  padding: 10px 0;
}
.header_nav-btn-point {
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  background-color: #3E8899;
  border: 2px solid #3E8899;
  letter-spacing: 0.25em;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.header_nav-btn-point:hover {
  color: #32ABB1;
  border: 2px solid #32ABB1;
  background-color: #fff;
}
.header_nav-btn-entry {
  color: #fff;
  padding: 16px 40px;
  border-radius: 999px;
  background-color: #33616B;
  border: 2px solid #33616B;
}
.header_nav-point-sub {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  letter-spacing: 0.025em;
  padding: 8px 5px 0;
  background-color: #fff;
  display: none;
}
.header_nav-point-sub::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.header_nav-point-sub li {
  margin-bottom: 8px;
  padding: 15px 43px;
  white-space: nowrap;
  -webkit-transition: 0.3s ease-in;
  transition: 0.3s ease-in;
}
.header_nav-point-sub li:nth-child(1) {
  background-color: #3F9EB3;
}
.header_nav-point-sub li:nth-child(2) {
  background-color: #32ABB1;
}
.header_nav-point-sub li:hover {
  opacity: 0.8;
}
.header_nav-point-sub a {
  letter-spacing: 0.25em;
}

.toggle_btn {
  width: 72px;
  height: 72px;
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid #33616B;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}
.toggle_btn span {
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.toggle_btn span:first-child {
  width: 40px;
  height: 2px;
  background-color: #33616B;
  position: absolute;
  top: 26px;
  right: 16px;
}
.toggle_btn span:last-child {
  width: 24px;
  height: 2px;
  background-color: #33616B;
  position: absolute;
  bottom: 26px;
  right: 16px;
}
@media (max-width: 980px) {
  .toggle_btn {
    width: calc(72vw / 9.8);
    height: calc(72vw / 9.8);
  }
  .toggle_btn span:first-child {
    width: calc(40vw / 9.8);
    top: calc(26vw / 9.8);
    right: calc(16vw / 9.8);
  }
  .toggle_btn span:last-child {
    width: calc(24vw / 9.8);
    bottom: calc(26vw / 9.8);
    right: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .toggle_btn {
    width: 50px;
    height: 50px;
  }
  .toggle_btn span:first-child {
    width: 30px;
    top: 18px;
    right: 10px;
  }
  .toggle_btn span:last-child {
    width: 16px;
    bottom: 18px;
    right: 10px;
  }
}

.toggle_btn.is-open {
  background-color: transparent;
}
.toggle_btn.is-open span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  right: 20%;
  width: 40px;
}
.toggle_btn.is-open span:last-child {
  width: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  bottom: auto;
  right: 20%;
}
@media (max-width: 980px) {
  .toggle_btn.is-open span:first-child {
    width: calc(40vw / 9.8);
  }
  .toggle_btn.is-open span:last-child {
    width: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .toggle_btn.is-open span:first-child {
    width: 30px;
    top: 49%;
    right: 18%;
  }
  .toggle_btn.is-open span:last-child {
    width: 30px;
    top: 49%;
    bottom: auto;
    right: 18%;
  }
}

.open .header_nav {
  width: 100%;
  height: 100vh;
  font-size: 2rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgb(255, 255, 255);
  padding: 120px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.open .header_nav-list {
  display: none;
}
.open .toggle_btn {
  position: absolute;
  top: 16px;
  right: calc(48vw / 14.4);
}
.open .toggle_btn span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
  right: 24%;
}
.open .toggle_btn span:last-child {
  width: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
  right: 24%;
}
@media (max-width: 980px) {
  .open .toggle_btn span:last-child {
    width: calc(40vw / 9.8);
  }
}
@media (max-width: 600px) {
  .open .toggle_btn span:last-child {
    width: 30px;
  }
}
.open .global_nav {
  display: block;
}

footer {
  padding: 100px 0;
  background-color: #FFE7E0;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer_info {
  margin-bottom: 40px;
  font-family: "League Spartan";
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer_logo {
  width: 300px;
  padding: 12px 0;
}
.footer_tel {
  font-size: 7rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FABD5A), to(#F28149));
  background: linear-gradient(to bottom, #FABD5A, #F28149);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 12px 0;
}
.footer_tel span {
  font-size: 5rem;
}
@media (max-width: 980px) {
  .footer_tel {
    font-size: calc(70vw / 9.8);
  }
  .footer_tel span {
    font-size: calc(50vw / 9.8);
  }
}
.footer_nav {
  margin-bottom: calc(30vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 980px) {
	.footer_nav {
  margin-bottom: calc(30vw / 3.75);
 }
}
.footer_nav-title {
  font-size: 1.6rem;
  font-weight: 600;
  padding-left: 20px;
  margin-bottom: 16px;
  position: relative;
}
.footer_nav-title::before {
  content: "";
  width: 8px;
  height: 15px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FAE55A), to(#FF95BE));
  background: linear-gradient(to bottom, #FAE55A, #FF95BE);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer_nav-list li {
  padding-left: 20px;
  margin-bottom: 10px;
}
.footer_facility-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 25px;
}
.footer_facility-list li {
  padding-left: 20px;
}
.footer_facility-list p {
  margin-bottom: 6px;
}
@media (max-width: 980px) {
  .footer_facility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .footer_facility-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.facility-name {
  font-weight: 600;
}

.global_nav-wrap {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: calc(650vw / 14.4);
  height: 100vh;
  z-index: 100;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  background-color: rgba(255, 237, 234, 0.95);
  overflow-y: auto;
  padding: calc(120vw / 14.4) calc(90vw / 14.4) calc(60vw / 14.4) calc(90vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-wrap {
    padding: calc(120vw / 9.8) calc(90vw / 9.8) calc(60vw / 9.8) calc(90vw / 9.8);
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .global_nav-wrap {
    padding: calc(180vw / 3.75) calc(15vw / 3.75) calc(15vw / 3.75) Z(15);
    max-width: calc(320vw / 3.75);
  }
}
.global_nav-wrap.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 980px) {
  .global_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .global_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(20vw / 3.75);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.global_nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(50vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-left {
    gap: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-left {
    gap: calc(20vw / 3.75);
  }
}
.global_nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(50vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-right {
    gap: calc(20vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-right {
    gap: calc(20vw / 3.75);
  }
}
.global_nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(15vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-item {
    gap: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-item {
    gap: calc(10vw / 3.75);
  }
}
.global_nav-title {
  color: #351f01;
  text-decoration: none;
  display: block;
}
.global_nav-title a {
  font-size: calc(17vw / 14.4);
  font-weight: 600;
  text-decoration: none;
  color: #351f01;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(5vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-title a {
    font-size: calc(17vw / 9.8);
    gap: calc(5vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-title a {
    font-size: calc(14vw / 3.75);
    gap: calc(5vw / 3.75);
  }
}
.global_nav-title span {
  font-size: calc(12vw / 14.4);
  font-weight: 400;
  color: #777777;
  text-decoration: none;
  display: block;
}
@media (max-width: 980px) {
  .global_nav-title span {
    font-size: calc(12vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-title span {
    font-size: calc(12vw / 3.75);
  }
}
.global_nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(15vw / 14.4);
  padding-left: calc(5vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-list {
    padding-left: calc(5vw / 9.8);
    gap: calc(15vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-list {
    padding-left: calc(5vw / 3.75);
    gap: calc(10vw / 3.75);
  }
}
.global_nav-list li a {
  font-size: calc(16vw / 14.4);
  font-weight: 400;
  color: #351f01;
  text-decoration: none;
  display: block;
}
@media (max-width: 980px) {
  .global_nav-list li a {
    font-size: calc(16vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-list li a {
    font-size: calc(14vw / 3.75);
  }
}
.global_nav-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: calc(10vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-btn-list {
    gap: calc(10vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-btn-list {
    gap: calc(10vw / 3.75);
  }
}
.global_nav-btn-graduate {
  font-size: calc(16vw / 14.4);
  font-weight: 600;
  color: #fff !important;
  padding: calc(8vw / 14.4) calc(0vw / 14.4);
  border-radius: 999px;
  background-color: #3F9EB3;
  text-decoration: none;
  width: calc(170vw / 14.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 980px) {
  .global_nav-btn-graduate {
    font-size: calc(16vw / 9.8);
    width: calc(160vw / 9.8);
    padding: calc(8vw / 9.8) calc(0vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-btn-graduate {
    font-size: calc(14vw / 3.75);
    width: calc(160vw / 3.75);
    padding: calc(8vw / 3.75) calc(0vw / 3.75);
  }
}
.global_nav-btn-job {
  font-size: calc(16vw / 14.4);
  font-weight: 600;
  color: #fff !important;
  padding: calc(8vw / 14.4) calc(0vw / 14.4);
  border-radius: 999px;
  background-color: #32ABB1;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(170vw / 14.4);
  margin: 0 auto;
}
@media (max-width: 980px) {
  .global_nav-btn-job {
    font-size: calc(14vw / 9.8);
    width: calc(160vw / 9.8);
    padding: calc(8vw / 9.8) calc(0vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-btn-job {
    font-size: calc(14vw / 3.75);
    width: calc(160vw / 3.75);
    padding: calc(8vw / 3.75) calc(0vw / 3.75);
  }
}
.global_nav-btn-entry {
  font-size: calc(16vw / 14.4);
  font-weight: 600;
  color: #fff;
  padding: calc(8vw / 14.4) calc(0vw / 14.4);
  border-radius: 999px;
  background-color: #33616B;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: calc(170vw / 14.4);
}
@media (max-width: 980px) {
  .global_nav-btn-entry {
    font-size: calc(16vw / 9.8);
    width: calc(160vw / 9.8);
    padding: calc(8vw / 9.8) calc(0vw / 9.8);
  }
}
@media (max-width: 600px) {
  .global_nav-btn-entry {
    font-size: calc(14vw / 3.75);
    width: calc(160vw / 3.75);
    padding: calc(8vw / 3.75) calc(0vw / 3.75);
  }
}
.global_nav-btn-entry:hover {
  background-color: #fff;
  color: #33616B;
  border: 2px solid #33616B;
}