@charset "UTF-8";
/* CSS Document */
/*
 * Common Styles - Main Import File
 * ==========================================
 * This file imports all partial Sass files
 *
 * Structure:
 * 1. Config - Variables and Mixins
 * 2. Base - Global styles and utilities
 * 3. Sections - Header, Footer, Pages
 */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-weight: 500;
  scroll-padding-top: 120px;
}
html body.hidden {
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 60px;
  }
}

.fadein {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
  transition-delay: var(--delay, 0s);
}
.fadein.is-active {
  opacity: 1;
}
.fadein.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.fadein-before {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: relative;
}
.fadein-before.is-active {
  opacity: 1;
}
.fadein-before.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transition-delay: var(--delay, 0s);
}
.fadein-before.fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 45px 0;
}

.btn-area .btn-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 43px;
  background-color: #44ad96;
  border: solid 1px #44ad96;
  border-radius: 100px;
}
.btn-area .btn-text .btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-area .btn-text .btn-copy span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: 0.1em;
  text-align: right;
  color: #fff;
  padding-bottom: 2px;
}
.btn-area .btn-text .btn-copy .img {
  display: inline-block;
  background: url(../images/top/right_w.png) no-repeat;
  background-size: contain;
  width: 11.5px;
  height: 11.5px;
}

.more-area {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
}
.more-area .more-btn {
  display: block;
  width: 37.5px;
  height: 37.5px;
  background-color: #44ad96;
  border: solid 1px #44ad96;
  border-radius: 50%;
  position: relative;
}
.more-area .more-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 12.5px;
  height: 12.5px;
  background: url(../images/top/right_w.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.more-area.sub .more-btn {
  background-color: #EDBC1A;
  border: solid 1px #EDBC1A;
}
.more-area.white .more-btn {
  background-color: #fff;
  border: solid 1px #44AD96;
}
.more-area.white .more-btn::before {
  content: "";
  display: block;
  position: absolute;
  width: 12.5px;
  height: 12.5px;
  background: url(../images/top/right_g.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.sec-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec-title__en {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 38px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #44ad96;
}
.sec-title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  color: #121212;
}
.sec-title__ja .small {
  font-size: 12px;
}
.sec-title.matrix .bg-wrap {
  display: block;
  overflow: hidden;
  opacity: 0;
}
.sec-title.matrix .bg-wrap + .bg-wrap {
  margin-top: 5px;
}
.sec-title.matrix .bg-wrap .inn {
  display: block;
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sec-title.matrix .bg-wrap .inn.large {
  font-size: 25px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.08;
  letter-spacing: 2.5px;
  text-align: center;
  color: #66ad47;
}
.sec-title.matrix .bg-wrap .inn.small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 1.56px;
  text-align: center;
  color: #1e3c0d;
}
.sec-title.matrix.is-animated .bg-wrap {
  opacity: 1;
}
.sec-title.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 1025px) {
  section {
    padding: 90px 0;
  }
  .btn-area .btn-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 56px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy {
    gap: 20px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.8px;
    text-align: right;
    color: #fff;
    padding-bottom: 2px;
    padding-left: 20px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text .btn-copy .img {
    width: 15px;
    height: 15px;
    transition: all 0.4s ease;
  }
  .btn-area .btn-text:hover {
    cursor: pointer;
    background-color: #fff;
  }
  .btn-area .btn-text:hover .btn-copy span {
    color: #44AD96;
  }
  .btn-area .btn-text:hover .btn-copy .img {
    width: 15px;
    height: 15px;
    background: url(../images/top/right_g.png) no-repeat;
    background-size: contain;
  }
  .more-area {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .more-area .more-btn {
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
  }
  .more-area .more-btn::before {
    content: "";
    display: block;
    position: absolute;
    width: 12.5px;
    height: 12.5px;
    background: url(../images/top/right_w.png) no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
  }
  .more-area.sub .more-btn {
    background-color: #EDBC1A;
    border: solid 1px #EDBC1A;
    transition: all 0.4s ease;
  }
  .sec-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .sec-title__en {
    font-family: "Poppins", sans-serif;
    font-size: 47px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 65px;
    letter-spacing: 2.35px;
    text-align: center;
    color: #44ad96;
    margin-bottom: 10px;
  }
  .sec-title__ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.4;
    letter-spacing: 1.6px;
    text-align: center;
    color: #121212;
  }
  .sec-title .small {
    font-size: 16px;
  }
  .sp {
    display: none !important;
  }
}
/*PC*/
#header *,
#header ::before,
#header ::after,
#footer *,
#footer ::before,
#footer ::after,
#top *,
#top ::before,
#top ::after,
#page-work *,
#page-work ::before,
#page-work ::after,
#page-staff *,
#page-staff ::before,
#page-staff ::after {
  box-sizing: border-box;
}
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#top h1,
#top h2,
#top h3,
#top h4,
#top h5,
#top h6,
#page-work h1,
#page-work h2,
#page-work h3,
#page-work h4,
#page-work h5,
#page-work h6,
#page-staff h1,
#page-staff h2,
#page-staff h3,
#page-staff h4,
#page-staff h5,
#page-staff h6 {
  font-size: inherit;
  font-weight: inherit;
}
#header ul,
#header ol,
#footer ul,
#footer ol,
#top ul,
#top ol,
#page-work ul,
#page-work ol,
#page-staff ul,
#page-staff ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header li,
#footer li,
#top li,
#page-work li,
#page-staff li {
  list-style: none;
}
#header .sp,
#footer .sp,
#top .sp,
#page-work .sp,
#page-staff .sp {
  display: none;
}
#header img,
#footer img,
#top img,
#page-work img,
#page-staff img {
  vertical-align: bottom;
}
#header button,
#footer button,
#top button,
#page-work button,
#page-staff button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
#header button,
#header [type=button],
#header [type=reset],
#header [type=submit],
#footer button,
#footer [type=button],
#footer [type=reset],
#footer [type=submit],
#top button,
#top [type=button],
#top [type=reset],
#top [type=submit],
#page-work button,
#page-work [type=button],
#page-work [type=reset],
#page-work [type=submit],
#page-staff button,
#page-staff [type=button],
#page-staff [type=reset],
#page-staff [type=submit] {
  cursor: pointer;
}
#header button:disabled,
#header [type=button]:disabled,
#header [type=reset]:disabled,
#header [type=submit]:disabled,
#footer button:disabled,
#footer [type=button]:disabled,
#footer [type=reset]:disabled,
#footer [type=submit]:disabled,
#top button:disabled,
#top [type=button]:disabled,
#top [type=reset]:disabled,
#top [type=submit]:disabled,
#page-work button:disabled,
#page-work [type=button]:disabled,
#page-work [type=reset]:disabled,
#page-work [type=submit]:disabled,
#page-staff button:disabled,
#page-staff [type=button]:disabled,
#page-staff [type=reset]:disabled,
#page-staff [type=submit]:disabled {
  cursor: default;
}
@media screen and (max-width: 1024px) {
  #header .sp,
  #footer .sp,
  #top .sp,
  #page-work .sp,
  #page-staff .sp {
    display: block;
  }
}

/*トップページ*/
/*SMP*/
#page-work .business__wrapper {
  width: 340px;
  margin: 0 auto;
}
#page-work .business__wrapper .list {
  width: 245px;
  margin: 0 auto;
}
#page-work .business__wrapper .list .item {
  margin-bottom: 30px;
}
#page-work .business__wrapper .list .item:nth-child(1) {
  --delay: 0s;
}
#page-work .business__wrapper .list .item:nth-child(2) {
  --delay: 0.5s;
}
#page-work .business__wrapper .list .item:nth-child(3) {
  --delay: 1s;
}
#page-work .business__wrapper .list .item:nth-child(4) {
  --delay: 1.5s;
}
#page-work .business__wrapper .list .item:nth-child(5) {
  --delay: 2s;
}
#page-work .business__wrapper .list .item:nth-child(6) {
  --delay: 2.5s;
}
#page-work .business__wrapper .list .item:nth-child(7) {
  --delay: 3s;
}
#page-work .business__wrapper .list .item:nth-child(8) {
  --delay: 3.5s;
}
#page-work .business__wrapper .list .item:nth-child(9) {
  --delay: 4s;
}
#page-work .business__wrapper .list .item:nth-child(10) {
  --delay: 4.5s;
}
#page-work .business__wrapper .list .item__detail .img {
  width: 100%;
  height: 183.75px;
}
#page-work .business__wrapper .list .item__detail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease;
}
#page-work .business__wrapper .list .item__detail .contents {
  position: relative;
}
#page-work .business__wrapper .list .item__detail .contents .copy {
  width: 190px;
  height: 35px;
  padding: 17px 10px 0px;
  background-color: #fff;
  position: absolute;
  top: -35px;
  z-index: 10;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 1.4px;
  text-align: left;
  color: #121212;
}
#page-work .business__wrapper .list .item__detail .contents .text {
  padding: 15px 0 0 10px;
}
#page-work .business__wrapper .list .item__detail .contents .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-work .business__wrapper .list .item:last-child {
  margin-bottom: 0;
}
#page-work .staff {
  padding: 45px 0;
  position: relative;
  background: linear-gradient(to bottom, #eee 0%, #eee 38%, #fff 38%, #fff 100%);
}
#page-work .staff__wrapper {
  width: 305px;
  margin: 0 auto;
}
#page-work .staff__wrapper .inner .sec-title {
  text-align: center;
  margin-bottom: 20px;
}
#page-work .staff__wrapper .inner .title-exp {
  margin-bottom: 30px;
}
#page-work .staff__wrapper .inner .title-exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#page-work .staff__wrapper .interview {
  width: 193px;
  margin-left: 40px;
}
#page-work .staff__wrapper .interview__list {
  display: flex;
}
#page-work .staff__wrapper .interview__item {
  width: 193px;
  flex-shrink: 0;
}
#page-work .staff__wrapper .interview__item:nth-child(1) {
  --delay: 0s;
}
#page-work .staff__wrapper .interview__item:nth-child(2) {
  --delay: 0.5s;
}
#page-work .staff__wrapper .interview__item:nth-child(3) {
  --delay: 1s;
}
#page-work .staff__wrapper .interview__item:nth-child(4) {
  --delay: 1.5s;
}
#page-work .staff__wrapper .interview__item:nth-child(5) {
  --delay: 2s;
}
#page-work .staff__wrapper .interview__item:nth-child(6) {
  --delay: 2.5s;
}
#page-work .staff__wrapper .interview__item:nth-child(7) {
  --delay: 3s;
}
#page-work .staff__wrapper .interview__item:nth-child(8) {
  --delay: 3.5s;
}
#page-work .staff__wrapper .interview__item:nth-child(9) {
  --delay: 4s;
}
#page-work .staff__wrapper .interview__item:nth-child(10) {
  --delay: 4.5s;
}
#page-work .staff__wrapper .interview__item a {
  display: block;
  width: 193px;
}
#page-work .staff__wrapper .interview__item a .inner {
  position: relative;
}
#page-work .staff__wrapper .interview__item a .inner .top {
  position: relative;
  margin-bottom: 12.5px;
}
#page-work .staff__wrapper .interview__item a .inner .top .num {
  position: absolute;
  top: 10px;
  right: 30px;
}
#page-work .staff__wrapper .interview__item a .inner .top .num__text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: left;
  color: #44ad96;
  writing-mode: vertical-lr;
}
#page-work .staff__wrapper .interview__item a .inner .top .img {
  width: 184px;
  height: 184px;
  background: url(../images/top/staff01.png) no-repeat;
  background-size: contain;
}
#page-work .staff__wrapper .interview__item a .inner .bottom .message {
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}
#page-work .staff__wrapper .interview__item a .inner .bottom .message span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 0.84px;
  text-align: left;
  color: #fff;
}
#page-work .staff__wrapper .interview__item a .inner .bottom .affi p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.6px;
  text-align: left;
  color: #fff;
}
#page-work .staff__wrapper .interview__item a .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 37.5px;
  background: url(../images/top/btn_white.png) no-repeat;
  background-size: contain;
  bottom: 7px;
  right: 15px;
}
#page-work .staff__wrapper .interview .swiper-wrapper {
  transition-property: transform !important;
}
#page-work .staff__wrapper .swiper-scrollbar {
  position: relative !important;
  width: 245px;
  height: 6px;
  margin: 30px 0 30px 40px;
  background-color: #d6d6d6;
  border-radius: 100px;
}
#page-work .staff__wrapper .swiper-scrollbar .swiper-scrollbar-drag {
  height: 6px;
  background-color: #44AD96;
  border-radius: 100px;
}
#page-work .staff .talk {
  position: relative;
  z-index: 20;
  width: 283.5px;
  margin: 0 auto;
}
#page-work .staff .talk ul {
  width: 100%;
  display: grid;
  gap: 20px;
}
#page-work .staff .talk ul li {
  width: 100%;
}
#page-work .staff .talk ul li:nth-child(1) {
  --delay: 0s;
}
#page-work .staff .talk ul li:nth-child(2) {
  --delay: 0.5s;
}
#page-work .staff .talk ul li:nth-child(3) {
  --delay: 1s;
}
#page-work .staff .talk ul li:nth-child(4) {
  --delay: 1.5s;
}
#page-work .staff .talk ul li:nth-child(5) {
  --delay: 2s;
}
#page-work .staff .talk ul li:nth-child(6) {
  --delay: 2.5s;
}
#page-work .staff .talk ul li:nth-child(7) {
  --delay: 3s;
}
#page-work .staff .talk ul li:nth-child(8) {
  --delay: 3.5s;
}
#page-work .staff .talk ul li:nth-child(9) {
  --delay: 4s;
}
#page-work .staff .talk ul li:nth-child(10) {
  --delay: 4.5s;
}
#page-work .staff .talk ul li a {
  display: block;
  position: relative;
}
#page-work .staff .talk ul li a img {
  width: 100%;
  height: 182.75px;
  position: absolute;
  top: -10px;
}
#page-work .staff .talk ul li a .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 262.5px;
  height: 161.8px;
  margin: 10px auto 0;
  border: solid 1px #fff;
  position: relative;
  z-index: 30;
  text-align: center;
}
#page-work .staff .talk ul li a .inner img {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 47.5px;
  height: 47.5px;
}
#page-work .staff .talk ul li a .inner h3 {
  display: block;
  width: 183px;
  height: 45px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.7px;
  text-align: center;
  color: #121212;
  padding-top: 4px;
}
#page-work .staff .talk ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 182.75px;
  background-color: rgba(0, 90, 70, 0.16);
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 15;
}
#page-work .staff::before {
  content: "";
  display: block;
  width: 94%;
  height: 60%;
  border-radius: 30px 0 0 30px;
  background-color: #63baa7;
  position: absolute;
  top: 278px;
  right: 0;
}
#page-work .staff .more-area {
  margin-top: 30px;
}
#page-work .interview {
  padding: 0;
  margin-bottom: 45px;
}
#page-work .interview .overview {
  width: 315px;
  margin: 0 auto;
  padding: 30px 0 0;
}
#page-work .interview .overview p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  margin-bottom: 15px;
}
#page-work .interview .overview .notion {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  display: block;
  padding-left: 17px;
  position: relative;
}
#page-work .interview .overview .notion::before {
  content: "";
  display: block;
  position: absolute;
  content: "※";
  font-size: 12px;
  color: #343434;
  top: 0;
  left: 0;
}
#page-work .interview article .sec {
  position: relative;
  padding: 45px 0;
}
#page-work .interview article .sec__wrapper {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}
#page-work .interview article .sec__wrapper .inner .img {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  height: 281.25px;
  margin-bottom: 40px;
}
#page-work .interview article .sec__wrapper .inner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-work .interview article .sec__wrapper .inner .text {
  width: 320px;
  margin: 0 auto 30px;
  position: relative;
}
#page-work .interview article .sec__wrapper .inner .text .article-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: 1.36px;
  text-align: left;
  color: #121212;
  margin-bottom: 20px;
  position: relative;
}
#page-work .interview article .sec__wrapper .inner .text .article-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 2px;
  background-color: #44ad96;
  bottom: -7px;
  left: 0;
}
#page-work .interview article .sec__wrapper .inner .text .answer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  margin-bottom: 10px;
}
#page-work .interview article .sec__wrapper .inner .text .answer.mb-0 {
  margin-bottom: 0;
}
#page-work .interview article .sec__wrapper .inner .text::before {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 71px;
  background: url(../images/page01/type01.png) no-repeat;
  background-size: contain;
  top: -20px;
  right: 20px;
}
#page-work .interview article .sec__wrapper .table {
  width: 350px;
  margin: 0 auto;
}
#page-work .interview article .sec__wrapper .table .item dl {
  border-radius: 0 0 5px 5px;
  background-color: #f7f7f7;
}
#page-work .interview article .sec__wrapper .table .item dl dt {
  display: flex;
  align-items: center;
  height: 37px;
  padding: 0 0 0 31px;
  border-radius: 5px 5px 0 0;
  background-color: #44ad96;
  margin-bottom: 15px;
  position: relative;
}
#page-work .interview article .sec__wrapper .table .item dl dt > span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.92;
  letter-spacing: 0.65px;
  text-align: left;
  color: #fff;
}
#page-work .interview article .sec__wrapper .table .item dl dt::before {
  content: "";
  display: block;
  position: absolute;
  content: "THE JOY OF WORK";
  opacity: 0.35;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.3px;
  text-align: right;
  color: #fff;
  right: 0;
  bottom: 5px;
}
#page-work .interview article .sec__wrapper .table .item dl dd {
  display: block;
  padding: 0 36px 0 50px;
  margin-bottom: 5px;
  line-height: 1.2;
}
#page-work .interview article .sec__wrapper .table .item dl dd > span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  position: relative;
}
#page-work .interview article .sec__wrapper .table .item dl dd > span::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../images/page01/check.png) no-repeat;
  background-size: contain;
  top: 3px;
  left: -18px;
}
#page-work .interview article .sec__wrapper .table .item dl dd:last-child {
  padding-bottom: 20px;
  margin-bottom: 10px;
}
#page-work .interview article .sec__wrapper .table .item:nth-child(2) dl dt::before {
  content: "IDEAL CANDIDATE";
}
#page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dt {
  padding: 0 0 0 22px;
}
#page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dt::before {
  content: "PATH TO INDEPENDENCE";
}
#page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dd {
  padding: 0 36px 0 30px;
  padding-bottom: 20px;
  margin-bottom: 0;
}
#page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dd span::before {
  display: none;
}
#page-work .interview article .sec:nth-child(2) {
  background-color: #f7f7f7;
}
#page-work .interview article .sec:nth-child(2) .sec__wrapper .inner .text::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/page01/type02.png) no-repeat;
  background-size: contain;
}
#page-work .interview article .sec:nth-child(2) .sec__wrapper .table .item dl {
  background-color: #fff;
}
#page-work .interview article .sec:nth-child(3) .sec__wrapper .inner .text::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/page01/type03.png) no-repeat;
  background-size: contain;
}
#page-work .interview article .sec:nth-child(4) {
  background-color: #f7f7f7;
}
#page-work .interview article .sec:nth-child(4) .sec__wrapper .text::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/page01/type04.png) no-repeat;
  background-size: contain;
}
#page-work .interview article .sec:nth-child(4) .sec__wrapper .table .item dl {
  background-color: #fff;
}
#page-work {
  /*work02*/
}
#page-work .overview.work02 {
  position: relative;
  margin-top: 30px;
}
#page-work .overview.work02 h2 {
  margin-bottom: 38px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.08em;
  text-align: left;
  color: #121212;
}
#page-work .overview.work02 h2 .green {
  color: #44AD96;
  margin-bottom: 38px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.08em;
  text-align: left;
}
#page-work .overview.work02:before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 112px;
  background: url(../images/page01/work02_2.jpg) no-repeat;
  background-size: cover;
  top: 0;
  right: -45px;
}
#page-work .sche {
  margin: 45px 0;
  position: relative;
}
#page-work .sche .exp {
  margin: 30px 0 50px;
}
#page-work .sche .exp p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}
#page-work .sche .sche-area {
  padding-top: 33px;
  padding-left: 20px;
  padding-bottom: 45px;
  width: 277px;
  margin: 0 auto;
  position: relative;
}
#page-work .sche .sche-area ul {
  width: 257px;
  margin: 0 0 0 auto;
}
#page-work .sche .sche-area ul li {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
#page-work .sche .sche-area ul li .time {
  margin-bottom: 22px;
  position: relative;
  gap: 15px;
  display: flex;
  padding-bottom: 5px;
}
#page-work .sche .sche-area ul li .time span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-align: left;
  color: #121212;
}
#page-work .sche .sche-area ul li .time::before {
  content: "";
  display: block;
  position: absolute;
  width: 277px;
  height: 1px;
  background-color: #44ad96;
  bottom: -7px;
  left: -20px;
}
#page-work .sche .sche-area ul li .time::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  border: solid 2px #44ad96;
  background-color: #fff;
  border-radius: 50%;
  bottom: -14px;
  left: -30px;
}
#page-work .sche .sche-area ul li .detail {
  margin-bottom: 15px;
}
#page-work .sche .sche-area ul li .detail p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-work .sche .sche-area ul li .img {
  width: 100%;
  height: 135px;
}
#page-work .sche .sche-area ul li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-work .sche .sche-area ul li:last-child {
  margin-bottom: 0;
}
#page-work .sche .sche-area::before {
  content: "";
  display: block;
  position: absolute;
  content: "1 DAY START";
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.92;
  letter-spacing: 0.65px;
  text-align: center;
  color: #121212;
  position: absolute;
  top: -25px;
  left: -45px;
}
#page-work .sche .sche-area::after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  width: 7px;
  height: 87.5%;
  background-color: #dbdbdb;
  top: 0;
  left: -6.5px;
  z-index: -1;
}
#page-work .sche:before {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  height: calc(100% - 10px);
  border-radius: 20px;
  background-color: #f7f7f7;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}
#page-work .chance {
  padding-bottom: 45px;
  position: relative;
}
#page-work .chance .img {
  width: 100%;
  margin: 0 auto 30px;
  max-width: 400px;
  height: 215px;
  margin-bottom: 30px;
  position: relative;
}
#page-work .chance .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  width: 325px;
}
#page-work .chance h2 {
  width: 100%;
  max-width: 375px;
  margin: 0 auto 15px;
  padding-left: 40px;
}
#page-work .chance h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: left;
  color: #fff;
}
#page-work .chance .content {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  padding-left: 40px;
}
#page-work .chance .content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #fff;
}
#page-work .chance:before {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  min-width: 370px;
  height: 100%;
  border-radius: 0 20px 20px 0;
  background-color: #44ad96;
  top: 0;
  left: 0;
  z-index: -1;
}
#page-work {
  /*work03*/
}
#page-work .overview.work03 {
  margin-bottom: 163px;
  position: relative;
}
#page-work .overview.work03 h2 {
  margin-bottom: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.08em;
  text-align: left;
  color: #121212;
}
#page-work .overview.work03 h2 .green {
  color: #44AD96;
  margin-bottom: 38px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: 0.08em;
  text-align: left;
}
#page-work .overview.work03:before {
  content: "";
  display: block;
  position: absolute;
  width: 150px;
  height: 112px;
  background: url(../images/page01/work03_2.jpg) no-repeat;
  background-size: cover;
  bottom: -130px;
  left: 0;
}
#page-work .contents .item {
  padding: 45px 0;
}
#page-work .contents .item .img {
  width: 100%;
  max-width: 400px;
  height: 133px;
  margin: 0 auto 20px;
}
#page-work .contents .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-work .contents .item .inner {
  width: 315px;
  margin: 0 auto;
}
#page-work .contents .item .inner h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: left;
  color: #121212;
  margin-bottom: 20px;
}
#page-work .contents .item .inner h3 .green {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: left;
  color: #44AD96;
}
#page-work .contents .item .inner .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-work .contents .item:first-child {
  padding-top: 0;
}
#page-work .contents .item:nth-child(2) .img, #page-work .contents .item:nth-child(3) .img {
  width: 260px;
  height: 173px;
  margin: 0 auto 20px;
}
#page-work .contents .item:nth-child(2) {
  position: relative;
}
#page-work .contents .item:nth-child(2)::before {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  height: 100%;
  padding: 60px 90px 90px 61px;
  border-radius: 20px 0 0 20px;
  background-color: #f7f7f7;
  top: 0;
  right: 0;
  z-index: -1;
}
#page-work .contents .item:nth-child(3) {
  padding-bottom: 0;
}
#page-work .view {
  padding-bottom: 45px;
}
#page-work .view > .img {
  width: 100%;
  max-width: 400px;
  height: 133px;
  margin: 0 auto 20px;
}
#page-work .view > .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-work .view .inner {
  width: 293px;
  margin: 0 auto;
}
#page-work .view .inner h3 {
  justify-self: center;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  color: #121212;
  margin-bottom: 20px;
}
#page-work .view .inner h3 .green {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: left;
  color: #44AD96;
}
#page-work .view .inner .text {
  margin-bottom: 20px;
}
#page-work .view .inner .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: center;
  color: #343434;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
#page-staff .kv.kv-sub {
  padding: 0;
}
#page-staff .kv.kv-sub .kv__wrapper {
  position: relative;
}
#page-staff .kv.kv-sub .kv__wrapper .img {
  width: 335px;
  height: 250px;
  margin: 0 auto;
  opacity: 0;
  transition: all 3s ease;
  overflow: hidden;
  position: relative;
}
#page-staff .kv.kv-sub .kv__wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomOut 2s ease-out forwards;
}
#page-staff .kv.kv-sub .kv__wrapper .img.active {
  opacity: 1;
}
#page-staff .kv.kv-sub .kv__wrapper h1 {
  width: 325px;
  margin: -45px auto 0;
  position: relative;
  padding: 75px 0 45px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title {
  margin-bottom: 0px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .text-item {
  line-height: 1;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .text-item > span > span {
  display: inline-block;
  font-size: 30px;
  color: #44AD96;
  font-family: "vdl-penletter", sans-serif;
  letter-spacing: -0.08em;
  line-height: 1.25;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: 0.8px;
  text-align: left;
  color: #fff;
  margin-bottom: 5px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 0px;
  height: 32px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap:last-child {
  margin-top: 2px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  display: inline-block;
  height: 32px;
  padding: 7px 7px 3px;
  background-color: #fff;
  margin-bottom: 5px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap .inn {
  padding: 12px 15px 7px;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.78;
  letter-spacing: 1.44px;
  text-align: left;
  color: #121212;
  display: inline-block;
  height: 32px;
  padding: 9px 7px 3px;
  margin-bottom: 2px;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
#page-staff .kv.kv-sub .kv__wrapper h1 .copy {
  margin: 15px 0;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .copy span {
  -webkit-text-stroke: 0.3px #fff;
  font-family: "vdl-penletter", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: -0.9px;
  text-align: left;
  color: #fff;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .name-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.07;
  letter-spacing: 0.75px;
  text-align: left;
  color: #fff;
  position: relative;
  padding-right: 15px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name::before {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 21px;
  background-color: #fff;
  top: 0;
  right: 0;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.24px;
  text-align: left;
  color: #fff;
  display: inline-block;
  padding-left: 15px;
}
#page-staff .kv.kv-sub .kv__wrapper h1 .detail p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #fff;
}
#page-staff .kv.kv-sub .kv__wrapper h1::before {
  content: "";
  display: block;
  position: absolute;
  width: 1000%;
  height: 380px;
  border-radius: 0 20px 20px 0;
  background-color: #44ad96;
  top: 0;
  right: -4%;
  z-index: -1;
}
#page-staff .kv.kv-sub02 {
  padding: 0;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#page-staff .kv.kv-sub02 .kv__wrapper {
  position: relative;
}
#page-staff .kv.kv-sub02 .kv__wrapper .img {
  width: 94%;
  height: 200px;
  margin: 0 0 0 auto;
}
#page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper {
  height: 200px;
  position: relative;
  transition: all 3s ease;
  overflow: hidden;
}
#page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomOut 2s ease-out forwards;
}
#page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper.active {
  opacity: 1;
}
#page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 90, 70, 0.3);
  top: 0;
  left: 0;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 {
  width: 325px;
  margin: -50px auto 0;
  position: relative;
  padding: 0 0 30px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title {
  margin-bottom: 0px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 0px;
  height: 32px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap:last-child {
  margin-top: 2px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  display: inline-block;
  height: 32px;
  padding: 9px 7px 3px;
  background-color: #fff;
  margin-bottom: 5px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap .inn {
  padding: 12px 15px 7px;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.78;
  letter-spacing: 1.44px;
  text-align: left;
  color: #121212;
  display: inline-block;
  height: 32px;
  padding: 9px 7px 3px;
  margin-bottom: 2px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green {
  margin-bottom: 3px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 0px;
  height: 20px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap:last-child {
  margin-top: 2px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green.is-animated .bg-wrap::before {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: #44ad96;
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  display: inline-block;
  height: 20px;
  padding: 0;
  background-color: #44ad96;
  margin-bottom: 5px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap .inn {
  padding: 12px 15px 7px;
  position: relative;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-align: left;
  color: #fff;
  display: inline-block;
  height: 20px;
  padding: 0 9px;
  margin-bottom: 2px;
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .copy {
  margin: 20px 0 0;
  padding-left: 33px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .copy span {
  -webkit-text-stroke: 0.3px #fff;
  font-family: "vdl-penletter", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.17;
  letter-spacing: -0.9px;
  text-align: left;
  color: #fff;
  position: relative;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1 .copy span::before {
  content: "";
  display: block;
  position: absolute;
  width: 25px;
  height: 1px;
  background-color: #fff;
  top: 9px;
  left: -32px;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1::before {
  content: "";
  display: block;
  position: absolute;
  width: 1000%;
  height: 245px;
  border-radius: 0 20px 20px 0;
  background-color: #44ad96;
  top: 12px;
  right: -4%;
  z-index: -1;
}
#page-staff .kv.kv-sub02 .kv__wrapper h1.stf05::before {
  height: 200px;
}
#page-staff .staff {
  padding: 45px 0;
  position: relative;
}
#page-staff .staff__wrapper .inner {
  width: 100%;
  margin: 0 auto;
}
#page-staff .staff__wrapper .inner .sec-title {
  margin: 0 auto 20px;
  width: 250px;
  position: relative;
}
#page-staff .staff__wrapper .inner .sec-title .en {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.96px;
  text-align: center;
  color: #44ad96;
  display: inline-block;
  margin-bottom: 2px;
}
#page-staff .staff__wrapper .inner .sec-title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: center;
  color: #121212;
}
#page-staff .staff__wrapper .inner .sec-title:before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 12px;
  background: url(../images/page01/square_sp.png) no-repeat;
  background-size: contain;
  bottom: 6px;
  left: -52px;
}
#page-staff .staff__wrapper .inner .sec-title:after {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 12px;
  background: url(../images/page01/square_sp.png) no-repeat;
  background-size: contain;
  bottom: 6px;
  right: -52px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  margin-bottom: 20px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a {
  display: block;
  width: 193px;
  margin: 0 auto;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner {
  position: relative;
  width: 100%;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top {
  position: relative;
  margin-bottom: 12.5px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .num {
  position: absolute;
  top: 10px;
  right: 50px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .num__text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: left;
  color: #44ad96;
  writing-mode: vertical-lr;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .img {
  width: 184px;
  height: 184px;
  background: url(../images/top/staff01_active.png) no-repeat;
  background-size: contain;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message {
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 0.84px;
  text-align: left;
  color: #121212;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .affi p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.6px;
  text-align: left;
  color: #121212;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item a .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 37.5px;
  background: url(../images/page01/btn_green.png) no-repeat;
  background-size: contain;
  bottom: 7px;
  right: 15px;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item:first-child a .inner .top .img {
  background: url(../images/top/top_7_green.png) no-repeat;
  background-size: contain;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item:nth-child(2) a .inner .top .img {
  background: url(../images/top/top_9_green.png) no-repeat;
  background-size: contain;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item:nth-child(3) a .inner .top .img {
  background: url(../images/top/top_8_green.png) no-repeat;
  background-size: contain;
}
#page-staff .staff__wrapper .inner .interview__list .interview__item:last-child {
  margin-bottom: 0;
}
#page-staff .interview {
  padding: 0;
}
#page-staff .interview .overview {
  width: 315px;
  margin: 0 auto;
  padding: 30px 0;
}
#page-staff .interview .overview p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-staff .interview article .sec {
  position: relative;
  padding: 45px 0;
}
#page-staff .interview article .sec__wrapper {
  width: 315px;
  margin: 0 auto;
}
#page-staff .interview article .sec__wrapper .img {
  width: 100%;
  height: 280px;
  margin-bottom: 30px;
}
#page-staff .interview article .sec__wrapper .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-staff .interview article .sec__wrapper .text .article-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.47;
  letter-spacing: 1.36px;
  text-align: left;
  color: #121212;
  margin-bottom: 20px;
}
#page-staff .interview article .sec__wrapper .text .question {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.48;
  letter-spacing: 0.5px;
  text-align: left;
  color: #44ad96;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
#page-staff .interview article .sec__wrapper .text .question:before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #44ad96;
  position: absolute;
  top: 8px;
  left: 0;
}
#page-staff .interview article .sec__wrapper .text .answer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
  margin-bottom: 20px;
}
#page-staff .interview article .sec__wrapper .text .answer.mb-0 {
  margin-bottom: 0;
}
#page-staff .interview article .sec:first-child {
  padding: 45px 0;
  position: relative;
}
#page-staff .interview article .sec:first-child .sec__wrapper {
  position: relative;
  z-index: 1;
}
#page-staff .interview article .sec:first-child:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  border-radius: 20px 0 0 0;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
}
#page-staff .interview article .sec:nth-child(2) {
  background-color: #f7f7f7;
  padding: 45px 0;
  position: relative;
}
#page-staff .interview article .sec:nth-child(2) .sec__wrapper {
  position: relative;
  z-index: 1;
}
#page-staff .interview article .sec:nth-child(2):before {
  content: "";
  display: block;
  width: 96%;
  height: 100%;
  background-color: #fff;
  border-radius: 0 20px 20px 0;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
}
#page-staff .interview article .sec:nth-child(3) {
  padding: 45px 0;
  position: relative;
}
#page-staff .interview article .sec:nth-child(3) .sec__wrapper {
  position: relative;
  z-index: 1;
}
#page-staff .interview article .sec:nth-child(3):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  border-radius: 0 0 0 20px;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 0;
}
#page-staff .interview article .message {
  padding: 45px 0;
  background-image: linear-gradient(to bottom left, rgba(237, 225, 85, 0.4), rgba(107, 204, 219, 0.4));
}
#page-staff .interview article .message p {
  width: 357px;
  margin: 0 auto;
  font-family: "vdl-penletter", sans-serif;
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-align: left;
  color: #121212;
}
#page-staff .other-staff {
  padding: 45px 0;
  position: relative;
}
#page-staff .other-staff__wrapper .inner {
  width: 100%;
  margin: 0 auto;
}
#page-staff .other-staff__wrapper .inner .sec-title {
  margin: 0 auto 20px;
  width: 250px;
  position: relative;
}
#page-staff .other-staff__wrapper .inner .sec-title .en {
  font-family: "Poppins", sans-serif;
  border-top: solid 1px #44ad96;
  border-bottom: solid 1px #44ad96;
  color: #44ad96;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
#page-staff .other-staff__wrapper .inner .sec-title .en:before {
  content: "";
  display: block;
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #44ad96;
  position: absolute;
  top: 13px;
  left: 57px;
}
#page-staff .other-staff__wrapper .inner .sec-title .en:after {
  content: "";
  display: block;
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #44ad96;
  position: absolute;
  top: 13px;
  right: 57px;
}
#page-staff .other-staff__wrapper .inner .sec-title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: center;
  color: #121212;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item {
  width: 100%;
  flex-shrink: 0;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 20px;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a {
  display: block;
  width: 193px;
  margin: 0 auto;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner {
  position: relative;
  width: 100%;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top {
  position: relative;
  margin-bottom: 12.5px;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .num {
  position: absolute;
  top: 10px;
  right: 50px;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .num__text {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.6px;
  text-align: left;
  color: #44ad96;
  writing-mode: vertical-lr;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .img {
  width: 184px;
  height: 184px;
  background: url(../images/top/staff01_active.png) no-repeat;
  background-size: contain;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message {
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: 0.84px;
  text-align: left;
  color: #121212;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .affi p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: 0.6px;
  text-align: left;
  color: #121212;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: 37.5px;
  height: 37.5px;
  background: url(../images/page01/btn_green.png) no-repeat;
  background-size: contain;
  bottom: 7px;
  right: 15px;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 96%;
  height: 220px;
  border-radius: 0 20px 20px 0;
  background-color: #f2f2f2;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item:last-child {
  margin-bottom: 0;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf01 a .inner .top .img {
  background: url(../images/top/top_7_green.png) no-repeat;
  background-size: contain;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf02 a .inner .top .img {
  background: url(../images/top/top_9_green.png) no-repeat;
  background-size: contain;
}
#page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf03 a .inner .top .img {
  background: url(../images/top/top_8_green.png) no-repeat;
  background-size: contain;
}
#page-staff .pickup {
  padding-top: 0;
}
#page-staff .pickup .talk {
  position: relative;
  z-index: 20;
  margin: 0 auto;
}
#page-staff .pickup .talk .sec-title {
  width: 305px;
  margin: 0 auto 30px;
  position: relative;
  text-align: left;
  height: 55px;
}
#page-staff .pickup .talk .sec-title__en2 {
  padding-top: 2px;
  font-family: "Poppins", sans-serif;
  font-size: 75px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: linear-gradient(to top, rgba(237, 225, 85, 0.1), rgba(107, 204, 219, 0.3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 0.7;
}
#page-staff .pickup .talk .sec-title__ja {
  position: absolute;
  bottom: 0px;
  left: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.75;
  letter-spacing: 3.4px;
  text-align: center;
  color: #121212;
}
#page-staff .pickup .talk .sec-title__ja .small {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.21;
  letter-spacing: 0.96px;
  text-align: center;
  color: #44ad96;
  padding-left: 26px;
  position: relative;
}
#page-staff .pickup .talk .sec-title__ja .small:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #44ad96;
  top: 50%;
  transform: translateY(-50%);
  left: 11px;
}
#page-staff .pickup .talk ul {
  width: 283.5px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
#page-staff .pickup .talk ul li {
  width: 100%;
}
#page-staff .pickup .talk ul li a {
  display: block;
  position: relative;
  margin-bottom: 25px;
}
#page-staff .pickup .talk ul li a img {
  width: 100%;
  height: 182.75px;
  position: absolute;
  top: -10px;
}
#page-staff .pickup .talk ul li a .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 262.5px;
  height: 161.8px;
  margin: 10px auto 0;
  border: solid 1px #fff;
  position: relative;
  z-index: 30;
  text-align: center;
}
#page-staff .pickup .talk ul li a .inner img {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 47.5px;
  height: 47.5px;
}
#page-staff .pickup .talk ul li a .inner h3 {
  display: block;
  width: 183px;
  height: 45px;
  background-color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.32;
  letter-spacing: 0.7px;
  text-align: center;
  color: #121212;
  padding-top: 4px;
}
#page-staff .pickup .talk ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 182.75px;
  background-color: rgba(0, 90, 70, 0.16);
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 15;
}
#page-staff .pickup .talk ul li .title p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-staff {
  /*クロストーク*/
}
#page-staff .member {
  padding: 45px 0;
  position: relative;
}
#page-staff .member__wrapper .inner {
  width: 100%;
  margin: 0 auto;
}
#page-staff .member__wrapper .inner .sec-title {
  margin: 0 auto 20px;
}
#page-staff .member__wrapper .inner .sec-title .en {
  display: inline-block;
  width: 114px;
  border-top: solid 1px #44ad96;
  border-bottom: solid 1px #44ad96;
  padding: 0 10px;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 2.17;
  letter-spacing: 0.96px;
  text-align: left;
  color: #44ad96;
  margin-bottom: 10px;
}
#page-staff .member__wrapper .inner .sec-title .en:before {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #44ad96;
  top: 11px;
  left: 0;
}
#page-staff .member__wrapper .inner .sec-title .en:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #44ad96;
  position: absolute;
  top: 11px;
  right: 0;
}
#page-staff .member__wrapper .inner .sec-title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.39;
  letter-spacing: 1.44px;
  text-align: center;
  color: #121212;
}
#page-staff .member__wrapper .inner .interview__list {
  width: 375px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
#page-staff .member__wrapper .inner .interview__list .interview__item {
  width: 187px;
  position: relative;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a {
  display: block;
  width: 100%;
  margin: 0 auto;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner {
  position: relative;
  width: 100%;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top {
  position: relative;
  margin-bottom: 12.5px;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img {
  width: 145px;
  height: 145px;
  position: relative;
  margin: 0 auto;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name {
  position: absolute;
  display: flex;
  flex-direction: column;
  bottom: 0;
  right: -15px;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name__ja {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: 1.12px;
  text-align: left;
  color: #fff;
  height: 27px;
  padding: 5px 6px 3px;
  background-color: #deb254;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name__en {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.8px;
  text-align: left;
  color: #deb254;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.green .name__ja {
  background-color: #5db372;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.green .name__en {
  color: #5db372;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.purple .name__ja {
  background-color: #b47ba2;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.purple .name__en {
  color: #b47ba2;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.green2 .name__ja {
  background-color: #44ad96;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .top .img .name.green2 .name__en {
  color: #44ad96;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .bottom .affi p {
  width: 190px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.6px;
  text-align: center;
  color: #121212;
}
#page-staff .member__wrapper .inner .interview__list .interview__item a .inner .bottom .affi.wsnw {
  letter-spacing: 0px;
  white-space: nowrap;
}
#page-staff .member::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 160%;
  top: -60%;
  left: 0;
  background-color: #f7f7f7;
  z-index: -2;
}
#page-staff .talk {
  padding: 0;
}
#page-staff .talk .overview {
  width: 315px;
  margin: 0 auto;
  padding: 30px 0;
}
#page-staff .talk .overview p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-staff .talk article .sec {
  position: relative;
  padding: 0 0 45px;
}
#page-staff .talk article .sec__wrapper {
  width: 100%;
  margin: 0 auto;
}
#page-staff .talk article .sec__wrapper > .img {
  width: 100%;
  max-width: 400px;
  height: 200px;
  margin: 0 auto 30px;
  position: relative;
}
#page-staff .talk article .sec__wrapper > .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-staff .talk article .sec__wrapper > .img .title {
  position: relative;
  width: 345px;
  margin: -80px auto 0;
}
#page-staff .talk article .sec__wrapper > .img .title .num {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
  line-height: 0.63;
  letter-spacing: -1.6px;
  text-align: left;
  color: #44ad96;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
}
#page-staff .talk article .sec__wrapper > .img .title h2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
#page-staff .talk article .sec__wrapper > .img .title h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: 1.28px;
  text-align: left;
  color: #fff;
  display: inline-block;
  height: 29px;
  padding: 5px 7px 7px;
  background-color: #44ad96;
  margin-bottom: 2px;
}
#page-staff .talk article .sec__wrapper .img.fr {
  display: none;
}
#page-staff .talk article .sec__wrapper .img.fl {
  display: none;
}
#page-staff .talk article .sec__wrapper .comment {
  margin-bottom: 20px;
}
#page-staff .talk article .sec__wrapper .comment .inner {
  width: 350px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img {
  width: 60px;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 60px;
  height: 60px;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img .name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 17px;
  letter-spacing: 1.2px;
  text-align: center;
  color: #5db372;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img.mem01 .name {
  color: #deb254;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img.mem03 .name {
  color: #b47ba2;
}
#page-staff .talk article .sec__wrapper .comment .inner > .img.mem04 .name {
  color: #44ad96;
}
#page-staff .talk article .sec__wrapper .comment .inner .text {
  width: 270px;
}
#page-staff .talk article .sec__wrapper .comment .inner .text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.6px;
  text-align: left;
  color: #343434;
}
#page-staff .talk article .sec__wrapper .comment:last-child {
  margin-bottom: 0;
}
#page-staff .talk article .sec__wrapper .img.bottom {
  width: 240px;
  height: 150px;
  margin: 30px auto 0;
}
#page-staff .talk article .sec__wrapper .img.bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#page-staff .talk article .sec:nth-child(even) .sec__wrapper {
  width: 100%;
  margin: 0 auto;
}
#page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title {
  left: inherit;
  right: 0;
}
#page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title .num {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 500;
  font-stretch: normal;
  font-style: italic;
  line-height: 0.63;
  letter-spacing: -1.6px;
  text-align: right;
  color: #44ad96;
  position: absolute;
  top: -25px;
  right: 0;
}
#page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title h2 {
  text-align: right;
}
#page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title h2 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.88;
  letter-spacing: 1.28px;
  text-align: left;
  color: #fff;
  display: inline-block;
  height: 29px;
  padding: 5px 7px 7px;
  background-color: #44ad96;
  margin-bottom: 2px;
}
#page-staff .talk article .message {
  padding: 45px 0;
  background-image: linear-gradient(to bottom left, rgba(237, 225, 85, 0.4), rgba(107, 204, 219, 0.4));
}
#page-staff .talk article .message p {
  width: 357px;
  margin: 0 auto;
  font-family: "vdl-penletter", sans-serif;
  font-size: 17px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.35;
  letter-spacing: normal;
  text-align: left;
  color: #121212;
}
#page-staff .pickup.sub {
  padding: 0 0 90px;
  position: relative;
}
#page-staff .pickup.sub:before {
  content: "";
  display: block;
  position: absolute;
  width: 75%;
  height: 180px;
  border-radius: 20px 0 0 20px;
  background-color: #f2f2f2;
  bottom: 45px;
  right: 0;
}
/*PC*/
@media only screen and (min-width: 1025px) {
  #page-work {
    /*work02*/
    /*work03*/
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #page-work {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .business__wrapper {
    width: 100%;
    max-width: 1280px;
  }
  #page-work .business__wrapper .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  #page-work .business__wrapper .list .item {
    width: 390px;
    margin-bottom: 0px;
  }
  #page-work .business__wrapper .list .item__detail .img {
    width: 100%;
    height: 292.5px;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  #page-work .business__wrapper .list .item__detail .contents {
    position: relative;
  }
  #page-work .business__wrapper .list .item__detail .contents .copy {
    width: 277px;
    height: 62px;
    padding: 25px 10px 0px;
    top: -61px;
    left: -1px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 1.6px;
    text-align: left;
    color: #121212;
  }
  #page-work .business__wrapper .list .item__detail .contents .text {
    padding: 30px 0 0 10px;
  }
  #page-work .business__wrapper .list .item__detail .contents .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-work .business__wrapper .list .item:last-child .item__detail .contents .more-area {
    margin-top: -60px;
  }
  #page-work .business__wrapper .list .item:hover .item__detail {
    cursor: pointer;
  }
  #page-work .business__wrapper .list .item:hover .item__detail .img img {
    scale: 1.2;
  }
  #page-work .business__wrapper .list .item:hover .item__detail .contents .more-area .more-btn {
    background-color: #fff;
  }
  #page-work .business__wrapper .list .item:hover .item__detail .contents .more-area .more-btn::before {
    background: url(../images/top/right_g.png) no-repeat;
    background-size: contain;
  }
  #page-work .staff {
    padding: 90px 0 140px;
    background: linear-gradient(to bottom, #f7f7f7 0%, #f7f7f7 32%, #fff 32%, #fff 100%);
  }
  #page-work .staff__wrapper {
    width: 100%;
    max-width: 1260px;
    display: flex;
    margin-bottom: 70px;
  }
  #page-work .staff__wrapper > .inner {
    display: flex;
    flex-direction: row-reverse;
    width: 196px;
    position: relative;
    z-index: 10;
  }
  #page-work .staff__wrapper > .inner .sec-title {
    margin: 0 0 0px 10px;
    writing-mode: vertical-lr;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  #page-work .staff__wrapper > .inner .sec-title__en {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #30a289;
  }
  #page-work .staff__wrapper > .inner .sec-title__ja {
    font-size: 38px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: 1.9px;
    text-align: center;
    color: #121212;
  }
  #page-work .staff__wrapper > .inner .title-exp {
    margin: 0 0 40px 100px;
  }
  #page-work .staff__wrapper > .inner .title-exp p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.8;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    writing-mode: vertical-rl;
  }
  #page-work .staff__wrapper .interview {
    width: 100%;
    max-width: 432px;
    margin-left: 66px;
  }
  #page-work .staff__wrapper .interview__list {
    display: flex;
  }
  #page-work .staff__wrapper .interview__item {
    width: 290px;
    margin-right: 40px;
  }
  #page-work .staff__wrapper .interview__item a {
    display: block;
    width: 290px;
    margin-right: 40px;
  }
  #page-work .staff__wrapper .interview__item a > .inner .top {
    margin-bottom: 25px;
  }
  #page-work .staff__wrapper .interview__item a > .inner .top .num {
    height: 120px;
  }
  #page-work .staff__wrapper .interview__item a > .inner .top .num__text {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #44ad96;
  }
  #page-work .staff__wrapper .interview__item a > .inner .top .img {
    width: 290px;
    height: 290px;
    transition: all 0.4s ease;
  }
  #page-work .staff__wrapper .interview__item a > .inner .bottom .message span {
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
    color: #fff;
  }
  #page-work .staff__wrapper .interview__item a > .inner .bottom .affi {
    margin-bottom: 15px;
  }
  #page-work .staff__wrapper .interview__item a > .inner .bottom .affi p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #page-work .staff__wrapper .interview__item a > .inner:before {
    width: 60px;
    height: 60px;
    transition: all 0.4s ease;
  }
  #page-work .staff__wrapper .interview__item:hover a > .inner .top .img {
    background: url(../images/top/staff01_active.png) no-repeat;
    background-size: contain;
  }
  #page-work .staff__wrapper .interview__item:hover a > .inner:before {
    background: url(../images/top/btn_white_active.png) no-repeat;
    background-size: contain;
  }
  #page-work .staff__wrapper .swiper-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #page-work .staff__wrapper .swiper-scrollbar {
    display: none;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .staff .talk {
    width: 994px;
  }
  #page-work .staff .talk ul {
    width: 100%;
    display: flex;
  }
  #page-work .staff .talk ul li {
    width: 467px;
    height: 301.7px;
    overflow: hidden;
  }
  #page-work .staff .talk ul li a {
    width: 467px;
    height: 301.7px;
    overflow: hidden;
    margin: 0;
  }
  #page-work .staff .talk ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
  }
  #page-work .staff .talk ul li a .inner {
    width: 425px;
    height: 262px;
    margin: 20px 21px 0;
    position: relative;
  }
  #page-work .staff .talk ul li a .inner img {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 70px;
    height: 70px;
  }
  #page-work .staff .talk ul li a .inner h3 {
    width: 267px;
    height: 68px;
    font-size: 20px;
    padding-top: 3px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: center;
    color: #121212;
    padding-top: 8px;
  }
  #page-work .staff .talk ul li a::before {
    width: 467px;
    height: 301.7px;
    top: 0px;
  }
  #page-work .staff .talk ul li:hover a > img {
    transform: scale(1.2);
  }
  #page-work .staff:before {
    border-radius: 0 60px 60px 0;
    top: 184px;
    right: inherit;
    left: 0;
    height: 61.5%;
    min-width: 1260px;
  }
}
@media only screen and (min-width: 1025px) and (min-width: 1025px) and (max-width: 1260px) {
  #page-work .staff .staff__wrapper {
    transform: scale(0.83);
    transform-origin: top left;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .interview {
    padding: 0;
    margin-bottom: 90px;
  }
  #page-work .interview .overview {
    width: 900px;
    margin: 0 auto;
    padding: 60px 0 0;
  }
  #page-work .interview .overview p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-work .interview .overview .notion {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    display: block;
    padding-left: 17px;
    position: relative;
  }
  #page-work .interview .overview .notion::before {
    content: "";
    display: block;
    position: absolute;
    content: "※";
    font-size: 12px;
    color: #343434;
    top: 0;
    left: 0;
  }
  #page-work .interview article .sec {
    position: relative;
    padding: 90px 0;
  }
  #page-work .interview article .sec__wrapper {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
  }
  #page-work .interview article .sec__wrapper .inner {
    display: flex;
    margin-bottom: 60px;
  }
  #page-work .interview article .sec__wrapper .inner .img {
    width: 750px;
    max-width: 50%;
    margin: 0 70px 0 0;
    height: 562.5px;
  }
  #page-work .interview article .sec__wrapper .inner .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-work .interview article .sec__wrapper .inner .text {
    width: 520px;
    margin: 40px 0 0;
    position: relative;
  }
  #page-work .interview article .sec__wrapper .inner .text .article-title {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 36px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.39;
    letter-spacing: 2.88px;
    text-align: left;
    color: #121212;
    margin-bottom: 60px;
    position: relative;
  }
  #page-work .interview article .sec__wrapper .inner .text .article-title::before {
    content: "";
    display: block;
    position: absolute;
    width: 62px;
    height: 4px;
    background-color: #44ad96;
    bottom: -14px;
    left: 0;
  }
  #page-work .interview article .sec__wrapper .inner .text .answer {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    margin-bottom: 20px;
  }
  #page-work .interview article .sec__wrapper .inner .text .answer.mb-0 {
    margin-bottom: 0;
  }
  #page-work .interview article .sec__wrapper .inner .text::before {
    content: "";
    display: block;
    position: absolute;
    width: 96px;
    height: 143px;
    background: url(../images/page01/type01.png) no-repeat;
    background-size: contain;
    top: -40px;
    right: 20px;
  }
  #page-work .interview article .sec__wrapper .table {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  #page-work .interview article .sec__wrapper .table > :nth-child(3) {
    grid-column: 1/3;
  }
  #page-work .interview article .sec__wrapper .table .item dl {
    border-radius: 0 0 5px 5px;
    background-color: #f7f7f7;
  }
  #page-work .interview article .sec__wrapper .table .item dl dt {
    display: flex;
    align-items: center;
    height: 70px;
    padding: 0 0 0 50px;
    border-radius: 10px 10px 0 0;
    background-color: #44ad96;
    margin-bottom: 30px;
    position: relative;
  }
  #page-work .interview article .sec__wrapper .table .item dl dt > span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.08;
    letter-spacing: 1.2px;
    text-align: left;
    color: #fff;
  }
  #page-work .interview article .sec__wrapper .table .item dl dt::before {
    content: "";
    display: block;
    position: absolute;
    content: "THE JOY OF WORK";
    opacity: 0.35;
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.04;
    letter-spacing: 0.84px;
    text-align: right;
    color: #fff;
    right: 10px;
    bottom: 5px;
  }
  #page-work .interview article .sec__wrapper .table .item dl dd {
    display: block;
    padding: 0 50px 0 80px;
    margin-bottom: 10px;
  }
  #page-work .interview article .sec__wrapper .table .item dl dd > span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.88;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    position: relative;
  }
  #page-work .interview article .sec__wrapper .table .item dl dd > span::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/page01/check.png) no-repeat;
    background-size: contain;
    top: 3px;
    left: -28px;
  }
  #page-work .interview article .sec__wrapper .table .item dl dd:last-child {
    padding-bottom: 30px;
    margin-bottom: 0px;
  }
  #page-work .interview article .sec__wrapper .table .item dl dd:last-child.pb-60 {
    padding-bottom: 60px;
  }
  #page-work .interview article .sec__wrapper .table .item:nth-child(2) dl dt::before {
    content: "IDEAL CANDIDATE";
  }
  #page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dt {
    padding: 0 0 0 50px;
  }
  #page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dt::before {
    content: "PATH TO INDEPENDENCE";
  }
  #page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dd {
    padding: 0 50px 0 50px;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  #page-work .interview article .sec__wrapper .table .item:nth-child(3) dl dd span::before {
    display: none;
  }
  #page-work .interview article .sec:nth-child(2) {
    background-color: #f7f7f7;
  }
  #page-work .interview article .sec:nth-child(2) .sec__wrapper .inner {
    flex-direction: row-reverse;
  }
  #page-work .interview article .sec:nth-child(2) .sec__wrapper .inner .img {
    margin: 0 0 0 70px;
  }
  #page-work .interview article .sec:nth-child(2) .sec__wrapper .inner .text::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/page01/type02.png) no-repeat;
    background-size: contain;
  }
  #page-work .interview article .sec:nth-child(2) .sec__wrapper .table .item dl {
    background-color: #fff;
  }
  #page-work .interview article .sec:nth-child(3) .sec__wrapper .inner .text::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/page01/type03.png) no-repeat;
    background-size: contain;
  }
  #page-work .interview article .sec:nth-child(4) {
    background-color: #f7f7f7;
  }
  #page-work .interview article .sec:nth-child(4) .sec__wrapper .inner {
    flex-direction: row-reverse;
  }
  #page-work .interview article .sec:nth-child(4) .sec__wrapper .inner .img {
    margin: 0 0 0 70px;
  }
  #page-work .interview article .sec:nth-child(4) .sec__wrapper .inner .text::before {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/page01/type04.png) no-repeat;
    background-size: contain;
  }
  #page-work .interview article .sec:nth-child(4) .sec__wrapper .inner .table .item dl {
    background-color: #fff;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block .title {
    display: flex;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .text-item {
    transform: translateX(-101%);
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .text-item > span {
    transform: translateX(101%);
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item {
    transform: translateX(0);
    transition: transform cubic-bezier(0.74, 0, 0.24, 0.99) 1.1s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item > span {
    transform: translateX(0);
    transition: transform cubic-bezier(0.74, 0, 0.24, 0.99) 1.1s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item:nth-child(1) {
    transition-delay: 0s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item:nth-child(1) > span {
    transition-delay: 0s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item:nth-child(2) {
    transition-delay: 0.13s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item:nth-child(2) > span {
    transition-delay: 0.13s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item.delay {
    transition-delay: 0.8s;
  }
  #page-work .kv-work02 .kv__wrapper .title .copy.work02.pc .block--3 .is-active .text-item.delay > span {
    transition-delay: 0.8s;
  }
  #page-work .overview.work02 {
    position: relative;
    width: 100%;
    margin-top: 90px;
    padding-top: 30px;
  }
  #page-work .overview.work02 p {
    line-height: 2.38;
    width: 408px;
    height: 214px;
    position: absolute;
    top: 85px;
    left: 53%;
    transform: translateX(-50%);
  }
  #page-work .overview.work02 h2 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 220px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: 2.72px;
    text-align: left;
    color: #121212;
  }
  #page-work .overview.work02 h2 .green {
    color: #44AD96;
    margin-bottom: 38px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: 2.72px;
    text-align: left;
  }
  #page-work .overview.work02:before {
    content: "";
    display: block;
    position: absolute;
    width: 300px;
    height: 224.8px;
    background: url(../images/page01/work02_2.jpg) no-repeat;
    background-size: cover;
    top: 0;
    right: 0px;
  }
  #page-work .sche {
    margin: 45px 0 90px;
    position: relative;
  }
  #page-work .sche .sec-title {
    align-items: center;
  }
  #page-work .sche .exp {
    margin: 40px 0 60px;
  }
  #page-work .sche .exp p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: center;
    color: #343434;
  }
  #page-work .sche .sche-area {
    border-left: none;
    padding-left: 0px;
    padding-bottom: 80px;
    width: 1014px;
    margin: 0 auto;
  }
  #page-work .sche .sche-area ul {
    width: 1014px;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
  }
  #page-work .sche .sche-area ul li {
    display: block;
    width: 450px;
    margin-bottom: 40px;
  }
  #page-work .sche .sche-area ul li .time {
    margin-bottom: 30px;
    position: relative;
  }
  #page-work .sche .sche-area ul li .time span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: 1.2px;
    text-align: left;
    color: #121212;
  }
  #page-work .sche .sche-area ul li .time::before {
    content: "";
    display: block;
    position: absolute;
    width: 110%;
    height: 1px;
    background-color: #44ad96;
    bottom: -15px;
    left: -55px;
  }
  #page-work .sche .sche-area ul li .time::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: solid 4px #44ad96;
    background-color: #fff;
    border-radius: 50%;
    bottom: -25px;
    left: -68px;
  }
  #page-work .sche .sche-area ul li .detail {
    margin-bottom: 30px;
  }
  #page-work .sche .sche-area ul li .detail p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-work .sche .sche-area ul li .img {
    width: 450px;
    height: 240px;
  }
  #page-work .sche .sche-area ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-work .sche .sche-area ul li:last-child {
    margin-bottom: 0;
  }
  #page-work .sche .sche-area ul li:nth-child(even) {
    position: relative;
    top: 220px;
  }
  #page-work .sche .sche-area ul li:nth-child(odd) .time::before {
    content: "";
    display: block;
    position: absolute;
    width: 112%;
    height: 1px;
    background-color: #44ad96;
    bottom: -15px;
    left: inherit;
    right: -54px;
  }
  #page-work .sche .sche-area ul li:nth-child(odd) .time::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: solid 4px #44ad96;
    background-color: #fff;
    border-radius: 50%;
    bottom: -25px;
    left: inherit;
    right: -68px;
  }
  #page-work .sche .sche-area ul:before {
    content: "";
    display: block;
    position: absolute;
    width: 6px;
    height: 80%;
    background-color: #DBDBDB;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #page-work .sche .sche-area::before {
    content: "";
    display: block;
    position: absolute;
    content: "1 DAY START";
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.78;
    letter-spacing: 0.9px;
    text-align: center;
    color: #121212;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
  }
  #page-work .sche .sche-area::after {
    display: none;
  }
  #page-work .sche:before {
    content: "";
    display: block;
    position: absolute;
    width: 96%;
    max-width: 1240px;
    height: calc(100% - 32px);
    border-radius: 20px;
    background-color: #f7f7f7;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
  #page-work .chance {
    padding: 90px 0 90px 52%;
    position: relative;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
  #page-work .chance {
    padding: 90px 0 90px 650px;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .chance .img {
    width: 43%;
    min-width: 650px;
    height: 430px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
  }
  #page-work .chance .img img {
    width: unset;
  }
  #page-work .chance h2 {
    padding-left: 0px;
    margin: 0 0 30px;
    max-width: 430px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
  #page-work .chance h2 {
    margin-left: 120px;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .chance h2 span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: 2.72px;
    text-align: left;
    color: #fff;
  }
  #page-work .chance .content {
    padding-left: 0px;
    max-width: 430px;
    margin: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1500px) {
  #page-work .chance .content {
    margin-left: 120px;
  }
}
@media only screen and (min-width: 1025px) {
  #page-work .chance .content p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #page-work .chance:before {
    content: "";
    display: block;
    position: absolute;
    width: 96%;
    height: 100%;
    border-radius: 0 20px 20px 0;
    background-color: #44ad96;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #page-work .overview.work03 {
    width: 100%;
    max-width: 1084px;
    margin: 0 auto;
    margin-bottom: 90px;
  }
  #page-work .overview.work03 h2 {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 0px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: 2.72px;
    text-align: left;
    color: #121212;
  }
  #page-work .overview.work03 h2 .green {
    color: #44AD96;
    margin-bottom: 38px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.41;
    letter-spacing: 2.72px;
    text-align: left;
  }
  #page-work .overview.work03 p {
    width: 50%;
    max-width: 554px;
    position: relative;
    left: 490px;
    top: -50px;
    margin-bottom: 0;
  }
  #page-work .overview.work03:before {
    width: 320px;
    height: 198.1px;
    top: inherit;
    right: inherit;
    bottom: -30px;
    left: 0;
  }
  #page-work .contents .item {
    padding: 45px 0;
  }
  #page-work .contents .item .img {
    width: 85%;
    max-width: unset;
    height: 422px;
    margin-bottom: 0px;
  }
  #page-work .contents .item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-work .contents .item .inner {
    width: 920px;
    margin: 0 auto;
  }
  #page-work .contents .item .inner h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    text-align: left;
    color: #121212;
    margin-bottom: 40px;
  }
  #page-work .contents .item .inner h3 .green {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    text-align: left;
    color: #44AD96;
  }
  #page-work .contents .item .inner .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-work .contents .item:first-child {
    padding-top: 0;
    padding-bottom: 0;
  }
  #page-work .contents .item:first-child .img {
    width: 85%;
    height: 422px;
    margin-bottom: 0px;
  }
  #page-work .contents .item:first-child .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-work .contents .item:first-child .inner {
    width: 920px;
    margin: 0 auto;
  }
  #page-work .contents .item:first-child .inner h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    text-align: left;
    color: #121212;
    margin-bottom: 40px;
    padding: 40px 0 0 60px;
    background-color: #fff;
    width: 2000px;
    height: 92px;
    position: relative;
    top: -90px;
    right: -15%;
  }
  #page-work .contents .item:first-child .inner h3 .green {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    text-align: left;
    color: #44AD96;
  }
  #page-work .contents .item:first-child .inner .text {
    position: relative;
    top: -90px;
  }
  #page-work .contents .item:first-child .inner .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-work .contents .item:nth-child(2), #page-work .contents .item:nth-child(3) {
    padding: 90px 0;
  }
  #page-work .contents .item:nth-child(2) .inner, #page-work .contents .item:nth-child(3) .inner {
    width: 585px;
    margin: 0;
  }
  #page-work .contents .item:nth-child(2) {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
  }
  #page-work .contents .item:nth-child(2) .img {
    width: 520px;
    height: 346.8px;
    margin: 0 0 0 65px;
  }
  #page-work .contents .item:nth-child(2)::before {
    content: "";
    display: block;
    position: absolute;
    width: 1000%;
    height: 100%;
    padding: 60px 90px 90px 61px;
    border-radius: 20px 0 0 20px;
    background-color: #f7f7f7;
    top: 0;
    right: inherit;
    z-index: -1;
    left: -10%;
  }
  #page-work .contents .item:nth-child(3) {
    width: 100%;
    display: flex;
    padding-bottom: 0;
    justify-content: start;
    position: relative;
  }
  #page-work .contents .item:nth-child(3) .img {
    display: none;
  }
  #page-work .contents .item:nth-child(3) .inner {
    position: relative;
    left: calc(40% + 110px);
  }
  #page-work .contents .item:nth-child(3)::before {
    content: "";
    display: block;
    position: absolute;
    width: 40%;
    height: 359px;
    background: url(../images/page01/work03_5.jpg) no-repeat;
    background-size: cover;
    top: 90px;
    left: 0;
  }
  #page-work .view {
    padding-bottom: 90px;
  }
  #page-work .view > .img {
    width: 100%;
    max-width: 1266px;
    height: 422px;
    margin: 0 auto;
  }
  #page-work .view > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-work .view .inner {
    width: 856px;
    margin: 0 auto;
  }
  #page-work .view .inner h3 {
    width: 856px;
    height: 92px;
    margin: 0 auto;
    padding-top: 40px;
    text-align: center;
    background-color: #fff;
    position: relative;
    top: -90px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    color: #121212;
    margin-bottom: 0px;
  }
  #page-work .view .inner h3 .green {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 2.56px;
    color: #44AD96;
  }
  #page-work .view .inner .text {
    position: relative;
    top: -50px;
  }
  #page-work .view .inner .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: center;
    color: #343434;
  }
  #page-work .view .inner .btn-area {
    width: 355px;
    margin: -40px auto 0;
  }
  #page-staff .kv.kv-sub {
    padding: 0;
    margin-bottom: 60px;
  }
  #page-staff .kv.kv-sub .kv__wrapper {
    position: relative;
  }
  #page-staff .kv.kv-sub .kv__wrapper .img {
    width: 45%;
    height: 502.5px;
    margin: 0 0 0 auto;
  }
  #page-staff .kv.kv-sub .kv__wrapper .img .img__wrapper {
    height: 502.5px;
    position: relative;
  }
  #page-staff .kv.kv-sub .kv__wrapper .img .img__wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .kv.kv-sub .kv__wrapper .img .img__wrapper::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 90, 70, 0.3);
    top: 0;
    left: 0;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 {
    width: 550px;
    margin: -45px auto 0;
    position: relative;
    padding: 75px 0 45px;
    position: absolute;
    top: 40px;
    right: calc(50% + 45px);
  }
  #page-staff {
    /*クロストーク*/
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #page-staff .kv.kv-sub .kv__wrapper h1 {
    right: 44%;
  }
}
@media only screen and (min-width: 1025px) {
  #page-staff .kv.kv-sub .kv__wrapper h1 .title {
    margin-bottom: 0px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .text-item {
    line-height: 1;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .text-item > span > span {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 1.44px;
    text-align: left;
    color: #44ad96;
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    height: 58px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap:last-child {
    margin-top: 5px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .bg.is-animated .bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    display: inline-block;
    height: 58px;
    padding: 12px 15px 7px;
    background-color: #fff;
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .title .bg .bg-wrap .inn {
    padding: 12px 15px 7px;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.88;
    letter-spacing: 2.56px;
    text-align: left;
    color: #121212;
    height: 58px;
    display: inline-block;
  }
  @keyframes bg {
    0% {
      opacity: 0;
      transform: scaleX(0) translateX(-5%);
    }
    30% {
      transform: scaleX(1) translateX(0);
    }
    100% {
      transform: scaleX(1) translateX(0);
    }
    30%, 100% {
      opacity: 1;
    }
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .copy {
    margin-bottom: 30px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .copy span {
    -webkit-text-stroke: 0.3px #fff;
    font-family: "vdl-penletter", sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1.5px;
    text-align: left;
    color: #fff;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .name-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 22px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.45;
    letter-spacing: 1.1px;
    text-align: left;
    color: #fff;
    position: relative;
    padding-right: 30px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name::before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    height: 43px;
    background-color: #fff;
    top: 0;
    right: 0;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .name-box .name-en {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.63;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
    display: inline-block;
    padding-left: 30px;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1 .detail p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #fff;
  }
  #page-staff .kv.kv-sub .kv__wrapper h1::before {
    display: none;
  }
  #page-staff .kv.kv-sub .kv__wrapper::before {
    content: "";
    display: block;
    position: absolute;
    width: 90%;
    height: 424px;
    border-radius: 0 40px 40px 0;
    background-color: #44ad96;
    top: 140px;
    left: 0;
    z-index: -1;
  }
  #page-staff .kv.kv-sub.stf02 .kv__wrapper .img {
    margin: 0 auto 0 0;
  }
  #page-staff .kv.kv-sub.stf02 .kv__wrapper .img .img__wrapper::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
  }
  #page-staff .kv.kv-sub.stf02 .kv__wrapper h1 {
    right: inherit;
    left: calc(50% + 45px);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1279px) {
  #page-staff .kv.kv-sub.stf02 .kv__wrapper h1 {
    left: 44%;
  }
}
@media only screen and (min-width: 1025px) {
  #page-staff .kv.kv-sub.stf02 .kv__wrapper::before {
    content: "";
    display: block;
    position: absolute;
    border-radius: 40px 0 0 40px;
    left: inherit;
    right: 0;
  }
  #page-staff .kv.kv-sub02 {
    padding: 0;
    max-width: unset;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper {
    position: relative;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper .img {
    width: 85%;
    height: 500px;
    margin: 0 0 0 auto;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper {
    height: 500px;
    position: relative;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper .img .img__wrapper::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 500px;
    background-color: rgba(0, 90, 70, 0.3);
    top: 0;
    left: 0;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 {
    width: 1170px;
    margin: -220px auto 0;
    position: relative;
    padding: 0 0 30px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title {
    margin-bottom: 93px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    height: 58px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap:last-child {
    margin-top: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.is-animated .bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    display: inline-block;
    height: 58px;
    padding: 7px 15px 3px;
    background-color: #fff;
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg .bg-wrap .inn {
    padding: 12px 15px 7px;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.88;
    letter-spacing: 2.56px;
    text-align: left;
    color: #121212;
    display: inline-block;
    height: 58px;
    padding: 13px 15px 3px;
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green {
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap {
    position: relative;
    display: inline-block;
    margin-top: 0px;
    height: 37px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap:last-child {
    margin-top: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green.is-animated .bg-wrap::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: #44ad96;
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    display: inline-block;
    height: 37px;
    padding: 0;
    background-color: #44ad96;
    margin-bottom: 5px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .title .bg.green .bg-wrap .inn {
    padding: 12px 15px 7px;
    position: relative;
    z-index: 1;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 42px;
    letter-spacing: 1.44px;
    text-align: left;
    color: #fff;
    display: inline-block;
    height: 37px;
    padding: 0 16px;
    margin-bottom: 5px;
  }
  @keyframes bg {
    0% {
      opacity: 0;
      transform: scaleX(0) translateX(-5%);
    }
    30% {
      transform: scaleX(1) translateX(0);
    }
    100% {
      transform: scaleX(1) translateX(0);
    }
    30%, 100% {
      opacity: 1;
    }
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .copy {
    margin: 20px 0 0;
    padding-left: 60px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .copy span {
    -webkit-text-stroke: 0.3px #fff;
    font-family: "vdl-penletter", sans-serif;
    font-size: 35px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -1.75px;
    text-align: left;
    color: #fff;
    position: relative;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1 .copy span::before {
    content: "";
    display: block;
    position: absolute;
    width: 50px;
    height: 1px;
    background-color: #fff;
    top: 18px;
    left: -60px;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1::before {
    content: "";
    display: block;
    position: absolute;
    width: 1000%;
    height: 317px;
    border-radius: 0 20px 20px 0;
    background-color: #44ad96;
    top: 70px;
    right: -4%;
    z-index: -1;
  }
  #page-staff .kv.kv-sub02 .kv__wrapper h1.stf05::before {
    height: 317px;
  }
  #page-staff .staff {
    padding: 90px 0 60px;
    position: relative;
  }
  #page-staff .staff__wrapper {
    padding-bottom: 60px;
  }
  #page-staff .staff__wrapper .inner {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;
  }
  #page-staff .staff__wrapper .inner .sec-title {
    margin: 0 auto;
    width: 265px;
    margin-bottom: 40px;
    align-items: center;
  }
  #page-staff .staff__wrapper .inner .sec-title .en {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 1.44px;
    text-align: center;
    color: #44ad96;
    margin-bottom: 5px;
  }
  #page-staff .staff__wrapper .inner .sec-title .ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.93;
    letter-spacing: 2.4px;
    text-align: center;
    color: #121212;
  }
  #page-staff .staff__wrapper .inner .sec-title:before {
    content: "";
    display: block;
    position: absolute;
    width: 330px;
    height: 24px;
    background: url(../images/page01/square_pc.png) no-repeat;
    background-size: contain;
    bottom: 0px;
    left: -357px;
  }
  #page-staff .staff__wrapper .inner .sec-title:after {
    content: "";
    display: block;
    position: absolute;
    width: 330px;
    height: 24px;
    background: url(../images/page01/square_pc.png) no-repeat;
    background-size: contain;
    bottom: 0px;
    right: -357px;
  }
  #page-staff .staff__wrapper .inner .interview__list {
    display: flex;
    gap: 60px;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item {
    width: 290px;
    flex-shrink: 0;
    padding-bottom: 0px;
    position: relative;
    margin-bottom: 0px;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a {
    display: block;
    width: 290px;
    margin: 0 auto;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner {
    position: relative;
    width: 100%;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top {
    position: relative;
    margin-bottom: 12.5px;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .num {
    position: absolute;
    top: 10px;
    right: 30px;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .num__text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #44ad96;
    writing-mode: vertical-lr;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .top .img {
    width: 290px;
    height: 290px;
    background: url(../images/top/staff01_active.png) no-repeat;
    background-size: contain;
    transition: all 0.4s ease;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message {
    position: relative;
    z-index: 5;
    margin-bottom: 10px;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
    color: #121212;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner .bottom .affi p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item a .inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    background: url(../images/page01/btn_green_.png) no-repeat;
    background-size: contain;
    bottom: 7px;
    right: 15px;
    transition: all 0.4s ease;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item:hover a > .inner .top .img {
    background: url(../images/page01/staff01_active_gray.png) no-repeat;
    background-size: contain;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item:hover a > .inner:before {
    background: url(../images/page01/btn_white_active_02.png) no-repeat;
    background-size: contain;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item:first-child:hover a > .inner .top .img {
    background: url(../images/top/top_7_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item:nth-child(2):hover a > .inner .top .img {
    background: url(../images/top/top_9_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item:nth-child(3):hover a > .inner .top .img {
    background: url(../images/top/top_8_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .staff__wrapper .inner .interview__list .interview__item::after {
    display: none;
  }
  #page-staff .interview {
    padding-bottom: 0;
  }
  #page-staff .interview .overview {
    width: 767px;
    margin: 0 auto;
    padding: 60px 0;
  }
  #page-staff .interview .overview p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .interview article {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #page-staff .interview article .sec {
    width: 100%;
    position: relative;
    padding-bottom: 0;
  }
  #page-staff .interview article .sec__wrapper {
    width: 85.3333333333%;
    display: flex;
    justify-content: start;
    margin: 0 auto;
  }
  #page-staff .interview article .sec__wrapper .img {
    width: 610px;
    height: 511.2px;
    margin-right: 130px;
  }
  #page-staff .interview article .sec__wrapper .text {
    padding-top: 30px;
    width: 40%;
    max-width: 580px;
  }
  #page-staff .interview article .sec__wrapper .text .article-title {
    font-size: 26px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.54;
    letter-spacing: 2.08px;
    text-align: left;
    color: #121212;
    margin-bottom: 40px;
  }
  #page-staff .interview article .sec__wrapper .text .question {
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: 0.68px;
    text-align: left;
    color: #44ad96;
    padding-left: 40px;
    margin-bottom: 20px;
  }
  #page-staff .interview article .sec__wrapper .text .question:before {
    width: 30px;
    height: 1px;
    top: 12px;
  }
  #page-staff .interview article .sec__wrapper .text .answer {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    margin-bottom: 30px;
  }
  #page-staff .interview article .sec:first-child {
    padding: 90px 0;
  }
  #page-staff .interview article .sec:first-child .sec__wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  #page-staff .interview article .sec:first-child:before {
    width: 85%;
    max-width: 1272px;
    height: 150%;
    background-color: #f7f7f7;
    border-radius: 40px 0 0 0;
    position: absolute;
    top: 0px;
    left: inherit;
    right: 0;
  }
  #page-staff .interview article .sec:nth-child(2) {
    align-self: end;
    padding: 90px 0;
  }
  #page-staff .interview article .sec:nth-child(2) .sec__wrapper {
    flex-direction: row-reverse;
    justify-content: end;
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
  #page-staff .interview article .sec:nth-child(2) .sec__wrapper .img {
    position: relative;
    margin-right: 0;
  }
  #page-staff .interview article .sec:nth-child(2) .sec__wrapper .text {
    margin-right: 82px;
  }
  #page-staff .interview article .sec:nth-child(2):before {
    content: "";
    display: block;
    width: 96%;
    height: 100%;
    background-color: #fff;
    border-radius: 0 40px 40px 0;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 0;
  }
  #page-staff .interview article .sec:nth-child(3) {
    padding: 90px 0;
  }
  #page-staff .interview article .sec:nth-child(3) .sec__wrapper {
    margin: 0 auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  #page-staff .interview article .sec:nth-child(3):before {
    content: "";
    display: block;
    width: 85%;
    max-width: 1272px;
    height: 100%;
    background-color: #f7f7f7;
    border-radius: 0 0 0 40px;
    position: absolute;
    top: 0px;
    left: inherit;
    right: 0;
    z-index: 0;
  }
  #page-staff .interview article .sec:nth-child(4) {
    padding: 90px 0;
    align-self: end;
  }
  #page-staff .interview article .sec:nth-child(4) .sec__wrapper {
    flex-direction: row-reverse;
    justify-content: end;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    position: relative;
  }
  #page-staff .interview article .sec:nth-child(4) .sec__wrapper .img {
    margin-right: 0;
  }
  #page-staff .interview article .sec:nth-child(4) .sec__wrapper .text {
    padding-top: 30px;
    margin-right: 80px;
  }
  #page-staff .interview article .sec:nth-child(4):before {
    content: "";
    display: block;
    width: 95%;
    height: 690px;
    background-color: #fff;
    border-radius: 40px 0 0 0;
    position: absolute;
    top: -90px;
    right: 0;
    z-index: -1;
  }
  #page-staff .interview article .message {
    padding: 90px 0;
  }
  #page-staff .interview article .message p {
    width: 90%;
    margin: 0 auto;
    font-family: "vdl-penletter", sans-serif;
    font-size: 26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: center;
    color: #121212;
  }
  #page-staff .interview.stf02 {
    padding-bottom: 0;
  }
  #page-staff .interview.stf02 .overview {
    width: 767px;
    margin: 0 auto;
    padding: 60px 0;
  }
  #page-staff .interview.stf02 .overview p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .interview.stf02 article .sec__wrapper {
    width: 85.3333333333%;
    display: flex;
    justify-content: start;
    margin: 0 auto;
  }
  #page-staff .interview.stf02 article .sec__wrapper .img {
    width: 610px;
    height: 511.2px;
    margin-right: 130px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text {
    padding-top: 30px;
    width: 40%;
    max-width: 580px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text .article-title {
    font-size: 26px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.54;
    letter-spacing: 2.08px;
    text-align: left;
    color: #121212;
    margin-bottom: 40px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text .question {
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.53;
    letter-spacing: 0.68px;
    text-align: left;
    color: #44ad96;
    padding-left: 40px;
    margin-bottom: 20px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text .question:before {
    width: 30px;
    height: 1px;
    top: 12px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text .answer {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
    margin-bottom: 30px;
  }
  #page-staff .interview.stf02 article .sec__wrapper .text .answer.mb-0 {
    margin-bottom: 0;
  }
  #page-staff .interview.stf02 article .sec:first-child .sec__wrapper {
    flex-direction: row-reverse;
    justify-content: end;
    margin: 0;
  }
  #page-staff .interview.stf02 article .sec:first-child .sec__wrapper .img {
    margin-right: 0;
  }
  #page-staff .interview.stf02 article .sec:first-child .sec__wrapper .text {
    margin-right: 130px;
  }
  #page-staff .interview.stf02 article .sec:first-child:before {
    border-radius: 0 40px 0 0;
    left: 0;
    right: inherit;
  }
  #page-staff .interview.stf02 article .sec:nth-child(2) {
    align-self: end;
    padding: 90px 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(2) .sec__wrapper {
    flex-direction: row;
    justify-content: start;
    width: 100vw;
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }
  #page-staff .interview.stf02 article .sec:nth-child(2) .sec__wrapper .img {
    position: relative;
    margin-right: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(2) .sec__wrapper .text {
    margin-right: 0;
    margin-left: 82px;
  }
  #page-staff .interview.stf02 article .sec:nth-child(2):before {
    border-radius: 40px 0 0 40px;
    left: inherit;
    right: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(3) .sec__wrapper {
    flex-direction: row-reverse;
    justify-content: end;
    margin: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(3) .sec__wrapper .img {
    margin-right: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(3) .sec__wrapper .text {
    margin-right: 130px;
  }
  #page-staff .interview.stf02 article .sec:nth-child(3):before {
    border-radius: 0 40px 0 0;
    right: inherit;
    left: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(4) {
    align-self: end;
  }
  #page-staff .interview.stf02 article .sec:nth-child(4) .sec__wrapper {
    flex-direction: row;
    justify-content: start;
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }
  #page-staff .interview.stf02 article .sec:nth-child(4) .sec__wrapper .img {
    margin-right: 0;
  }
  #page-staff .interview.stf02 article .sec:nth-child(4) .sec__wrapper .text {
    padding-top: 30px;
    margin-right: 0;
    margin-left: 80px;
  }
  #page-staff .interview.stf02 article .sec:nth-child(4):before {
    border-radius: 0 0 0 40px;
    position: absolute;
    top: -90px;
    right: inherit;
    left: 0;
    z-index: -1;
  }
  #page-staff .other-staff {
    padding: 90px 0 60px;
    position: relative;
  }
  #page-staff .other-staff__wrapper {
    padding-bottom: 60px;
  }
  #page-staff .other-staff__wrapper > .inner {
    display: flex;
    justify-content: space-between;
  }
  #page-staff .other-staff__wrapper .inner {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;
  }
  #page-staff .other-staff__wrapper .inner .sec-title {
    margin: 0;
    width: 265px;
    position: relative;
  }
  #page-staff .other-staff__wrapper .inner .sec-title .en {
    border-top: solid 1px #44ad96;
    border-bottom: solid 1px #44ad96;
    padding: 5px 21px;
    display: inline-block;
    margin-bottom: 20px;
    height: 47px;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 37px;
    letter-spacing: 1.6px;
    text-align: left;
    color: #44ad96;
  }
  #page-staff .other-staff__wrapper .inner .sec-title .en:before {
    content: "";
    display: block;
    position: absolute;
    background-color: #44ad96;
    width: 10px;
    height: 10px;
    top: 19px;
    left: 2px;
  }
  #page-staff .other-staff__wrapper .inner .sec-title .en:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #44ad96;
    position: absolute;
    top: 19px;
    right: 20px;
  }
  #page-staff .other-staff__wrapper .inner .sec-title .ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 2.4px;
    text-align: left;
    color: #121212;
  }
  #page-staff .other-staff__wrapper .inner .interview__list {
    display: flex;
    gap: 60px;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item {
    width: 290px;
    flex-shrink: 0;
    padding-bottom: 0px;
    position: relative;
    margin-bottom: 0px;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a {
    display: block;
    width: 290px;
    margin: 0 auto;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner {
    position: relative;
    width: 100%;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top {
    position: relative;
    margin-bottom: 12.5px;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .num {
    position: absolute;
    top: 10px;
    right: 30px;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .num__text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 0.9px;
    text-align: left;
    color: #44ad96;
    writing-mode: vertical-lr;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .top .img {
    width: 290px;
    height: 290px;
    background: url(../images/top/staff01_active.png) no-repeat;
    background-size: contain;
    transition: all 0.4s ease;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message {
    position: relative;
    z-index: 5;
    margin-bottom: 10px;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .message span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 1px;
    text-align: left;
    color: #121212;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner .bottom .affi p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item a .inner::before {
    content: "";
    display: block;
    position: absolute;
    width: 60px;
    height: 60px;
    background: url(../images/page01/btn_green_.png) no-repeat;
    background-size: contain;
    bottom: 7px;
    right: 15px;
    transition: all 0.4s ease;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item:hover a > .inner .top .img {
    background: url(../images/page01/staff01_active_gray.png) no-repeat;
    background-size: contain;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item:hover a > .inner:before {
    background: url(../images/page01/btn_white_active_02.png) no-repeat;
    background-size: contain;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf01:hover a > .inner .top .img {
    background: url(../images/top/top_7_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf02:hover a > .inner .top .img {
    background: url(../images/top/top_9_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item.stf03:hover a > .inner .top .img {
    background: url(../images/top/top_8_grey.png) no-repeat;
    background-size: contain;
  }
  #page-staff .other-staff__wrapper .inner .interview__list .interview__item::after {
    display: none;
  }
  #page-staff .other-staff:before {
    content: "";
    display: block;
    position: absolute;
    width: 90%;
    min-width: 1337px;
    height: 343px;
    border-radius: 0 40px 40px 0;
    background-color: #f2f2f2;
    bottom: 60px;
    left: 0;
    z-index: -1;
  }
  #page-staff .pickup {
    padding: 0 0 60px;
    margin-bottom: 90px;
  }
  #page-staff .pickup .talk {
    position: relative;
    z-index: 20;
    margin: 0 auto;
  }
  #page-staff .pickup .talk .sec-title {
    width: 100%;
    max-width: 1014px;
    margin: 0 auto 40px;
    position: relative;
    text-align: left;
    height: 107px;
  }
  #page-staff .pickup .talk .sec-title__en2 {
    font-family: "Poppins", sans-serif;
    font-size: 150px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background: linear-gradient(to top, rgba(237, 225, 85, 0.1), rgba(107, 204, 219, 0.3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 0.7;
  }
  #page-staff .pickup .talk .sec-title__ja {
    position: absolute;
    bottom: 0px;
    left: 110px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: 5.1px;
    text-align: center;
    color: #121212;
  }
  #page-staff .pickup .talk .sec-title__ja .small {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.61;
    letter-spacing: 1.44px;
    text-align: center;
    color: #44ad96;
    padding-left: 51px;
    position: relative;
  }
  #page-staff .pickup .talk .sec-title__ja .small:before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 1px;
    background-color: #44ad96;
    top: 50%;
    transform: translateY(-50%);
    left: 22px;
  }
  #page-staff .pickup .talk ul {
    width: 100%;
    max-width: 1014px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  #page-staff .pickup .talk ul li {
    width: 467px;
  }
  #page-staff .pickup .talk ul li a {
    width: 467px;
    height: 301.7px;
    overflow: hidden;
    margin: 0;
  }
  #page-staff .pickup .talk ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
  }
  #page-staff .pickup .talk ul li a .inner {
    width: 425px;
    height: 262px;
    margin: 20px 21px 0;
    position: relative;
  }
  #page-staff .pickup .talk ul li a .inner img {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 70px;
    height: 70px;
  }
  #page-staff .pickup .talk ul li a .inner h3 {
    width: 267px;
    height: 68px;
    font-size: 20px;
    padding-top: 3px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.35;
    letter-spacing: 1px;
    text-align: center;
    color: #121212;
    padding-top: 8px;
  }
  #page-staff .pickup .talk ul li a::before {
    width: 467px;
    height: 301.7px;
    top: 0px;
  }
  #page-staff .pickup .talk ul li:hover a > img {
    transform: scale(1.2);
  }
  #page-staff .pickup .talk ul li .title {
    padding: 30px 29px 0;
  }
  #page-staff .pickup .talk ul li .title p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .pickup:before {
    content: "";
    display: block;
    position: absolute;
    width: 70%;
    min-width: 940px;
    height: 363.7px;
    border-radius: 40px 0 0 40px;
    background-color: #f2f2f2;
    bottom: 90px;
    right: 0;
  }
  #page-staff .member {
    padding: 90px 0 60px;
    position: relative;
  }
  #page-staff .member__wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  #page-staff .member__wrapper > .inner {
    width: 955px;
    margin: 0 auto 0 80px;
  }
  #page-staff .member__wrapper > .inner .sec-title {
    margin: 0;
  }
  #page-staff .member__wrapper > .inner .sec-title .en {
    display: inline-block;
    width: 209px;
    border-top: solid 1px #44ad96;
    border-bottom: solid 1px #44ad96;
    padding: 0 20px;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 2.6;
    letter-spacing: 1.6px;
    text-align: center;
    color: #44ad96;
    margin-bottom: 10px;
  }
  #page-staff .member__wrapper > .inner .sec-title .en:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #44ad96;
    top: 20px;
    left: 0;
  }
  #page-staff .member__wrapper > .inner .sec-title .en:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #44ad96;
    position: absolute;
    top: 20px;
    right: 0;
  }
  #page-staff .member__wrapper > .inner .sec-title .ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.47;
    letter-spacing: 2.4px;
    text-align: left;
    color: #121212;
  }
  #page-staff .member__wrapper > .inner .interview__list {
    width: 615px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item {
    width: 279px;
    position: relative;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a {
    display: block;
    width: 279px;
    margin: 0 auto;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner {
    position: relative;
    width: 100%;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top {
    position: relative;
    margin-bottom: 12.5px;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img {
    width: 250px;
    height: 250px;
    position: relative;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img .name {
    position: absolute;
    display: flex;
    flex-direction: column;
    bottom: 0;
    right: -15px;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img .name__ja {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: 1.68px;
    text-align: center;
    color: #fff;
    height: 44px;
    padding: 6px 12px 6px;
    background-color: #deb254;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img .name__en {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 1.36px;
    text-align: left;
    color: #deb254;
    color: #deb254;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img .name.green .name__ja {
    background-color: #5db372;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .top .img .name.green .name__en {
    color: #5db372;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .bottom .affi p {
    width: 250px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: center;
    color: #343434;
  }
  #page-staff .member__wrapper > .inner .interview__list .interview__item a .inner .bottom .affi.wsnw {
    letter-spacing: 0.32px;
  }
  #page-staff .member__wrapper > .inner {
    display: flex;
  }
  #page-staff .member__wrapper > .inner.stf05 {
    width: 100%;
    max-width: 1236px;
    margin: 0 auto;
    flex-direction: column;
  }
  #page-staff .member__wrapper > .inner.stf05 .sec-title {
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
  }
  #page-staff .member__wrapper > .inner.stf05 .interview__list {
    width: 100%;
    max-width: 1236px;
    margin: 0 auto;
  }
  #page-staff .member::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 160%;
    top: -60%;
    left: 0;
    background-color: #f7f7f7;
    z-index: -2;
  }
  #page-staff .talk {
    padding: 0;
  }
  #page-staff .talk .overview {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 0;
  }
  #page-staff .talk .overview p {
    width: 765px;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: center;
    color: #343434;
  }
  #page-staff .talk article {
    width: 100%;
  }
  #page-staff .talk article .sec {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    padding: 0 0 40px;
  }
  #page-staff .talk article .sec__wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #page-staff .talk article .sec__wrapper > .img {
    width: 100%;
    max-width: unset;
    height: 426.7px;
    margin-bottom: 60px;
    position: relative;
  }
  #page-staff .talk article .sec__wrapper > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .talk article .sec__wrapper > .img .title {
    position: absolute;
    bottom: 168px;
    left: 25px;
    z-index: 10;
  }
  #page-staff .talk article .sec__wrapper > .img .title .num {
    font-family: "Poppins", sans-serif;
    font-size: 80px;
    font-weight: 500;
    font-stretch: normal;
    font-style: italic;
    line-height: 0.63;
    letter-spacing: -3.2px;
    text-align: left;
    color: #44ad96;
    position: absolute;
    top: -50px;
  }
  #page-staff .talk article .sec__wrapper > .img .title h2 {
    width: 700px;
  }
  #page-staff .talk article .sec__wrapper > .img .title h2 span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.88;
    letter-spacing: 2.56px;
    text-align: left;
    color: #fff;
    display: inline-block;
    height: 58px;
    padding: 12px 14px 7px;
    background-color: #44ad96;
    margin-bottom: 5px;
  }
  #page-staff .talk article .sec__wrapper .img.fr {
    display: block;
    width: 480px;
    height: 249.1px;
    position: absolute;
    top: 486px;
    right: 50px;
  }
  #page-staff .talk article .sec__wrapper .img.fr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .talk article .sec__wrapper .comment {
    position: relative;
  }
  #page-staff .talk article .sec__wrapper .comment .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
  }
  #page-staff .talk article .sec__wrapper .comment .inner > .img {
    width: 100px;
    min-width: 100px;
  }
  #page-staff .talk article .sec__wrapper .comment .inner > .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100px;
    height: 100px;
  }
  #page-staff .talk article .sec__wrapper .comment .inner > .img .name {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 17px;
    letter-spacing: 1.2px;
    text-align: center;
    color: #5db372;
  }
  #page-staff .talk article .sec__wrapper .comment .inner > .img.mem01 .name {
    color: #deb254;
  }
  #page-staff .talk article .sec__wrapper .comment .inner .text {
    width: 100%;
  }
  #page-staff .talk article .sec__wrapper .comment .inner .text p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: 0.32px;
    text-align: left;
    color: #343434;
  }
  #page-staff .talk article .sec__wrapper .comment:last-child {
    margin-bottom: 0;
  }
  #page-staff .talk article .sec__wrapper .comment.fr .inner .text {
    width: 503px;
  }
  #page-staff .talk article .sec__wrapper .comment.fl .inner {
    justify-content: flex-end;
  }
  #page-staff .talk article .sec__wrapper .comment.fl .inner .text {
    width: 503px;
  }
  #page-staff .talk article .sec__wrapper .comment.mt-40 {
    margin-top: 40px;
  }
  #page-staff .talk article .sec__wrapper .comment .img.fl {
    display: block;
    width: 480px;
    height: 249.1px;
    position: absolute;
    top: 0;
    left: 40px;
    margin-bottom: 0;
  }
  #page-staff .talk article .sec__wrapper .comment .img.fl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  #page-staff .talk article .sec__wrapper .img.bottom {
    display: none;
  }
  #page-staff .talk article .sec:nth-child(even) .sec__wrapper {
    width: 100%;
    margin: 0 auto;
  }
  #page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title {
    left: inherit;
    right: 405px;
  }
  #page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title .num {
    font-family: "Poppins", sans-serif;
    font-size: 80px;
    font-weight: 500;
    font-stretch: normal;
    font-style: italic;
    line-height: 0.63;
    letter-spacing: -3.2px;
    text-align: left;
    color: #44ad96;
    position: absolute;
    top: -50px;
    left: inherit;
    right: -357px;
  }
  #page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title h2 {
    text-align: right;
  }
  #page-staff .talk article .sec:nth-child(even) .sec__wrapper > .img .title h2 span {
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 0.88;
    letter-spacing: 2.56px;
    text-align: left;
    color: #fff;
    display: inline-block;
    height: 58px;
    padding: 12px 14px 7px;
    background-color: #44ad96;
    margin-bottom: 5px;
  }
  #page-staff .talk article .message {
    padding: 60px 0;
    background-image: linear-gradient(to bottom left, rgba(237, 225, 85, 0.4), rgba(107, 204, 219, 0.4));
  }
  #page-staff .talk article .message p {
    width: 90%;
    margin: 0 auto;
    font-family: "vdl-penletter", sans-serif;
    font-size: 26px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.46;
    letter-spacing: normal;
    text-align: center;
    color: #121212;
  }
  #page-staff .pickup.sub {
    padding: 0 0 90px;
  }
  #page-staff .pickup.sub .talk {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
  }
  #page-staff .pickup.sub .talk .sec-title {
    margin-top: 40px;
  }
  #page-staff .pickup.sub .talk ul li {
    padding-left: 60px;
  }
  #page-staff .pickup.sub:before {
    content: "";
    display: block;
    position: absolute;
    width: 56%;
    min-width: unset;
    height: 290px;
    border-radius: 20px 0 0 20px;
    background-color: #f2f2f2;
    bottom: 30px;
    right: 0;
  }
}

/*# sourceMappingURL=page01.css.map */
