﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  main visual

--------------------------------------------------------------------------------*/
.mv {
  width: 100%;
  display: grid;
}
.mv:before {
  content: "";
  background-color: var(--bg-quaternary);
  z-index: -1;
}
@media not (max-width: 760px) {
  .mv {
    grid-template-columns: minmax(var(--side-space), 1fr) repeat(7, minmax(0, calc((var(--base-width) / 7) * 1px))) minmax(var(--side-space), 1fr);
    grid-template-rows: auto repeat(4, 1fr) var(--space-3l);
  }
  .mv:before { grid-area: 2 / 1 / 7 / 10; }
  .mv_img { grid-area: 1 / 4 / 6 / 9; }
  .mv_hd { grid-area: 1 / 2 / 2 / 6; align-self: end; }
  .mv_catch { grid-area: 2 / 2 / 6 / 6; }
  .mv_info { grid-area: 4 / 6 / 7 / 10; align-self: end; }
}
@media (max-width: 1000px) and (not (max-width: 760px)) {
  .mv {
    grid-template-columns: minmax(var(--side-space), 1fr) repeat(7, minmax(0, calc((var(--base-width) / 7) * 1px))) 0;
  }
}
@media (max-width: 760px) {
  .mv {
    grid-template-columns: minmax(var(--side-space), 1fr) repeat(3, minmax(0, calc((var(--base-width) / 3) * 1px))) minmax(var(--side-space), 1fr);
    grid-template-rows: repeat(7, auto);
  }
  .mv:before { grid-area: 4 / 1 / 8 / 6; }
  .mv_img { grid-area: 1 / 3 / 6 / 6; }
  .mv_hd { grid-area: 3 / 2 / 4 / 3; align-self: end; }
  .mv_catch { grid-area: 5 / 2 / 7 / 5; }
  .mv_info { grid-area: 7 / 2 / 8 / 6; align-self: end; }
}

/*--------------------------------------------------------------------------------
  .mv-img
--------------------------------------------------------------------------------*/
.mv_img img {
  --rd: var(--rd-2);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rd);
}
.mv_img.-left img { object-position: center left; }
.mv_img.-right img { object-position: center right; }
@media not (max-width: 760px) {
  .mv_img img {
    aspect-ratio: 4 / 3;
    max-height: 500px;
  }
}
@media (max-width: 1000px) {
  .mv_img img {
    border-radius: var(--rd) 0 0 var(--rd);
  }
}
@media (max-width: 760px) {
  .mv_img img {
    aspect-ratio: 1 / 1;
    max-height: 400px;
    border-radius: var(--rd) 0 0 0;
  }
}

/*--------------------------------------------------------------------------------
  .mv_hd
--------------------------------------------------------------------------------*/
.mv_hd {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  font-family: var(--ff-en);
  color: var(--color-primary);
  font-weight: 600;
}
.mv_hd .ttl {
  font-size: calc(var(--fs-3l) / 2.25);
}
.mv_hd .no {
  display: inline-block;
  z-index: 2;
  font-size: var(--fs-3l);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: calc(-1 * (var(--fs-3l) / 2.75));
}
.mv_hd .no_num {
  font-size: var(--fs-2l);
  font-weight: 700;
  vertical-align: top;
  display: inline-block;
  margin-top: 0.25em;
  margin-left: 0.25rem;
}
@media not (max-width: 760px) {
  .mv_hd {
    padding-top: var(--space-l);
  }
}

/*--------------------------------------------------------------------------------
  .mv_hd
--------------------------------------------------------------------------------*/
.mv_catch {
  line-height: var(--line-height-l);
  padding-top: calc(var(--fs-3l) + var(--space-m));
}
.mv_catch .catch_txt {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #FFF;
  font-family: var(--ff-go);
  font-weight: 700;
  font-size: clamp(var(--fs-l), 5vw, var(--fs-2l));
  padding: 0.25em 0.5em;
  background-color: var(--color-primary);
}
@media not (max-width: 760px) {
  .mv_catch .catch_txt {
    font-size: clamp(var(--fs-2l), 3vw, var(--fs-3l));
  }
}

/*--------------------------------------------------------------------------------
  .mv_info
--------------------------------------------------------------------------------*/
.mv_info {
  background-color: #FFF;
  border-top-left-radius: var(--rd-1h);
  padding: var(--inner-space-m);
}
.mv_info .department {
  font-weight: bold;
  color: var(--color-primary);
  line-height: var(--line-height-s);
}
.mv_info .name {
  font-size: var(--fs-2l);
  font-weight: bold;
  margin: 0.5rem 0;
}
.mv_info .name small {
  font-size: var(--fs-n-rem);
  margin: 0 0.25rem;
}
.mv_info ul.name {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 0.25rem;
}
.mv_info ul.name li:not(:last-child):after {
  content: "／";
  font-size: var(--fs-n-rem);
  margin: 0 0.25rem;
}
.mv_info .joined {
  font-size: var(--fs-2s);
  color: var(--color-gray);
}
@media (max-width: 760px) {
  .mv_info { margin-top: var(--space-l); }
}

/*--------------------------------------------------------------------------------

  article

--------------------------------------------------------------------------------*/
.sec-article {
  padding-bottom: var(--space-3l);
}
.article {
  margin-top: var(--space-2l);
  display: flex;
  gap: var(--space-l);
}
.article_img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--rd-1h);
}
.article_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article_txt {
  line-height: var(--line-height-l);
}
.article_txt .ttl {
  color: var(--color-primary);
  font-family: var(--ff-go);
  font-size: var(--fs-2l);
  font-weight: 700;
  line-height: var(--line-height-s);
  padding-bottom: var(--space-s);
}
.article_txt p:not(:last-of-type) {
  padding-bottom: 1.5rem;
}
@media not (max-width: 760px) {
  .article_txt { padding: var(--space-s) 0; }
  .article_img {
    width: 40%;
    margin-right: auto;
  }
  .article:nth-of-type(even) .article_txt { order: 1; }
  .article:nth-of-type(even) .article_img {
    order: 2;
    margin-left: auto;
  }
}
@media (max-width: 760px) {
  .article:not(:last-of-type) .article_txt { padding-bottom: 1rem; }
  .article_img { aspect-ratio: 3 / 2; }
  .article { flex-direction: column; }
}

/*--------------------------------------------------------------------------------

  schedule

--------------------------------------------------------------------------------*/
.sec-schedule {
  --container-side-space: var(--SP-side-space-s);
  background-color: var(--color-tertiary-light);
  padding: var(--space-2l) 0;
}
.schedule-ttl {
  --ttl2-color: #FFF;
  color: #FFF;
  margin-bottom: var(--space-l);
}

/*--------------------------------------------------------------------------------
  .schedule-item
--------------------------------------------------------------------------------*/
.schedule {
  --rgap: var(--space-3s);
  --cgap: var(--space-2l);
  --pd: var(--inner-space-s);
  --lpd: var(--inner-space-m);
  --time-fs: var(--fs-3l);
  --mark-size: 0.6rem;
  display: flex;
  flex-direction: column;
  row-gap: var(--rgap);
}
.schedule-item {
  display: grid;
  column-gap: var(--cgap);
  position: relative;
  margin-left: 0.4rem;
  background-color: #FFF;
  border-radius: var(--rd-1);
  padding: var(--pd) var(--pd) var(--pd) var(--lpd);
}
.schedule-item:before {
  content: "";
  width: 1px;
  height: 100%;
  background-image: repeating-linear-gradient(180deg, var(--color-tertiary-light), var(--color-tertiary-light) 2px, transparent 2px, transparent 5px);
  background-position: left top;
  background-repeat: repeat-y;
  background-size: 1px 100%;
  position: absolute;
  left: var(--lpd);
  top: 0;
  z-index: 1;
}
.schedule-item:not(:last-of-type):before {
  height: calc(100% + var(--rgap));
}
@media not (max-width: 760px) {
  .schedule-item {
    grid-template-columns: auto 1fr;
  }
}

/*--------------------------------------------------------------------------------
  .schedule-time
--------------------------------------------------------------------------------*/
.schedule-time {
  align-self: start;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  font-size: var(--time-fs);
  font-weight: 600;
  line-height: 1;
}
.schedule-time_txt {
  font-family: var(--ff-en);
  color: var(--color-tertiary-light);
  display: flex;
  column-gap: 0.5rem;
  align-items: center;
}
.schedule-time_txt small { font-size: var(--fs-m-rem); }
.schedule-time:before {
  content: "";
  width: var(--mark-size);
  height: var(--mark-size);
  margin-left: calc(-1 * (var(--mark-size) / 2));
  line-height: 1;
  border-radius: 100%;
  align-self: center;
  background-color: var(--color-tertiary-light);
  outline: 0.4rem solid var(--bg-tertiary-2);
  position: relative;
  z-index: 3;
}
.schedule-item:first-of-type .schedule-time:after,
.schedule-item:last-of-type .schedule-time:after {
  content: "";
  width: var(--mark-size);
  position: absolute;
  left: calc(var(--lpd) - (var(--mark-size) / 2));
  background-color: #FFF;
  z-index: 2;
}
.schedule-item:first-of-type .schedule-time:after { height: calc(var(--pd) + (var(--time-fs) / 2) - (var(--mark-size) / 2)); top: 0; }
.schedule-item:last-of-type .schedule-time:after { height: calc(100% - (var(--pd) + (var(--time-fs) / 2) - (var(--mark-size) / 2))); bottom: 0; }
@media not (max-width: 760px) {
  .schedule-time {
    width: 4em;
  }
  .schedule-time_txt {
    padding-left: 1em;
  }
}
@media (max-width: 760px) {
  .schedule-time_txt {
    padding-left: calc(var(--space-l) - (var(--mark-size) / 2));
  }
}

/*--------------------------------------------------------------------------------
  .schedule-list
--------------------------------------------------------------------------------*/
.schedule-list {
  align-self: center;
}
.schedule-list:has(.schedule-list_img) {
  display: flex;
  gap: var(--space-s) var(--space-m);
}
.schedule-list_txt .ttl {
  font-size: var(--fs-2m);
  font-weight: bold;
}
.schedule-list_txt .ttl:has(+ p) { margin-bottom: 0.5rem; }
.schedule-list_img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--rd-q);
}
.schedule-list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media not (max-width: 760px) {
  .schedule-list_img { width: min((260 / 1000 * 100vw), 320px); margin-left: auto; }
  .schedule-item:not(:has(.schedule-time)) .schedule-list {
    grid-column: span 2;
    padding-left: calc((var(--time-fs) * 4) + var(--cgap));
  }
}
@media (max-width: 760px) {
  .schedule-list {
    margin-top: var(--space-2s);
    padding-left: var(--space-l);
  }
  .schedule-list:has(.schedule-list_img) {
    flex-direction: column;
  }
  .schedule-list_img { aspect-ratio: 2 / 1; }
}

/*--------------------------------------------------------------------------------

  other interviews

--------------------------------------------------------------------------------*/
.sec-others {
  padding-bottom: calc( var(--space-3l) + var(--ft-entry-rd));  /* .l-ft-entryの角丸分 */
}
