@charset "UTF-8";
/* parts */
.h4 {
  display: grid;
  align-content: start;
  gap: 0.2em;
  line-height: 1.5;
}
.h4 .en {
  font-family: var(--font-futura);
}
.h4 .ja {
  font-weight: 600;
}
@media (min-width: 961px) {
  .h4 {
    margin-bottom: 1.3em;
  }
  .h4 .en {
    font-size: min(14px, 1.1894647409vw);
  }
  .h4 .ja {
    font-size: min(32px, 2.7187765506vw);
  }
}
@media (max-width: 960px) {
  .h4 .en {
    font-size: 12px;
  }
  .h4 .ja {
    font-size: 22px;
  }
}

/* 募集要項 */
.recruitment {
  padding-inline: calc(50dvw - min(558.5px, 47.4511469839vw));
}
@media screen and (max-width: 1177px) {
  .recruitment {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .recruitment {
    padding-inline: 20px;
  }
}

.tabItems {
  display: flex;
}
@media (min-width: 961px) {
  .tabItems {
    gap: min(12px, 1.0195412065vw);
    justify-content: center;
    margin-top: 40px;
  }
}
@media (max-width: 960px) {
  .tabItems {
    gap: 8px;
    margin-top: 28px;
  }
}
.tabItems > * {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  font-weight: 600;
  cursor: pointer;
}
@media (min-width: 961px) {
  .tabItems > * {
    width: min(184px, 15.6329651657vw);
    height: min(64px, 5.4375531011vw);
    border-radius: min(16px, 1.3593882753vw) min(16px, 1.3593882753vw) 0 0;
    font-size: min(24px, 2.0390824129vw);
  }
}
@media (max-width: 960px) {
  .tabItems > * {
    width: 140px;
    height: 43px;
    border-radius: 8px 8px 0 0;
    font-size: 18px;
  }
}
.tabItems :not(.active) {
  opacity: 0.5;
}

.tabContents section {
  background-color: var(--color-white);
}
@media (min-width: 961px) {
  .tabContents section {
    border-radius: min(16px, 1.3593882753vw);
    padding: min(80px, 6.7969413764vw);
  }
}
@media (max-width: 960px) {
  .tabContents section {
    border-radius: 12px;
    border-top-left-radius: 0;
    padding: 32px 20px 40px;
  }
}

/* 採用情報 */
.recruit-detail {
  display: grid;
}
@media (min-width: 961px) {
  .recruit-detail {
    grid-template-columns: 10em 1fr;
  }
  .recruit-detail > *:not(:last-of-type) {
    border-bottom: 1px solid rgba(var(--color-text-base-code), 0.3);
  }
  .recruit-detail > * {
    padding-block: min(40px, 3.3984706882vw);
    line-height: 1.5;
  }
}
.recruit-detail dt {
  font-weight: 600;
}
@media (max-width: 960px) {
  .recruit-detail dt {
    padding-top: 24px;
    font-size: 16px;
  }
}
.recruit-detail dd > div + div {
  margin-top: 1em;
}
.recruit-detail dd b {
  display: inline-block;
  margin-bottom: 0.4em;
}
@media (max-width: 960px) {
  .recruit-detail dd {
    padding-block: 16px 24px;
  }
  .recruit-detail dd:not(:last-of-type) {
    border-bottom: 1px solid rgba(var(--color-text-base-code), 0.3);
  }
}

/* 選考フロー */
.recruit-flow {
  display: grid;
}
@media (min-width: 961px) {
  .recruit-flow {
    grid-template-columns: auto 65%;
    margin-top: min(60px, 5.0977060323vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow {
    margin-top: 16px;
  }
}
.recruit-flow-content {
  display: grid;
}
@media (min-width: 961px) {
  .recruit-flow-content {
    gap: min(8px, 0.6796941376vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow-content {
    margin-top: 24px;
    gap: 8px;
  }
}
.recruit-flow dl {
  display: grid;
  background-color: rgba(242, 199, 210, 0.3);
}
.recruit-flow dl > * {
  line-height: 1.5;
}
@media (min-width: 961px) {
  .recruit-flow dl {
    grid-template-columns: 37% 1fr;
    border-radius: min(8px, 0.6796941376vw);
    padding: min(32px, 2.7187765506vw) min(40px, 3.3984706882vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow dl {
    border-radius: 8px;
    padding: 20px;
  }
}
.recruit-flow dt {
  display: flex;
  font-weight: 600;
}
@media (min-width: 961px) {
  .recruit-flow dt {
    font-size: min(20px, 1.6992353441vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow dt {
    align-items: center;
    margin-bottom: 8px;
    font-size: 20px;
  }
}
.recruit-flow dt i {
  margin-right: 0.7em;
  font-family: var(--font-futura);
  font-weight: 500;
}
@media (min-width: 961px) {
  .recruit-flow dt i {
    transform: translateY(0.3em);
    font-size: min(14px, 1.1894647409vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow dt i {
    font-size: 14px;
  }
}
.recruit-flow dd > div + div {
  margin-top: 0.5em;
}
.recruit-flow dd b {
  display: inline-block;
  margin-bottom: 0.4em;
}
@media (min-width: 961px) {
  .recruit-flow dd small {
    font-size: min(13px, 1.1045029737vw);
  }
}
@media (max-width: 960px) {
  .recruit-flow dd small {
    font-size: 12px;
  }
}

/* エントリー */
.middle-entry .ill-1 {
  display: none;
}

/* インターンシップ募集 */
.internship {
  padding-inline: calc(50dvw - min(558.5px, 47.4511469839vw));
  overflow: hidden;
}
@media screen and (max-width: 1177px) {
  .internship {
    padding-inline: 30px;
  }
}
@media (max-width: 960px) {
  .internship {
    padding-inline: 20px;
  }
}
@media (min-width: 961px) {
  .internship {
    padding-block: min(160px, 13.5938827528vw);
    border-radius: min(80px, 6.7969413764vw) min(80px, 6.7969413764vw) 0 0;
  }
}
@media (max-width: 960px) {
  .internship {
    padding-block: 60px;
    border-radius: 20px 20px 0 0;
  }
}
.internship .h3 {
  justify-items: center;
}
@media (min-width: 961px) {
  .internship .h3 {
    margin-bottom: min(30px, 2.5488530161vw);
  }
  .internship .h3 .ja {
    font-size: min(56px, 4.7578589635vw);
  }
}
@media (max-width: 960px) {
  .internship .h3 {
    margin-bottom: 20px;
  }
}
.internship .image {
  position: relative;
  text-align: center;
}
.internship .image figure {
  position: relative;
  z-index: 1;
  display: inline-block;
  border-radius: 9999px 9999px 0 0;
  overflow: hidden;
}
@media (min-width: 961px) {
  .internship .image figure {
    width: min(428px, 36.3636363636vw);
  }
}
@media (max-width: 960px) {
  .internship .image figure {
    width: 270px;
  }
}
.internship .image [class^=txt-] {
  position: absolute;
  z-index: 1;
  padding: 1.1em 1.4em;
  background-color: var(--color-white);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .internship .image [class^=txt-] {
    padding: 0.8em 1em;
  }
}
@media (min-width: 961px) {
  .internship .image .txt-1 {
    top: min(60px, 5.0977060323vw);
    right: calc(50% + min(100px, 8.4961767205vw));
  }
}
@media (max-width: 960px) {
  .internship .image .txt-1 {
    top: 47px;
    right: calc(50% - 40px);
  }
}
@media (min-width: 961px) {
  .internship .image .txt-2 {
    top: min(280px, 23.7892948173vw);
    left: calc(50% + min(135px, 11.4698385726vw));
  }
}
@media (max-width: 960px) {
  .internship .image .txt-2 {
    top: 186px;
    left: calc(50% - 53px);
  }
}
@media (min-width: 961px) {
  .internship .image .txt-3 {
    top: min(430px, 36.533559898vw);
    right: 50%;
  }
}
@media (max-width: 960px) {
  .internship .image .txt-3 {
    top: 282px;
    right: calc(50% - 90px);
  }
}
.internship .image .bgcopy {
  position: absolute;
  left: 50%;
  transform: translateX(-45%);
  top: 50%;
  color: var(--color-white);
  font-family: var(--font-futura);
  white-space: nowrap;
  opacity: 0.2;
}
@media (min-width: 961px) {
  .internship .image .bgcopy {
    top: min(105px, 8.9209855565vw);
    font-size: min(200px, 16.992353441vw);
  }
}
@media (max-width: 960px) {
  .internship .image .bgcopy {
    top: 50px;
    font-size: 120px;
  }
}
.internship .text {
  display: grid;
}
@media (min-width: 961px) {
  .internship .text {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto 1fr;
    gap: min(15px, 1.2744265081vw) min(50px, 4.2480883602vw);
    margin-top: min(80px, 6.7969413764vw);
  }
}
@media (max-width: 960px) {
  .internship .text {
    gap: 8px;
    margin-top: 80px;
    padding-inline: 20px;
  }
}
.internship .text-copy {
  display: inline-flex;
  gap: 0.7em;
  font-weight: 600;
  line-height: 1.5;
}
.internship .text-copy::before, .internship .text-copy::after {
  font-size: 105%;
}
.internship .text-copy::before {
  content: "\\";
}
.internship .text-copy::after {
  content: "/";
}
@media (max-width: 960px) {
  .internship .text-copy {
    justify-content: center;
  }
}
.internship .text-lead {
  font-weight: 600;
  line-height: 1.5;
}
@media (min-width: 961px) {
  .internship .text-lead {
    font-size: min(36px, 3.0586236194vw);
  }
}
@media (max-width: 960px) {
  .internship .text-lead {
    text-align: center;
    font-size: 24px;
  }
}
@media (min-width: 961px) {
  .internship .text-main {
    grid-area: 1/2/3/3;
  }
}
@media (max-width: 960px) {
  .internship .text-main {
    margin-top: 12px;
  }
}
.internship .text-main span {
  display: block;
}
.internship .text-main span + span {
  margin-top: 0.8em;
}
.internship-recruitment {
  background-color: var(--color-white);
}
@media (min-width: 961px) {
  .internship-recruitment {
    margin-top: min(80px, 6.7969413764vw);
    padding: min(80px, 6.7969413764vw);
    border-radius: min(16px, 1.3593882753vw);
  }
}
@media (max-width: 960px) {
  .internship-recruitment {
    margin-top: 40px;
    padding: 32px 20px 40px;
    border-radius: 12px;
  }
}
.internship .recruit-flow dl {
  background-color: rgba(170, 227, 242, 0.3);
}
.internship .cta-entry {
  background: none;
  padding: 0;
  overflow: hidden;
}
.internship .cta-entry .ill-1 {
  display: none;
}
@media (min-width: 961px) {
  .internship .cta-entry {
    margin-top: min(80px, 6.7969413764vw);
  }
}
@media (max-width: 960px) {
  .internship .cta-entry {
    margin-top: 60px;
  }
}
@media (min-width: 961px) {
  .internship .ill-1 {
    width: min(200px, 16.992353441vw);
    top: min(265px, 22.5148683093vw);
    left: calc(50% + min(380px, 32.2854715378vw));
  }
}
@media (max-width: 960px) {
  .internship .ill-1 {
    top: 130px;
    right: 20px;
  }
}
@media (min-width: 961px) {
  .internship .ill-2 {
    width: min(189px, 16.0577740017vw);
    top: min(604px, 51.3169073917vw);
    right: calc(50% + min(400px, 33.9847068819vw));
  }
}
@media (max-width: 960px) {
  .internship .ill-2 {
    top: 310px;
    left: 0;
  }
}
@media (min-width: 961px) {
  .internship .ill-3 {
    width: min(471px, 40.0169923534vw);
    top: min(518px, 44.0101954121vw);
    left: calc(50% + min(150px, 12.7442650807vw));
  }
}
@media (max-width: 960px) {
  .internship .ill-3 {
    top: 360px;
    right: -40px;
  }
}