  @charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ============================================ */
/* リセット（destyle.css） の追加設定
/* ============================================ */
html {
  box-sizing: border-box;
  line-break: strict;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* ============================================ */
/* :root 
/* ============================================ */
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-navy: #001976;
  --color-blue: #0080ff;
  --color-lightnavy: #f2f3f8;
  --color-gray: #e9e9e9;
  --color-lightgray: #f0f0f0;
  --color-index: #001976;
  --color-newgrads: #001976;
  --color-highschool: #0080ff;
  --color-career: #e33c23;
  --color-disabilities: #159a4b;
  --fontfamily-gothic: "Noto Sans JP", sans-serif;
  --fontfamily-en: "Prompt", sans-serif;
  --transition: .3s;
}

/* ===== カテゴリー毎に色分け ===== */
#recruit-index {
  --color-category: var(--color-index);
}

#newgrads {
  --color-category: var(--color-newgrads);
}

#highschool {
  --color-category: var(--color-highschool);
}
#highschool #header,
#highschool #entry-nav,
#highschool #internship-nav,
#highschool #toggle-btn,
#highschool #g-navi,
#highschool #footer,
#highschool .g-link,
#highschool .g-link-text {
  --color-category: var(--color-newgrads);
}

#career {
  --color-category: var(--color-career);
}

#disabilities {
  --color-category: var(--color-disabilities);
}

/* ============================================ */
/* ベース スタイル
/* ============================================ */
body {
  position: relative;
  font-family: var(--fontfamily-gothic);
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* ============================================ */
/* 共通スタイル
/* ============================================ */
/* ===== main ===== */
#main {
  padding: 75px 0 100px;
  overflow: hidden;
}

@media screen and (max-width: 600px) {
  #main {
    padding: 55px 0 100px;
  }
}
/* ===== wrap ===== */
.out-wrap {
  position: relative;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}

.in-wrap {
  position: relative;
  /* background: rgba(0, 0, 0, 0.1); */
}

.wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* background: rgba(0, 0, 0, 0.1); */
}

@media screen and (min-width: 1401px) {
  .in-wrap {
    width: calc(100% - (100% - 1100px) / 2);
  }
  .wrap {
    width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .in-wrap {
    width: 90%;
  }
  .wrap {
    width: 80%;
  }
}
/* ===== 角丸 ===== */
.round {
  border-radius: 10px;
  overflow: hidden;
}

/* ===== 両端スペース ===== */
.side-spacer {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

/* ===== 表示切り替え ===== */
.d-switch {
  display: none !important;
}

@media screen and (min-width: 1401px) {
  .d-switch.min-xxl {
    display: block !important;
  }
}
@media screen and (max-width: 1400px) {
  .d-switch.max-xxl {
    display: block !important;
  }
}
@media screen and (min-width: 1201px) {
  .d-switch.min-xl {
    display: block !important;
  }
}
@media screen and (max-width: 1200px) {
  .d-switch.max-xl {
    display: block !important;
  }
}
@media screen and (min-width: 1025px) {
  .d-switch.min-lg {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .d-switch.max-lg {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .d-switch.min-md {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .d-switch.max-md {
    display: block !important;
  }
}
@media screen and (min-width: 601px) {
  .d-switch.min-sm {
    display: block !important;
  }
}
@media screen and (max-width: 600px) {
  .d-switch.max-sm {
    display: block !important;
  }
}
/* ===== 疑似要素で背景を設定 ===== */
.before-bg {
  overflow: hidden;
}
.before-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: var(--transition);
}

@media (hover: hover) {
  a:hover::before {
    transform: scale(1.05);
  }
  a:hover .before-bg::before {
    transform: scale(1.05);
  }
}
/* ===== 疑似要素でオーバーレイを設定 ===== */
.after-overlay {
  overflow: hidden;
}
.after-overlay::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-black);
  mix-blend-mode: multiply;
}
.after-overlay.overlay-light::after {
  opacity: 0.3;
}
.after-overlay.overlay-normal::after {
  opacity: 0.45;
}
.after-overlay.overlay-dark::after {
  opacity: 0.6;
}

/* ===== ホバーで画像をズーム ===== */
.hovar-zoomin img {
  position: relative;
  display: block;
  transition: var(--transition);
}

@media (hover: hover) {
  a:hover .hovar-zoomin img {
    transform: scale(1.05);
  }
}
.hover-arrow {
  position: relative;
  transition: var(--transition);
}
.hover-arrow::after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border-right: 2px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skew(45deg);
  transition: var(--transition);
}

@media (hover: hover) {
  .hover-arrow:hover::after {
    right: 5px;
    width: 35px;
  }
}
/* ===== view-more ===== */
.view-more {
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  font-family: var(--fontfamily-en);
  fill: currentColor;
  font-weight: 500;
  z-index: 1;
}
.view-more::before {
  content: "VIEW MORE";
  margin: 0 0.8em 0 0;
  transition: 0.15s;
}
.view-more::after {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 0.8em;
  background: currentColor;
  border-radius: 50%;
  transform: scale(1);
  transition: 0.15s;
}
.view-more.icon-blank::after {
  width: 1.5em;
  background: none;
  border-radius: 0;
  display: none;
}
.view-more.icon-blank svg {
  position: relative;
  top: 0.1em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
  transition: 0.15s;
}

@media (hover: hover) {
  a:hover .view-more::after {
    transform: scale(1.5);
  }
}
/* ===== btn（●付き） ===== */
.btn-circle {
  position: relative;
  display: block;
  text-align: center;
  width: fit-content;
  min-width: 14em;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  font-family: var(--fontfamily-en);
  color: var(--color-category);
  background: var(--color-white);
  padding: 0.8em 2.5em 0.7em;
  border: solid var(--color-category) 3px;
  border-radius: 1.5em;
  overflow: hidden;
}
.btn-circle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-category);
  transform: scale(0, 1);
  transform-origin: left center;
  transition: var(--transition);
}
.btn-circle::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 50%;
  display: inline-block;
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 50%;
  transform: translate(0, -50%) scale(1);
  transition: 0.15s;
}
.btn-circle .inner {
  position: relative;
  transition: var(--transition);
}

@media (hover: hover) {
  .btn-circle:hover {
    color: var(--color-white);
  }
  .btn-circle:hover::before {
    transform: scale(1, 1);
  }
  .btn-circle:hover::after {
    background: currentColor;
    transform: translate(0, -50%) scale(2);
  }
}
@media screen and (max-width: 768px) {
  .btn-circle {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 600px) {
  .btn-circle {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* ===== btn（view-more付き） ===== */
.btn-view-more {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 430px;
  margin: 0 auto;
  color: var(--color-category);
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  padding: 1em;
  background: var(--color-white);
  border: solid 3px var(--color-category);
  transition: var(--transition);
}
.btn-view-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-category);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: var(--transition);
}
.btn-view-more .inner {
  position: relative;
}
.btn-view-more .view-more {
  margin: 1.5em 0 0;
}

@media (hover: hover) {
  .btn-view-more:hover {
    color: var(--color-white);
  }
  .btn-view-more:hover::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 768px) {
  .btn-view-more {
    width: 300px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .btn-view-more {
    width: 100%;
  }
}
/* ===== top-area共通 ===== */
#top-area {
  position: relative;
}
#top-area .page-cate {
  position: relative;
  color: var(--color-category);
  font-size: 17px;
  font-size: 1.0625rem;
  font-family: var(--fontfamily-en);
  font-weight: 700;
}
#top-area .page-cate.wh {
  color: var(--color-white);
}
#top-area .page-title {
  position: relative;
  color: var(--color-category);
  z-index: 1;
}
#top-area .page-title.wh {
  color: var(--color-white);
}
#top-area .page-title .ja {
  display: block;
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 600;
  line-height: 1.5;
}
#top-area .page-title .en {
  display: block;
  font-family: var(--fontfamily-en);
  font-size: 17px;
  font-size: 1.0625rem;
  margin: 0.8em 0 0;
  font-weight: 700;
  line-height: 1.5;
}
#top-area .top-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
#top-area.plain {
  padding: 50px 0 120px;
}
#top-area.plain .wrap {
  width: 100%;
  max-width: 1800px;
}
#top-area.plain .page-cate {
  margin: 0 0 70px;
  padding: 0 0 0 5%;
}
#top-area.plain .page-title {
  padding: 0 0 0 10%;
}
#top-area.img-full, #top-area.img-half {
  width: 100%;
  height: 600px;
  overflow: hidden;
}
#top-area.img-full .wrap, #top-area.img-half .wrap {
  width: 100%;
  max-width: 1800px;
  height: 100%;
}
#top-area.img-full .img, #top-area.img-half .img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
#top-area.img-full .page-cate, #top-area.img-half .page-cate {
  position: absolute;
  top: 50px;
  left: calc(5% - 10px);
  z-index: 1;
}
#top-area.img-full .page-title, #top-area.img-half .page-title {
  position: absolute;
  top: 140px;
  left: calc(10% - 10px);
  z-index: 1;
}
#top-area.img-full .img {
  width: 100%;
}
#top-area.img-full .page-title {
  top: 250px;
}
#top-area.img-half::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 280px;
  background: var(--color-lightgray);
}
#top-area.img-half .img {
  width: 50%;
}
#top-area.img-half .page-cate {
  margin: 0 0 70px;
}
#top-area.img-half .page-title {
  top: 140px;
}
#top-area.img-half .top-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 280px;
  padding: 35px 5% 0 calc(10% - 10px);
}

@media screen and (max-width: 1024px) {
  #top-area .page-title .ja {
    font-size: 40px;
    font-size: 2.5rem;
  }
  #top-area .page-title .en {
    font-size: 16px;
    font-size: 1rem;
  }
  #top-area .top-text {
    font-size: 16px;
    font-size: 1rem;
  }
  #top-area.img-full, #top-area.img-half {
    height: 450px;
  }
  #top-area.img-full .page-title {
    top: 180px;
  }
  #top-area.img-half::before {
    height: 200px;
  }
  #top-area.img-half .top-text {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  #top-area .page-cate {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #top-area .page-title .ja {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #top-area .page-title .en {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #top-area.plain {
    padding: 30px 0 80px;
  }
  #top-area.plain .page-cate {
    margin: 0 0 50px;
  }
  #top-area.img-full {
    height: 240px;
  }
  #top-area.img-full .page-cate {
    top: 30px;
  }
  #top-area.img-full .page-title {
    top: 80px;
  }
  #top-area.img-half {
    height: auto;
    padding: 30px 0 0;
  }
  #top-area.img-half::before {
    display: none;
  }
  #top-area.img-half .img {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 250px;
    margin: 50px 0 0;
  }
  #top-area.img-half .page-cate,
#top-area.img-half .page-title {
    position: relative;
    top: 0;
    left: auto;
  }
  #top-area.img-half .page-cate {
    margin: 0 0 30px;
    padding: 0 calc(5% - 10px);
  }
  #top-area.img-half .page-title {
    padding: 0 calc(10% - 10px);
  }
  #top-area.img-half .top-text {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 50px calc(10% - 10px) 20px;
  }
  #top-area.img-half .top-text::before {
    content: "";
    position: absolute;
    left: -10px;
    bottom: 0;
    display: block;
    width: calc(100% + 20px);
    height: calc(100% + 50px);
    background: var(--color-lightgray);
    z-index: -1;
  }
}
@media screen and (max-width: 600px) {
  #top-area .page-cate {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #top-area .page-title .ja {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #top-area .page-title .en {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #top-area .top-text {
    font-size: 16px;
    font-size: 1rem;
  }
  #top-area.plain {
    padding: 25px 0 50px;
  }
  #top-area.img-full .page-cate {
    left: 5%;
  }
  #top-area.img-full .page-title {
    left: 10%;
    width: 85%;
  }
  #top-area.img-half {
    padding: 25px 0 0;
  }
  #top-area.img-half .img {
    height: 200px;
    margin: 30px 0 0;
  }
  #top-area.img-half .top-text {
    font-size: 16px;
    font-size: 1rem;
  }
}
/* ===== page-index ===== */
#page-index {
  background-color: var(--color-lightgray);
  font-size: 16px;
  font-size: 1rem;
  padding: 50px 0 100px;
}
#page-index .title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: var(--fontfamily-en);
  font-weight: 700;
  margin-bottom: 1.3em;
}
#page-index .number {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: var(--fontfamily-en);
  font-weight: 700;
  margin-right: 0.5em;
}
#page-index ul {
  display: flex;
  gap: 30px 40px;
}
#page-index li {
  width: fit-content;
  font-weight: 500;
}
#page-index li a {
  cursor: pointer;
  display: block;
  padding-right: 15px;
}
#page-index .underline {
  position: relative;
}
#page-index .underline::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  transition: 0.3s;
}
#page-index .hover-arrow-down {
  position: relative;
}
#page-index .hover-arrow-down::before, #page-index .hover-arrow-down::after {
  content: "";
  position: absolute;
  background: var(--color-black);
  transition: 0.3s;
}
#page-index .hover-arrow-down::before {
  bottom: -6px;
  right: -3px;
  width: 1px;
  height: 10px;
  transform: skewX(-25deg);
}
#page-index .hover-arrow-down::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 32px;
}
@media (hover: hover) {
  #page-index .hover-arrow-down:hover::before {
    bottom: -26px;
  }
  #page-index .hover-arrow-down:hover::after {
    height: 52px;
  }
}
#page-index .no-number .hover-arrow-down {
  min-height: 25px;
}

@media screen and (max-width: 880px) {
  #page-index {
    padding: 50px 0 80px;
  }
  #page-index ul {
    flex-direction: column;
  }
  #page-index .hover-arrow-down::after {
    height: 31px;
  }
}
@media screen and (max-width: 880px) and (hover: hover) {
  #page-index .hover-arrow-down:hover::before {
    bottom: -19px;
  }
  #page-index .hover-arrow-down:hover::after {
    height: 45px;
  }
}
@media screen and (max-width: 768px) {
  #page-index {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 30px 0 60px;
  }
  #page-index .title {
    font-size: 26px;
    font-size: 1.625rem;
    margin-bottom: 1em;
  }
  #page-index .number {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #page-index .hover-arrow-down::after {
    height: 28px;
  }
}
@media screen and (max-width: 768px) and (hover: hover) {
  #page-index .hover-arrow-down:hover::before {
    bottom: -22px;
  }
  #page-index .hover-arrow-down:hover::after {
    height: 42px;
  }
}
@media screen and (max-width: 768px) {
  #page-index .no-number .hover-arrow-down {
    min-height: 21px;
  }
}
/* ===== g-link/g-link-text ===== */
.g-link.cover-gray {
  position: relative;
  display: block;
}
.g-link.cover-gray::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(203, 203, 203, 0.55);
  border-radius: 10px;
  transition: var(--transition);
}
.g-link.cover-gray .btn {
  position: absolute;
  flex-direction: row;
  justify-content: space-between;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.g-link.cover-gray .btn .view-more {
  margin: 0;
}

.g-link-text {
  display: none;
}

@media (hover: hover) {
  .g-link.cover-gray:hover::after {
    background: rgba(77, 77, 77, 0.55);
  }
  .g-link.cover-gray:hover .btn-view-more {
    color: var(--color-white);
  }
  .g-link.cover-gray:hover .btn-view-more::before {
    transform: scale(1, 1);
  }
}
@media screen and (max-width: 1024px) {
  .g-link.cover-gray.sp-none::after {
    display: none;
  }
  .g-link.cover-gray.sp-none img {
    display: none;
  }
  .g-link.cover-gray.sp-none .btn {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
  .g-link-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-category);
    margin: 0 0 1em;
  }
}
@media screen and (max-width: 768px) {
  .g-link-text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .g-link.cover-gray .btn {
    width: 90%;
  }
  .g-link-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
/* ===== table ===== */
.g-table {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  font-weight: 500;
  /* 採用人数 */
}
.g-table tr {
  border-bottom: dashed 2px #ccc;
}
.g-table th,
.g-table td {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.g-table th {
  font-weight: 600;
  padding: 0.6em 1.6em 1.6em 0;
  white-space: nowrap;
}
.g-table td {
  padding: 0.6em 0 1.6em;
}
.g-table .number-list {
  display: flex;
  gap: 30px 40px;
}
.g-table .number-list ul {
  text-align: right;
}
.g-table .number-list ul:first-child {
  padding-left: 80px;
}
.g-table .number-list .value {
  position: relative;
}
.g-table .number-list .value::before {
  content: attr(data-name);
  position: absolute;
  top: 0;
  left: -80px;
}
.g-table .number-list .value span {
  width: 60px;
  display: inline-block;
  text-align: right;
}
.g-table .number-list .value span::after {
  content: "名";
  margin-left: 0.2em;
}
.g-table .number-list ul:nth-child(2) .value::before,
.g-table .number-list ul:nth-child(3) .value::before {
  display: none;
}

@media screen and (max-width: 1024px) {
  .g-table .number-list {
    gap: 30px 30px;
  }
  .g-table .number-list ul:first-child {
    padding-left: 70px;
  }
  .g-table .number-list .value::before {
    left: -70px;
  }
}
@media screen and (max-width: 768px) {
  .g-table th,
.g-table td {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .g-table .number-list {
    flex-direction: column;
  }
  .g-table .number-list ul {
    text-align: left;
  }
  .g-table .number-list ul:first-child {
    padding-left: 0;
  }
  .g-table .number-list .value::before {
    position: relative;
    left: 0;
  }
  .g-table .number-list ul:nth-child(2) .value::before,
.g-table .number-list ul:nth-child(3) .value::before {
    display: inline-block;
  }
}
@media screen and (max-width: 600px) {
  .g-table tr {
    display: block;
  }
  .g-table th,
.g-table td {
    display: block;
  }
  .g-table th {
    padding: 0.7em 0 0.4em;
  }
  .g-table td {
    padding: 0 0 1.4em;
  }
}
/* ===== table（第2階層） ===== */
/* table（第2階層）*/
.in-table tr {
  border-bottom: none;
}
.in-table th {
  font-weight: 500;
  padding: 0 1.6em 0.6em 0;
}
.in-table td {
  padding: 0 0 0.6em;
}
.in-table.type01 tr:not(:first-child) th,
.in-table.type01 tr:not(:first-child) td {
  padding-top: 1.3em;
}
.in-table.type02 th {
  white-space: normal;
}
.in-table.type02 td {
  white-space: nowrap;
}

@media screen and (max-width: 600px) {
  .in-table.type01 th {
    padding-bottom: 0.4em;
  }
  .in-table.type01 tr:not(:first-child) td {
    padding-top: 0;
  }
  .in-table.type02 tr {
    display: table-row;
  }
  .in-table.type02 th,
.in-table.type02 td {
    display: table-cell;
  }
}
/* ===== タイムラインタイトル ===== */
.timeline01,
.timeline02,
.timeline03 {
  background: #f2f3f8;
  color: var(--color-navy);
  line-height: normal;
  padding: 75px 0;
}
.timeline01 .wrap,
.timeline02 .wrap,
.timeline03 .wrap {
  background: none;
}
.timeline01 .timeline-title,
.timeline02 .timeline-title,
.timeline03 .timeline-title {
  margin: -7.5em 0 3em 0;
}
.timeline01 .timeline-title .en,
.timeline02 .timeline-title .en,
.timeline03 .timeline-title .en {
  font-size: 72px;
  font-size: 4.5rem;
  font-family: var(--fontfamily-en);
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.1em;
}
.timeline01 .timeline-title .ja,
.timeline02 .timeline-title .ja,
.timeline03 .timeline-title .ja {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  display: block;
}

.timeline03 {
  padding: 50px 0 0;
}
.timeline03 .timeline-title {
  margin: -5em 0 1.5em;
}
.timeline03 .timeline-title .en {
  font-size: 50px;
  font-size: 3.125rem;
}
.timeline03 .timeline-title .ja {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1em;
}

@media screen and (max-width: 768px) {
  .timeline01 .timeline-title,
.timeline02 .timeline-title {
    margin: -7.6em 0 3em 0;
  }
  .timeline01 .timeline-title .en,
.timeline02 .timeline-title .en {
    font-size: 50px;
    font-size: 3.125rem;
  }
  .timeline01 .timeline-title .ja,
.timeline02 .timeline-title .ja {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .timeline03 .timeline-title {
    margin: -5.5em 0 1.5em;
  }
  .timeline03 .timeline-title .en {
    font-size: 46px;
    font-size: 2.875rem;
  }
  .timeline03 .timeline-title .ja {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* ===== タイムライン ===== */
.timeline {
  position: relative;
}
.timeline li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 30px;
}
.timeline li:not(:nth-last-child(2)) {
  padding-bottom: 30px;
}
.timeline li::before, .timeline li::after {
  content: "";
  position: absolute;
  background: var(--color-navy);
}
.timeline li::before {
  width: 1px;
  height: 100%;
  left: 0;
  top: 10px;
}
.timeline li::after {
  width: 18px;
  height: 18px;
  left: -8px;
  top: 10px;
  border-radius: 100%;
}
.timeline li.arrow-down {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.timeline li.arrow-down::before, .timeline li.arrow-down::after {
  content: "";
  position: absolute;
  background: var(--color-navy);
}
.timeline li.arrow-down::before {
  top: 0;
  left: 6px;
  width: 1px;
  height: 20px;
  transform: skewX(-30deg);
}
.timeline li.arrow-down::after {
  top: 0;
  left: 0;
  width: 1px;
  height: 20px;
}
.timeline .date-time {
  font-size: 31px;
  font-size: 1.9375rem;
  font-family: var(--fontfamily-en);
  font-weight: 500;
  line-height: 1.4;
}
.timeline .text {
  line-height: 1.8;
}
.timeline .text p + p {
  margin: 0.5em 0 0;
}
.timeline .text .thin {
  font-weight: 500;
}

/* type02（縦線の左右にテキスト） */
@media screen and (min-width: 769px) {
  .timeline.type02 li {
    padding-left: 0;
  }
  .timeline.type02 li::before, .timeline.type02 li::after {
    content: none;
  }
  .timeline.type02 li .date-time {
    width: 170px;
  }
  .timeline.type02 li .text {
    width: calc(100% - 170px);
    padding-left: 30px;
    line-height: 1.5;
  }
  .timeline.type02 li .text::before, .timeline.type02 li .text::after {
    content: "";
    position: absolute;
    background: var(--color-navy);
  }
  .timeline.type02 li .text::before {
    width: 1px;
    height: 100%;
    left: 170px;
    top: 10px;
  }
  .timeline.type02 li .text::after {
    width: 18px;
    height: 18px;
    left: 162px;
    top: 10px;
    border-radius: 100%;
  }
  .timeline.type02 li.arrow-down {
    left: 170px;
  }
  .timeline.type02 li.arrow-down::before, .timeline.type02 li.arrow-down::after {
    content: "";
  }
}
/* ===== 個別設定 ===== */
.timeline01 .timeline {
  margin-left: 60px;
}
.timeline01 .timeline li:nth-last-child(2) {
  padding-bottom: 50px;
}
.timeline01 .timeline .date-time {
  width: 140px;
}
.timeline01 .timeline .text {
  width: calc(100% - 140px);
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  padding-top: 0.1em;
}

.timeline02 .timeline {
  margin-left: 60px;
}
.timeline02 .timeline li:nth-last-child(2) {
  padding-bottom: 0;
}
.timeline02 .timeline li:nth-last-child(2)::before {
  height: calc(100% - 20px);
}
.timeline02 .timeline li.arrow-down {
  bottom: 20px;
}
.timeline02 .timeline .date-time {
  width: 110px;
}
.timeline02 .timeline .text {
  width: calc(100% - 110px);
}
.timeline02 .timeline .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 0.2em 0 0;
}
.timeline02 .timeline .frame-white {
  background-color: #fff;
  padding: 1.3em;
  margin-top: 10px;
  border-radius: 10px;
  color: var(--color-black);
  max-width: 800px;
}

.timeline03 .timeline li:nth-last-child(2) {
  padding-bottom: 50px;
}
.timeline03 .timeline .date-time {
  font-size: 24px;
  font-size: 1.5rem;
}
.timeline03 .timeline .text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  padding-top: 0.1em;
}
.timeline03 .timeline .text .detail {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 2.1em;
}
.timeline03 .timeline .text-wrap {
  display: flex;
  flex-wrap: wrap;
}
.timeline03 .timeline .text-wrap .text-left {
  margin-right: 10px;
}
.timeline03 .timeline .text-wrap .text-left .small-time {
  font-size: 14px;
  font-size: 0.875rem;
}
.timeline03 .timeline .text-wrap .text-right {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .timeline .date-time {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .timeline li::after {
    top: 6px;
  }
  /* ===== 個別設定 ===== */
  .timeline01 .timeline {
    margin-left: 10px;
  }
  .timeline01 .timeline .date-time {
    width: 100px;
  }
  .timeline01 .timeline .text {
    width: calc(100% - 100px);
    font-size: 16px;
    font-size: 1rem;
    padding-top: 0;
  }
  .timeline02 .timeline {
    margin-left: 10px;
  }
  .timeline02 .timeline .date-time {
    width: 70px;
  }
  .timeline02 .timeline .text {
    width: calc(100% - 70px);
  }
  .timeline02 .timeline .title {
    font-size: 16px;
    font-size: 1rem;
    padding: 0;
  }
  .timeline02 .timeline .frame-white {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .timeline03 .timeline {
    margin-left: 10px;
  }
  .timeline03 .timeline .date-time {
    width: 160px;
    font-size: 22px;
    font-size: 1.375rem;
  }
  .timeline03 .timeline .text {
    width: calc(100% - 160px);
    font-size: 16px;
    font-size: 1rem;
    padding-top: 0;
  }
  .timeline03 .timeline .text-wrap .text-left {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .timeline li {
    flex-direction: column;
  }
  .timeline01 .timeline .date-time,
.timeline01 .timeline .text,
.timeline02 .timeline .date-time,
.timeline02 .timeline .text,
.timeline03 .timeline .date-time,
.timeline03 .timeline .text {
    width: 100%;
  }
  .timeline01 .timeline .text,
.timeline02 .timeline .text,
.timeline03 .timeline .text {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .timeline03 .timeline .text .detail {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .timeline03 .timeline .text-wrap .text-left .small-time {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .timeline03 .timeline .text-wrap .text-right {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/* ===== タイトル ===== */
.g-title {
  color: var(--color-category);
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 600;
  margin: 0 0 1em;
}
.g-title .number {
  display: inline-block;
  font-size: 125%;
  font-family: var(--fontfamily-en);
  font-weight: 700;
  margin: 0 0.5em 0 0;
}
.g-title.under-line {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 2px;
}
.g-title.type-round {
  width: fit-content;
  min-width: 10em;
  font-size: 24px;
  font-size: 1.5rem;
  text-align: center;
  color: var(--color-white);
  background-color: var(--color-category);
  padding: 0.5em 1em;
  border-radius: 1.2em;
  margin: 0 0 1.5em;
}

@media screen and (max-width: 768px) {
  .g-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .g-title.under-line {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .g-title.type-round {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 600px) {
  .g-title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .g-title.under-line {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .g-title.type-round {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* ============================================ */
/* modaal スタイル追加
/* ============================================ */
.modaal-content-container {
  padding: 0 !important;
}

/* ===== modal-contents ===== */
#modal-contents {
  position: relative;
}
#modal-contents .modaal-close {
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 60px;
  height: auto;
  background: none;
  z-index: 1;
}
#modal-contents .modaal-close::before, #modal-contents .modaal-close::after {
  display: none;
}
#modal-contents .wrap {
  width: 80%;
}

@media screen and (max-width: 768px) {
  #modal-contents .modaal-close {
    width: 40px;
  }
}
/* ===== modal-contents（woman-modal） ===== */
#modal-contents.woman-modal {
  /* 画像指定 */
  /* 閉じるボタン */
}
#modal-contents.woman-modal .top-area {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 10px;
}
#modal-contents.woman-modal .top-area .img {
  position: relative;
  width: 100%;
  height: 100%;
}
#modal-contents.woman-modal .title {
  position: absolute;
  left: 10%;
  top: 8%;
}
#modal-contents.woman-modal .title .ja,
#modal-contents.woman-modal .title .en {
  display: block;
}
#modal-contents.woman-modal .title .ja {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 1em;
}
#modal-contents.woman-modal .title .en {
  font-size: 46px;
  font-size: 2.875rem;
  font-family: var(--fontfamily-en);
  font-weight: 200;
}
#modal-contents.woman-modal .article {
  position: relative;
  padding: 0 0 100px;
  margin: -380px 0 220px;
}
#modal-contents.woman-modal .article .glass-wrap {
  width: 100%;
  max-width: 570px;
  padding: 40px 50px 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#modal-contents.woman-modal .article .catch {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1em;
}
#modal-contents.woman-modal .article .profile {
  margin: 0 0 100px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: 500;
}
#modal-contents.woman-modal .article .profile .data {
  line-height: 1.5;
}
#modal-contents.woman-modal .article .profile .name {
  font-family: var(--fontfamily-en);
  font-size: 25px;
  font-size: 1.5625rem;
}
#modal-contents.woman-modal .article .profile .department {
  color: var(--color-category);
}
#modal-contents.woman-modal .article .text {
  text-align: justify;
  line-height: 2;
}
#modal-contents.woman-modal .article .text p + p {
  margin: 2em 0 0;
}
#modal-contents.woman-modal .career {
  position: relative;
}
#modal-contents.woman-modal.oc .top-area .img::before {
  background-image: url(/recruit/assets/img/newgrads/environment/women-interview/oc/top-img.jpg);
  background-position: center top;
}
#modal-contents.woman-modal.nr .top-area .img::before {
  background-image: url(/recruit/assets/img/newgrads/environment/women-interview/nr/top-img.jpg);
  background-position: 20% top;
}
#modal-contents.woman-modal.nh .top-area .title {
  color: var(--color-white);
}
#modal-contents.woman-modal.nh .top-area .img::before {
  background-image: url(/recruit/assets/img/newgrads/environment/women-interview/nh/top-img.jpg);
  background-position: 70% top;
}
#modal-contents.woman-modal.nh .article .glass-wrap {
  margin: 0 0 0 auto;
}
#modal-contents.woman-modal .top-close {
  position: fixed;
  right: 60px;
  top: 60px;
}
#modal-contents.woman-modal .bottom-close {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 320px;
}

/* 横幅1025px以上で、高さ750px以下の場合 */
@media (min-width: 1024px) and (max-height: 750px) {
  #modal-contents.woman-modal .article {
    margin-top: -240px;
  }
}
@media screen and (max-width: 1024px) {
  #modal-contents.woman-modal .top-area {
    position: relative;
    height: 50vh;
    height: 50svh;
    min-height: 500px;
  }
  #modal-contents.woman-modal .article {
    padding: 0;
    margin: 100px 0 150px;
  }
  #modal-contents.woman-modal .article .glass-wrap {
    width: 100%;
    max-width: none;
    padding: 0;
    background: none;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
  #modal-contents.woman-modal.oc .top-area .img::before {
    background-position: 80% center;
  }
  #modal-contents.woman-modal.nr .top-area .img::before {
    background-position: center center;
  }
  #modal-contents.woman-modal.nh .top-area .img::before {
    background-position: left top;
  }
}
@media screen and (max-width: 768px) {
  #modal-contents.woman-modal {
    /* 閉じるボタン */
  }
  #modal-contents.woman-modal .top-area {
    height: 40vh;
    height: 40svh;
    min-height: 450px;
  }
  #modal-contents.woman-modal .article {
    margin: 80px 0 150px;
  }
  #modal-contents.woman-modal .article .catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #modal-contents.woman-modal .article .profile {
    margin: 0 0 50px;
  }
  #modal-contents.woman-modal .top-close {
    right: 25px;
    top: 25px;
  }
  #modal-contents.woman-modal .bottom-close {
    height: 240px;
  }
}
@media screen and (max-width: 600px) {
  #modal-contents.woman-modal .top-area {
    height: 45vh;
    height: 45svh;
    min-height: 300px;
  }
  #modal-contents.woman-modal .top-area .title {
    left: 7.5%;
    top: 30px;
  }
  #modal-contents.woman-modal .top-area .title .ja {
    font-size: 14px;
    font-size: 0.875rem;
  }
  #modal-contents.woman-modal .top-area .title .en {
    font-size: 28px;
    font-size: 1.75rem;
  }
  #modal-contents.woman-modal .article {
    margin: 40px 0 120px;
  }
  #modal-contents.woman-modal .article .catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #modal-contents.woman-modal .article .profile {
    flex-direction: column;
    gap: 10px;
  }
  #modal-contents.woman-modal .article .profile .name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=style.css.map */
