body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}
body.is-loaded {
  filter: blur(0px);
}

main {
  position: relative;
  z-index: 1;
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (min-width: 1440px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 1440px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
}
@media screen and (max-width: 768px) {
  .elm {
    transition: opacity 1s ease-in-out, transform 1s ease-out;
    transform: translateY(70px);
  }
}
.elm.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm.elm4 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm4 {
    transition-delay: unset;
  }
}

.elm.elm5 {
  transition-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .elm.elm5 {
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_serviceBg {
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
  transition-delay: 0.7s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  transition-duration: 1.8s;
  transition-timing-function: ease-in-out;
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 94%;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  header {
    width: 100%;
  }
}
header .header {
  position: relative;
  border-radius: 0 0 1.25em 1.25em;
  overflow: hidden;
  /* LIQUID GLASS STYLES */
}
@media screen and (max-width: 768px) {
  header .header {
    border-radius: 0;
  }
}
header .header .liquidGlass-wrapper {
  position: relative;
  padding-block: 0.8em 1em;
  padding-inline: 1.5625em;
  display: flex;
  width: 100%;
  font-weight: 600;
  overflow: visible;
  color: black;
  transition: padding-bottom 0.3s ease;
}
@media screen and (max-width: 768px) {
  header .header .liquidGlass-wrapper {
    border-radius: 0;
  }
}
header .header .liquidGlass-wrapper.has-submenu-open {
  padding-bottom: 4em;
}
@media (min-width: 769px) {
  header .header .liquidGlass-wrapper:has(.header_nav_item-solution:hover), header .header .liquidGlass-wrapper:has(.header_nav_item-about:hover) {
    padding-bottom: 4em;
  }
}
header .header .liquidGlass-wrapper .liquidGlass-effect {
  position: absolute;
  z-index: 0;
  inset: 0;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
  will-change: filter;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  pointer-events: none;
}
header .header .liquidGlass-wrapper .liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
header .header .liquidGlass-wrapper .liquidGlass-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 2px 2px 1px 0 rgba(255, 255, 255, 0.1), inset -1px -1px 1px 1px rgba(255, 255, 255, 0.1);
  pointer-events: none;
}
header .header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
header .header_logo {
  width: 13.625em;
  position: relative;
  z-index: 10002;
}
@media screen and (max-width: 768px) {
  header .header_logo {
    width: 14em;
  }
}
@media screen and (max-width: 768px) {
  header .header_spMenuSide {
    display: flex;
    align-items: center;
    gap: 2em;
    justify-content: flex-end;
    position: relative;
    z-index: 10002;
  }
}
header .header_hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2em;
  height: 2em;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10002;
  position: relative;
}
header .header_hamburger_line {
  width: 100%;
  height: 0.2em;
  background-color: #fff;
  border-radius: 0.1em;
  transition: all 0.3s ease;
}
header .header_hamburger.is-open .header_hamburger_line:nth-child(1) {
  transform: translateY(0.6em) rotate(45deg);
}
header .header_hamburger.is-open .header_hamburger_line:nth-child(2) {
  opacity: 0;
}
header .header_hamburger.is-open .header_hamburger_line:nth-child(3) {
  transform: translateY(-0.75em) rotate(-45deg);
}
header .header_nav {
  display: flex;
  align-items: center;
  gap: 3em;
  padding-top: 0.3em;
}
header .header_nav li {
  position: relative;
}
header .header_nav li a {
  font-size: 0.875em;
  color: #fff;
  letter-spacing: 0.1em;
}
header .header_nav li.contactBtn {
  text-align: center;
}
header .header_nav li.contactBtn a {
  display: inline-block;
  color: #000;
  background-color: #fff;
  padding: 0.2em 2em 0.3em;
  border-radius: 5em;
}
header .header_nav li.header_nav_item-about .header_nav_submenu, header .header_nav li.header_nav_item-solution .header_nav_submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-6%);
  margin-top: 0.8em;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  z-index: 10;
  display: flex;
  width: 32em;
  border-top: 0.0625em solid rgba(255, 255, 255, 0.5);
}
header .header_nav li.header_nav_item-about .header_nav_submenu.submenu02, header .header_nav li.header_nav_item-solution .header_nav_submenu.submenu02 {
  transform: translateX(-27%);
}
header .header_nav li.header_nav_item-about .header_nav_submenu li, header .header_nav li.header_nav_item-solution .header_nav_submenu li {
  transform: translateY(-0.5em);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition-delay: 0s;
}
header .header_nav li.header_nav_item-about .header_nav_submenu li a, header .header_nav li.header_nav_item-solution .header_nav_submenu li a {
  display: inline-block;
  padding: 0.8em 1.5em;
  font-size: 0.875em;
  color: #fff;
}
@media (min-width: 769px) {
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu, header .header_nav li.header_nav_item-solution:hover .header_nav_submenu {
    opacity: 1;
    visibility: visible;
    max-height: 20em;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li, header .header_nav li.header_nav_item-solution:hover .header_nav_submenu li {
    transform: translateY(0);
    opacity: 1;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(1), header .header_nav li.header_nav_item-solution:hover .header_nav_submenu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(2), header .header_nav li.header_nav_item-solution:hover .header_nav_submenu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(3), header .header_nav li.header_nav_item-solution:hover .header_nav_submenu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(4), header .header_nav li.header_nav_item-solution:hover .header_nav_submenu li:nth-child(4) {
    transition-delay: 0.2s;
  }
}
header .header_nav li.header_nav_item-about .header_nav_submenu li:nth-child(1) {
  transition-delay: 0.05s;
}
header .header_nav li.header_nav_item-about .header_nav_submenu li:nth-child(2) {
  transition-delay: 0.1s;
}
header .header_nav li.header_nav_item-about .header_nav_submenu li:nth-child(3) {
  transition-delay: 0.15s;
}
@media (min-width: 769px) {
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  header .header_nav li.header_nav_item-about:hover .header_nav_submenu li:nth-child(3) {
    transition-delay: 0.15s;
  }
}
header .header_nav_logo {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header_nav_logo {
    display: block;
  }
}
header .header_tel {
  position: absolute;
  bottom: -2.8em;
  right: 2em;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 0.625em;
  font-weight: 500;
}
header .header_tel a {
  color: #fff;
  font-size: 1.7em;
  font-weight: bold;
  padding-left: 0.3em;
}
@media screen and (max-width: 768px) {
  header {
    overflow: visible;
  }
  header .header {
    overflow: visible;
  }
  header .header_hamburger {
    display: flex;
  }
  header .header_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    min-height: 100vh;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding-top: 6em;
    padding-bottom: 10em;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, -webkit-backdrop-filter 0.8s ease, backdrop-filter 0.8s ease, visibility 0.8s ease;
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    will-change: scroll-position;
  }
  header .header_nav.is-open {
    opacity: 1;
    visibility: visible;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    position: fixed;
    height: 100vh;
    max-height: 100vh;
  }
  header .header_nav li {
    width: 100%;
    text-align: center;
    padding: 1em 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-0.8em);
    transition: opacity 0.8s ease, transform 0.8s ease;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 768px) and (max-width: 321px) and (max-height: 580px) {
  header .header_nav li {
    padding: 0.3em 0;
  }
}
@media screen and (max-width: 768px) {
  header .header_nav li a {
    font-size: 1.2em;
    display: block;
    padding: 0.5em 0;
  }
  header .header_nav li.contactBtn {
    margin-top: 1em;
    border-bottom: none;
  }
  header .header_nav li.contactBtn a {
    display: inline-block;
    padding: 0.5em 2em;
    width: 60%;
  }
  header .header_nav li.header_nav_logo {
    margin-top: auto;
    margin-bottom: 2em;
    padding: 0;
    border-bottom: none;
    opacity: 0;
    filter: blur(20px);
    transform: none;
    transition: opacity 1s ease, filter 1s ease;
    padding-top: 3em;
  }
  header .header_nav li.header_nav_logo img {
    width: 100%;
    height: auto;
    display: block;
  }
  header .header_nav li.header_nav_item-about, header .header_nav li.header_nav_item-solution {
    position: relative;
    padding-bottom: 0;
  }
  header .header_nav li.header_nav_item-about > a, header .header_nav li.header_nav_item-solution > a {
    padding-bottom: 1.3em;
  }
}
@media screen and (max-width: 768px) and (max-width: 321px) and (max-height: 580px) {
  header .header_nav li.header_nav_item-about > a, header .header_nav li.header_nav_item-solution > a {
    padding-bottom: 0.6em;
  }
}
@media screen and (max-width: 768px) {
  header .header_nav li.header_nav_item-about .header_nav_submenu, header .header_nav li.header_nav_item-solution .header_nav_submenu {
    position: static;
    transform: none;
    margin-top: 0;
    width: 100%;
    display: block;
    border-top: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    border-top: 0.0625em solid rgba(255, 255, 255, 0.1);
  }
  header .header_nav li.header_nav_item-about .header_nav_submenu.submenu02, header .header_nav li.header_nav_item-solution .header_nav_submenu.submenu02 {
    transform: none;
  }
  header .header_nav li.header_nav_item-about .header_nav_submenu li, header .header_nav li.header_nav_item-solution .header_nav_submenu li {
    width: 50%;
    text-align: center;
    transform: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  header .header_nav li.header_nav_item-about .header_nav_submenu li.header_nav_submenu_w100, header .header_nav li.header_nav_item-solution .header_nav_submenu li.header_nav_submenu_w100 {
    width: 100%;
  }
  header .header_nav li.header_nav_item-about .header_nav_submenu li a, header .header_nav li.header_nav_item-solution .header_nav_submenu li a {
    display: block;
    padding: 0.8em 0;
    font-size: 1em;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu, header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu {
    max-height: 11em;
    opacity: 1;
    visibility: visible;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li, header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li {
    width: 50%;
    opacity: 1;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(1), header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(2), header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(3), header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(4), header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li.header_nav_submenu_w100, header .header_nav li.header_nav_item-solution.is-open .header_nav_submenu li.header_nav_submenu_w100 {
    width: 100%;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  header .header_nav li.header_nav_item-about.is-open .header_nav_submenu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  header .header_nav.is-open li {
    opacity: 1;
    transform: translateY(0);
  }
  header .header_nav.is-open li:nth-child(1) {
    transition-delay: 0.1s;
  }
  header .header_nav.is-open li:nth-child(2) {
    transition-delay: 0.2s;
  }
  header .header_nav.is-open li:nth-child(3) {
    transition-delay: 0.3s;
  }
  header .header_nav.is-open li:nth-child(4) {
    transition-delay: 0.4s;
  }
  header .header_nav.is-open li:nth-child(5) {
    transition-delay: 0.5s;
  }
  header .header_nav.is-open li:nth-child(6) {
    transition-delay: 0.6s;
  }
  header .header_nav.is-open li:nth-child(7) {
    transition-delay: 0.7s;
  }
  header .header_nav.is-open li:nth-child(8) {
    transition-delay: 0.8s;
  }
  header .header_nav.is-open li:nth-child(9) {
    transition-delay: 0.9s;
  }
  header .header_nav.is-open li:nth-child(10) {
    transition-delay: 1s;
  }
  header .header_nav.is-open li.header_nav_logo {
    opacity: 1;
    filter: blur(0px);
    transition-delay: 0.3s;
  }
}

.scroll-promotion-btn {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 1.875em;
  height: 6.28125em;
  z-index: 9990;
  transition: transform 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
  animation: scroll-promotion-fadein 0.5s ease-out 3s forwards;
}
.scroll-promotion-btn.is-back-to-top:hover {
  transform: scale(1.1);
}
.scroll-promotion-btn_icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.5em;
  height: 0;
  color: #fff;
  z-index: 9991;
  animation: scroll-promotion-arrow 2s ease-in-out infinite;
}
.scroll-promotion-btn_icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0.0625em;
  height: 100%;
  background-color: currentColor;
}
.scroll-promotion-btn_icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1em;
  height: 1em;
  border-right: 0.0625em solid currentColor;
  border-bottom: 0;
  transform: translateX(-50%) translateY(-0.25em) rotate(45deg);
}
.scroll-promotion-btn_txt {
  writing-mode: vertical-rl;
  font-size: 0.75em;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 0;
  animation: scroll-promotion-txt01 2s ease-in-out infinite;
}
.scroll-promotion-btn.is-back-to-top {
  cursor: pointer;
}
.scroll-promotion-btn.is-back-to-top .scroll-promotion-btn_icon {
  transform: rotate(180deg);
  top: auto;
  bottom: 0;
}
.scroll-promotion-btn.is-back-to-top .scroll-promotion-btn_icon::after {
  transform: translateX(-50%) translateY(-0.25em) rotate(135deg);
}
.scroll-promotion-btn.is-back-to-top .scroll-promotion-btn_txt {
  top: auto;
  bottom: 0;
  animation: scroll-promotion-txt02 2s ease-in-out infinite;
}
.scroll-promotion-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes scroll-promotion-fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll-promotion-arrow {
  0% {
    opacity: 0;
    height: 0em;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 6.28125em;
  }
}
@keyframes scroll-promotion-txt01 {
  0% {
    transform: translateY(0em);
  }
  70% {
    transform: translateY(0.5em);
  }
  100% {
    transform: translateY(0em);
  }
}
@keyframes scroll-promotion-txt02 {
  0% {
    transform: translateY(0em);
  }
  60% {
    transform: translateY(-0.5em);
  }
  100% {
    transform: translateY(0em);
  }
}
footer {
  position: relative;
  z-index: 10;
}

.footer {
  background-color: #000;
  padding-block: 15.375em;
  position: relative;
  color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 9.375em 6em;
  }
}
.footer_inner {
  max-width: 58.4375em;
  width: 90%;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 1250px) {
  .footer_inner {
    margin: 0 5% 0 auto;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner {
    margin: 0 auto;
    width: 90%;
  }
}
.footer_inner_fb {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_inner_fb {
    flex-direction: column;
    gap: 5em;
  }
}
.footer_infoArea {
  width: 24.0625em;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer_infoArea {
    width: 100%;
    transform: translateX(3.5%);
  }
}
.footer_infoArea_logo {
  width: 35.85%;
}
.footer_infoArea_infoBlock {
  width: 55.85%;
}
@media screen and (max-width: 768px) {
  .footer_infoArea_infoBlock {
    font-size: 1.15em;
  }
}
.footer_infoArea_infoBlock .address {
  font-size: 0.8125em;
  line-height: 1.6;
}
.footer_infoArea_infoBlock .tel {
  color: #fff;
  font-weight: 700;
  font-size: 1.4375em;
  margin-top: 0.8em;
  letter-spacing: 0.1em;
}
.footer_infoArea_infoBlock .linkArea {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2em;
  margin-top: 0.5em;
}
.footer_infoArea_infoBlock .linkArea .linkArea_contact a {
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 0.3em 2.5em 0.4em;
  border-radius: 5em;
  border: 0.0625em solid #fff;
  transition: all 0.3s ease;
  color: #fff;
}
.footer_infoArea_infoBlock .linkArea .linkArea_contact a:hover {
  background-color: #fff;
  color: #000;
  opacity: 1;
}
.footer_infoArea_infoBlock .linkArea .linkArea_insta a img {
  width: 2.1em;
  height: 2.1em;
}
.footer_menuArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0.8em;
  width: 17.6875em;
}
@media screen and (max-width: 768px) {
  .footer_menuArea {
    width: 87%;
    row-gap: 1.5em;
    transform: translateX(5%);
  }
}
.footer_menuArea a {
  width: 50%;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_menuArea a {
    font-size: 1.5em;
    letter-spacing: 0.15em;
  }
}
.footer_menuArea a.ss {
  font-size: 0.8em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .footer_menuArea a.ss {
    font-size: 1.15em;
  }
}
.footer_copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_copyright {
    position: relative;
    padding-block: 2em 0;
    background-color: #000;
  }
}
.footer_copyright p {
  font-size: 0.75em;
  padding-block: 0.7em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer_copyright p {
    padding-block: 3em 1em;
  }
}
.footer .lineAction_wrapper {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .footer .lineAction_wrapper {
    opacity: 0.5;
  }
}
@media (min-width: 1850px) {
  .footer .lineAction_wrapper .lineAction {
    width: 170%;
    height: 170%;
    left: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer .lineAction_wrapper .lineAction {
    width: 200%;
    height: 200%;
    top: 34%;
    left: 79%;
  }
  .footer .lineAction_wrapper .lineAction .lineAction_line.line8::after {
    top: -5%;
  }
  .footer .lineAction_wrapper .lineAction .lineAction_line.line8-::after {
    top: 5%;
    transform: rotate(-12deg);
  }
}

.inner1000 {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
}

.inner900 {
  max-width: 56.25em;
  width: 90%;
  margin: 0 auto;
}

section .ttl_en {
  font-size: 0.75em;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
section .ttl_ja {
  font-size: 3.125em;
  font-weight: 500;
  line-height: 1;
  color: #2b2929;
  text-align: center;
  margin-top: 0.2em;
}

.lineAction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: 3;
  overflow: hidden;
}
.lineAction_line {
  width: 0.0625em;
  background-color: #fff;
  z-index: 2;
  position: absolute;
  top: 0%;
  opacity: 0;
  height: 0;
  transform: translateY(0);
  left: 11.815%;
}
.lineAction_line.line1 {
  opacity: 0;
  animation: none;
}
.lineAction_line.line1.start-animation {
  opacity: 0.6;
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line2 {
  height: 110%;
  left: 11.562%;
  transform: translateY(-50%) rotate(10deg);
}
.lineAction_line.line2.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line2.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo2 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line2- {
  height: 110%;
  left: 11.562%;
  transform: translateY(-50%) rotate(-10deg);
}
.lineAction_line.line2-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line2-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo2Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line3 {
  height: 120%;
  left: 11.182%;
  transform: translateY(-50%) rotate(20deg);
}
.lineAction_line.line3.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line3.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo3 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.lineAction_line.line3- {
  height: 120%;
  left: 11.182%;
  transform: translateY(-50%) rotate(-20deg);
}
.lineAction_line.line3-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line3-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo3Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
.lineAction_line.line4 {
  height: 130%;
  left: 10.255%;
  transform: translateY(-50%) rotate(30deg);
}
.lineAction_line.line4.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line4.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo4 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.lineAction_line.line4- {
  height: 130%;
  left: 10.255%;
  transform: translateY(-50%) rotate(-30deg);
}
.lineAction_line.line4-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line4-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo4Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}
.lineAction_line.line5 {
  height: 180%;
  left: 8.61%;
  transform: translateY(-50%) rotate(41deg);
}
.lineAction_line.line5.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line5.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo5 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.lineAction_line.line5- {
  height: 180%;
  left: 8.61%;
  transform: translateY(-50%) rotate(-41deg);
}
.lineAction_line.line5-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line5-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo5Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}
.lineAction_line.line6 {
  height: 250%;
  left: 5.6545%;
  transform: translateY(-50%) rotate(52.5deg);
}
.lineAction_line.line6.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line6.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo6 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.lineAction_line.line6- {
  height: 250%;
  left: 5.6545%;
  transform: translateY(-50%) rotate(-52.5deg);
}
.lineAction_line.line6-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line6-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo6Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}
.lineAction_line.line7 {
  height: 300%;
  left: -0.6756%;
  transform: translateY(-50%) rotate(64.5deg);
}
.lineAction_line.line7.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line7.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo7 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.lineAction_line.line7- {
  height: 300%;
  left: -0.6756%;
  transform: translateY(-50%) rotate(-64.5deg);
}
.lineAction_line.line7-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line7-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo7Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}
.lineAction_line.line8 {
  height: 600%;
  left: -20%;
  transform: translateY(-50%) rotate(77deg);
}
.lineAction_line.line8.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line8.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo8 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.lineAction_line.line8::after {
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(13deg);
  opacity: 1;
}
.lineAction_line.line8- {
  height: 600%;
  left: -20%;
  transform: translateY(-50%) rotate(-77deg);
}
.lineAction_line.line8-.start-animation {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}
.lineAction_line.line8-.start-move {
  animation: lineExtend 1s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards, lineMoveTo8Minus 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}
.lineAction_line.line8-::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(-13deg);
  opacity: 1;
}
.lineAction_wrapper {
  width: 100%;
  height: 100%;
}

.moreBtn {
  text-align: left;
  margin-top: 2em;
}
.moreBtn a {
  display: inline-block;
  color: #fff;
  border: 0.0625em solid #fff;
  padding: 1em 2em;
  font-size: 0.8125em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.moreBtn a .btn-text,
.moreBtn a .btn-hover-text {
  display: block;
  transition: transform 0.3s ease;
}
.moreBtn a .btn-hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-150%);
  color: #3c6c4a;
}
.moreBtn a:hover {
  background-color: #fff;
  color: #3c6c4a;
  opacity: 1;
}
.moreBtn a:hover .btn-text {
  transform: translateY(150%);
}
.moreBtn a:hover .btn-hover-text {
  transform: translate(-50%, -50%) translateY(0);
}

.lineWaveAction {
  position: relative;
  width: 100%;
  height: 5.75em;
  overflow: hidden;
}
.lineWaveAction_line {
  position: absolute;
  width: 100%;
  height: 0.0625em;
  background-color: #fff;
  top: 0;
}
.lineWaveAction_line.line1 {
  animation: waveMoveDown 3s ease-in-out 0s infinite;
}
.lineWaveAction_line.line2 {
  animation: waveMoveDown 3s ease-in-out 0.8s infinite;
}
.lineWaveAction_line.line3 {
  animation: waveMoveDown 3s ease-in-out 1.6s infinite;
}
.lineWaveAction_line.line4 {
  animation: waveMoveDown 3s ease-in-out 2.4s infinite;
}

@keyframes waveMoveDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(3em);
  }
}
@keyframes waveMoveDown2 {
  0% {
    opacity: 1;
    transform: translateY(0);
    width: 100%;
  }
  100% {
    opacity: 0;
    transform: translateY(2em);
    width: 90%;
  }
}
@keyframes lineExtend {
  0% {
    height: 0;
    top: 0%;
    transform: translateY(0);
  }
  100% {
    height: 100%;
    top: 0%;
    transform: translateY(0);
  }
}
@keyframes lineMoveTo8 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: -20%;
    top: 50%;
    height: 600%;
    transform: translateY(-50%) rotate(77deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo8Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: -20%;
    top: 50%;
    height: 600%;
    transform: translateY(-50%) rotate(-77deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo7 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: -0.6756%;
    top: 50%;
    height: 300%;
    transform: translateY(-50%) rotate(64.5deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo7Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: -0.6756%;
    top: 50%;
    height: 300%;
    transform: translateY(-50%) rotate(-64.5deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo6 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 5.6545%;
    top: 50%;
    height: 250%;
    transform: translateY(-50%) rotate(52.5deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo6Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 5.6545%;
    top: 50%;
    height: 250%;
    transform: translateY(-50%) rotate(-52.5deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo5 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 8.61%;
    top: 50%;
    height: 180%;
    transform: translateY(-50%) rotate(41deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo5Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 8.61%;
    top: 50%;
    height: 180%;
    transform: translateY(-50%) rotate(-41deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo4 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 10.255%;
    top: 50%;
    height: 130%;
    transform: translateY(-50%) rotate(30deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo4Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 10.255%;
    top: 50%;
    height: 130%;
    transform: translateY(-50%) rotate(-30deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo3 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 11.182%;
    top: 50%;
    height: 120%;
    transform: translateY(-50%) rotate(20deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo3Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 11.182%;
    top: 50%;
    height: 120%;
    transform: translateY(-50%) rotate(-20deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo2 {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 11.562%;
    top: 50%;
    height: 110%;
    transform: translateY(-50%) rotate(10deg);
    opacity: 0.6;
  }
}
@keyframes lineMoveTo2Minus {
  0% {
    left: 11.815%;
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    left: 11.562%;
    top: 50%;
    height: 110%;
    transform: translateY(-50%) rotate(-10deg);
    opacity: 0.6;
  }
}
body,
main {
  background-color: #3c6c4a;
}

.recruit {
  overflow: visible;
}
.recruit .recruitMv {
  padding-block: 15em 23.75em;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv {
    padding-block: 11em 17.75em;
  }
}
.recruit .recruitMv_bg {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 170%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv_bg {
    top: 0%;
    left: 0%;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    width: 100%;
    opacity: 0.7;
  }
  .recruit .recruitMv_bg.elm {
    opacity: 0;
  }
  .recruit .recruitMv_bg.elm.elm3 {
    transition-delay: 0.6s;
  }
  .recruit .recruitMv_bg.elm.fade-in {
    opacity: 0.7;
  }
}
.recruit .recruitMv_inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv_inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
.recruit .recruitMv_inner_img {
  width: 39%;
  margin-left: 2.2%;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv_inner_img {
    width: 84%;
    margin-inline: auto;
    margin-top: 4em;
  }
  .recruit .recruitMv_inner_img.elm {
    transition-delay: 0.3s;
  }
}
.recruit .recruitMv_ttlArea {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv_ttlArea {
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
  }
}
.recruit .recruitMv_ttlArea.elm {
  transform: translateY(-25%);
  -webkit-transform: translateY(-25%);
  -ms-transform: translateY(-25%);
}
.recruit .recruitMv_ttlArea.elm.fade-in {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.recruit .recruitMv_ttlArea .ttl_en {
  font-size: 4.375em;
  line-height: 1;
}
.recruit .recruitMv_ttlArea .ttl_ja {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.5em;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMv_ttlArea .ttl_ja {
    text-align: center;
  }
}
.recruit .recruitPromise {
  margin-top: -16em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .recruitPromise {
    margin-top: -12em;
    background-color: #3c6c4a;
    padding-top: 2em;
  }
}
.recruit .recruitPromise_ttlArea .ttl_ja {
  color: #fff;
  font-size: 1.875em;
  font-weight: 500;
  margin-top: 0.8em;
}
.recruit .recruitPromise_leadArea {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  background-image: url("../../img/recruit/promise_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recruit .recruitPromise_leadArea .lead {
  color: #fff;
  font-size: 0.875em;
  font-weight: 500;
  line-height: 2.15;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit .recruitPromise_leadArea .lead {
    font-size: 1.1em;
    line-height: 2.5;
    text-align: justify;
    width: 90%;
    margin-inline: auto;
  }
}
.recruit .recruitJob {
  position: relative;
  z-index: 3;
  background-color: #1e1e1e;
  padding-block: 4.0625em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit .recruitJob_ttlArea {
  text-align: center;
}
.recruit .recruitJob_ttlArea .ttl_ja {
  color: #fff;
  font-size: 1.875em;
  font-weight: 500;
  margin-top: 0.8em;
}
.recruit .recruitJob_ttlArea .ttl_lead {
  font-size: 1.5625em;
  margin-top: 1.5em;
  color: #fff;
}
.recruit .recruitJob_ttlArea .ttl_txt {
  color: #fff;
  font-size: 0.75em;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_ttlArea .ttl_txt {
    font-size: 1em;
  }
}
.recruit .recruitJob_inner {
  margin-top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_inner {
    flex-direction: column;
  }
}
.recruit .recruitJob_inner_img {
  width: 47.5%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_inner_img {
    width: 100%;
  }
}
.recruit .recruitJob_inner_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit .recruitJob_inner_jobList {
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_inner_jobList {
    width: 100%;
    margin-top: 4em;
    font-size: 1.15em;
  }
}
.recruit .recruitJob_inner_jobList_item:nth-of-type(n + 2) {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 0.0625em solid #fff;
}
.recruit .recruitJob_inner_jobList_item_ttl_name {
  display: inline-block;
  font-size: 1.125em;
  font-weight: bold;
  line-height: 1;
  color: #000;
  padding: 0.5em 2em;
  border-radius: 0.3em;
  background-color: #fff;
}
.recruit .recruitJob_inner_jobList_item_content {
  margin-top: 1.5em;
}
.recruit .recruitJob_inner_jobList_item_content .contJob {
  font-size: 0.875em;
  font-weight: bold;
  line-height: 1.42;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_inner_jobList_item_content .contJob {
    font-size: 1.1em;
  }
}
.recruit .recruitJob_inner_jobList_item_content .contJob:nth-of-type(n + 2) {
  margin-top: 0.2em;
}
.recruit .recruitJob_inner_jobList_item_txtBlock_txt {
  font-size: 0.75em;
  margin-top: 1.5em;
  letter-spacing: 0;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .recruit .recruitJob_inner_jobList_item_txtBlock_txt {
    font-size: 1em;
  }
}
.recruit .recruitSupport {
  position: relative;
  z-index: 5;
  background-color: #3c6c4a;
  padding-block: 4.6875em;
  color: #fff;
  will-change: transform;
}
.recruit .recruitSupport_group {
  margin-top: 2.5em;
  overflow: hidden;
}
.recruit .recruitSupport_group_slideBlock {
  width: 100%;
}
.recruit .recruitSupport_group_slideBlock:nth-of-type(n + 2) {
  margin-top: 5em;
}
.recruit .recruitSupport_group_slideBlock_slide {
  width: 100%;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__track {
  overflow: visible;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__list {
  align-items: center;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__slide {
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  opacity: 0.4;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__slide .slideImg {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__slide .slideImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__slide.is-active {
  opacity: 1 !important;
  z-index: 2;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__slide.is-visible:not(.is-active) {
  z-index: 1;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__arrow {
  background-color: rgba(255, 255, 255, 0.8);
  width: 3em;
  height: 3em;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__arrow--prev {
  left: 1em;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__arrow--next {
  right: 1em;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__arrow svg {
  fill: #3c6c4a;
}
.recruit .recruitSupport_group_slideBlock_slide .splide__arrow:hover {
  background-color: #fff;
}
.recruit .recruitSupport_group_slideBlock_ttlArea {
  margin-top: 1.8em;
}
.recruit .recruitSupport_group_slideBlock_ttlArea_ttl {
  text-align: center;
  font-size: 1.5625em;
  font-weight: 500;
  color: #fff;
}
.recruit .recruitSupport_group_slideBlock_ttlArea_txt {
  max-width: 65.8em;
  width: 90%;
  margin-inline: auto;
  margin-top: 1.5em;
  font-size: 0.875em;
  line-height: 1.43;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .recruit .recruitSupport_group_slideBlock_ttlArea_txt {
    text-align: justify;
    font-size: 1em;
    line-height: 1.8;
  }
}
.recruit .voice {
  padding-block: 3.75em 5em;
  background-color: #1e1e1e;
  position: relative;
  z-index: 5;
}
.recruit .voice .about .message_mainArea_slideBlock {
  padding-bottom: 7em;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide {
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_item {
  position: relative;
  width: 37.5em;
  height: 37.5em;
  z-index: 1;
  transform-origin: center center;
  transition: transform 0.3s ease;
  -webkit-clip-path: polygon(0 28%, 28% 28%, 28% 0, 72% 0, 72% 28%, 100% 28%, 100% 72%, 72% 72%, 72% 100%, 28% 100%, 28% 72%, 0 72%);
  clip-path: polygon(0 28%, 28% 28%, 28% 0, 72% 0, 72% 28%, 100% 28%, 100% 72%, 72% 72%, 72% 100%, 28% 100%, 28% 72%, 0 72%);
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_item_img {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_item_img .imgBlock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_item_img .imgBlock img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide:hover .message_mainArea_slideBlock_item {
  transform: rotate(45deg);
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide:hover .message_mainArea_slideBlock_item .message_mainArea_slideBlock_item_img {
  transform: rotate(-45deg) scale(1.1);
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide:hover .message_mainArea_slideBlock_moreBtn .moreBtn a {
  background-color: #fff;
  color: #3c6c4a;
  opacity: 1;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide:hover .message_mainArea_slideBlock_moreBtn .moreBtn a .btn-text {
  transform: translateY(150%);
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide:hover .message_mainArea_slideBlock_moreBtn .moreBtn a .btn-hover-text {
  transform: translate(-50%, -50%) translateY(0);
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_ttlArea {
  position: absolute;
  bottom: 1em;
  left: 0;
}
@media screen and (max-width: 768px) {
  .recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_ttlArea {
    font-size: 1.5em;
    bottom: 0em;
    left: 1em;
  }
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_ttlArea_year {
  font-size: 0.75em;
  line-height: 1.916;
  color: #fff;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_ttlArea_name {
  font-size: 1.875em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-top: 0.2em;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_txtArea {
  position: absolute;
  bottom: -5em;
  left: 0;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_txtArea_txt {
  font-size: 0.9375em;
  line-height: 1.533;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_txtArea_txt {
    font-size: 1.3em;
  }
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_moreBtn {
  position: absolute;
  bottom: -5em;
  right: 0;
}
.recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_moreBtn .moreBtn a .btn-hover-text {
  color: #1e1e1e;
}
@media screen and (max-width: 768px) {
  .recruit .voice .about .message_mainArea_slideBlock .splide__slide .message_mainArea_slideBlock_moreBtn .moreBtn a {
    font-size: 1.2em;
  }
}
.recruit .careerModel {
  background-color: #3c6c4a;
  padding-block: 3.75em 7.5em;
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit .careerModel {
    padding-block: 3.75em 2.5em;
  }
}
.recruit .careerModel::before {
  content: "";
  position: absolute;
  top: 57%;
  left: 1em;
  width: 1.5em;
  height: 1.5em;
  border-left: 0.125em solid #fff;
  border-top: 0.125em solid #fff;
  transform: translateY(-50%) rotate(135deg) translateX(0);
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1301px) {
  .recruit .careerModel::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .recruit .careerModel::before {
    display: none;
  }
}
.recruit .careerModel.is-scrolled-end::before {
  opacity: 1;
  animation: scrollArrowLeft 1.5s ease-in-out infinite;
}
.recruit .careerModel_inner {
  color: #fff;
  font-weight: 500;
  margin-left: 10%;
  margin-left: auto;
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  align-items: stretch;
  margin-top: 4.375em;
}
@media screen and (max-width: 1300px) {
  .recruit .careerModel_inner {
    justify-content: flex-start;
    padding-inline: 5%;
    margin-inline: 0 auto;
    overflow-x: scroll;
    padding-bottom: 3em;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
  }
  .recruit .careerModel_inner::-webkit-scrollbar {
    height: 0.5em;
  }
  .recruit .careerModel_inner::-webkit-scrollbar-track {
    background: transparent;
  }
  .recruit .careerModel_inner::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0.25em;
  }
  .recruit .careerModel_inner::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.5);
  }
  .recruit .careerModel_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1em;
    width: 1.5em;
    height: 1.5em;
    border-right: 0.125em solid #fff;
    border-bottom: 0.125em solid #fff;
    transform: translateY(-50%) rotate(-45deg);
    animation: scrollArrowRight 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
  }
}
@media screen and (max-width: 1300px) and (max-width: 768px) {
  .recruit .careerModel_inner::after {
    display: none;
  }
}
@media screen and (max-width: 1300px) {
  .recruit .careerModel_inner.is-scrolled::after {
    opacity: 0;
    animation: none;
  }
}
@media screen and (max-width: 768px) {
  .recruit .careerModel_inner {
    flex-direction: column;
  }
}
@keyframes scrollArrowRight {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(-45deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-0.05em) translateX(0.5em) rotate(-45deg);
    opacity: 1;
  }
}
@keyframes scrollArrowLeft {
  0%, 100% {
    transform: translateY(-0.05em) translateX(0.5em) rotate(-45deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(0) translateX(0) rotate(-45deg);
    opacity: 1;
  }
}
.recruit .careerModel_block {
  width: 16.25em;
  width: 17.25em;
  border-right: 0.125em solid #fff;
  flex-shrink: 0;
}
.recruit .careerModel_block:nth-of-type(n + 2) {
  margin-left: 2.5em;
}
.recruit .careerModel_block:last-of-type {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .recruit .careerModel_block {
    width: 70%;
    margin-inline: auto;
    border: none;
    font-size: 1.3em;
  }
  .recruit .careerModel_block:nth-of-type(n + 2) {
    margin-left: auto;
    margin-top: 3em;
  }
}
.recruit .careerModel_block_ttl {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #3c6c4a;
  border: 0.125em solid #fff;
  border-right: none;
  padding: 1em 0;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 78%;
}
@media screen and (max-width: 768px) {
  .recruit .careerModel_block_ttl {
    width: 87%;
    padding-left: 1em;
    transform: translateX(0.5em);
  }
}
.recruit .careerModel_block_ttl::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.49em;
  width: 0;
  height: 0;
  border-top: 1.5025em solid transparent;
  border-bottom: 1.5025em solid transparent;
  border-left: 1.5em solid #3c6c4a;
  border-right: none;
  z-index: 1;
}
.recruit .careerModel_block_ttl::before {
  content: "";
  position: absolute;
  top: -0.125em;
  right: -1.615em;
  width: 0;
  height: 0;
  border-top: 1.6275em solid transparent;
  border-bottom: 1.6275em solid transparent;
  border-left: 1.625em solid #fff;
  border-right: none;
  z-index: 0;
}
.recruit .careerModel_block_item {
  padding-right: 1.5em;
}
@media screen and (max-width: 768px) {
  .recruit .careerModel_block_item {
    padding-right: 0;
    text-align: center;
  }
}
.recruit .careerModel_block_item:nth-of-type(2) {
  margin-top: 2.5em;
}
.recruit .careerModel_block_item:nth-of-type(3) {
  margin-top: 1.5em;
}
.recruit .careerModel_block_item_group {
  margin-top: 0.8em;
}
.recruit .careerModel_block_item_ttl {
  font-size: 0.75em;
}
.recruit .careerModel_block_item .income {
  margin-top: 0.8em;
}
.recruit .careerModel_block_item .income_txt {
  font-size: 0.75em;
  font-weight: 400;
}
.recruit .careerModel_block_item .income_basic {
  font-size: 1.25em;
  line-height: 1.4;
}
.recruit .careerModel_block_item ul {
  margin-top: 0.2em;
}
.recruit .careerModel_block_item ul li {
  font-size: 0.75em;
  line-height: 1.66;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}
.recruit .careerVision {
  background-color: #3c6c4a;
  padding-block: 3.75em 7.5em;
  position: relative;
  z-index: 3;
}
.recruit .careerVision_ben {
  max-width: 46em;
  width: 90%;
  margin-inline: auto;
  margin-top: 1.375em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit .careerVision_ben {
    margin-top: 3em;
  }
}
.recruit .careerVision_ben_circle {
  width: 23.875em;
  height: 23.875em;
  border-radius: 50%;
  background-color: #fff;
  color: #3c6c4a;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .recruit .careerVision_ben_circle {
    margin-inline: auto;
  }
}
.recruit .careerVision_ben_circle.circle02 {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 1;
  background-color: transparent;
  border: 0.125em solid #fff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .recruit .careerVision_ben_circle.circle02 {
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    margin-top: -5em;
  }
}
.recruit .careerVision_ben_circle.circle02 .circle_txtArea {
  top: 56%;
}
.recruit .careerVision_ben_circle .circle_txtArea {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.recruit .careerVision_ben_circle .circle_txtArea_ttl {
  font-size: 1.5625em;
  font-weight: bold;
}
.recruit .careerVision_ben_circle .circle_txtArea_txt {
  font-size: 1em;
  font-weight: bold;
  margin-top: 1.5em;
  line-height: 1.43;
}
.recruit .jobDescription {
  position: relative;
  z-index: 3;
  background-color: #fff;
  padding-block: 3.75em 6.25em;
  color: #000;
}
.recruit .jobDescription .recruitJob_ttlArea .ttl_en {
  color: #000;
}
.recruit .jobDescription .recruitJob_ttlArea .ttl_ja {
  color: #000;
}
.recruit .jobDescription_inner {
  margin-top: 3.75em;
}
.recruit .jobDescription_table {
  width: 100%;
  border-collapse: collapse;
  border-top: 0.0625em solid #000;
}
.recruit .jobDescription_table tr {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  border-bottom: 0.0625em solid #000;
}
.recruit .jobDescription_table th,
.recruit .jobDescription_table td {
  font-size: 0.9375em;
  font-weight: 500;
  padding-block: 0.7em 0.8em;
  padding-left: 3%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .recruit .jobDescription_table th,
  .recruit .jobDescription_table td {
    font-size: 1em;
  }
}
.recruit .jobDescription_table th {
  width: 22%;
  text-align: left;
}
.recruit .jobDescription_table td {
  width: 78%;
  text-align: left;
  border-left: 0.0666em solid #000;
}
.recruit .jobDescription_table td .note {
  font-size: 0.8em;
  line-height: 1.55;
}
.recruit .recruitMission {
  position: relative;
  z-index: 3;
  background-color: #3c6c4a;
  padding-block: 4.75em 5.625em;
  color: #fff;
}
.recruit .recruitMission_img {
  margin-top: 3.75em;
}
.recruit .recruitMission_inner {
  margin-top: 2.8125em;
}
.recruit .recruitMission_inner_txtBlock_txt {
  font-size: 0.75em;
  line-height: 1.833;
  letter-spacing: 0;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .recruit .recruitMission_inner_txtBlock_txt {
    font-size: 1em;
    line-height: 2.2;
  }
}

.voice-modal .voice-modalBlock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.voice-modal .voice-modalBlock.is-active {
  opacity: 1;
  visibility: visible;
}
.voice-modal .voice-modalBlock .voice-modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.voice-modal .voice-modalBlock .voice-modal_content {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  max-width: 52em;
  width: 90%;
  margin-inline: auto;
  display: block;
  border: none;
  padding: 0;
  background: transparent;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_content {
    margin-top: 6em;
  }
}
.voice-modal .voice-modalBlock.is-active .voice-modal_content {
  transform: scale(1);
}
.voice-modal .voice-modalBlock .voice-modal_inner {
  position: relative;
  max-width: 52em;
  max-height: calc(100vh - 4em - 4em);
  width: 100%;
  margin-inline: auto;
  padding-bottom: 2em;
  color: #000;
  overflow-y: auto;
  overflow-x: hidden;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0;
  padding-right: 1em;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_inner {
    padding-right: 0;
    padding-bottom: 10em;
  }
}
.voice-modal .voice-modalBlock .voice-modal_inner::-webkit-scrollbar {
  width: 0.5em;
}
.voice-modal .voice-modalBlock .voice-modal_inner::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.25em;
  margin: 0.5em 0;
}
.voice-modal .voice-modalBlock .voice-modal_inner::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0.25em;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin: 0.5em 0;
}
.voice-modal .voice-modalBlock .voice-modal_inner::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.voice-modal .voice-modalBlock .voice-modal_main {
  width: 100%;
  text-align: center;
}
.voice-modal .voice-modalBlock .voice-modal_close {
  position: absolute;
  top: -1.5em;
  right: -3em;
  width: 2.5em;
  height: 2.5em;
  border: none;
  color: #fff;
  background-color: transparent;
  font-size: 2em;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_close {
    top: -2.5em;
    right: -0.6em;
  }
}
.voice-modal .voice-modalBlock .voice-modal_close::before, .voice-modal .voice-modalBlock .voice-modal_close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5em;
  height: 0;
  border-top: 2px solid currentColor;
  pointer-events: none;
}
.voice-modal .voice-modalBlock .voice-modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.voice-modal .voice-modalBlock .voice-modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.voice-modal .voice-modalBlock .voice-modal_close:hover {
  background-color: #3c6c4a;
  color: #fff;
}
.voice-modal .voice-modalBlock .voice-modal_img {
  width: 100%;
  text-align: center;
  overflow: hidden;
  border-radius: 0.5em;
}
.voice-modal .voice-modalBlock .voice-modal_ttlArea {
  margin-top: 2em;
  text-align: center;
}
.voice-modal .voice-modalBlock .voice-modal_ttlArea_headline {
  font-size: 1.75em;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_ttlArea_headline {
    font-size: 1.5em;
    line-height: 1.8;
  }
}
.voice-modal .voice-modalBlock .voice-modal_ttlArea_date {
  font-size: 0.75em;
  margin-top: 2.66em;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_ttlArea_date {
    font-size: 1em;
  }
}
.voice-modal .voice-modalBlock .voice-modal_ttlArea_name {
  font-size: 1.875em;
  font-weight: 500;
  margin-top: 0.3em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_ttlArea_name {
    font-size: 2.2em;
  }
}
.voice-modal .voice-modalBlock .voice-modal_visionBlock {
  margin-top: 5em;
}
.voice-modal .voice-modalBlock .voice-modal_visionBlock_leadArea_ttl {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.voice-modal .voice-modalBlock .voice-modal_visionBlock_leadArea_content {
  font-size: 1.25em;
  line-height: 1.5;
  margin-top: 0.4em;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_visionBlock_leadArea_content {
    font-size: 1.4em;
  }
}
.voice-modal .voice-modalBlock .voice-modal_visionBlock_items {
  margin-top: 0.8em;
  padding-top: 1.2em;
  border-top: 0.0625em solid #fff;
}
.voice-modal .voice-modalBlock .voice-modal_visionBlock_items_txt {
  font-size: 0.875em;
  line-height: 1.85;
  text-align: justify;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .voice-modal .voice-modalBlock .voice-modal_visionBlock_items_txt {
    font-size: 1em;
  }
}/*# sourceMappingURL=style-recruit.css.map */