@charset "UTF-8";
/*
 * sub_layout.css
 *
 */

/* !submainvisual
---------------------------------------------------------- */
.mainvisual {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.mainvisual__title-container {
    position: absolute;
    top: 30%;
    left: 5%;
    z-index: 10;
}

.mainvisual__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    font-feature-settings: "palt";
    padding-left:26px;
    position: relative;
    opacity: 0;
    animation: fade-up-copy 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1s forwards;
}
	.mainvisual__title::before {
      position: absolute;
      content:"";
      width:10px;
      height: 10px;
      border:4px solid #FFF;
      border-radius: 50%;
      top:8px;
      left:0;
	}
	.mainvisual__title--member::before {
      border-color: var(--color-yellow);
	}
    .mainvisual__title--environment::before {
      border-color: var(--color-orange);
	}
    .mainvisual__title--guideline::before {
      border-color: var(--color-blue);
	}
    .mainvisual__title--entry::before {
      border-color: var(--color-green);
	}

.mainvisual__title-en {
    font-family: var(--font-family-en);
    font-size: 70px;
    line-height: 1.3;
    letter-spacing: 0.06em;
    opacity: 0;
    animation: fade-up-copy 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1.2s forwards;
}

@keyframes fade-up-copy {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0); 
    }
}

.mainvisual__object01 {
    position: absolute;
    display: block;
    width: 34vw;
    max-width:460px;
    bottom: 20px;
    left: -3.4vw;
    z-index: 9;
    transform-origin: center center;
    animation: heartbeat-four-stages 3s ease-in-out infinite;
}
@keyframes heartbeat-four-stages {
    0% {
        transform: scale(1);
    }
    7% {
        transform: scale(1.14);
    }
    14% {
        transform: scale(1);
    }
    23% {
        transform: scale(1.07);
    }
    32% {
        transform: scale(1);
    }
    41% {
        transform: scale(1.035);
    }
    50% {
        transform: scale(1);
    }
    58% {
        transform: scale(1.015); 
    }
    66% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.mainvisual__object02 {
    position: absolute;
    display: block;
    width:20%;
    max-width:300px;
    bottom:30%;
    right:8%;
    z-index: 9;
    transform-origin: center center;
    animation: loop-rotation2 25s linear infinite;
}
@keyframes loop-rotation2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width:1039px){
.mainvisual {
    height: 330px;
}

.mainvisual__title-container {
    top: 32%;
}

.mainvisual__title {
    font-size: 20px;
    line-height: 1.3;
    padding-left:24px;
}
	.mainvisual__title::before {
		width:8px;
		height: 8px;
		top:6px;
	}

.mainvisual__title-en {
    font-size: 60px;
}
}

@media screen and (max-width:767px){
.mainvisual {
    height: 200px;
}

.mainvisual__title-container {
    top: 40%;
    left: 5%;
}

.mainvisual__title {
    font-size: 15px;
    padding-left:20px;
}
	.mainvisual__title::before {
		width:6px;
		height: 6px;
		top:4px;
	}

.mainvisual__title-en {
    font-size: 38px;
}

@keyframes fade-up-copy {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0); 
    }
}

.mainvisual__object01 {
    width: 46vw;
    max-width:200px;
    bottom: 10px;
}

.mainvisual__object02 {
    width:24%;
    max-width:100px;
    bottom:26%;
    right:5%;
}
}

/* !contents
---------------------------------------------------------- */
#contents {
	width:100%;
	position:relative;
}

/* !働く人を知る
---------------------------------------------------------- */
.staff-section {
    width: 100%;
    padding: 70px 50px;
}

.staff-section--green {
    padding-top:0;
}

.staff-section + .staff-section {
    border-top: 1px dashed #EBE8DD;
}

.staff-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.staff-header__visual {
    flex: 0 0 320px;
}

.staff-header__img-unit {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.7;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.staff-header__bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86%;
    object-fit: contain;
    z-index: 1;
}

.staff-header__person {
    position: relative;
    z-index: 2;
    height: 90%;
    width: auto;
    object-fit: contain;
}

.staff-header__bg--staff01 {
    animation: detail-rotation 20s linear infinite;
}
@keyframes detail-rotation {
    0% { transform: translate(-50%, -30%) rotate(0deg); }
    100% { transform: translate(-50%, -30%) rotate(360deg); }
}

.staff-header__bg--staff02 {
    animation: detail-heartbeat 2s ease-in-out infinite;
}
@keyframes detail-heartbeat {
    0%, 100% { transform: translate(-50%, -30%) scale(1); }
    14% { transform: translate(-50%, -30%) scale(1.1); }
    28% { transform: translate(-50%, -30%) scale(1); }
    42% { transform: translate(-50%, -30%) scale(1.06); }
    60% { transform: translate(-50%, -30%) scale(1); }
}

.staff-header__bg--staff03 {
    animation: detail-seesaw 3s ease-in-out infinite;
}
@keyframes detail-seesaw {
    0%, 100% { transform: translate(-50%, -30%) rotate(0deg); }
    20% { transform: translate(-50%, -30%) rotate(-10deg); }
    60% { transform: translate(-50%, -30%) rotate(10deg); }
}

.staff-header__profile {
    flex: 1;
}

.staff-header__catch {
    font-size: clamp(24px, 2.2vw + 7px, 34px);
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    margin: 0 0 30px 0;
    position: relative;
}

.staff-header__catch::before,
.staff-header__catch::after {
    font-size: 90px;
    font-weight: var(--font-weight-normal);
    position: absolute;
    line-height: 1;
}
.staff-header__catch::before {
    content: "“";
    top: -10px;
    left: -60px;
}
.staff-header__catch::after {
    content: "”";
    bottom: -50px;
    right: auto;
}

.staff-header__name {
    font-family: var(--font-family-en);
    font-size: 36px;
    font-weight: var(--font-weight-normal);
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.staff-header__job {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.staff-card {
    background-color: #F8F7F3;
    border-radius: 20px;
    padding: 40px;
}

.staff-card__label {
    font-family: var(--font-family-en);
    font-size: 16px;
    letter-spacing: 0.04em;
    display: block;
}

.staff-card__title {
    font-size: 26px;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.staff-card__text {
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

.staff-card__note {
    font-size: 14px;
    line-height: 1.8;
    margin: 24px 0 0 0;
    border-top: 1px solid #E2DED1;
    padding-top: 16px;
}

.staff-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.staff-timeline::before {
    content: "";
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 95px;
    width: 2px;
    background-color: #D4CFBD;
}

.staff-timeline__item {
    display: flex;
    margin-bottom: 16px;
    position: relative;
}

.staff-timeline__item:last-child {
    margin-bottom: 0;
}

.staff-timeline__time {
    font-weight: var(--font-weight-bold);
    width: 80px;
    flex-shrink: 0;
    padding-top: 2px;
}

.staff-timeline__item::after {
    content: "";
    position: absolute;
    left: 90px;
    top: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    z-index: 2;
}

.staff-timeline__content {
    padding-left: 35px;
}

.staff-timeline__title {
    font-weight: var(--font-weight-bold);
    margin: 0 0 4px 0;
}

.staff-timeline__text {
    margin: 0;
    line-height: 1.8;
}

/* --- カラーバリエーション（テーマカラー連動） --- */
/* グリーン */
.staff-section--green .staff-header__catch::before,
.staff-section--green .staff-header__catch::after,
.staff-section--green .staff-header__name,
.staff-section--green .staff-card__label {
    color: var(--color-green);
}
.staff-section--green .staff-timeline__item::after {
    background-color: var(--color-green);
}

/* ブルー */
.staff-section--blue .staff-header__catch::before,
.staff-section--blue .staff-header__catch::after,
.staff-section--blue .staff-header__name,
.staff-section--blue .staff-card__label {
    color: var(--color-blue);
}
.staff-section--blue .staff-timeline__item::after {
    background-color: var(--color-blue);
}

/* オレンジ */
.staff-section--orange .staff-header__catch::before,
.staff-section--orange .staff-header__catch::after,
.staff-section--orange .staff-header__name,
.staff-section--orange .staff-card__label {
    color: var(--color-orange);
}
.staff-section--orange .staff-timeline__item::after {
    background-color: var(--color-orange);
}

@media screen and (max-width:1039px){
.staff-section {
    padding: 60px 30px;
}

.staff-section--green {
    padding-top:10px;
}

.staff-header {
    gap: 50px;
    margin-bottom: 60px;
}

.staff-header__visual {
    flex: 0 0 260px;
}

.staff-header__catch {
    font-size: clamp(20px, 2.8vw, 34px);
}

.staff-header__catch::before,
.staff-header__catch::after {
    font-size: 78px;
}
.staff-header__catch::before {
    top: -12px;
    left: -50px;
}
.staff-header__catch::after {
    bottom: -45px;
}

.staff-header__name {
    font-size: 32px;
}

.staff-header__job {
    font-size: 16px;
}

.staff-grid {
    gap: 30px;
}

.staff-card {
    border-radius: 16px;
    padding: 30px;
}

.staff-card__label {
    font-size: 15px;
}

.staff-card__title {
    font-size: 22px;
}

.staff-card__note {
    font-size: 14px;
}

.staff-timeline::before {
    left: 75px;
}

.staff-timeline__time {
    width: 70px;
    padding-top: 0;
}

.staff-timeline__item::after {
    left: 70px;
    top: 9px;
}

.staff-timeline__content {
    padding-left: 25px;
}
}

@media screen and (max-width:767px){
.staff-section {
    padding: 40px 25px;
}
.staff-section--green {
    padding-top:10px;
}
.staff-header {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    margin-bottom: 50px;
}
.staff-header__visual {
    flex: 0 0 auto;
    width: 200px;
    margin: 0 auto;
}
.staff-header__catch {
    /* font-size: 18px; */
    font-size: clamp(14px, 4.8vw, 20px);
    margin: 0 0 20px 0;
    padding: 0;
}
.staff-header__catch::before,
.staff-header__catch::after {
    display: none;
}
.staff-header__name {
    font-size: 28px;
}
.staff-header__job {
    font-size: 15px;
}
.staff-header__meta {
    padding-left: 0;
}
.staff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
.staff-card {
    padding: 24px;
    border-radius: 12px;
}
.staff-card__label {
    font-size: 13px;
}
.staff-card__title {
    font-size: 18px;
}

.staff-timeline::before {
    left: 70px;
}
.staff-timeline__time {
    width: 65px;
    padding-top: 0;
}
.staff-timeline__item::after {
    left: 66px;
    top: 10px;
    width: 10px;
    height: 10px;
}

.staff-timeline__content {
    padding-left: 20px;
}
}

/* !働く環境を知る
---------------------------------------------------------- */
.support-section {
    width: 100%;
    padding: 0 0 100px 0;
}

.support-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 60px;
    position: relative;
    margin-top: 60px;
}

.support-card {
    display: flex;
    flex-direction: column;
}

.support-card__image-unit {
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 0 20px 0;
}

.support-card__img {
    width: 100%;
    height: 100%;
    display: block;
}

.support-card__body {
    width: 100%;
}

.support-card__label {
    display: block;
    font-family: var(--font-family-en);
    font-size: 16px;
    color: var(--color-purple);
    letter-spacing: 0.05em;
}

.support-card__title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.support-card__text {
    word-break: break-all;
}

.event-section {
    width: 100%;
    padding: 0 50px 100px;
}

.event-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px 70px 60px;
    background-color: #F8F7F3;
    border-radius: 20px;
    position: relative;
}

.event-deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.event-deco--circle {
    top: -70px;
    left: -30px;
    width: 230px;
    height: auto;
}

.event-deco--spiral {
    bottom: -35px;
    right: 30px;
    width: 300px;
    height: auto;
}

.event-list {
    display: flex;
    flex-direction: column;
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 40px;
}
    .event-item:last-child {
        padding-bottom: 0;
    }

.event-item:nth-child(even) {
    flex-direction: row-reverse;
}

.event-item__body {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.event-item__content {
    flex: 1;
}

.event-item__title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin: 0 0 30px 0;
    line-height: 1.5;
}

.event-item__image-unit {
    flex: 0 0 34%; 
}

.event-item__img {
    width: 100%;
    border-radius: 16px;
}

.diversity-section {
    width: 100%;
    padding: 0 50px 100px;
}

.diversity-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 60px 70px 60px;
    background-color: #F8F7F3;
    border-radius: 20px;
    position: relative;
}

.c-sub-title,
.diversity-content {
  position: relative;
  z-index: 2;
}

.diversity-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.diversity-image-unit {
    flex: 0 0 28%;
    min-width: 240px;
}

.diversity-img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.diversity-body {
    flex: 1;
}

.diversity-text + .diversity-text {
    margin-top: 25px;
}

.loadmap-section {
  width: 100%;
  padding: 0 50px 100px 50px;
}

.loadmap-inner {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.loadmap-visual {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px auto;
}

.loadmap-visual__img {
  width: 100%;
  height: auto;
  display: block;
}

.loadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}

.loadmap-card:nth-child(n+5) {
  grid-column: span 1;
}

@media screen and (min-width: 1040px) {
  .loadmap-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .loadmap-card:nth-child(1), .loadmap-card:nth-child(2), .loadmap-card:nth-child(3), .loadmap-card:nth-child(4) {
    grid-column: span 3;
  }
  .loadmap-card:nth-child(5), .loadmap-card:nth-child(6), .loadmap-card:nth-child(7) {
    grid-column: span 4;
  }
}

.loadmap-card {
  background-color: #F8F7F3;
  border-radius: 12px;
  padding: 32px 24px 24px 24px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
}

.loadmap-card__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background-color: var(--color-orange);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-family-en);
  font-size: 18px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.loadmap-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.loadmap-card__title {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.5;
}

.loadmap-card__subtitle {
  font-size: 13px;
  font-weight: var(--font-weight-normal);
}

.loadmap-card__text {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px 0;
}

.loadmap-card__meta {
  margin: auto 0 0 0;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.loadmap-card__meta dt {
  width: 2.8em; 
  flex-shrink: 0;
  margin-right: 0.4em;
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  text-align: center;
  background-color: #FFF;
  padding:0.1em;
  border:1px solid #D4CFBD;
}

.loadmap-card__meta dd {
  margin: 0;
  flex: 1;
}

@media screen and (max-width:1039px){
.support-section {
    padding: 0 0 80px 0;
}

.support-inner {
    padding: 0 30px;
}

.support-grid {
    gap: 50px 40px;
}

.support-card__image-unit {
    border-radius: 12px;
}

.support-card__title {
    font-size: 20px;
}

.event-section {
    padding: 0 30px 80px;
}

.event-inner {
    padding: 70px 40px 60px 40px;
    border-radius: 16px;
}

.event-deco--circle {
    top: -50px;
    left: -20px;
    width: 200px;
}
.event-deco--spiral {
    bottom: -20px;
    right: 30px;
    width: 250px;
}

.event-item {
    gap: 40px;
    padding: 0 0 40px 0;
}

.event-item__body {
    gap: 30px;
}

.event-item__number {
    line-height: 1.4;
}

.event-item__title {
    font-size: 20px;
    margin: 0 0 25px 0;
}

.event-item__image-unit {
    flex: 0 0 38%;
}

.event-item__img {
    border-radius: 12px;
}

.diversity-section {
    padding: 0 30px 80px;
}

.diversity-inner {
    padding: 70px 40px 60px 40px;
    border-radius: 16px;
}

.diversity-content {
    gap: 40px;
}

.diversity-image-unit {
    flex: 0 0 36%;
    min-width: 220px;
}

.diversity-img {
    border-radius: 12px;
}

.loadmap-section {
    padding: 0 30px 80px 30px;
}
.loadmap-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 24px;
}
.loadmap-card:nth-child(n) {
    grid-column: span 1 !important;
}
.loadmap-visual {
    margin-bottom: 60px;
}
.loadmap-card__title {
    font-size: 17px;
}
}

@media screen and (max-width:767px){
.support-section {
    padding: 0 0 70px 0;
}

.support-inner {
    padding: 0 25px;
}

.support-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 40px;
}

.support-card {
    padding: 0;
}

.support-card__image-unit {
    border-radius: 12px;
    margin-bottom: 16px;
}

.support-card__label {
    font-size: 14px;
}

.support-card__title {
    font-size: 18px;
    margin: 0 0 15px 0;
}

.event-section {
    padding: 0 25px 70px;
}

.event-inner {
    padding: 45px 25px 35px 25px;
    border-radius: 16px;
}

.event-deco--circle {
    top: -40px;
    left: -20px;
    width: 140px;
}
.event-deco--spiral {
    bottom: -20px;
    right: 20px;
    width: 180px;
}

.event-item,
.event-item:nth-child(even) {
    flex-direction: column-reverse; 
    align-items: stretch;
    gap: 30px;
    padding: 0 0 45px 0;
}
    .event-item:last-child {
        padding-bottom: 0;
    }

.event-item__body {
    gap: 16px;
}

.event-item__number {
    font-size: 18px;
    line-height: 1.6;
}

.event-item__title {
    font-size: 18px;
    margin: 0 0 20px 0;
}

.event-item__image-unit {
    flex: 0 0 auto;
    width: 100%; 
}

.diversity-section {
    padding: 0 25px 70px;
}

.diversity-inner {
    padding: 45px 25px 45px 25px; 
    border-radius: 16px;
}

.diversity-content {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 40px;
}

.diversity-image-unit {
    flex: 0 0 auto;
    width: 100%;
}

.diversity-img {
    max-width:300px;
    margin: 0 auto;
}

.diversity-text + .diversity-text {
    margin-top: 20px; 
}

.loadmap-section {
    padding: 0 25px 60px 25px;
}
.loadmap-grid {
    grid-template-columns: 1fr !important;
    gap: 32px 0;
}
.loadmap-visual {
    margin-bottom: 30px;
}
.loadmap-card {
    padding: 30px 20px 24px 20px;
}
.loadmap-card__number {
    width: 32px;
    height: 32px;
    font-size: 16px;
}
.loadmap-card__title {
    font-size: 16px;
}
}

/* !募集要項
---------------------------------------------------------- */
.recruit-section {
    width: 100%;
    padding: 0 50px 100px;
}

.recruit-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px 70px 80px; 
    background-color: #F8F7F3;
    border-radius: 20px;
}

.recruit-group {
    margin-bottom: 90px;
}

.recruit-group__title,
.recruit-process__title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    margin: 0 0 30px 0;
    line-height: 1.4;
}
.recruit-process__title {
    text-align: center;
}

.recruit-table {
    width: 100%;
    border-collapse: collapse;
}

.recruit-table tr {
    border-bottom: 1px solid #E2DED1;
}
.recruit-table tr:first-child {
    border-top: 1px solid #E2DED1;
}

.recruit-table th {
    width: 180px; 
    padding: 1.2em 1em;
    font-weight: var(--font-weight-bold);
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.recruit-table td {
    padding: 1.2em 1em;
    line-height: 1.8;
    vertical-align: top;
}

.recruit-table__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recruit-table__list li {
    margin-bottom: 10px;
}
.recruit-table__list li:last-child {
    margin-bottom: 0;
}

.recruit-table__text {
    margin: 0 0 20px 0;
}
.recruit-table__text:last-of-type {
    margin-bottom: 24px;
}

.recruit-addresses p {
    margin: 0 0 8px 0;
}

.recruit-table-sub-title {
    display: inline-block;
    background-color: #FFF;
    border: 1px solid #D4CFBD;
    border-radius: 4px;
    padding: 0.3em 0.6em;
    margin-top: 6px;
    margin-bottom: 12px;
}

.recruit-process {
    margin-bottom: 60px;
}

.process-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 8px; 
    left: 12.5%; 
    right: 12.5%;
    height: 2px;
    background-color: #D4CFBD; 
    z-index: 1;
}

.process-timeline__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-timeline__step::before {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    background-color: var(--color-green); 
    border-radius: 50%;
    margin-bottom: 12px; 
    box-sizing: border-box;
}
.process-timeline__step--blue::before {
    background-color: var(--color-blue);
}

.process-timeline__num {
    font-family: var(--font-family-en);
    font-size: 24px;
    color: var(--color-green); 
    line-height: 1;
    margin-bottom: 8px; 
    letter-spacing: 0.04em;
}
.process-timeline__num--blue {
    color: var(--color-blue);
}

.process-timeline__name {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    line-height: 1.5;
    margin: 0;
}

.process-timeline__note {
    font-size: 13px;
    font-weight: var(--font-weight-normal);
    display: inline-block;
    margin-top: 4px;
}

.recruit-action {
    text-align: center;
}

.recruit-action__text {
    font-size: 20px;
    font-weight: var(--font-weight-bold);
    color: var(--color-green);
    line-height: 1.6;
    margin: 0 0 20px 0;
}
.recruit-action__text--blue {
    color: var(--color-blue);
}
.recruit-action__text--purple {
    color: var(--color-purple);
}

.recruit-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 74px;
    background-color: var(--color-green);
    color: #FFF;
    font-family: var(--font-family-en);
    font-size: 28px;
    border-radius: 40px;
    letter-spacing: 0.05em;
    transition: 0.5s ease;
}
.recruit-btn-main--blue {
    background-color: var(--color-blue);
}
.recruit-btn-main--purple {
    background-color: var(--color-purple);
}
.recruit-btn-main:hover {
    opacity:.7;
}
.recruit-btn-main i {
    margin-right:.4em;
}

.open-company-section {
    width: 100%;
    padding: 0 50px 100px;
}

.open-company-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.open-company-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.open-company-image-unit {
    flex: 0 0 45%;
}

.open-company-img {
    width: 100%;
    height: auto;
    display: block;
}

.open-company-info-card {
    flex: 1;
    background-color: #F8F7F3;
    border-radius: 20px;
    padding: 50px 45px;
}

.open-company-info-card__title {
    font-size: 24px;
    font-weight: var(--font-weight-bold);
    color: var(--color-purple);
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.open-company-info-card__lead {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 35px 0;
}

.open-company-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.open-company-meta__row {
    display: flex;
    align-items: flex-start;
}

.open-company-meta dt {
    width: 4em;
    flex-shrink: 0;
    font-weight: var(--font-weight-bold);
    line-height: 1.6;
}

.open-company-meta dd {
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.open-company-meta__note {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    margin-top: 6px;
}

@media screen and (max-width:1039px){
.recruit-section {
    padding: 0 30px 80px; 
}

.recruit-inner {
    padding: 70px 40px 60px 40px; 
}

.recruit-group {
    margin-bottom: 70px; 
}

.recruit-group__title,
.recruit-process__title {
    font-size: 20px;
    margin: 0 0 30px 0;
}

.recruit-table th {
    width: 150px; 
    padding: 1em;
}

.recruit-table td {
    padding: 1em;
}

.recruit-process {
    margin-bottom: 50px;
}

.process-timeline__num {
    font-size: 20px;
}

.process-timeline__name {
    font-size: 15px;
}

.recruit-action__text {
    font-size: 18px;
    margin: 0 0 20px 0;
}

.recruit-btn-main {
    max-width: 280px;
    height: 68px;
    font-size: 26px;
}
.recruit-btn-main:hover {
    opacity:1;
}

.open-company-section {
    padding: 0 30px 80px;
}

.open-company-content {
    gap: 40px;
    margin-bottom: 70px;
}

.open-company-info-card {
    padding: 40px 30px;
    border-radius: 16px;
}

.open-company-info-card__title {
    font-size: 20px;
}

.open-company-info-card__lead {
    font-size: 16px;
}

.open-company-meta__note {
    font-size: 13px;
}
}

@media screen and (max-width:767px){
.recruit-section {
    padding: 0 20px 60px;
}

.recruit-inner {
    padding: 50px 20px 40px 20px;
    border-radius: 16px;
}

.recruit-group {
    margin-bottom: 50px;
}

.recruit-group__title,
.recruit-process__title {
    font-size: 20px;
    margin-bottom: 20px;
}

.recruit-table tr,
.recruit-table tr:first-child {
    border: none; 
}

.recruit-table tr {
    display: block;
    border-bottom: 1px solid #E2DED1; 
    padding: 15px 0;
}
.recruit-table tr:first-child {
    border-top: 1px solid #E2DED1;
}

.recruit-table th,
.recruit-table td {
    display: block;
    width: 100%;
    padding: 0;
}

.recruit-table th {
    margin-bottom: 6px;
    line-height: 1.4;
}

.recruit-table td {
    line-height: 1.6;
}

.recruit-table__text {
    margin-bottom: 15px;
}
.recruit-table__text:last-of-type {
    margin-bottom: 15px;
}

.recruit-process {
    margin-bottom: 50px;
}

.process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px; 
    position: relative;
}

.process-timeline::before {
    width:13px;
    height: 13px;
    top: 12px;
    bottom: 12px;
    left: 7px; 
    right: auto;
    width: 2px;
    height: auto;
    background-color: #D4CFBD;
    z-index: 1;
}

.process-timeline__step {
    flex-direction: row; 
    align-items: flex-start;
    text-align: left;
    width: 100%;
    z-index: 2;
}

.process-timeline__step::before {
    margin-bottom: 0;
    margin-top: 4px;
    flex-shrink: 0;
}

.process-timeline__num {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 0; 
    margin-left: 12px;
    width: 32px;
    flex-shrink: 0;
}

.process-timeline__name,
.process-timeline__content {
    font-size: 15px;
    line-height: 1.4;
    flex: 1;
    margin: 0;
}

.process-timeline__note {
    font-size: 13px;
    margin-top: 4px;
}

.recruit-action__text {
    font-size: 14px;
    margin-bottom: 16px;
}

.recruit-btn-main {
    max-width: 260px; 
    height: 60px;
    font-size: 20px;
}

.open-company-section {
    padding: 0 25px 60px;
}

.open-company-content {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 50px;
}

.open-company-image-unit {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.open-company-info-card {
    padding: 35px 20px;
    border-radius: 12px;
}

.open-company-info-card__title {
    font-size: 18px;
}

.open-company-info-card__lead {
    font-size: 14px;
    margin-bottom: 24px;
}
.open-company-info-card__lead br {
    display: none;
}

.open-company-meta {
    gap: 12px;
}

.open-company-meta dt {
    font-size: 14px;
    width: 3.5em;
}

.open-company-meta dd {
    font-size: 14px;
}

.open-company-meta__note {
    font-size: 12px;
}
}

/* !エントリー
---------------------------------------------------------- */
.form-section {
    width: 100%;
    padding: 0 50px 100px;
}

.form-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 80px 70px 80px; 
    background-color: #F8F7F3;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 90px;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table tr {
    border-bottom: 1px solid #E2DED1;
}
.form-table tr:first-child {
    border-top: 1px solid #E2DED1;
}

.form-table th {
    width: 240px; 
    padding: 1.2em 1em;
    font-weight: var(--font-weight-bold);
    text-align: left;
    vertical-align: top;
    line-height: 1.8;
}

.form-table td {
    padding: 1.2em 1em;
    line-height: 1.8;
    vertical-align: top;
}

.form-table__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-table__list li {
    margin-bottom: 10px;
}
.form-table__list li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width:1039px){
.form-section {
    padding: 0 30px 80px; 
}

.form-inner {
    padding: 70px 40px 60px 40px; 
}

.form-group {
    margin-bottom: 70px; 
}

.form-table th {
    width: 200px; 
    padding: 1em 0;
}

.form-table td {
    padding: 1em 0;
}
}

@media screen and (max-width:767px){
.form-section {
    padding: 0 20px 60px;
}

.form-inner {
    padding: 50px 20px 40px 20px;
    border-radius: 16px;
}

.form-group {
    margin-bottom: 50px;
}

.form-table tr,
.form-table tr:first-child {
    border: none; 
}

.form-table tr {
    display: block;
    border-bottom: 1px solid #E2DED1; 
    padding: 15px 0;
}
.form-table tr:first-child {
    border-top: 1px solid #E2DED1;
}

.form-table th,
.form-table td {
    display: block;
    width: 100%;
    padding: 0;
}

.form-table th {
    margin-bottom: 6px;
    line-height: 1.4;
}

.form-table td {
    line-height: 1.6;
}
}