/* ============================================
   採用情報
============================================ */

/* ===== Hero / FV ===== */
.recruit-page_hero {
  position: relative;
}

.recruit-page_hero__mosaic {
  position: relative;
  line-height: 0;
}

.recruit-page_hero__row {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
.recruit-page_hero__row--top{
  flex-wrap: wrap;
}
.recruit-page_hero__row--top .recruit-page_hero__cell{
  width: 50%;
  flex: unset;
}
}

@keyframes recruitCellFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.recruit-page_hero__cell {
  flex: 1;
  height: 360px;
  overflow: hidden;
  opacity: 0;
  animation: recruitCellFadeIn 0.6s ease forwards;
}
@media screen and (max-width: 768px) {
  .recruit-page_hero__cell {
    height:160px;
  }
}
.recruit-page_hero__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-page_hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.recruit-page_hero__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  width: min(960px, 90%);
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit-page_hero__card {
    padding: 40px 8px;
  }
}

.recruit-page_hero__catch {
  font-size: 32px;
  font-weight: 700;
  color: #3c3c3c;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .recruit-page_hero__catch {
    font-size: 20px;
  }
}

.recruit-page_hero__text {
  font-size: 16px;
  line-height: 2;
  color: #3c3c3c;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .recruit-page_hero__text {
    font-size: 14px;
  }
}
.recruit-page_hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #3c3c3c;
  color: #fffdf5;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 60px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
  .recruit-page_hero__btn {
    font-size: 16px;
    padding: 12px 40px;
  }
}
.recruit-page_hero__btn:hover {
  opacity: 0.8;
}

/* ===== メッセージ ===== */
.recruit-page_message {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .recruit-page_message {
    padding: 80px 0;
  }
}

.recruit-page_message__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .recruit-page_message__inner {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-page_message__inner {
    flex-direction: column;
  }
}

.recruit-page_message__ph {
  flex: 0 0 480px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .recruit-page_message__ph {
    flex: 0 0 360px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-page_message__ph {
    flex: 1;
    width: 100%;
  }
}

.recruit-page_message__ph img {
  width: 100%;
  height: 386px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_message__ph img {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .recruit-page_message__ph img {
    height: auto;
  }
}

.recruit-page_message__body {
  flex: 1;
  font-size: 20px;
  line-height: 1.8;
  color: #3c3c3c;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .recruit-page_message__body {
    font-size: 16px;
  }
}

.recruit-page_message__body p {
  margin-bottom: 1em;
}

.recruit-page_message__body p:last-child {
  margin-bottom: 0;
}

/* ===== タブ ===== */
.recruit-page_tab,
.recruit-page_num,
.recruit-page_charm,
.recruit-page_work,
.recruit-page_gallery,
.recruit-page_flow {
  background: #fffdf5;
}

.recruit-page_tab {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .recruit-page_tab {
  padding: 40px 0;
}
}
.recruit-page_tab-panel {
  display: none;
}

.recruit-page_tab-panel.is-active {
  display: block;
}

.recruit-page_tab__inner {
  max-width: 820px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #efefef;
  border-radius: 20px;
}

.recruit-page_tab__btn {
  flex: 1;
  font-size: 24px;
  font-weight: 700;
  color: #727171;
  background: transparent;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .recruit-page_tab__btn {
    font-size: 18px;
    height: 60px;
  }
  
}


.recruit-page_tab__btn--active {
  background: #3c3c3c;
  color: #fffdf5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ===== 数字で見るオオサカチャオメン ===== */
.recruit-page_num {
  background: #fffdf5;
  padding: 0 0 120px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_num {
    padding: 0 0 80px;
  }
}

.recruit-page_num__grid {
  display: flex;
  gap: 16px;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .recruit-page_num__grid {
    flex-direction: column;
    max-width: 640px;
    margin: 0 auto;
  }
  .recruit-page_num__chart-card {
    width: 100%;
    flex-shrink: unset;
  }
}

.recruit-page_num__chart-card {
  background: white;
  box-shadow: 4px 4px 10px rgba(60, 60, 60, 0.2);
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 328px;
  min-height: 380px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
.recruit-page_num__chart-card {
  width: 100%;
}

}

.recruit-page_num__chart-label {
  font-size: 24px;
  font-weight: 700;
  color: #3c3c3c;
  text-align: center;
}
.recruit-page_num__chart-label_svg {
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
.recruit-page_num__chart-label_svg svg {
  overflow: visible;
}

.recruit-page_num__chart-label_svg circle {
  fill: none;
  stroke-width: 32;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.recruit-page_num__chart-label_svg text {
  fill: #3c3c3c;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 1));
}

.chart-bg {
  stroke: #eee;
}

.chart-segment {
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: stroke-dashoffset 1s ease;
}

/* 色 */
.seg1 {
  stroke: #2f6f68;
}
.seg2 {
  stroke: #4f8f88;
}
.seg3 {
  stroke: #7fb0aa;
}
.seg4 {
  stroke: #cfdedd;
}

.recruit-page_num__chart-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.recruit-page_num__stats {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.recruit-page_num__stat {
  background: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  padding: 36px 24px;
  width: calc(50% - 8px);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 182px;
}
@media screen and (max-width: 1024px) {
.recruit-page_num__stat {
  padding: 16px;
}
}
@media screen and (max-width: 768px) {
  .recruit-page_num__stat {
    position: relative;
  padding: 12px 4px 64px 4px;
  min-height: unset;
  }
}

.recruit-page_num__stat-icon {
  width: 108px;
  height: 108px;
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recruit-page_num__stat-icon {
    width: 56px;
    height: 56px;
    position: absolute;
    right: 0;
        left: 0;
        bottom: 0;
        margin: auto;
  }
}

.recruit-page_num__stat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.recruit-page_num__stat-label {
  font-size: 20px;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .recruit-page_num__stat-label {
    font-size: 16px;
  }
}
.recruit-page_num__stat-num {
  font-size: 16px;
  font-weight: 700;
  color: #17645e;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2px;
}

.recruit-page_num__stat-label .recruit-page_num__stat-note {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
  margin-top: 2px;
}

.recruit-page_num__stat-num--center {
  justify-content: center;
}

.recruit-page_num__stat-val {
  font-size: 64px;
  font-weight: 700;
  color: #17645e;
  font-style: normal;
  line-height: 1;
}
@media screen and (max-width: 768px) {
}.recruit-page_num__stat-val {
  font-size: 40px;
}

/* ===== ３つの魅力 ===== */
.recruit-page_charm {
  padding: 0 0 120px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_charm {
    padding: 0 0 80px;
  }
}

.recruit-page_charm__grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .recruit-page_charm__grid {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .recruit-page_charm__grid {
    gap: 24px;
  }
}

.recruit-page_charm__card {
  background: white;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
  width: calc((100% - 80px) / 3);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .recruit-page_charm__card {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .recruit-page_charm__card {
    width: 100%;
  }
}

.recruit-page_charm__ph {
  padding: 20px 16px;
}

.recruit-page_charm__ph img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.recruit-page_charm__head {
  background: #3c3c3c;
  color: white;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 8px 8px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  box-sizing: border-box;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .recruit-page_charm__head {
    font-size: 16px;
    height: 40px;
  }
}

.recruit-page_charm__body {
  padding: 16px 40px;
  flex: 1;
}

.recruit-page_charm__body p {
  font-size: 16px;
  line-height: 1.75;
  color: #3c3c3c;
}
@media screen and (max-width: 768px) {
  .recruit-page_charm__body p {
    font-size: 14px;
  }
}

/* ===== 仕事内容 ===== */
.recruit-page_work {
  padding: 0 0 120px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work {
    padding: 0 0 80px;
  }
}

.recruit-page_work__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media screen and (max-width: 1150px) {
	.recruit-page_work__inner {
		gap: 36px;
	}
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__inner {
    flex-direction: column;
    max-width: 640px;
    margin: 0 auto;
    gap: 24px;
  }
}

.recruit-page_work__duties {
  flex: 0 0 440px;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__duties {
    flex: unset;
  font-size: 16px;
  }
}

.recruit-page_work__duties p {
  margin: 0;
}

.recruit-page_work__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit-page_work__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.6;
}

.recruit-page_work__list li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #3c3c3c;
}

.recruit-page_work__schedule {
  flex: 1;
  background: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    padding: 32px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__schedule {
    padding: 16px 8px;
    width: 100%;
    flex: unset;
    gap: 16px;
  }
}
/* 1日のスケジュール */
.recruit-page_work__schedule-title {
  font-size: 32px;
  font-weight: 700;
  color: #17645e;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__schedule-title {
    font-size: 20px;
  }
}
.recruit-page_work__schedule-list {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-left: 36px;
}
@media screen and (max-width: 768px) {
  .recruit-page_work__schedule-list {
    gap: 16px;
    padding-left: 32px;
  }
}

/* 縦線 */
.recruit-page_work__schedule-list::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  height: calc(100% - 42px);
  width: 2px;
  background: rgba(23, 100, 94, 0.3);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s ease;
}
@media screen and (max-width: 768px) {
  .recruit-page_work__schedule-list::before {
    left: 7px;
  }
}
.recruit-page_work__schedule-list.is-active::before {
  transform: scaleY(1);
}

.recruit-page_work__schedule-list li {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__schedule-list li {
    gap: 16px;
  }
}

.recruit-page_work__time {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #3c3c3c;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 32px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__time {
    font-size: 16px;
  }
}

/* 丸 */
.recruit-page_work__time::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #17645e;
}

.recruit-page_work__schedule-list li > span:last-child {
  font-size: 18px;
  font-weight: 500;
  color: #3c3c3c;
}
@media screen and (max-width: 1024px) {
  .recruit-page_work__schedule-list li > span:last-child {
    font-size: 16px;
  }
}
.recruit-page_work__schedule-note {
  font-size: 14px;
  color: #3c3c3c;
  margin: 0;
}

/* ===== フォトギャラリー ===== */
.recruit-page_gallery {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .recruit-page_gallery {
    flex-wrap: wrap;
  }
}
.recruit-page_gallery__item {
  flex: 1;
  height: 320px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .recruit-page_gallery__item {
    flex: unset;
    width: 33%;
    height: auto;
  }
}

.recruit-page_gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== 採用までの流れ ===== */
.recruit-page_flow {
  padding: 120px 0 80px;
}
@media screen and (max-width: 768px) {
  .recruit-page_flow {
    padding: 80px 0 40px;
  }
}

.recruit-page_flow__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .recruit-page_flow__list {
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
    gap: 24px 8px;
  }
}

.recruit-page_flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit-page_flow__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  background: #a22012;
  color: #fffdf5;
  font-size: 16px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 4px 4px 10px rgba(50, 11, 7, 0.2);
  white-space: nowrap;
}

.recruit-page_flow__circle {
  width: 160px;
  height: 160px;
  padding: 16px;
  border-radius: 50%;
  background: white;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.recruit-page_flow__circle img.recruit-page_flow__icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 8px;
}

.recruit-page_flow__circle span {
  font-size: 14px;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.5;
  display: block;
  max-width: 120px;
  word-break: break-word;
}

.recruit-page_flow__arrow {
  width: 22px;
  height: 38px;
  flex-shrink: 0;
  position: relative;
  margin: 8px 24px 0 16px;
}

.recruit-page_flow__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 24px;
  height: 24px;
  border-top: 2px solid #3c3c3c;
  border-right: 2px solid #3c3c3c;
}

@media screen and (max-width: 768px) {
  .recruit-page_flow__list {
    flex-direction: column;
    align-items: center;
    gap: 0px;
    padding-top: 24px;
  }
  .recruit-page_flow__arrow {
    margin: 0;
  }
  .recruit-page_flow__item {
    padding-top: 20px;
  }
  .recruit-page_flow__circle {
    width: 160px;
    height: 160px;
  }
  .recruit-page_flow__circle img.recruit-page_flow__icon {
    width: 48px;
    height: 48px;
  }
  .recruit-page_flow__circle span {
    font-size: 12px;
  }
  .recruit-page_flow__badge {
font-size: 13px;
        padding: 6px 12px;
        top: 12px;
        left: 0;
        right: 0;
        margin: auto;
        text-align: center;
        width: max-content;
  }
}

/* ===== 募集要項 ===== */
.recruit-page_requirements {
  background: white;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .recruit-page_requirements {
    padding: 80px 0;
  }
}

.recruit-page_requirements__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #9f9f9f;
}

.recruit-page_requirements__table tr {
  display: flex;
  gap: 120px;
  padding: 24px 20px;
  border-bottom: 1px solid #9f9f9f;
}
@media screen and (max-width: 768px) {
  .recruit-page_requirements__table tr {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
}

.recruit-page_requirements__table th {
  display: block;
  width: 160px;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: #3c3c3c;
  letter-spacing: 0.05em;
  line-height: 1.6;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .recruit-page_requirements__table th {
    width: 100%;
    font-size: 16px;
    white-space: normal;
  }
}

.recruit-page_requirements__table td {
  display: block;
  flex: 1;
  font-size: 18px;
  font-weight: 400;
  color: #3c3c3c;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .recruit-page_requirements__table td {
    font-size: 16px;
  }
}

/* ===== 応募フォーム ===== */
.recruit-page_form {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .recruit-page_form {
    padding: 80px 0 0 0;
  }
}
.recruit-page_form__inner {
  max-width: 960px;
  margin: 0 auto;
}


.recruit-page_work__schedule-2col {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    position: relative;
}
.recruit-page_work__schedule-2col::after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 1px;
    height: 80%;
    /* background-color: #ccc; */
    border: dashed 1px #ccc;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list::before{
    height: calc(100% - 80px);
    top: 60px;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list li {
    gap: 18px;
    width: 220px;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list li:first-of-type{
    margin-left: -36px;
    font-weight: 700;
    margin-bottom: -1em;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list li > span:last-child{
        font-size: 16px;
}
@media screen and (max-width: 768px) {
.recruit-page_work__schedule-2col{
    flex-direction: column;
            align-items: center;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list::before {

}
.recruit-page_work__schedule-2col::after {
    width: 80%;
    height: 1px;
}
.recruit-page_work__schedule-2col .recruit-page_work__schedule-list li:first-of-type {
        width: 100%;
        text-align: center;
        display: block;
        margin: 0 auto;
        transform: translateX(-24px);
}
}