@charset "UTF-8";

/*------------------------------------------------------------
  社員と社風（/recruit/member/）
------------------------------------------------------------*/

.page-hero {
  position: relative;
  width: 100%;
  height: 38rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1a1a1a;
  margin-top: 0;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  opacity: 0.45;
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 2rem;
}
.page-hero__h1 {
  font-size: 5.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
  .page-hero {
    height: 26rem;
  }
  .page-hero__h1 {
    font-size: 3.6rem;
  }
}

/* 先輩インタビュー：画像部分のみホバー青オーバーレイ */
.slider01__box a::before,
.slider01__box a::after,
.slider01__box::before,
.slider01__box::after {
  display: none !important;
}
.slider01__box a:hover {
  background-color: transparent !important;
}
.slider01__box__img {
  position: relative;
  overflow: hidden;
}
.slider01__box__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 181, 168, 0.55);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.slider01__box a:hover .slider01__box__img::after {
  opacity: 1;
}

.interview-section {
  padding: 6rem 0;
  background: #fff;
}
.interview-section .section-lead {
  text-align: center;
  color: #555;
  font-size: 1.5rem;
  margin-top: -1rem;
  margin-bottom: 4rem;
}

.aptitude-section {
  padding: 6rem 0;
  background: #f8f8f8;
}
.aptitude-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 4rem;
}
.aptitude-flex {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
.aptitude-flex__txt {
  flex: 1;
}
.aptitude-flex__img {
  flex: 0 0 34rem;
}
.aptitude-flex__img img {
  width: 100%;
  height: auto;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.aptitude-flex__txt p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1.6rem;
}
.aptitude-flex__txt p:last-child {
  margin-bottom: 0;
}
.aptitude-viewmore {
  margin-top: 3rem;
}

.entry-banner-wrap {
  padding: 6rem 2rem;
  text-align: center;
  background: #fff;
}
.entry-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: #29b5a8;
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 2rem 8rem;
  min-width: 32rem;
  transition: background 0.3s;
  border-radius: 2px;
}
.entry-banner:hover {
  background: #1d9e92;
}
.entry-banner__icon {
  width: 2.2rem;
  height: 2.2rem;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.entry-banner__icon::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, 1px);
}

@media screen and (max-width: 860px) {
  .aptitude-flex {
    flex-direction: column;
    gap: 3rem;
  }
  .aptitude-flex__img {
    flex: none;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .aptitude-inner {
    padding: 0 2rem;
  }
  .interview-section {
    padding: 4rem 0;
  }
  .aptitude-section {
    padding: 4rem 0;
  }
  .aptitude-flex {
    flex-direction: column !important;
    gap: 2.4rem !important;
  }
  .aptitude-flex__img {
    order: 1 !important;
  }
  .aptitude-flex__txt {
    order: 2 !important;
  }
  .slider01 {
    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .slider01::-webkit-scrollbar {
    height: 4px;
  }
  .slider01::-webkit-scrollbar-track {
    background: #f0f0f0;
  }
  .slider01::-webkit-scrollbar-thumb {
    background: #29b5a8;
    border-radius: 2px;
  }
  .slider01__box {
    flex: 0 0 76vw !important;
    max-width: 30rem !important;
    scroll-snap-align: start;
    width: 76vw !important;
  }
  .slick-initialized .slider01__box {
    flex: none !important;
    width: auto !important;
    max-width: none !important;
  }
  .entry-banner {
    padding: 1.8rem 4rem;
    min-width: 24rem;
  }
}

/*------------------------------------------------------------
  適性検査データ（/recruit/member/data/）
------------------------------------------------------------*/

.page-template-page-member-data-php .page-hero__h1 {
  font-size: 4rem;
}

@media screen and (max-width: 768px) {
  .page-template-page-member-data-php .page-hero__h1 {
    font-size: 2.6rem;
  }
}

.data-section {
  padding: 6rem 0;
}
.data-section--bg {
  background: #f8f8f8;
}
.data-inner {
  max-width: 86rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .data-inner {
    padding: 0 2rem;
  }
  .data-section {
    padding: 4rem 0;
  }
}

.data-h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 3.2rem;
  line-height: 1.4;
  padding-left: 0;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .data-h2 {
    font-size: 2rem;
  }
}

.data-h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #29b5a8;
  text-align: center;
  margin: 4.8rem 0 1.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .data-h3 {
    font-size: 1.75rem;
    margin-top: 3.6rem;
  }
}

.data-txt {
  font-size: 1.5rem;
  line-height: 1.95;
  color: #333;
  margin-bottom: 2rem;
}
.data-txt:last-child {
  margin-bottom: 0;
}
.data-txt ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}
.data-txt ul li {
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 0.8rem;
}
.data-txt ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #29b5a8;
}

.data-graph {
  text-align: center;
  margin: 2.8rem 0 2.4rem;
}
.data-graph img {
  max-width: 52rem;
  width: 100%;
  height: auto;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .data-graph img {
    max-width: 100%;
  }
}

.data-lead {
  margin-bottom: 3.2rem;
  font-size: 1.5rem;
  line-height: 1.95;
  color: #333;
}

.data-h3-block {
  display: flex;
  gap: 4.8rem;
  align-items: flex-start;
  margin-bottom: 5.6rem;
}
.data-h3-block__img {
  flex: 0 0 34rem;
}
.data-h3-block__img img {
  max-width: 100%;
  height: auto;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.data-h3-block__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.data-h3-block__heading .data-h3,
.data-h3-block__body .data-h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .data-h3-block {
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 4rem;
  }
  .data-h3-block__body {
    display: contents;
  }
  .data-h3-block__heading {
    order: 1;
    width: 100%;
  }
  .data-h3-block__heading .data-h3 {
    text-align: center;
    margin-top: 0;
  }
  .data-h3-block__img {
    flex: none;
    width: 100%;
    order: 2;
  }
  .data-h3-block__txt {
    order: 3;
    width: 100%;
  }
}
