@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
@keyframes gnav {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes wave {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    opacity: 0;
    scale: 1.1 1.2;
  }
}
@keyframes bounce {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
  100% {
    scale: 1;
  }
}
@keyframes bound {
  0% {
    scale: 0;
  }
  25% {
    scale: 1.1;
  }
  50% {
    scale: 1;
  }
  75% {
    scale: 1.05;
  }
  100% {
    scale: 1;
  }
}
/* recruit */
/* ============================================ */
main {
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
}

.more {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .more {
    margin-top: 30px;
  }
}
.more a {
  display: flex;
  width: 340px;
  justify-content: center;
  position: relative;
  padding: 20px 70px 20px 20px;
  border-radius: 100px;
  background: #de9365;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .more a {
    width: 100%;
    padding: 15px 70px;
    font-size: 1.6rem;
  }
}
.more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 25px;
  height: 13px;
  background: url(../images/common/ico_ar.svg) no-repeat center/cover;
  translate: 0 -50%;
  transition: 0.3s;
  filter: brightness(0) invert(1);
}
@media all and (max-width: 896px) {
  .more a::after {
    right: 20px;
    width: 20px;
    height: 10px;
  }
}

/* recruit top */
/* ============================================ */
body.index header.recruit {
  position: absolute;
  padding-right: 3.125vw;
}
@media all and (max-width: 896px) {
  body.index header.recruit {
    position: sticky;
  }
}
body.index header.recruit #menu-icon {
  display: none;
}
@media all and (max-width: 896px) {
  body.index header.recruit #menu-icon {
    display: block;
  }
}
body.index header.recruit.fixed {
  position: fixed;
  padding-right: calc(1.5vw + 50px);
  transition: none;
  animation: fadein 0.3s ease-out 0s forwards;
}
@media all and (max-width: 896px) {
  body.index header.recruit.fixed {
    position: sticky;
    animation: none;
  }
}
body.index header.recruit.fixed #menu-icon {
  display: block;
}
body.index .bg {
  padding-bottom: 100px;
}
@media all and (max-width: 896px) {
  body.index .bg {
    padding-bottom: 40px;
  }
}

hgroup {
  display: flex;
  flex-direction: column;
}
hgroup p[lang=en] {
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}
@media all and (max-width: 896px) {
  hgroup p[lang=en] {
    margin-bottom: 5px;
    font-size: 2.6rem;
  }
}
hgroup h2 {
  font-weight: 700;
  letter-spacing: 0.1em;
}

.bg {
  padding-bottom: 60px;
  background: url(../images/recruit/bg_recruit.webp) no-repeat center 0/cover;
}
@media all and (max-width: 896px) {
  .bg {
    padding-bottom: 40px;
  }
}

.mv {
  display: flex;
  opacity: 0;
  animation: fadein 0.3s ease-out 0.3s forwards;
}
.mv nav {
  flex: none;
  position: relative;
  z-index: 3;
  width: 25vw;
  margin-top: 30px;
}
@media all and (max-width: 896px) {
  .mv nav {
    display: none;
  }
}
.mv nav > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding-inline: 3.125vw 1vw;
}
@media all and (max-width: 896px) {
  .mv nav > ul {
    align-items: stretch;
    gap: 15px;
    padding-inline: 0;
  }
}
.mv nav > ul > li a {
  display: flex;
  position: relative;
  padding-left: 24px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .mv nav > ul > li a {
    padding-left: 0;
    font-size: 1.8rem;
  }
}
.mv nav > ul > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #363628;
  border-right: 2px solid #363628;
  rotate: 45deg;
  translate: 0 -50%;
}
@media all and (max-width: 896px) {
  .mv nav > ul > li a::before {
    content: none;
  }
}
.mv nav > ul > li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 5px;
  background: linear-gradient(to right, #d49161 0%, #b3b1a5 50%, #8ebbc8 100%);
}
@media (hover: hover) {
  .mv nav > ul > li a:hover {
    opacity: 1;
  }
  .mv nav > ul > li a:hover::after {
    animation: gnav 0.3s ease-out 0s forwards;
  }
}
@media all and (max-width: 896px) {
  .mv {
    padding-left: 0;
  }
}
.mv-inner {
  position: relative;
}
.mv-swiper {
  max-height: 85dvh;
  border-radius: 8px 0 0 8px;
}
@media all and (max-width: 896px) {
  .mv-swiper {
    max-height: 310px;
  }
}
.mv-swiper img {
  width: 100%;
}
@media all and (max-width: 896px) {
  .mv-swiper img {
    border-radius: 8px;
  }
}
.mv h1 {
  position: absolute;
  left: -20vw;
  bottom: 0.5vw;
  z-index: 2;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .mv h1 {
    left: -3vw;
  }
}
@media all and (max-width: 896px) {
  .mv h1 {
    bottom: -60px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.mv h1 img {
  width: 65.68vw;
}
@media all and (max-width: 896px) {
  .mv h1 img {
    width: 95%;
  }
}

.message {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1240px;
  width: calc(100% - 40px);
  margin: 70px auto 0;
}
@media all and (max-width: 896px) {
  .message {
    flex-direction: column;
    gap: 20px;
  }
}
.message hgroup {
  flex: none;
}
.message .lead {
  display: flex;
  flex-direction: column;
  gap: 2em;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .message .lead {
    gap: 1em;
    font-size: 1.3rem;
    letter-spacing: normal;
  }
}

.shop {
  padding-block: 70px;
}
@media all and (max-width: 896px) {
  .shop {
    padding-block: 30px;
  }
}
.shop ul {
  row-gap: 5px;
}
.shop ul .lead {
  display: none;
}
.shop ul li:nth-child(-n+4) {
  width: calc((100% - 90px) / 4);
}
@media all and (max-width: 896px) {
  .shop ul li:nth-child(-n+4) {
    width: calc((100% - 20px) / 2);
  }
}
.shop ul li a {
  pointer-events: none;
}
.shop .more {
  margin-top: 0;
}
@media all and (max-width: 896px) {
  .shop .more {
    margin-top: -20px;
  }
}

.about {
  position: relative;
  padding-block: 70px;
  background: #fdf6ee;
}
@media all and (max-width: 896px) {
  .about {
    padding-block: 30px 40px;
  }
}
.about-inner {
  max-width: 1200px;
  width: calc(100% - 40px);
  margin-inline: auto;
  text-align: center;
}
.about-inner hgroup {
  align-items: center;
}
.about-inner .lead {
  margin-block: 30px 50px;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .about-inner .lead {
    margin-block: 16px 24px;
    font-size: 1.3rem;
  }
}
.about-inner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .about-inner ul {
    justify-content: center;
    gap: 16px 8px;
  }
}
.about-inner ul li {
  width: calc((100% - 100px) / 3);
}
@media all and (max-width: 896px) {
  .about-inner ul li {
    width: calc((100% - 16px) / 3);
  }
}
.about-inner ul li:nth-child(-n+2) {
  width: calc((100% - 50px) / 2);
}
@media all and (max-width: 896px) {
  .about-inner ul li:nth-child(-n+2) {
    width: calc((100% - 8px) / 2);
  }
}
.about-inner ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
  padding-block: 40px 50px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .about-inner ul li a {
    padding-block: 20px 30px;
  }
}
.about-inner ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background: linear-gradient(to right, #d49161 0%, #b3b1a5 25%, #8ebbc8 50%, #b3b1a5 75%, #d49161 100%);
  background-size: 200% 100%;
  transition: 0.3s;
}
.about-inner ul li a i {
  width: 100px;
  margin-bottom: 20px;
}
@media all and (max-width: 896px) {
  .about-inner ul li a i {
    width: 60px;
  }
}
.about-inner ul li a hgroup {
  transition: 0.3s;
}
.about-inner ul li a hgroup p[lang=en] {
  margin-bottom: 5px;
  font-size: 2.4rem;
}
@media all and (max-width: 896px) {
  .about-inner ul li a hgroup p[lang=en] {
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .about-inner ul li a:hover {
    opacity: 1;
  }
  .about-inner ul li a:hover::after {
    height: 10px;
    background-position: 100% 0;
  }
}
.about-inner ul li a:hover i {
  animation: bounce 1s ease-in-out infinite;
}
.about-inner ul li a:hover hgroup {
  letter-spacing: 3px;
}

.interview {
  padding-block: 80px 60px;
  background: url(../images/recruit/bg_recruit.webp) no-repeat center 0/cover;
}
@media all and (max-width: 896px) {
  .interview {
    padding-block: 30px 20px;
  }
}
.interview hgroup {
  align-items: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .interview hgroup {
    margin-bottom: 20px;
  }
}
.interview-inner .swiper {
  padding-bottom: 6.25vw;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper {
    padding: 0 15px 40px;
  }
}
.interview-inner .swiper-wrapper {
  gap: 4vw;
  padding-left: 14.58vw;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-wrapper {
    gap: 0;
    padding-left: 0;
  }
}
.interview-inner .swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-slide {
    gap: 20px;
  }
}
.interview-inner .swiper-slide a {
  display: flex;
  flex-direction: column;
}
.interview-inner .swiper-slide a figure {
  position: relative;
  overflow: hidden;
}
.interview-inner .swiper-slide a figure img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-slide a figure img {
    border-radius: 8px;
  }
}
.interview-inner .swiper-slide a figure figcaption {
  display: inline-flex;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 10px;
  font-size: 1.2rem;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6), -1px 1px 2px rgba(0, 0, 0, 0.6), 1px -1px 2px rgba(0, 0, 0, 0.6), -1px -1px 2px rgba(0, 0, 0, 0.6);
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-slide a figure figcaption {
    font-size: 1rem;
  }
}
.interview-inner .swiper-slide a h3 {
  margin-block: 20px 15px;
  color: #69a5cc;
  font-weight: 600;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-slide a h3 {
    margin-block: 10px 8px;
  }
}
.interview-inner .swiper-slide a p {
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-slide a p {
    font-size: 1.1rem;
  }
}
.interview-inner .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin-inline: 6px !important;
  border: 1px solid #363628;
  background: #fff;
  opacity: 1;
}
@media all and (max-width: 896px) {
  .interview-inner .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin-inline: 4px !important;
  }
}
.interview-inner .swiper-pagination-bullet-active {
  background: #363628;
}

.require {
  position: relative;
  padding: 70px 7.8vw 90px;
  background: url(../images/recruit/bg_require.webp) no-repeat 0 0/100% auto, linear-gradient(135deg, rgb(210, 150, 105) 0%, rgb(227, 204, 148) 50%, rgb(139, 204, 228) 100%);
  background-blend-mode: multiply;
}
@media all and (max-width: 896px) {
  .require {
    padding: 30px 20px 40px;
  }
}
.require::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}
.require-inner {
  position: relative;
  margin-inline: auto;
  text-align: center;
}
.require-inner hgroup {
  align-items: center;
}
.require ul {
  display: flex;
  gap: 80px;
  position: relative;
  z-index: 2;
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .require ul {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-inline: 25px;
  }
}
.require ul li {
  width: calc((100% - 80px) / 2);
}
@media all and (max-width: 896px) {
  .require ul li {
    width: 100%;
  }
}
.require ul li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 20px 24px 24px;
  border-radius: 10px;
  background: #de9365;
  color: #fff;
  font-size: max(1.56vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}
@media all and (max-width: 896px) {
  .require ul li a {
    padding: 15px 50px 15px 20px;
    font-size: 1.4rem;
  }
}
.require ul li a::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}
@media all and (max-width: 896px) {
  .require ul li a::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
  }
}
.require ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 25px;
  height: 13px;
  background: url(../images/recruit/ico_ar.svg) no-repeat center/cover;
  translate: 0 -50%;
  filter: brightness(0) invert(1);
}
@media all and (max-width: 896px) {
  .require ul li a::after {
    right: 20px;
    width: 20px;
    height: 10px;
  }
}
@media (hover: hover) {
  .require ul li a:hover {
    background: #fff;
    color: #de9365;
    opacity: 1;
  }
  .require ul li a:hover::before {
    animation: wave 1.3s ease-out 0s infinite forwards;
  }
  .require ul li a:hover::after {
    filter: none;
  }
}

.hearing .bg {
  position: relative;
  border-radius: 0;
  background: url("../images/recruit/bg_up.webp") no-repeat center top/100% auto, url("../images/recruit/bg_btm.webp") no-repeat center bottom/100% auto;
}
@media all and (max-width: 896px) {
  .hearing .bg {
    padding-block: 80px 40px;
  }
}
.hearing .bg::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(transparent, #fff 60%, #fff 70%, transparent);
  pointer-events: none;
}
.hearing .title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7.55vw;
  max-width: 1520px;
  width: calc(100% - 40px);
  margin-inline: auto;
  font-weight: 700;
}
@media all and (max-width: 896px) {
  .hearing .title-area {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.hearing .title-area .exp {
  width: 44vw;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp {
    width: 100%;
  }
}
.hearing .title-area .exp em {
  display: inline-flex;
  align-items: baseline;
  margin-bottom: 1vw;
  padding: 10px 20px;
  border-radius: 8px;
  background: #fff;
  color: #73b5d1;
  font-style: normal;
  font-size: max(0.83vw, 1rem);
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp em {
    margin-bottom: 12px;
    padding-inline: 15px;
    font-size: 1.2rem;
  }
}
.hearing .title-area .exp em i {
  margin-right: 0.5em;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: max(0.83vw, 1rem);
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp em i {
    font-size: 1.4rem;
  }
}
.hearing .title-area .exp h1 {
  font-size: max(2vw, 2.2rem);
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp h1 {
    font-size: 1.7rem;
    line-height: 1.5;
  }
}
.hearing .title-area .exp .status {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #363628;
  font-size: max(1.25vw, 1.6rem);
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp .status {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 1.4rem;
  }
}
.hearing .title-area .exp .status span {
  display: flex;
  font-size: max(1.04vw, 1.4rem);
}
@media all and (max-width: 896px) {
  .hearing .title-area .exp .status span {
    font-size: 1.2rem;
  }
}
.hearing .title-area figure {
  flex: none;
  width: calc(56vw + 100px);
  max-width: 1035px;
  margin-right: -15.63vw;
}
@media all and (max-width: 896px) {
  .hearing .title-area figure {
    width: 100%;
    margin-right: 0;
  }
}
.hearing .title-area figure img {
  border-radius: 100px;
}
@media all and (max-width: 896px) {
  .hearing .title-area figure img {
    border-radius: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
.hearing-inner {
  max-width: 1230px;
  width: calc(100% - 40px);
  margin-inline: auto;
}
.hearing h2 {
  display: inline-flex;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .hearing h2 {
    margin-bottom: 12px;
    padding-bottom: 7px;
    font-size: 1.6rem;
  }
}
.hearing h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #d49161 0%, #b3b1a5 50%, #8ebbc8 100%);
}
.hearing .career-path {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -4vw;
  padding: 60px 7.8vw 120px;
  border-radius: 40px;
  background: #fff;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .hearing .career-path {
    margin-top: 30px;
    padding: 0;
    border-radius: 20px;
    background: none;
  }
}
.hearing .career-path h2 {
  align-self: flex-start;
}
.hearing .career-path ol li {
  position: relative;
  padding-block: 15px;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li {
    padding-block: 5px;
  }
}
.hearing .career-path ol li dl {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl {
    gap: 30px;
  }
}
.hearing .career-path ol li dl dt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #73b5d1;
  color: #fff;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dt {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}
.hearing .career-path ol li dl dt::before {
  content: "";
  position: absolute;
  right: -16px;
  width: 18px;
  height: 15px;
  background: #73b5d1;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dt::before {
    right: -10px;
  }
}
.hearing .career-path ol li dl dt::after {
  content: "";
  position: absolute;
  left: 110px;
  width: 24px;
  height: 24px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #73b5d1;
  outline: 2px solid #73b5d1;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dt::after {
    left: 68px;
    width: 16px;
    height: 16px;
  }
}
.hearing .career-path ol li dl dt span {
  margin-top: -8px;
  font-size: 3.4rem;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dt span {
    margin-top: -6px;
    font-size: 1.8rem;
  }
}
.hearing .career-path ol li dl dd {
  position: relative;
  margin-left: 70px;
  padding: 10px 16px;
  border: 2px solid #73b5d1;
  border-radius: 8px;
  color: #73b5d1;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dd {
    margin-left: 30px;
    padding: 5px 10px;
    font-size: 1.1rem;
  }
}
.hearing .career-path ol li dl dd::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -39px;
  width: 39px;
  height: 1px;
  border-top: 2px dotted #73b5d1;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li dl dd::before {
    left: -28px;
    width: 28px;
  }
}
.hearing .career-path ol li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 116px;
  width: 13px;
  height: 100%;
  background: #bbd8e6;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li::after {
    left: 73px;
    width: 6px;
  }
}
.hearing .career-path ol li:first-child::after {
  top: 50%;
  height: 50%;
}
.hearing .career-path ol li:nth-last-child(2)::after {
  height: 150%;
}
.hearing .career-path ol li:last-child dl dt {
  background: #de9365;
}
.hearing .career-path ol li:last-child dl dt::before, .hearing .career-path ol li:last-child dl dt::after {
  outline-color: #de9365;
  background: #de9365;
}
.hearing .career-path ol li:last-child dl dd {
  border-color: #de9365;
  color: #de9365;
}
.hearing .career-path ol li:last-child dl dd::before {
  border-color: #de9365;
}
.hearing .career-path ol li:last-child::before {
  content: "";
  position: absolute;
  top: 145px;
  left: 97px;
  width: 51px;
  height: 45px;
  background: url(../images/recruit/ico_arhead.png) no-repeat center/cover;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li:last-child::before {
    top: 60px;
    left: 51px;
  }
}
.hearing .career-path ol li:last-child::after {
  top: 50%;
  height: 100px;
  background: #e8bfa9;
}
@media all and (max-width: 896px) {
  .hearing .career-path ol li:last-child::after {
    height: 40px;
  }
}
.hearing .detail {
  margin-top: 80px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .hearing .detail {
    margin-top: 70px;
  }
}
.hearing .detail ol {
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media all and (max-width: 896px) {
  .hearing .detail ol {
    gap: 30px;
  }
}
.hearing .detail ol li {
  counter-increment: num;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media all and (max-width: 896px) {
  .hearing .detail ol li {
    flex-direction: column;
    gap: 16px;
  }
}
@media all and (max-width: 896px) {
  .hearing .detail ol li .exp {
    order: -1;
  }
}
.hearing .detail ol li .exp h3 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 3.5em;
  color: #4179af;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .hearing .detail ol li .exp h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.hearing .detail ol li .exp h3::before {
  content: counter(num, decimal-leading-zero) ".";
  position: absolute;
  top: -8px;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  line-height: 1;
}
@media all and (max-width: 896px) {
  .hearing .detail ol li .exp h3::before {
    top: -5px;
    font-size: 3rem;
  }
}
.hearing .detail ol li figure {
  flex: none;
  width: min(32vw, 615px);
}
@media all and (max-width: 896px) {
  .hearing .detail ol li figure {
    width: 100%;
  }
}
.hearing .detail ol li figure img {
  border-radius: 20px;
}
@media all and (max-width: 896px) {
  .hearing .detail ol li figure img {
    aspect-ratio: 16/9;
    object-fit: cover;
  }
}
.hearing .schedule {
  margin-top: 40px;
  padding: 40px 60px;
  border-radius: 40px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .hearing .schedule {
    margin-top: 24px;
    padding: 0;
    border-radius: 20px;
    background: none;
  }
}
.hearing .schedule .table-wrap {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .hearing .schedule .table-wrap {
    margin-top: 5px;
  }
}
.hearing .schedule .table-wrap table tr th {
  position: relative;
  width: 170px;
  padding: 20px;
  background: #73b5d1;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .hearing .schedule .table-wrap table tr th {
    width: auto;
    padding: 10px 15px 12px;
    font-size: 1.3rem;
    white-space: nowrap;
  }
}
.hearing .schedule .table-wrap table tr th::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed #fff;
}
@media all and (max-width: 896px) {
  .hearing .schedule .table-wrap table tr th::after {
    width: calc(100% - 15px);
  }
}
.hearing .schedule .table-wrap table tr td {
  position: relative;
  padding: 20px 30px;
  background: #f7fafc;
  vertical-align: middle;
}
@media all and (max-width: 896px) {
  .hearing .schedule .table-wrap table tr td {
    padding: 10px 15px 12px;
  }
}
.hearing .schedule .table-wrap table tr td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed #73b5d1;
}
@media all and (max-width: 896px) {
  .hearing .schedule .table-wrap table tr td::after {
    width: calc(100% - 15px);
  }
}
.hearing .schedule .table-wrap table tr:last-child th::after, .hearing .schedule .table-wrap table tr:last-child td::after {
  content: none;
}
.hearing .applicant {
  margin-top: 50px;
  padding: 30px 60px 40px;
  border-radius: 40px;
  background: #fef4ec;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .hearing .applicant {
    margin-top: 30px;
    padding: 10px 20px 20px;
    border-radius: 20px;
  }
}

.career .bg {
  border-radius: 0;
  background-image: url(../images/recruit/career/bg.webp);
}
@media all and (max-width: 896px) {
  .career .bg {
    padding-bottom: 60px;
  }
}
.career .title-area {
  padding-top: 120px;
}
@media all and (max-width: 896px) {
  .career .title-area {
    padding-top: 90px;
  }
}
.career .title-area h1 {
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .career .title-area h1 {
    margin-top: 0;
    font-size: 1.2rem;
  }
}
.career h2 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 16px;
  border-left: 4px solid #d29669;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .career h2 {
    margin-bottom: 16px;
    font-size: 1.6rem;
  }
}
.career h2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(100% - 200px);
  height: 1px;
  background: #666;
}
@media all and (max-width: 896px) {
  .career h2::after {
    width: calc(100% - 160px);
  }
}
.career .path {
  padding-top: 80px;
  line-height: 2.2;
}
@media all and (max-width: 896px) {
  .career .path {
    padding-top: 32px;
    line-height: 2;
  }
}
.career .path .note {
  margin: 1em 0 0 1em;
  text-indent: -1em;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .career .path .note {
    font-size: 1.05rem;
    line-height: 1.75;
  }
}
.career .path figure {
  text-align: center;
}
.career .path figure img {
  width: 80%;
  margin-top: 40px;
}
@media all and (max-width: 896px) {
  .career .path figure img {
    width: 100%;
    margin-top: 16px;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
  }
}
.career .work {
  padding-top: 100px;
}
@media all and (max-width: 896px) {
  .career .work {
    padding-top: 30px;
  }
}
.career .work h3 {
  margin-bottom: 40px;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background: linear-gradient(90deg, #d29c74 0%, #94cee4 100%);
}
@media all and (max-width: 896px) {
  .career .work h3 {
    margin-bottom: 14px;
    padding: 5px 16px 8px;
    font-size: 1.4rem;
  }
  .career .work h3:first-of-type {
    margin-top: 20px;
  }
}
.career .work h4 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .career .work h4 {
    font-size: 1.6rem;
  }
}
.career .work h5 {
  margin-bottom: 15px;
  color: #69a5cc;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .career .work h5 {
    font-size: 1.6rem;
  }
}
.career .work .staff h4 {
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .career .work .staff h4 {
    margin-bottom: 2px;
  }
}
.career .work .staff .exp {
  display: flex;
  gap: 40px;
  line-height: 2.2;
}
@media all and (max-width: 896px) {
  .career .work .staff .exp {
    flex-direction: column;
    gap: 30px;
    line-height: 2;
  }
}
.career .work .staff .exp-inner {
  width: calc(50% - 40px);
}
@media all and (max-width: 896px) {
  .career .work .staff .exp-inner {
    width: 100%;
  }
}
.career .work .staff .exp figure {
  width: 50%;
}
@media all and (max-width: 896px) {
  .career .work .staff .exp figure {
    width: 100%;
  }
}
.career .work .staff .exp figure img {
  border-radius: 16px;
}
.career .work .staff .schedule {
  margin-top: 50px;
  padding: 30px 4vw 40px;
  border-radius: 50px;
  background: #fff;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule {
    margin-top: 30px;
    padding: 20px;
    border-radius: 20px;
    font-size: 1.3rem;
  }
}
.career .work .staff .schedule .acd-schedule-label {
  display: block;
  position: relative;
  cursor: pointer;
}
.career .work .staff .schedule .acd-schedule-label::before, .career .work .staff .schedule .acd-schedule-label::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 2px;
  background: #363628;
  transition: 0.3s;
}
.career .work .staff .schedule .acd-schedule-label::after {
  transform: translateY(-50%) rotate(-90deg);
}
.career .work .staff .schedule .acd-schedule-label span {
  display: inline-flex;
  position: relative;
  padding-bottom: 10px;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .acd-schedule-label span {
    font-size: 1.5rem;
  }
}
.career .work .staff .schedule .acd-schedule-label span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #d49161 0%, #b3b1a5 50%, #8ebbc8 100%);
}
.career .work .staff .schedule .acd-schedule-content {
  height: 0;
  opacity: 0;
  padding: 0 20px;
  transition: 0.3s;
  visibility: hidden;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .acd-schedule-content {
    padding-inline: 0;
  }
}
.career .work .staff .schedule .acd-schedule-check {
  display: none;
}
.career .work .staff .schedule .acd-schedule-check:checked + .acd-schedule-label::after {
  transform: translateY(-50%);
}
.career .work .staff .schedule .acd-schedule-check:checked + .acd-schedule-label + .acd-schedule-content {
  height: auto;
  opacity: 1;
  padding: 40px 20px 0;
  visibility: visible;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .acd-schedule-check:checked + .acd-schedule-label + .acd-schedule-content {
    padding: 24px 0 0;
  }
}
.career .work .staff .schedule .table-wrap {
  border-radius: 10px;
  overflow: hidden;
}
.career .work .staff .schedule .table-wrap table tr th {
  position: relative;
  width: 190px;
  padding: 20px;
  background: #73b5d1;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  font-size: 2rem;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .table-wrap table tr th {
    width: auto;
    padding: 10px 15px 12px;
    font-size: 1.3rem;
    white-space: nowrap;
  }
}
.career .work .staff .schedule .table-wrap table tr th::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed #fff;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .table-wrap table tr th::after {
    width: calc(100% - 15px);
  }
}
.career .work .staff .schedule .table-wrap table tr td {
  position: relative;
  padding: 20px 40px;
  background: #f7fafc;
  vertical-align: middle;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .table-wrap table tr td {
    padding: 10px 14px 12px;
  }
}
.career .work .staff .schedule .table-wrap table tr td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px dashed #73b5d1;
}
@media all and (max-width: 896px) {
  .career .work .staff .schedule .table-wrap table tr td::after {
    width: calc(100% - 15px);
  }
}
.career .work .staff .schedule .table-wrap table tr:last-child th::after, .career .work .staff .schedule .table-wrap table tr:last-child td::after {
  content: none;
}
.career .work .hq {
  margin-top: 60px;
}
@media all and (max-width: 896px) {
  .career .work .hq {
    margin-top: 40px;
  }
}
.career .work .hq ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media all and (max-width: 896px) {
  .career .work .hq ul {
    gap: 16px;
  }
}
.career .work .hq ul li {
  width: calc((100% - 40px) / 2);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .career .work .hq ul li {
    width: 100%;
    padding: 7px 15px 15px;
  }
}
.career .work .hq ul li .exp {
  padding: 20px 30px;
  background: #eee;
}
@media all and (max-width: 896px) {
  .career .work .hq ul li .exp {
    margin-bottom: 10px;
    padding: 8px 12px 0;
  }
  .career .work .hq ul li .exp-wrap {
    display: flex;
    flex-direction: column;
    flex: none;
    padding-top: 8px;
  }
}
.career .work .hq ul li p {
  padding: 20px 30px;
  line-height: 2.2;
}
@media all and (max-width: 896px) {
  .career .work .hq ul li p {
    padding: 0;
    line-height: 2;
  }
}
.career .work .hq .more a {
  width: 430px;
}

.aboutus .bg {
  padding-bottom: 0;
  border-radius: 0;
  background-image: url(../images/recruit/career/bg.webp);
}
.aboutus .title-area {
  padding-top: 120px;
}
@media all and (max-width: 896px) {
  .aboutus .title-area {
    padding-top: 90px;
  }
}
.aboutus .title-area h1 {
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .aboutus .title-area h1 {
    margin-top: 0;
    font-size: 1.2rem;
  }
}
.aboutus .anc {
  max-width: 960px;
  margin-top: 60px;
  font-size: 1.8rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .anc {
    max-width: initial;
    margin-top: 40px;
    font-size: 1.2rem;
  }
}
.aboutus .anc ul {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media all and (max-width: 896px) {
  .aboutus .anc ul {
    gap: 8px;
  }
}
.aboutus .anc ul li {
  width: calc((100% - 30px) / 3);
  text-align: center;
}
@media all and (max-width: 896px) {
  .aboutus .anc ul li {
    width: calc((100% - 16px) / 3);
  }
}
.aboutus .anc ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 20px 20px 50px;
  background: #dbdbdb;
}
@media all and (max-width: 896px) {
  .aboutus .anc ul li a {
    padding: 10px 5px 24px;
  }
}
.aboutus .anc ul li a::after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-right: 2px solid #363628;
  border-bottom: 2px solid #363628;
  rotate: 45deg;
  translate: -50%;
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .aboutus .anc ul li a::after {
    bottom: 12px;
    width: 10px;
    height: 10px;
    border-right-width: 1px;
    border-bottom-width: 1px;
  }
}
@media (hover: hover) {
  .aboutus .anc ul li a:hover {
    opacity: 1;
    background: #da9e75;
    color: #fff;
  }
  .aboutus .anc ul li a:hover::after {
    border-color: #fff;
  }
}
.aboutus .anc ul li a br {
  display: none;
}
.aboutus .data {
  font-size: 1.8rem;
  line-height: 2;
}
.aboutus .data-inner {
  padding: 60px 125px;
}
@media all and (max-width: 896px) {
  .aboutus .data-inner {
    padding: 30px 0;
  }
}
.aboutus .data .inner {
  max-width: 960px;
}
.aboutus .data h3 {
  display: inline-flex;
  margin-bottom: 30px;
  border-bottom: 1px solid #363628;
  font-size: 1.8rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .data h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
}
.aboutus .data hgroup {
  align-items: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .aboutus .data hgroup p[lang=en] {
    margin-bottom: 0;
    font-size: 2.2rem;
  }
}
@media all and (max-width: 896px) {
  .aboutus .data hgroup {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
.aboutus .data .block-1st > ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-1st > ul {
    gap: 8px;
  }
}
.aboutus .data .block-1st > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 48px) / 3);
  padding: 24px;
  border-radius: 20px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-1st > ul > li {
    width: calc((100% - 16px) / 3);
    padding: 5px;
    border-radius: 8px;
  }
}
.aboutus .data .block-1st > ul > li figure {
  display: flex;
  align-items: center;
  height: 100px;
  margin-bottom: 10px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-1st > ul > li figure {
    height: 40px;
    margin-bottom: 0;
  }
}
.aboutus .data .block-1st > ul > li figure img {
  width: 110px;
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-1st > ul > li figure img {
    width: 40px;
  }
}
.aboutus .data .block-2nd {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 16px;
  }
}
.aboutus .data .block-2nd > ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul {
    flex-direction: row;
    gap: 8px;
  }
}
.aboutus .data .block-2nd > ul:first-child {
  width: calc((100% - 48px) / 3 * 2 + 24px);
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul:first-child {
    width: 100%;
  }
  .aboutus .data .block-2nd > ul:first-child li {
    width: calc((100% - 8px) / 2);
  }
}
.aboutus .data .block-2nd > ul:last-child {
  width: calc((100% - 48px) / 3);
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul:last-child {
    width: 100%;
  }
}
.aboutus .data .block-2nd > ul:last-child li {
  padding-inline: 0;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul:last-child li {
    width: calc((100% - 16px) / 3);
  }
}
.aboutus .data .block-2nd > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 24px 15px;
  border-radius: 20px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li {
    height: auto;
    padding-block: 15px;
    border-radius: 8px;
  }
}
.aboutus .data .block-2nd > ul > li.ratio figure img {
  width: 500px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.ratio figure img {
    width: 280px;
  }
}
.aboutus .data .block-2nd > ul > li.ratio .numwrap {
  position: absolute;
  top: 250px;
}
@media (max-width: 1100px) {
  .aboutus .data .block-2nd > ul > li.ratio .numwrap {
    top: 66%;
  }
}
.aboutus .data .block-2nd > ul > li.ratio .numwrap:first-of-type {
  left: calc(50% - 226px);
}
@media (max-width: 1100px) {
  .aboutus .data .block-2nd > ul > li.ratio .numwrap:first-of-type {
    left: 9%;
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.ratio .numwrap:first-of-type {
    left: 12%;
  }
}
.aboutus .data .block-2nd > ul > li.ratio .numwrap:last-of-type {
  right: calc(50% - 270px);
}
@media (max-width: 1100px) {
  .aboutus .data .block-2nd > ul > li.ratio .numwrap:last-of-type {
    right: 2%;
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.ratio .numwrap:last-of-type {
    right: 1%;
  }
}
.aboutus .data .block-2nd > ul > li.generation figure img {
  width: 400px;
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation figure img {
    width: 240px;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap {
  position: absolute;
}
.aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(1) {
  top: 77px;
  left: 522px;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(1) {
    top: 23%;
    left: calc(50% + 150px);
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(1) {
    top: 27%;
    left: 82%;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(2) {
  top: 119px;
  left: 490px;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(2) {
    top: 35%;
    left: calc(50% + 150px);
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(2) {
    top: 37.5%;
    left: 76%;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(3) {
  top: 161px;
  left: 500px;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(3) {
    top: 47%;
    left: calc(50% + 150px);
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(3) {
    top: 47.5%;
    left: 77.5%;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(4) {
  top: 202px;
  left: 465px;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(4) {
    top: 59%;
    left: calc(50% + 132px);
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(4) {
    top: 58%;
    left: 70%;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(5) {
  top: 244px;
  left: 280px;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(5) {
    top: 71.5%;
    left: calc(50% - 32px);
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap:nth-of-type(5) {
    top: 68.5%;
    left: 42%;
  }
}
.aboutus .data .block-2nd > ul > li.generation .numwrap .num {
  font-size: 4rem;
}
@media (max-width: 1300px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap .num {
    font-size: 2vw;
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .block-2nd > ul > li.generation .numwrap .num {
    font-size: 1.2rem;
  }
}
.aboutus .data .numwrap,
.aboutus .data .number-slots {
  display: flex;
  align-items: baseline;
  font-size: 1.8rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .data .numwrap,
  .aboutus .data .number-slots {
    font-size: 1.2rem;
  }
}
.aboutus .data .slot {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 80px;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  .aboutus .data .slot {
    height: 40px;
  }
}
.aboutus .data .reel {
  transition: transform 0.1s cubic-bezier(0.33, 1, 0.68, 1);
}
.aboutus .data .spinning .reel {
  transition-timing-function: cubic-bezier(0.1, 0.7, 0.3, 1);
}
.aboutus .data .num {
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 7rem;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .aboutus .data .num {
    font-size: 4vw;
  }
}
@media all and (max-width: 896px) {
  .aboutus .data .num {
    font-size: 2rem;
    height: 40px;
    line-height: 40px;
  }
}
.aboutus .data .note {
  font-size: 1.4rem;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .aboutus .data .note {
    font-size: 0.8rem;
  }
}
.aboutus .data .hearing {
  padding-block: 60px 7vw;
  border-radius: 40px;
  background: url(../images/recruit/about/bg_pattern.webp);
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing {
    border-radius: 30px;
    padding-block: 30px;
  }
}
.aboutus .data .hearing h4 {
  padding-block: 5px 8px;
  border-radius: 100px;
  background: #4d4d4d;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing h4 {
    font-size: 1.6rem;
  }
}
.aboutus .data .hearing h4 span {
  position: relative;
  padding-inline: 20px 17px;
}
.aboutus .data .hearing h4 span::before, .aboutus .data .hearing h4 span::after {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  width: 2px;
  height: 24px;
  background: #fff;
  rotate: -30deg;
  translate: 0 -50%;
}
.aboutus .data .hearing h4 span::after {
  left: auto;
  right: 0;
  rotate: 30deg;
}
.aboutus .data .hearing h5 {
  margin-block: 40px 20px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing h5 {
    margin-top: 20px;
    font-size: 1.3rem;
  }
}
.aboutus .data .hearing h5 span {
  position: relative;
  padding-bottom: 20px;
}
.aboutus .data .hearing h5 span::before, .aboutus .data .hearing h5 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 12px;
  border-top: 1px solid #363628;
}
.aboutus .data .hearing h5 span::before {
  left: 0;
  margin-left: -3px;
  border-right: 1px solid #363628;
  transform: skew(30deg);
}
.aboutus .data .hearing h5 span::after {
  right: 0;
  margin-right: -3px;
  border-left: 1px solid #363628;
  transform: skew(-30deg);
}
.aboutus .data .hearing ul {
  position: relative;
}
.aboutus .data .hearing ul.outline {
  height: 24.48vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline {
    height: 300px;
  }
}
.aboutus .data .hearing ul.outline li {
  position: absolute;
  left: 50%;
  scale: 0;
}
.aboutus .data .hearing ul.outline li:nth-child(1) {
  top: -0.78vw;
  width: 14vw;
  margin-left: -22vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(1) {
    top: 0;
    margin-left: -160px;
    width: 131px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(2) {
  top: 10vw;
  width: 21vw;
  margin-left: -3.13vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(2) {
    top: 120px;
    width: 197px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(3) {
  top: 16.4vw;
  width: 16.56vw;
  margin-left: -12vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(3) {
    top: 203px;
    width: 155px;
    margin-left: -140px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(4) {
  top: 0.89vw;
  width: 14vw;
  margin-left: 11vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(4) {
    top: 15px;
    width: 131px;
    margin-left: 45px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(5) {
  top: 15vw;
  width: 15vw;
  margin-left: 8.7vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(5) {
    top: 170px;
    width: 140px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(6) {
  top: 9.64vw;
  width: 18.75vw;
  margin-left: -25.5vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(6) {
    top: 130px;
    width: 175px;
    margin-left: -185px;
  }
}
.aboutus .data .hearing ul.outline li:nth-child(7) {
  top: 4vw;
  width: 16vw;
  margin-left: -10.26vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.outline li:nth-child(7) {
    top: 66px;
    width: 150px;
    margin-left: -105px;
  }
}
.aboutus .data .hearing ul.like {
  height: 35.68vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like {
    height: 380px;
  }
}
.aboutus .data .hearing ul.like li {
  position: absolute;
  left: 50%;
  scale: 0;
}
.aboutus .data .hearing ul.like li:nth-child(1) {
  top: 3.33vw;
  width: 27vw;
  margin-left: -2.3vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(1) {
    top: 32px;
    width: 253px;
    margin-left: -70px;
  }
}
.aboutus .data .hearing ul.like li:nth-child(2) {
  top: 16.15vw;
  width: 24vw;
  margin-left: -26vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(2) {
    top: 165px;
    width: 225px;
    margin-left: -180px;
  }
}
.aboutus .data .hearing ul.like li:nth-child(3) {
  top: 0.52vw;
  width: 23vw;
  margin-left: -25vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(3) {
    top: 0;
    width: 215px;
    margin-left: -160px;
  }
}
.aboutus .data .hearing ul.like li:nth-child(4) {
  top: 18.6vw;
  width: 28vw;
  margin-left: -3vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(4) {
    top: 213px;
    width: 262px;
    margin-left: -76px;
  }
}
.aboutus .data .hearing ul.like li:nth-child(5) {
  top: 9.4vw;
  width: 24.5vw;
  margin-left: -14vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(5) {
    top: 97px;
    width: 229px;
    margin-left: -140px;
  }
}
.aboutus .data .hearing ul.like li:nth-child(6) {
  top: 24.6vw;
  width: 37.6vw;
  margin-left: -16.7vw;
}
@media all and (max-width: 896px) {
  .aboutus .data .hearing ul.like li:nth-child(6) {
    top: 270px;
    width: 352px;
    margin-left: -176px;
  }
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(1) {
  animation: bound 1s ease-in-out 0.5s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(2) {
  animation: bound 1s ease-in-out 0.55s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(3) {
  animation: bound 1s ease-in-out 0.6s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(4) {
  animation: bound 1s ease-in-out 0.65s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(5) {
  animation: bound 1s ease-in-out 0.7s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(6) {
  animation: bound 1s ease-in-out 0.75s forwards;
}
.aboutus .data .hearing ul.is-scrolled li:nth-child(7) {
  animation: bound 1s ease-in-out 0.8s forwards;
}
.aboutus .welfare {
  padding-block: 60px;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .aboutus .welfare {
    padding-block: 40px;
  }
}
.aboutus .welfare .inner {
  max-width: 960px;
}
.aboutus .welfare hgroup {
  align-items: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .aboutus .welfare hgroup {
    margin-bottom: 20px;
  }
}
.aboutus .welfare .lead {
  text-align: center;
  line-height: 2.2;
}
.aboutus .welfare section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section {
    margin-top: 30px;
  }
}
.aboutus .welfare section h3 {
  position: relative;
  margin-bottom: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section h3 {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}
.aboutus .welfare section h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #d49161 0%, #b3b1a5 50%, #8ebbc8 100%);
}
.aboutus .welfare section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section ul {
    gap: 8px;
  }
}
.aboutus .welfare section ul li {
  width: calc((100% - 48px) / 3);
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section ul li {
    width: calc((100% - 8px) / 2);
    padding: 10px;
    font-size: 1.3rem;
  }
}
.aboutus .welfare section ul li figure {
  padding-block: 8px 16px;
  text-align: center;
}
.aboutus .welfare section ul li figure img {
  height: 40px;
}
.aboutus .welfare section ul li h4 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section ul li h4 {
    font-size: 1.6rem;
  }
}
.aboutus .welfare section ul + p {
  width: 100%;
  margin-top: 24px;
  font-size: 1.4rem;
}
@media all and (max-width: 896px) {
  .aboutus .welfare section ul + p {
    margin-top: 16px;
    font-size: 1.3rem;
  }
}
.aboutus .welfare section ul + p.note {
  margin-left: 1em;
  text-indent: -1em;
}
.aboutus .faq {
  padding-block: 60px;
  background: #e1f0f5;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .aboutus .faq {
    padding-block: 30px;
  }
}
.aboutus .faq hgroup {
  align-items: center;
  margin-bottom: 50px;
}
@media all and (max-width: 896px) {
  .aboutus .faq hgroup {
    margin-bottom: 20px;
  }
}
.aboutus .faq dl {
  padding: 40px 5.2vw;
  border-radius: 16px;
  background: #fff;
}
@media all and (max-width: 896px) {
  .aboutus .faq dl {
    padding: 20px 15px;
  }
}
.aboutus .faq dl dt {
  position: relative;
  padding: 2px 0 20px 52px;
  margin-block: 30px 20px;
  border-bottom: 1px dashed #363628;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .faq dl dt {
    margin-block: 20px 12px;
    padding: 0 0 12px 40px;
  }
}
.aboutus .faq dl dt:first-of-type {
  margin-top: 0;
}
.aboutus .faq dl dt::before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #69a5cc;
  border-radius: 50%;
  color: #69a5cc;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .faq dl dt::before {
    top: -4px;
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }
}
.aboutus .faq dl dd {
  position: relative;
  padding-left: 52px;
}
@media all and (max-width: 896px) {
  .aboutus .faq dl dd {
    padding-left: 40px;
  }
}
.aboutus .faq dl dd::before {
  content: "A";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #69a5cc;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
}
@media all and (max-width: 896px) {
  .aboutus .faq dl dd::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }
}

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