@charset "UTF-8";

.Recruit {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-feature-settings: "pkna";
  letter-spacing: 0.05em;
}
.Recruit .Page-hero__text {
  text-align: left;
}

@media (min-width: 769px) {
  .Recruit__container {
    margin: 0 auto;
    max-width: 1000px;
  }
  .Recruit__container_100 {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .Recruit__container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .Recruit__container_100 {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Recruit Navigation */
.Recruit__navigation {
  max-width: 1000px;
  margin: 60px auto;
}
.Recruit__navigation .navigation__list {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #124d96;
}
.Recruit__navigation .list-item {
  flex: 1;
  text-align: center;
}
.Recruit__navigation .list-item a {
  display: block;
  padding: 1.2em 1.5em 1em;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
  transition: background-color 300ms;
}
.Recruit__navigation .list-item a:hover {
  background-color: #88adda;
}
.Recruit__navigation .list-item.current a {
  background-color: #124d96;
  color: #fff;
}

@media (max-width: 768px) {
  .Recruit__navigation {
    margin: 0;
  }
  .Recruit__navigation .navigation__list {
    flex-direction: column;
    gap: 0;
  }
  .Recruit__navigation .list-item {
    border-top: 1px solid #124d96;
  }
  .Recruit__navigation .list-item a {
    border-radius: 0;
    padding: 1em;
  }
}

/* Recruit Message */
.Message {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 7%;
  max-width: 1000px;
  background: url(../img/recruit/triangle-left.svg) no-repeat left top;
  background-size: 48% auto;
}
.Message::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../img/recruit/triangle-right.svg) no-repeat right bottom;
  background-size: 48% auto;
  z-index: -1;
}
.Message__container {
  position: relative;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}
.Message__img {
  background-color: transparent;
  border-radius: 8px;
  overflow: hidden;
}
.Message__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Message__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 55% 40px 50px;
  background-color: transparent;
}
.Message__text--heading {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1em;
  text-align: left;
}
.Message__text p {
  margin: 0 0 1em;
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}
.Message__text .signature {
  margin: 1.5em 0 0;
  font-size: 1rem;
  line-height: 1.2;
  text-align: right;
}
.Message__text .signature img {
  width: 118px;
  vertical-align: bottom;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .Message {
    padding: 30px 20px;
  }
  .Message__container {
    flex-direction: column;
    border-radius: 8px;
  }
  .Message__img {
    border-radius: 0 0 8px 8px;
  }
  .Message__text {
    position: relative;
    padding: 20px 20px;
    border-radius: 8px 8px 0 0;
  }
  .Message__text--heading {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
  }
}

/* Value */
.Value__content {
  position: relative;
  display: block;
}
.Value__content {
  display: block;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.Value__heading {
  position: absolute;
  top: 10%;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 600;
  color: #fff;
  text-align: center;
  z-index: +1;
}
.value-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 100 / 45;
  transition: transform 300ms;
}
.value-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms;
}
.Value__content a:hover .value-img img {
  transform: scale(1.05);
}
.value-word {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  width: 75%;
}
.value-word img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.Value__item a:hover .value-img {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .value-word {
    width: 90%;
  }
}

/* Department */
.Department {
  margin-top: 40px;
}
.Department__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 1em;
}
.Department__content--list {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 5%;
}
.department {
  position: relative;
  flex: 1;
  width: auto;
  height: auto;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.department-eyecatch {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.department-eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.department-eyecatch:hover img {
  transform: scale(1.05);
}
.department-subtitle {
  padding: 1rem 1rem 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25em;
  text-align: center;
}
.department-desc {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.75em;
  text-align: justify;
}
.Department__content--additional {
  margin-top: 50px;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.Department__content--additional .department-subtitle {
  padding: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25em;
  text-align: left;
}
.department-additional {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.department-additional .item-group {
  display: flex;
  gap: 0;
  padding: 1rem;
  border-top: 1px solid #808080;
}
.department-additional .item-group dt {
  flex: 1;
  padding: 0;
  font-size: 1rem;
  line-height: 1.75em;
  font-weight: 600;
}
.department-additional .item-group dd {
  flex: 2;
  padding: 0;
  font-size: 1rem;
  line-height: 1.75em;
  text-align: justify;
}
.department-additional .item-group .small-text {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  line-height: 1.5em;
  color: #333;
}
@media (max-width: 768px) {
  .Department__content--list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .Department__content--additional {
    margin-top: 16px;
  }
  .department-additional .item-group {
    flex-direction: column;
    padding: 1em 0;
  }
  .department-additional .item-group dd {
    padding: 0.5rem 0;
    line-height: 1.5em;
  }
}

/* jobRequirements */
.jobRequirements {
  max-width: 1000px;
  margin: 40px auto;
}
.jobRequirements__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin-bottom: 1em;
}
.jobRequirements__nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  gap: 40px;
}
.jobRequirements__button {
  display: block;
  position: relative;
  aspect-ratio: 480 / 320;
  border-radius: 12px;
  overflow: hidden;
}
.jobRequirements__button img {
  display: block;
  object-fit: cover;
  transition: transform 300ms;
}
.jobRequirements__button:hover img {
  transform: scale(1.05);
}
.jobRequirements__button--text {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 77, 150, 0.7);
  color: #fff;
  line-height: 1.2;
  padding: 1em;
  font-size: clamp(15px, 1vw, 20px);
  font-weight: 700;
  text-align: center;
}
.jobRequirements__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 40px auto;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 0;
}
.jobRequirements__details .details-item {
  display: flex;
  gap: 0;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-right: 1px solid #808080;
}
.jobRequirements__details .details-item:last-child {
  border-bottom: 1px solid #808080;
}
.jobRequirements__details .details-item dt {
  width: 20%;
  max-width: 200px;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5em;
  text-align: left;
  align-self: center;
}
.jobRequirements__details .details-item dd {
  width: 80%;
  max-width: 800px;
  padding: 0.75em 1.5em;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
}

@media (max-width: 768px) {
  .jobRequirements__nav {
    gap: 16px;
  }
  .jobRequirements__button {
    border-radius: 6px;
  }
  .jobRequirements__button--text {
    padding: 0.5em;
  }
  .jobRequirements__details .details-item {
    flex-direction: column;
  }
  .jobRequirements__details .details-item dt {
    width: 100%;
    text-align: center;
  }
  .jobRequirements__details .details-item dd {
    width: 100%;
  }
}

/* Recruit ValuePage */
.ValuePage__content {
  position: relative;
  display: block;
  margin: 0 auto 40px;
  padding: 0;
}
.ValuePage__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin: clamp(40px, 8vw, 100px) auto;
  text-align: center;
}
.ValuePage__content--heading {
  position: relative;
  display: flex;
  margin: 0 auto;
  max-width: 1000px;
  gap: clamp(1.2rem, 4vw, 60px);
  align-items: center;
}
.ValuePage__content .heading-number {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: clamp(7rem, 15vw, 240px);
  font-style: oblique;
  font-weight: 700;
}
.ValuePage__content .heading-wrap {
  display: block;
  margin-top: 1em;
}
.ValuePage__content .heading-main {
  display: inline-block;
  padding: 6px 12px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.5em;
}
.ValuePage__content .heading-text {
  display: block;
  padding: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  color: #222;
}
.ValuePage__content .heading-sub {
  position: absolute;
  top: 0.25em;
  right: 0;
  font-size: clamp(3rem, 6vw, 60px);
  font-style: oblique;
  font-weight: 700;
}
.ValuePage__content--body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1000px;
  background-color: transparent;
}
.ValuePage__content--body::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin: 0;
  width: 100%;
  z-index: -1;
}
.ValuePage__content--body .body-image {
  width: 100%;
  margin: 0;
}
.ValuePage__content--body .body-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}
.ValuePage__content--body .body-text {
  padding: 2em;
  text-align: justify;
  line-height: 1.75em;
  z-index: +1;
}
.ValuePage__content--additional {
  display: flex;
  flex-direction: column;
  margin: 20px auto 0;
  gap: 20px;
  width: 90%;
  max-width: 1000px;
}
.ValuePage__content--additional .additional {
  display: block;
  flex: 1;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.1);
}
.ValuePage__content--additional .additional-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.25em;
  margin-bottom: 0.25em;
}
.ValuePage__content--additional .additional-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5em;
  text-align: justify;
}

@media (max-width: 768px) {
  .ValuePage__content--heading {
    width: 90%;
    align-items: flex-start;
    padding: 3rem 0 1rem;
  }
  .ValuePage__content .heading-sub {
    position: absolute;
    top: 0;
  }
  .ValuePage__content--1st .body-image {
    padding: 0;
  }
  .ValuePage__content--2nd .body-image {
    padding: 20px;
  }
  .ValuePage__content--3rd .ValuePage__content--body {
    flex-direction: column-reverse;
  }
  .ValuePage__content--3rd .body-image {
    padding: 0;
  }
}

@media (min-width: 769px) {
  .ValuePage__content--body {
    position: relative;
    display: block;
    flex-direction: row;
  }
  .ValuePage__content--body::before {
    width: calc(100vw - ((100vw - 1000px) / 2));
  }
  .ValuePage__content .heading-wrap {
    margin-top: -0.5em;
  }
  .ValuePage__content--body .body-image {
    position: absolute;
    top: 0;
    bottom: 0;
    left: auto;
    right: 0;
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
  }
  .ValuePage__content--2nd .ValuePage__content--heading {
    flex-direction: row-reverse;
  }
  .ValuePage__content--2nd .heading-wrap {
    margin-right: 0;
    text-align: right;
  }
  .ValuePage__content--2nd .heading-sub {
    top: 0;
    left: 0;
    right: auto;
  }
  .ValuePage__content--2nd .ValuePage__content--body {
    display: flex;
  }
  .ValuePage__content--2nd .ValuePage__content--body::before {
    left: auto;
    right: 0;
  }
  .ValuePage__content--2nd .ValuePage__content--body .body-image {
    flex: 1;
    position: relative;
    display: block;
    padding: 2em 0;
  }
  .ValuePage__content--2nd .ValuePage__content--body .body-text {
    flex: 1;
  }
  .ValuePage__content--3rd .ValuePage__content--body .body-image {
    top: auto;
    bottom: 0;
    height: 110%;
  }
  .ValuePage__content--additional {
    flex-direction: row;
    width: 100%;
  }
}

.ValuePage__content--1st .heading-number,
.ValuePage__content--1st .heading-sub {
  color: #439ec1;
}
.ValuePage__content--1st .heading-main {
  background-color: #439ec1;
}
.ValuePage__content--1st .ValuePage__content--body::before {
  background-color: rgba(67, 158, 193, 0.2);
}

.ValuePage__content--2nd .heading-number,
.ValuePage__content--2nd .heading-sub {
  color: #2b76ac;
}
.ValuePage__content--2nd .heading-main {
  background-color: #2b76ac;
}
.ValuePage__content--2nd .ValuePage__content--body::before {
  background-color: rgba(43, 118, 172, 0.2);
}

.ValuePage__content--3rd .heading-number,
.ValuePage__content--3rd .heading-sub {
  color: #124d96;
}
.ValuePage__content--3rd .heading-main {
  background-color: #124d96;
}
.ValuePage__content--3rd .ValuePage__content--body::before {
  background-color: rgba(18, 77, 150, 0.2);
}

/* Recruit Interview */
.Interview__archive {
  margin: 0 auto;
  max-width: 1000px;
}
.Interview__heading {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  margin: clamp(40px, 8vw, 100px) auto;
  text-align: center;
}
.Interview__list {
  display: block;
}
.Interview__list .interview-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.interview-item {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.interview-item > a {
  display: flex;
  min-height: 120px;
  color: #222;
  text-decoration: none;
}
.interview-item .interview-image {
  width: 30%;
  height: auto;
  overflow: hidden;
}
.interview-item .interview-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms;
}
.interview-item .interview-image img.-left {
  object-position: 75%;
}
.interview-item .interview-image img.-right {
  object-position: 25%;
}
.interview-item a:hover .interview-image img {
  transform: scale(1.05);
}
.interview-item .interview-info {
  display: block;
  width: 70%;
}
.interview-item .interview-prof {
  display: block;
  width: 100%;
  padding: 1rem 1rem 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
}
.interview-item .interview-copy {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.25em;
  text-align: justify;
  text-decoration: none;
}

@media (min-width: 769px) {
  .Interview__list .interview-list {
    display: flex;
    flex-direction: row;
    gap: 50px;
    flex-wrap: wrap;
  }
  .interview-item {
    width: calc((100% - 100px) / 3);
  }
  .interview-item > a {
    display: block;
  }
  .interview-item .interview-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }
  .interview-item .interview-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms;
  }
  .interview-item .interview-info {
    width: 100%;
  }
  .interview-item .interview-prof {
    text-align: center;
    padding: 1rem 1rem 0;
  }
  .interview-item .interview-copy {
    padding: 0.5rem 1rem 1rem;
    line-height: 1.5em;
  }
}

.Interview__header {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  margin: 60px auto;
}
.Interview__header img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.Interview__header--catchphrase {
  padding: 1rem 0;
}
.Interview__header--catchphrase .catchphrase {
  font-size: clamp(1.25rem, calc(1rem + 0.5vw), 1.5rem);
  font-weight: 600;
  line-height: 1.5em;
}
.Interview__header--profile {
  display: inline-block;
  width: auto;
  background-color: rgba(255, 239, 116, 0.9);
  padding: 0.5em 1em;
  line-height: 1.4em;
}
@media (min-width: 769px) {
  .Interview__header img {
    border-radius: 12px;
  }
  .Interview__header--catchphrase {
    position: absolute;
    width: auto;
    top: 8%;
    padding: 1em 1.5em;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .Interview__header--catchphrase.-left {
    left: 4%;
    right: auto;
  }
  .Interview__header--catchphrase.-right {
    left: auto;
    right: 4%;
  }
  .Interview__header--profile {
    position: absolute;
    display: block;
    width: auto;
    bottom: 8%;
    background-color: rgba(255, 239, 116, 0.9);
    padding: 1em 1.5em;
  }
  .Interview__header--profile.-left {
    left: 4%;
    right: auto;
  }
  .Interview__header--profile.-right {
    left: auto;
    right: 4%;
  }
  .Interview__header--profile .profile {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5em;
  }
  .Interview__header--profile .join {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
  }
}

.Interview__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #124d96;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.Interview__content--left {
  flex: 2;
}
.Interview__content--right {
  align-self: stretch;
  flex: 1;
  padding: 30px 30px;
  background-color: rgba(67, 158, 193, 0.1);
}
.Interview__qa {
  margin-bottom: 50px;
}
.Interview__qa--question {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.25em;
  padding: 0.25em 0;
}
.Interview__qa--answer {
  margin-top: 8px;
  padding-left: 1.5em;
  font-size: 1rem;
  line-height: 1.75em;
  text-align: justify;
  border-left: 4px solid rgba(255, 239, 116, 0.9);
}
.Interview__content--right .schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 1rem;
  line-height: 1.75em;
  text-align: justify;
}
.Interview__content--right .schedule-heading {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25em;
  margin-bottom: 0.5em;
  padding: 60px 0 0;
  text-align: center;
  background: url(../img/recruit/clock.png) no-repeat center top;
  background-size: 50px 50px;
}
.schedule-item {
  display: flex;
  gap: 8px;
  padding: 0;
}
.schedule-item .schedule-time {
  position: relative;
  min-width: 4.5em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25em;
  color: #124d96;
  padding: 6px 0;
  white-space: nowrap;
}
.schedule-item .schedule-time::before {
  position: absolute;
  width: 11px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  content: "";
  padding: 0;
  border-left: 2px solid #98b4d2;
  z-index: -1;
}
.schedule-item:first-child .schedule-time::before {
  transform: translateY(50%);
}
.schedule-item:last-child .schedule-time::before {
  transform: translateY(-50%);
}
.schedule-item .schedule-time::after {
  position: absolute;
  width: 20px;
  height: 1.25rem;
  top: 0;
  bottom: 0;
  right: 0;
  content: "●";
  padding: 0;
  color: #124d96;
  margin: auto;
  text-align: center;
}
.schedule-item .schedule-label {
  flex: 1;
  font-size: 1rem;
  line-height: 1.25em;
  text-align: left;
  padding: 6px 0;
}
.Interview__bottom {
  margin: 50px auto;
  padding: 50px 0;
  border-top: 1px solid #124d96;
}
@media (min-width: 769px) {
  .Interview__content {
    flex-direction: row;
    gap: 40px;
  }
  .Interview__content--right {
    align-self: flex-start;
  }
}
