@charset "UTF-8";
/*-----ユーティリティ-----*/
.sp_only {
  display: none;
}
@media screen and (max-width: 1079px) {
  .sp_only {
    display: inline;
  }
}

@media screen and (max-width: 1079px) {
  .pc_only {
    display: none;
  }
}

/*-----リセット&ベース-----*/
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
dl,
dt,
dd,
table,
th,
td,
figure {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

p {
  letter-spacing: 0.05em;
}

/*-----header-----*/
header {
  width: 100%;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.header_inner {
  width: 100%;
  height: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header_logo {
  flex-shrink: 0;
}
.header_logo img {
  height: 41px;
  width: auto;
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .nav {
    display: none;
  }
}
.nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1180px) {
  .nav ul {
    gap: 20px;
  }
}
.nav ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  white-space: nowrap;
  transition: color 0.3s;
}
.nav ul li a:hover {
  color: #F3BE00;
}

.header_cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .header_cta {
    display: none;
  }
}

.btn_new,
.btn_career {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.btn_new {
  background-color: #366CD6;
}

.btn_career {
  background-color: #F3BE00;
}

.btn_new:hover,
.btn_career:hover {
  opacity: 0.8;
}

/* ハンバーガー */
.toggle_wrap {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .toggle_wrap {
    display: flex;
  }
}
.toggle_wrap span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.toggle_wrap.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.toggle_wrap.open span:nth-child(2) {
  opacity: 0;
}
.toggle_wrap.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* SPナビ */
.nav_sp {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 99;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.nav_sp ul li a {
  display: block;
  width: 100%;
  padding: 16px 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  border-bottom: 1px solid #f0f0f0;
}

/*-----top_mv-----*/
.top_mv {
  position: relative;
  margin-top: 80px;
  padding: 80px 0 100px;
  overflow: hidden;
  background: #fff;
  min-height: 700px;
}
@media screen and (max-width: 1079px) {
  .top_mv {
    margin-top: 60px;
    padding: 0;
    min-height: auto;
  }
}

.mv_glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(243, 190, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.mv_inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .mv_inner {
    width: 96%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_inner {
    flex-direction: column;
    padding: 0;
    gap: 0;
    position: relative;
  }
}

.mv_left {
  flex-shrink: 0;
  width: 480px;
  padding-top: 20px;
}
@media screen and (max-width: 1100px) {
  .mv_left {
    width: 400px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_left {
    width: 100%;
    padding: 30px 20px 0;
    position: relative;
  }
}

.mv_catch {
  font-size: 7rem;
  font-weight: 900;
  line-height: 1.2;
  color: #333;
  letter-spacing: 0;
}
@media screen and (max-width: 1100px) {
  .mv_catch {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .mv_catch {
    font-size: 4.8rem;
  }
}
.mv_catch .en {
  font-size: 7rem;
  font-weight: 900;
  color: #F3BE00;
}
@media screen and (max-width: 1100px) {
  .mv_catch .en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .mv_catch .en {
    font-size: 4.8rem;
  }
}
.mv_catch .ja {
  font-size: 5.4rem;
  font-weight: 900;
  color: #333;
}
@media screen and (max-width: 1100px) {
  .mv_catch .ja {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .mv_catch .ja {
    font-size: 3.6rem;
  }
}

.mv_sub {
  margin-top: 24px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .mv_sub {
    font-size: 1.5rem;
    margin-top: 16px;
    padding-right: 0;
  }
}

.mv_card_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .mv_card_list {
    margin-top: 28px;
    gap: 0;
  }
}

.mv_card {
  display: flex;
  align-items: stretch;
  width: 420px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1100px) {
  .mv_card {
    width: 360px;
    height: 85px;
  }
}
@media screen and (max-width: 767px) {
  .mv_card {
    width: 100%;
    height: 80px;
    border-radius: 0;
  }
}
.mv_card:hover {
  opacity: 0.85;
}

.mv_card_img {
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
  .mv_card_img {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .mv_card_img {
    display: block;
    width: 40%;
  }
}

.mv_card_img_placeholder {
  width: 100%;
  height: 100%;
  background-color: #c8c8c8;
}

.mv_card_label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .mv_card_label {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .mv_card_label {
    font-size: 1.8rem;
    padding: 0 20px;
  }
}
.mv_card_label.blue {
  background-color: #366CD6;
}
.mv_card_label.yellow {
  background-color: #F3BE00;
}

.mv_card_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv_card_arrow {
    width: 32px;
    height: 32px;
  }
}

/* 右側写真コラージュ */
.mv_right {
  flex: 1;
  position: relative;
  min-height: 560px;
}
@media screen and (max-width: 1100px) {
  .mv_right {
    min-height: 420px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_right {
    order: -1;
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
    aspect-ratio: 5/2;
  }
}

.mv_photo {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
}
.mv_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease;
}

/* 写真01：右上の大きい写真（画面外へはみ出し） */
.mv_photo_01 {
  top: -60px;
  right: -120px;
  width: 480px;
  height: 380px;
}
@media screen and (max-width: 1100px) {
  .mv_photo_01 {
    width: 380px;
    height: 300px;
    right: -100px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_photo_01 {
    top: 0;
    right: 0;
    left: 32%;
    bottom: auto;
    width: auto;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: 0;
  }
}

/* 写真02：中央の女性写真 */
.mv_photo_02 {
  top: 80px;
  left: 20px;
  width: 380px;
  height: 280px;
}
@media screen and (max-width: 1100px) {
  .mv_photo_02 {
    width: 300px;
    height: 220px;
    left: 0;
  }
}
@media screen and (max-width: 1079px) {
  .mv_photo_02 {
    top: auto;
    left: auto;
    right: 0;
    bottom: -60px;
    width: 35%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 10px 0 0 0;
    z-index: 2;
  }
}

/* 写真03：右下小さめ（インテリア）- mv_inner基準 */
.mv_photo_03 {
  position: absolute;
  bottom: 40px;
  right: 120px;
  width: 200px;
  height: 155px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .mv_photo_03 {
    width: 160px;
    height: 125px;
    right: 40px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_photo_03 {
    top: auto;
    right: 60px;
    left: auto;
    bottom: 175px;
    width: 95px;
    height: 70px;
    border-radius: 10px;
  }
}

/* 写真04：右端（画面外へはみ出し）- mv_inner基準 */
.mv_photo_04 {
  position: absolute;
  bottom: 10px;
  right: -60px;
  width: 230px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .mv_photo_04 {
    width: 180px;
    height: 140px;
    right: -80px;
  }
}
@media screen and (max-width: 1079px) {
  .mv_photo_04 {
    top: auto;
    right: 12px;
    left: auto;
    bottom: 240px;
    width: 120px;
    height: 100px;
    border-radius: 10px;
  }
}

/*-----page_mv-----*/
.page_mv {
  margin-top: 80px;
  background-color: #ebebeb;
  padding: 50px 0 48px;
}
@media screen and (max-width: 767px) {
  .page_mv {
    padding: 36px 0 32px;
  }
}

.page_mv_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .page_ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

.page_cta_list {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .page_cta_list {
    flex-direction: column;
    gap: 12px;
  }
}

.page_cta_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 300px;
  height: 68px;
  padding: 0 24px 0 28px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .page_cta_btn {
    width: 100%;
    height: 60px;
    font-size: 1.7rem;
  }
}
.page_cta_btn.blue {
  background-color: #366CD6;
}
.page_cta_btn.yellow {
  background-color: #F3BE00;
}
.page_cta_btn:hover {
  opacity: 0.85;
}

.cta_arrow {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

/*-----breadcrumb-----*/
.breadcrumb {
  padding: 10px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 8px 0;
  }
}

.breadcrumb_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.breadcrumb_inner ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 4px;
  gap: 0;
}
.breadcrumb_inner ul li {
  font-size: 1.2rem;
  color: #999999;
}
.breadcrumb_inner ul li a {
  color: #999999;
  transition: color 0.3s;
}
.breadcrumb_inner ul li a:hover {
  color: #F3BE00;
}
.breadcrumb_inner ul li + li::before {
  content: "＞";
  margin: 0 6px;
  color: #bbbbbb;
  font-size: 1rem;
}

/*-----catch_sec-----*/
.catch_sec {
  padding: 70px 0 80px;
}
@media screen and (max-width: 767px) {
  .catch_sec {
    padding: 52px 0 60px;
  }
}
.catch_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.catch_sec .l_wrap {
  flex: 1;
}
.catch_sec .r_wrap {
  flex-shrink: 0;
  width: 370px;
}
@media screen and (max-width: 767px) {
  .catch_sec .r_wrap {
    width: 100%;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .catch_sec .r_wrap {
    width: 100%;
  }
}

.catch_flex {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .catch_flex {
    display: block;
  }
}

.catch_ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .catch_ttl {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }
}

.catch_txt {
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  line-height: 2;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .catch_txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.catch_img {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #c8c8c8;
  border-radius: 10px;
}

/*-----flow_sec-----*/
.flow_sec {
  padding: 100px 0;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .flow_sec {
    padding: 60px 0;
  }
}
.flow_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flow_list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.flow_item {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_item {
    flex-direction: column;
  }
}
.flow_item + .flow_item {
  margin-top: 20px;
}
.flow_item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 11px solid #F3BE00;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .flow_item:not(:last-child)::after {
    left: 50%;
    bottom: -14px;
  }
}
.flow_item.step06 .flow_step {
  flex: 1;
}

.flow_step {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  background-color: #F3BE00;
  padding: 24px 20px;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .flow_step {
    width: 100%;
    padding: 16px 20px;
  }
}

.step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.step_name {
  display: flex;
  align-items: center;
  width: 190px;
  padding: 0 0 0 16px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 767px) {
  .step_name {
    flex: 1;
    width: auto;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .step_name {
    flex: 1;
    width: auto;
    font-size: 1.6rem;
  }
}

.flow_desc {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 22px 32px;
  font-size: 1.4rem;
  color: #374151;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .flow_desc {
    padding: 16px 20px;
    font-size: 1.3rem;
  }
}

/*-----company_sec-----*/
.company_sec {
  padding: 72px 0 80px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .company_sec {
    padding: 52px 0 60px;
  }
}
.company_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.company_sec .btn_wrap {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .company_sec .btn_wrap {
    justify-content: center;
  }
}

.company_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .company_ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.company_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .company_list {
    gap: 14px;
  }
}
.company_list li {
  width: calc(33.333% - 14px);
}
@media screen and (max-width: 767px) {
  .company_list li {
    width: calc(50% - 7px);
  }
}

.company_card {
  display: block;
  width: 100%;
  transition: opacity 0.3s;
}
.company_card:hover {
  opacity: 0.85;
}

.company_card_img {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #c8c8c8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.circle_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  color: #333333;
  flex-shrink: 0;
}

.company_name {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333333;
}

/*-----jobs_sec-----*/
.jobs_sec {
  padding: 80px 0 90px;
}
@media screen and (max-width: 767px) {
  .jobs_sec {
    padding: 56px 0 64px;
  }
}
.jobs_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.jobs_sec .ttl_wrap {
  width: 100%;
}

.jobs_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.jobs_list li {
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .jobs_list li {
    width: 100%;
  }
}

.job_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 22px;
  background-color: #f5f5f5;
  border-radius: 6px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  transition: background-color 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.job_item:hover {
  background-color: #e8e8e8;
}

/*-----共通 ttl_wrap・sec_en-----*/
.sec_en {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F3BE00;
  line-height: 2.57;
  letter-spacing: 0;
}

.ttl_wrap h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .ttl_wrap h2 {
    font-size: 2.4rem;
  }
}

.ttl_wrap.center .sec_en {
  text-align: center;
}

.ttl_wrap.center h2 {
  text-align: center;
}

/*-----共通 btn_wrap・more_btn・detail_btn-----*/
.btn_wrap {
  display: flex;
  justify-content: center;
}

.more_btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 260px;
  background-color: #F0BC00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .more_btn {
    width: 35rem;
    padding: 20px 30px;
  }
}
.more_btn:hover {
  opacity: 0.85;
}
.more_btn .arrow {
  font-size: 1.6rem;
  line-height: 1;
}

.detail_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 52px;
  background-color: #9e9e9e;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.detail_btn:hover {
  opacity: 0.85;
}

/*-----top_interview-----*/
.top_interview {
  background-color: #F5F5F5;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .top_interview {
    padding: 60px 0;
  }
}
.top_interview .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.interview_list {
  display: flex;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview_list {
    display: block;
    width: 100%;
  }
}
.interview_list li {
  flex: 1;
  min-width: 0;
}

.interview_card {
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  min-width: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .interview_card {
    display: block;
    border-radius: 15px;
    margin-bottom: 25px;
    width: 100%;
  }
}
.interview_card:hover {
  opacity: 0.85;
}
.interview_card .thum_wrap {
  width: 100%;
  aspect-ratio: 2560/1254;
  overflow: hidden;
  background-color: #c8c8c8;
}
.interview_card .thum_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview_card .txt_wrap {
  padding: 16px 24px 24px;
}
@media screen and (max-width: 767px) {
  .interview_card .txt_wrap {
    padding: 20px 30px 24px;
  }
}
.interview_card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .interview_card h3 {
    font-size: 1.8rem;
    margin-top: 12px;
    line-height: 1.75;
  }
}
.interview_card h3 .i_company_job {
  display: block;
}
.interview_card h3 .i_company_place {
  display: block;
  font-size: 1.2rem;
}
.interview_card .name {
  font-size: 1.3rem;
  color: #A3A3A3;
  margin-top: 4px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .interview_card .name {
    font-size: 1.6rem;
    margin-top: 8px;
  }
}

.badge {
  display: inline-block;
  background-color: #cbcbcb;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 9999px;
  line-height: 1.5;
}

/*-----top_about-----*/
.top_about {
  padding: 100px 0;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .top_about {
    padding: 60px 0;
  }
}
.top_about .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.about_list {
  display: flex;
  gap: 28px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about_list {
    display: block;
  }
}
.about_list li {
  flex: 1;
  min-width: 0;
}

.about_card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .about_card {
    margin-bottom: 38px;
  }
}
.about_card:hover {
  opacity: 0.85;
}
.about_card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .about_card h3 {
    font-size: 1.8rem;
  }
}

.about_img_placeholder {
  width: 100%;
  aspect-ratio: 3/2;
  background-color: #c8c8c8;
  border-radius: 10px;
}

/*-----job detail page-----*/
/* パンくず（job/ サブページ用：header分のtopを確保） */
.job_breadcrumb {
  margin-top: 80px;
}

/* ヒーロー：左グレー＋右画像の分割レイアウト */
.job_hero {
  display: flex;
  height: 280px;
}
@media screen and (max-width: 767px) {
  .job_hero {
    height: 200px;
  }
}

.job_hero_left {
  flex: 1;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  padding: 0 60px;
}
@media screen and (max-width: 767px) {
  .job_hero_left {
    padding: 0 24px;
  }
}

.job_hero_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .job_hero_ttl {
    font-size: 2.4rem;
  }
}

.job_hero_right {
  flex: 1;
  background-color: #c8c8c8;
}

/* 募集要項セクション */
.job_spec_sec {
  padding: 72px 0 80px;
}

.job_spec_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.job_spec_block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.job_spec_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}

.job_spec_sub {
  font-size: 1.6rem;
  font-weight: 400;
  color: #666666;
}

.job_spec_line {
  border: none;
  border-top: 1px solid #333333;
  margin: 0 0 0;
}

/* 募集要項テーブル（シンプル・ボーダーなし） */
.job_spec_table {
  width: 100%;
  margin-top: 0;
}

.job_spec_row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .job_spec_row {
    display: block;
  }
}
.job_spec_row:first-child {
  padding-top: 32px;
}

.job_spec_label {
  width: 160px;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  padding-top: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .job_spec_label {
    width: 100px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .job_spec_label {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
  }
}

.job_spec_content {
  flex: 1;
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  line-height: 1.9;
}

/* 募集中の会社 ロゴボタン */
.company_logo_btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .company_logo_btns {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.company_logo_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: auto;
  height: 64px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 0 16px;
  transition: opacity 0.3s;
}
.company_logo_btn:hover {
  opacity: 0.75;
}

.company_logo_placeholder {
  font-size: 1.3rem;
  font-weight: 700;
  color: #aaaaaa;
}

.company_logo_arrow {
  font-size: 1.4rem;
  color: #999999;
}

/* エントリーバナー */
.job_entry_banners {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job_entry_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 16px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .job_entry_banner {
    height: 80px;
    font-size: 1.8rem;
    border-radius: 12px;
  }
}
.job_entry_banner:hover {
  opacity: 0.85;
}

/* この職場のインタビュー */
.job_interview_sec {
  padding: 0 0 100px;
  background-color: #f5f5f5;
}
.job_interview_sec .job_spec_inner {
  padding-top: 72px;
}

.job_interview_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
}

/*-----interview detail page-----*/
/* MV：フル幅画像プレースホルダー（写真なしの場合用、高さ縛りは外して aspect-ratio 維持に統一） */
.interview_detail_mv {
  margin-top: 80px;
  background-color: #c8c8c8;
}

.interview_detail_mv_label {
  font-size: 2rem;
  font-weight: 700;
  color: #999999;
}

/* 共通ラッパー（1000px幅） */
.interview_article_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 本文記事 */
.interview_article {
  padding: 72px 0 80px;
}

/* 交互ブロック */
.interview_block {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .interview_block {
    flex-direction: column;
    gap: 24px;
  }
}

.interview_block--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .interview_block--reverse {
    flex-direction: column;
  }
}

.interview_block_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.interview_block_img {
  width: 300px;
  aspect-ratio: 4/3;
  background-color: #c8c8c8;
  border-radius: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .interview_block_img {
    width: 100%;
  }
}

.interview_block_ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}

.interview_block_txt {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
}

/* この職場について知る */
.interview_company_sec {
  padding: 0 0 80px;
}

.interview_company_ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
}

.interview_company_card {
  display: flex;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: opacity 0.3s;
}
.interview_company_card:hover {
  opacity: 0.85;
}

.interview_company_name_area {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 40px;
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .interview_company_name_area {
    padding: 0 24px;
    font-size: 1.6rem;
  }
}

.interview_company_img_area {
  position: relative;
  width: 260px;
  flex-shrink: 0;
  background-color: #c8c8c8;
}
@media screen and (max-width: 767px) {
  .interview_company_img_area {
    width: 160px;
  }
}

/* この職場で働く他の社員インタビュー */
.interview_other_sec {
  padding: 80px 0 100px;
  background-color: #f5f5f5;
}

.interview_other_ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
}

/*-----career sub page (募集要項)-----*/
.career_spec_sec {
  padding: 72px 0 80px;
  background-color: #fff;
}

.career_spec_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.career_spec_ttl {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
}

.career_spec_desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
}

.career_spec_link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 36px;
  background-color: #f5f5f5;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  transition: background-color 0.3s;
}
.career_spec_link:hover {
  background-color: #e8e8e8;
}

.career_spec_arrow {
  font-size: 1.6rem;
  color: #999999;
}

/*-----contact_intro-----*/
.contact_intro_sec {
  padding: 72px 0 40px;
}
.contact_intro_sec .content_wrap {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.contact_intro_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact_intro_ttl {
    font-size: 2.4rem;
  }
}

.contact_intro_line {
  border: none;
  border-top: 1px solid #333333;
  margin: 0;
}

.contact_intro_desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1079px) {
  .contact_intro_desc {
    text-align: left;
  }
}

/*-----form (共通)-----*/
.form_sec {
  padding: 40px 0 80px;
}

.form_sec .content_wrap,
.entry_section .content_wrap {
  width: 920px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form_table {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.form_row {
  display: flex;
  border-bottom: 1px solid #e8e8e8;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
  }
}
.form_row:last-child {
  border-bottom: none;
}

.form_label {
  width: 280px;
  flex-shrink: 0;
  background-color: #f5f5f5;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #e8e8e8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form_label {
    width: 140px;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 767px) {
  .form_label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 16px;
  }
}

.form_label_text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form_label_text {
    font-size: 1.2rem;
  }
}

.required_badge {
  display: inline-block;
  background-color: #F3BE00;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 9999px;
  flex-shrink: 0;
  white-space: nowrap;
}

.form_input {
  flex: 1;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form_input {
    padding: 12px 14px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .form_input {
    padding: 14px 16px;
  }
}

.form_input--radio {
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .form_input--radio {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.form_input--age {
  align-items: center;
}

.radio_label,
.check_label,
.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #333333;
  cursor: pointer;
}

input[type=text],
input[type=tel],
input[type=email] {
  width: 300px;
  max-width: 100%;
  height: 42px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 0 14px;
  font-size: 1.4rem;
  font-family: inherit;
  color: #333333;
  background-color: #fff;
  transition: border-color 0.2s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus {
  outline: none;
  border-color: #F3BE00;
}

.input_age {
  width: 80px;
}

.age_unit {
  font-size: 1.4rem;
  color: #333333;
  margin-left: 10px;
}

.form_select {
  height: 42px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 0 40px 0 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  font-size: 1.4rem;
  font-family: inherit;
  color: #333333;
  background-color: #fff;
  min-width: 200px;
  transition: border-color 0.2s;
}
.form_select:focus {
  outline: none;
  border-color: #F3BE00;
}

textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 1.4rem;
  font-family: inherit;
  color: #333333;
  resize: vertical;
  transition: border-color 0.2s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
textarea:focus {
  outline: none;
  border-color: #F3BE00;
}

.checkbox_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .checkbox_grid {
    grid-template-columns: 1fr;
  }
}

/*-----entry_banner (contact page)-----*/
.entry_banner_sec {
  padding: 40px 0 100px;
}
.entry_banner_sec .content_wrap {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.entry_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 40px;
  background-color: #e0e0e0;
  border-radius: 24px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  transition: opacity 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .entry_banner {
    padding: 50px 24px;
    font-size: 2.4rem;
    border-radius: 16px;
  }
}
.entry_banner:hover {
  opacity: 0.85;
}

/*-----entry page-----*/
.entry_nav_sec {
  padding: 60px 0 40px;
}
.entry_nav_sec .content_wrap {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.entry_nav_btns {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .entry_nav_btns {
    flex-direction: column;
    align-items: center;
  }
}

.entry_nav_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 68px;
  padding: 0 24px;
  background-color: #c0c0c0;
  border-radius: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .entry_nav_btn {
    width: 100%;
    max-width: 320px;
  }
}
.entry_nav_btn:hover {
  opacity: 0.85;
}

.entry_nav_arrow {
  font-size: 2rem;
}

.entry_section {
  padding: 60px 0 80px;
}

.entry_sec_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
  padding-bottom: 16px;
  border-bottom: 1px solid #dcdcdc;
  margin-bottom: 40px;
}

.entry_new_layout {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .entry_new_layout {
    flex-direction: column;
  }
}

.entry_new_txt {
  flex: 1;
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  line-height: 1.9;
}

.entry_new_cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 120px;
  background-color: #c8c8c8;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .entry_new_cta {
    width: 100%;
    height: 90px;
    font-size: 1.8rem;
  }
}
.entry_new_cta:hover {
  opacity: 0.85;
}

.entry_career_desc {
  text-align: center;
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1079px) {
  .entry_career_desc {
    text-align: left;
  }
}

.privacy_note {
  margin-top: 28px;
  font-size: 1.2rem;
  color: #555555;
  line-height: 1.9;
}
.privacy_note h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333333;
  margin-top: 16px;
  margin-bottom: 4px;
}
.privacy_note h4:first-child {
  margin-top: 0;
}
.privacy_note a {
  color: #333333;
  text-decoration: underline;
}

.submit_wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 52px;
  background-color: #F3BE00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}
.submit_btn:hover {
  opacity: 0.85;
}

/*-----interview_intro-----*/
.interview_intro {
  padding: 80px 0 60px;
}
@media screen and (max-width: 767px) {
  .interview_intro {
    padding: 52px 0 40px;
  }
}
.interview_intro .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.interview_intro_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .interview_intro_ttl {
    font-size: 2.4rem;
  }
}

.interview_intro_desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .interview_intro_desc {
    text-align: left;
    font-size: 1.4rem;
  }
}

/*-----interview_cat_sec-----*/
.interview_cat_sec {
  padding: 40px 0 80px;
}
@media screen and (max-width: 767px) {
  .interview_cat_sec {
    padding: 32px 0 56px;
  }
}
.interview_cat_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.interview_cat_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .interview_cat_ttl {
    font-size: 2rem;
  }
}

.interview_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .interview_grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.interview_grid .thum_wrap {
  background-color: #c8c8c8;
}

/* グリッド内のインタビューカードはサムネをグレープレースホルダーで表示 */
/*-----company_sec 右寄せボタン-----*/
.company_sec_btn {
  justify-content: flex-end;
}

/*-----org_sec-----*/
.org_sec {
  padding: 80px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .org_sec {
    padding: 56px 0;
  }
}

.org_inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.org_desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .org_desc {
    text-align: left;
    font-size: 1.3rem;
  }
}

.org_diagram {
  width: 100%;
  height: 300px;
  background-color: #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .org_diagram {
    height: 200px;
  }
}

.org_diagram_label {
  font-size: 2rem;
  font-weight: 700;
  color: #999999;
}

/*-----company_detail_sec-----*/
.company_detail_sec {
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .company_detail_sec {
    padding: 56px 0 64px;
  }
}
.company_detail_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.company_detail_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.company_detail_card {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .company_detail_card {
    flex-direction: column;
    gap: 20px;
    padding: 32px 0;
  }
}

/* 左カラム：ロゴ＋画像を重ねる */
.company_detail_left {
  position: relative;
  width: 280px;
  height: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .company_detail_left {
    width: 100%;
    height: auto;
    aspect-ratio: 280/200;
  }
}

/* ロゴ：画像の上に重ねる（z-index: 2） */
.company_detail_logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 130px;
  height: 64px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #aaaaaa;
}
@media screen and (max-width: 767px) {
  .company_detail_logo {
    width: 100px;
    height: 50px;
  }
}

/* 画像：左カラム全体を覆う（z-index: 1） */
.company_detail_img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background-color: #c8c8c8;
  border-radius: 6px;
  transition: opacity 0.3s;
}
.company_detail_img:hover {
  opacity: 0.85;
}

/* 矢印：画像の右下 */
.company_circle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background-color: #fff;
  color: #333333;
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
}

.company_detail_right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company_detail_name {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .company_detail_name {
    font-size: 1.8rem;
  }
}

.company_detail_sub {
  font-size: 1.3rem;
  color: #666666;
  line-height: 1.6;
}

.company_detail_desc {
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
}

.company_jobs {
  border-top: 1px solid #e0e0e0;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.company_jobs_label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333333;
}

.company_jobs_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job_tag {
  display: inline-block;
  padding: 5px 16px;
  background-color: #c8c8c8;
  color: #333333;
  font-size: 1.2rem;
  font-weight: 500;
  border-radius: 9999px;
  transition: opacity 0.3s;
}
.job_tag:hover {
  opacity: 0.75;
}

/*-----jobs_card_sec-----*/
.page_mv--jobs {
  padding: 80px 0 90px;
}
@media screen and (max-width: 767px) {
  .page_mv--jobs {
    padding: 50px 0 60px;
  }
}

.jobs_card_sec {
  padding: 80px 0 90px;
}
@media screen and (max-width: 767px) {
  .jobs_card_sec {
    padding: 56px 0 64px;
  }
}
.jobs_card_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.jobs_card_sec .ttl_wrap {
  width: 100%;
}

.jobs_card_list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.jobs_card_list li {
  width: calc(50% - 8px);
}
@media screen and (max-width: 767px) {
  .jobs_card_list li {
    width: 100%;
  }
}

.job_card {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 16px;
  position: relative;
  transition: opacity 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.job_card:hover {
  opacity: 0.85;
}

.job_card_img {
  width: 130px;
  height: 130px;
  background-color: #c8c8c8;
  border-radius: 6px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .job_card_img {
    width: 110px;
    height: 110px;
  }
}

.job_card_name {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .job_card_name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .job_card_name {
    font-size: 1.6rem;
  }
}

.job_arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: #9e9e9e;
  color: #fff;
}

/*-----footer-----*/
footer {
  background-color: #333333;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 32px 24px;
  }
}

.footer_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    display: block;
  }
}

.footer_logo {
  background-color: #fff;
  border-radius: 4px;
  padding: 10px;
  width: 150px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    margin: 0 0 24px;
  }
}
.footer_logo img {
  height: 26px;
  width: auto;
}

.footer_nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer_nav ul {
    display: block;
  }
}
.footer_nav ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li a {
    font-size: 1.3rem;
  }
}
.footer_nav ul li a:hover {
  opacity: 0.7;
}

.btn_contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  background-color: #F3BE00;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .btn_contact {
    width: 150px;
  }
}
.btn_contact:hover {
  opacity: 0.85;
}

/*-----news_list-----*/
.news_list_sec {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .news_list_sec {
    padding: 40px 0 60px;
  }
}
.news_list_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.news_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .news_grid {
    gap: 20px;
  }
}

.news_card {
  display: block;
  width: calc((100% - 64px) / 3);
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .news_card {
    width: 100%;
  }
}
.news_card:hover {
  opacity: 0.85;
}

.news_card_img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: #c8c8c8;
}
@media screen and (max-width: 767px) {
  .news_card_img {
    padding-top: 56.25%;
  }
}
.news_card_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_card_body {
  padding: 16px 24px 24px;
}

.news_card_meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news_date {
  font-size: 1.3rem;
  color: #999;
  white-space: nowrap;
}

.news_cat {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background: #cbcbcb;
  padding: 3px 12px;
  border-radius: 30px;
  white-space: nowrap;
}

.news_title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .news_title {
    font-size: 1.4rem;
  }
}

/* ページネーション */
.news_pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .news_pagination {
    margin-top: 35px;
  }
}

.news_page_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  border: 1px solid #e8e8e8;
  border-radius: 9999px;
  transition: all 0.3s;
}
.news_page_item:hover {
  background: #F3BE00;
  color: #fff;
  border-color: #F3BE00;
}

.news_page_current {
  background: #F3BE00;
  color: #fff;
  border-color: #F3BE00;
}

.news_page_next {
  width: auto;
  padding: 0 20px;
  border-radius: 9999px;
}

/*-----news_detail-----*/
.news_detail_sec {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .news_detail_sec {
    padding: 40px 0 60px;
  }
}

.news_detail_inner {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.news_detail_header {
  margin-bottom: 32px;
}

.news_detail_meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.news_detail_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .news_detail_ttl {
    font-size: 2rem;
  }
}

.news_detail_eyecatch {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.news_detail_eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.news_detail_body {
  margin-bottom: 60px;
}
.news_detail_body p {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .news_detail_body p {
    font-size: 1.4rem;
  }
}
.news_detail_body a {
  text-decoration: underline;
  color: #366CD6;
}
.news_detail_body a:hover {
  text-decoration: none;
}
.news_detail_body h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-left: 4px solid #F3BE00;
}
@media screen and (max-width: 767px) {
  .news_detail_body h2 {
    font-size: 1.9rem;
    padding: 10px 14px;
  }
}
.news_detail_body h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #F3BE00;
}
@media screen and (max-width: 767px) {
  .news_detail_body h3 {
    font-size: 1.8rem;
  }
}
.news_detail_body h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid #F3BE00;
}
@media screen and (max-width: 767px) {
  .news_detail_body h4 {
    font-size: 1.6rem;
  }
}
.news_detail_body h5 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin-top: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .news_detail_body h5 {
    font-size: 1.5rem;
  }
}
.news_detail_body h6 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #666;
  margin-top: 20px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .news_detail_body h6 {
    font-size: 1.3rem;
  }
}

.news_detail_img {
  margin: 32px 0;
  border-radius: 8px;
  overflow: hidden;
}
.news_detail_img img {
  width: 100%;
  height: auto;
  display: block;
}

.news_detail_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  .news_detail_nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news_detail_nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid #e8e8e8;
  border-radius: 9999px;
  transition: all 0.3s;
}
.news_detail_nav a:hover {
  opacity: 0.85;
}

.news_nav_prev,
.news_nav_next {
  min-width: 140px;
}

.news_nav_list {
  background-color: #F0BC00;
  color: #fff;
  border-color: #F0BC00;
}
@media screen and (max-width: 767px) {
  .news_nav_list {
    order: 3;
    width: 100%;
  }
}
.news_nav_list:hover {
  background: #F0BC00;
  color: #fff;
}

/*-----レスポンシブ-----*/
/* タブレット ≤1100px */
/* SP ≤767px */
/*=====  デザイン版 上書きCSS  =====*/
/*-----header design override-----*/
.header_inner {
  gap: 40px;
}

.toggle_wrap span {
  height: 2.5px;
  background-color: #F3BE00;
  border-radius: 10px;
}

.nav {
  justify-content: right;
}
@media screen and (max-width: 1080px) {
  .nav {
    display: none;
  }
}
.nav ul {
  gap: 30px;
}
@media screen and (max-width: 1180px) {
  .nav ul {
    gap: 20px;
  }
}

/*-----top_mv design override-----*/
.mv_card_img {
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .mv_card_img {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .mv_card_img {
    display: block;
    width: 40%;
  }
}
.mv_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----MV見出しデザイン-----*/
.design_mv_catch .en {
  font-size: 10rem;
  font-weight: 900;
  color: #fff;
  -webkit-text-stroke: 3px #F3BE00;
  letter-spacing: 0.02em;
  paint-order: stroke fill;
}
.design_mv_catch .en.yellow {
  color: #F3BE00;
  -webkit-text-stroke: 0;
  font-size: 10rem;
}
@media screen and (max-width: 767px) {
  .design_mv_catch .en.yellow {
    -webkit-text-stroke: 0;
  }
}

.design_mv_catch .ja {
  font-size: 5.4rem;
  font-weight: 900;
  color: #333;
}
@media screen and (max-width: 767px) {
  .design_mv_catch .ja {
    font-size: 3.6rem;
  }
}

/* LIVEだけ黄色ベタ */
/*-----MV写真レイアウト上書き-----*/
/* ボタン左下の黄色グロー */
.top_mv .mv_card_list {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_card_list {
    padding: 20px;
    gap: 10px;
  }
}
.top_mv .mv_card_list::before {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(243, 190, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_card_list::before {
    width: 200px;
    height: 200px;
    bottom: -40px;
    left: -40px;
  }
}

/* -------- FV写真グリッド -------- */
.top_mv .mv_glow {
  z-index: 0;
}

.top_mv .mv_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding-right: 0;
}

.top_mv {
  padding: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .top_mv {
    margin-top: 60px;
    padding: 0;
    min-height: auto;
  }
}
.top_mv .mv_left {
  padding-top: 40px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .top_mv .mv_left {
    width: 100%;
    position: relative;
    padding: 30px 0 0;
  }
}
@media screen and (min-width: 1080px) {
  .top_mv .mv_right {
    display: grid;
    grid-template-columns: repeat(501, 1fr);
    grid-template-rows: repeat(382, 1fr);
    aspect-ratio: 501/382;
    min-height: auto;
    margin-left: auto;
    align-self: flex-start;
  }
  .top_mv .mv_photo {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 1441px) {
  .top_mv .mv_photo_01 {
    grid-column: 92/502;
    grid-row: 1/278;
    transform: translate(10px, -10px);
  }
  .top_mv .mv_photo_02 {
    grid-column: 1/161;
    grid-row: 119/227;
    z-index: 2;
  }
  .top_mv .mv_photo_03 {
    grid-column: 64/284;
    grid-row: 234/383;
  }
  .top_mv .mv_photo_04 {
    grid-column: 304/414;
    grid-row: 244/318;
  }
}
@media screen and (min-width: 1180px) and (max-width: 1440px) {
  .top_mv {
    min-height: auto;
  }
  .top_mv .mv_left {
    width: 35%;
    flex-shrink: 0;
  }
  .top_mv .mv_right {
    flex: 1;
    min-width: 0;
  }
  .top_mv .mv_photo_01 {
    grid-column: 92/502;
    grid-row: 1/278;
    transform: translate(10px, -10px);
  }
  .top_mv .mv_photo_02 {
    grid-column: 1/161;
    grid-row: 119/227;
    z-index: 2;
  }
  .top_mv .mv_photo_03 {
    grid-column: 64/284;
    grid-row: 234/383;
  }
  .top_mv .mv_photo_04 {
    grid-column: 304/414;
    grid-row: 244/318;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1179px) {
  .top_mv {
    min-height: auto;
  }
  .top_mv .mv_left {
    width: 35%;
    flex-shrink: 0;
  }
  .top_mv .mv_catch {
    font-size: 4.4rem;
  }
  .top_mv .mv_catch .en {
    font-size: 4.4rem;
  }
  .top_mv .design_mv_catch .en {
    font-size: 7rem;
  }
  .top_mv .design_mv_catch .en.yellow {
    font-size: 7rem;
  }
  .top_mv .design_mv_catch .ja {
    font-size: 3.8rem;
  }
  .top_mv .mv_right {
    flex: 1;
    min-width: 0;
  }
  .top_mv .mv_photo_01 {
    grid-column: 92/502;
    grid-row: 1/278;
    transform: translate(10px, -10px);
  }
  .top_mv .mv_photo_02 {
    grid-column: 1/161;
    grid-row: 119/227;
    z-index: 2;
  }
  .top_mv .mv_photo_03 {
    grid-column: 64/284;
    grid-row: 234/383;
  }
  .top_mv .mv_photo_04 {
    grid-column: 304/414;
    grid-row: 244/318;
  }
}
@media screen and (max-width: 1079px) {
  .top_mv {
    margin-top: 60px;
    padding: 0;
    min-height: auto;
  }
  .top_mv .mv_inner {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .top_mv .mv_left {
    order: 1;
    width: 100%;
    padding: 60px 20px 0 0;
  }
  .top_mv .mv_right {
    order: 0;
    flex: none;
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
    aspect-ratio: 5/2;
  }
  .top_mv .mv_photo {
    position: absolute;
    transform: none;
  }
  .top_mv .mv_photo_01 {
    top: 10px;
    left: 32%;
    right: 0;
    bottom: auto;
    width: auto;
    height: auto;
    aspect-ratio: 3/2;
    border-radius: 16px;
    overflow: hidden;
    transform: none;
  }
  .top_mv .mv_photo_01 img {
    border-radius: 16px;
  }
  .top_mv .mv_photo_02 {
    top: auto;
    left: auto;
    right: 0;
    bottom: -110px;
    width: 35%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
  }
  .top_mv .mv_photo_02 img {
    border-radius: 16px;
  }
  .top_mv .mv_photo_03 {
    display: block !important;
    top: 40px;
    left: 10%;
    right: auto;
    bottom: auto;
    width: 28%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
  }
  .top_mv .mv_photo_03 img {
    border-radius: 16px;
  }
  .top_mv .mv_photo_04 {
    display: none !important;
  }
}

/*-----SNS追従バー（右下固定）-----*/
.sns_fixed_bar {
  position: fixed;
  bottom: 40px;
  right: 0;
  display: flex;
  align-items: flex-end;
  z-index: 90;
  border: 2px solid #F3BE00;
  border-radius: 14px 0 0 14px;
  border-right: none;
  padding: 14px 100px 14px 18px;
  background: #fff;
  box-shadow: -4px 4px 16px rgba(0, 0, 0, 0.1);
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .sns_fixed_bar {
    bottom: 16px;
    padding: 10px 80px 10px 14px;
  }
}

.sns_fixed_icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sns_fixed_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.sns_fixed_icon:hover {
  opacity: 0.7;
}
.sns_fixed_icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .sns_fixed_icon img {
    width: 32px;
    height: 32px;
  }
}

.sns_fixed_mascot {
  position: absolute;
  right: 5px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sns_fixed_mascot img {
  width: 80px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .sns_fixed_mascot img {
    width: 64px;
  }
}

/*-----top_group design override-----*/
.design_top_group {
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .design_top_group {
    padding-top: 60px;
  }
}
.design_top_group .group_flex {
  display: flex;
  align-items: center;
  gap: 0;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .design_top_group .group_flex {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .design_top_group .group_flex {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }
}
.design_top_group .l_wrap {
  flex-shrink: 0;
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 1100px) {
  .design_top_group .l_wrap {
    width: 48%;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .design_top_group .l_wrap {
    width: 100%;
    padding-right: 0;
    gap: 24px;
  }
}
.design_top_group .ttl_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.design_top_group .ttl_wrap h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
}
@media screen and (max-width: 1100px) {
  .design_top_group .ttl_wrap h2 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .design_top_group .ttl_wrap h2 {
    font-size: 2.8rem;
  }
}
.design_top_group .txt_wrap p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #374151;
  line-height: 2;
}
.design_top_group .r_wrap {
  flex: none;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  min-height: auto;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .design_top_group .r_wrap {
    width: 100%;
  }
}
.design_top_group .r_wrap figure {
  width: 100%;
}
.design_top_group .r_wrap figure img {
  width: 100%;
  height: auto;
}

.sec_en {
  font-size: 1.4rem;
  font-weight: 700;
  color: #F3BE00;
  line-height: 2.57;
  letter-spacing: 0;
}

.ttl_wrap.center .sec_en {
  text-align: center;
}

.ttl_wrap.center h2 {
  text-align: center;
}

/* マーキー */
.marquee_wrap {
  overflow: hidden;
  padding: 30px 0 10px;
}

.marquee_track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee_track span {
  font-size: 12rem;
  font-weight: 900;
  color: #efefef;
  white-space: nowrap;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .marquee_track span {
    font-size: 6rem;
  }
}

/*-----top_recruit design override-----*/
.design_top_recruit {
  padding: 80px 0 100px;
}
@media screen and (max-width: 767px) {
  .design_top_recruit {
    padding: 60px 0;
  }
}
.design_top_recruit .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.design_top_recruit .ttl_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 40px;
}
.design_top_recruit .ttl_wrap h2 {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .design_top_recruit .ttl_wrap h2 {
    font-size: 2.8rem;
  }
}

.recruit_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.recruit_card {
  display: flex;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .recruit_card {
    height: 110px;
  }
}
.recruit_card:hover {
  opacity: 0.9;
}
.recruit_card .l_wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3BE00;
}
.recruit_card .r_wrap {
  flex: 0 0 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.recruit_card .r_wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit_heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.recruit_heading span:not(.recruit_circle_arrow) {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .recruit_heading span:not(.recruit_circle_arrow) {
    font-size: 2rem;
  }
}

.recruit_circle_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #fff !important;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #F3BE00 !important;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit_circle_arrow {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }
}

.recruit_photos {
  display: flex;
  width: 100%;
  height: 100%;
}
.recruit_photos li {
  flex: 1;
  overflow: hidden;
}
.recruit_photos li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----under_mv-----*/
.under_mv {
  margin-top: 80px;
  background-color: #F3BE00;
  position: relative;
  overflow: hidden;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .under_mv {
    height: auto;
    padding: 30px 20px 40px;
  }
}

.under_mv_inner {
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .under_mv_inner {
    padding: 0 0 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .under_mv_inner {
    padding: 0;
  }
}

/* マーキー（英字ループ） */
.under_mv_marquee {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.under_mv_marquee_track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}
.under_mv_marquee_track span {
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .under_mv_marquee_track span {
    font-size: 4rem;
  }
}

.under_mv_left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .under_mv_left {
    gap: 20px;
  }
}

.under_mv_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .under_mv_ttl {
    font-size: 2.4rem;
  }
}

.under_mv_cta {
  display: flex;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .under_mv_cta {
    flex-direction: row;
    gap: 10px;
  }
}

.under_mv_cta_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  height: 70px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  transition: opacity 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .under_mv_cta_btn {
    width: 200px;
    height: 60px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .under_mv_cta_btn {
    gap: 10px;
    width: 100%;
    height: 56px;
    font-size: 1.6rem;
    padding: 0 16px;
  }
}
.under_mv_cta_btn:hover {
  opacity: 0.85;
}
.under_mv_cta_btn.entry {
  background-color: #fff;
  color: #F3BE00;
}
.under_mv_cta_btn.guide {
  background-color: #F3BE00;
  border: 2px solid #fff;
  color: #fff;
}

.under_mv_cta_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 1.6rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .under_mv_cta_arrow {
    width: 26px;
    height: 26px;
    font-size: 1.4rem;
  }
}

.entry_arrow {
  background-color: #F3BE00;
  color: #fff;
}

.guide_arrow {
  background-color: #fff;
  color: #F3BE00;
}

/*-----breadcrumb design override-----*/
.design_breadcrumb .breadcrumb_inner ul li + li::before {
  content: "/";
  margin: 0 8px;
  color: #999;
  font-size: 1.2rem;
}

/*-----catch_sec design override-----*/
.catch_ttl_accent {
  color: #F3BE00;
}

.catch_ttl {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .catch_ttl {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }
}

.catch_sec .r_wrap {
  width: 430px;
}
@media screen and (max-width: 767px) {
  .catch_sec .r_wrap {
    width: 100%;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .catch_sec .r_wrap {
    width: 100%;
  }
}

.catch_img {
  width: 100%;
  aspect-ratio: 430/278;
  background-color: transparent;
  border-radius: 10px;
  overflow: hidden;
}
.catch_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.catch_txt {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .catch_txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}

/*-----company_sec design override-----*/
.design_company_sec {
  background-color: #fffcf0;
  padding: 130px 0;
}
@media screen and (max-width: 1100px) {
  .design_company_sec {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .design_company_sec {
    padding: 52px 0 60px;
  }
}
.design_company_sec .content_wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .design_company_sec .content_wrap {
    gap: 30px;
  }
}
.design_company_sec .company_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .design_company_sec .company_list {
    gap: 14px 0;
    justify-content: space-between;
  }
}
.design_company_sec .company_list li {
  width: calc(33.333% - 14px);
}
@media screen and (max-width: 767px) {
  .design_company_sec .company_list li {
    width: calc(50% - 7px);
  }
}
.design_company_sec .company_card_img {
  aspect-ratio: auto;
  height: 177px;
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 767px) {
  .design_company_sec .company_card_img {
    height: 120px;
  }
}
.design_company_sec .company_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
}
.design_company_sec .company_card_img .circle_arrow {
  position: relative;
  z-index: 1;
}
.design_company_sec .company_name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
}

.section_header_left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.section_header_left .sec_en {
  text-align: left;
  line-height: 2.57;
}

.section_ttl_left {
  font-size: 4rem;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
}
@media screen and (max-width: 1100px) {
  .section_ttl_left {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .section_ttl_left {
    font-size: 2.4rem;
  }
}

.btn_wrap_right {
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .btn_wrap_right {
    justify-content: center;
  }
}

.job_card_img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job_card_img {
    width: 110px;
    height: 110px;
  }
}
.job_card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circle_arrow {
  background-color: #F3BE00;
  color: #fff;
}

/*-----共通ボタンサイズ統一-----*/
.design_company_sec .more_btn,
.jobs_sec .more_btn,
.design_interview .more_btn,
.top_news .more_btn,
.flow_sec .btn_wrap .more_btn {
  width: 200px;
  padding: 15px 20px;
  gap: 0;
  justify-content: space-between;
}

/*-----jobs_sec design override-----*/
.jobs_sec .job_item {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .jobs_sec .job_item {
    font-size: 1.4rem;
  }
}

/*-----top_interview design override (dark)-----*/
.design_interview {
  background-color: #333;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .design_interview {
    padding: 60px 0;
  }
}
.design_interview .content_wrap {
  width: 960px;
}
@media screen and (max-width: 767px) {
  .design_interview .content_wrap {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}
.design_interview .ttl_wrap h2 {
  color: #fff;
}
.design_interview .interview_card {
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .design_interview .interview_card {
    margin-bottom: 0;
  }
}
.design_interview .interview_card .thum_wrap {
  height: auto;
  aspect-ratio: 299/153;
}

/*-----interview_grid カードスタイル-----*/
.interview_grid .interview_card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/*-----共通バッジスタイル-----*/
.badge_new {
  background-color: transparent;
  color: #366CD6;
  border: 1px solid #366CD6;
  padding: 4px 13px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.badge_career {
  background-color: transparent;
  color: #F3BE00;
  border: 1px solid #F3BE00;
  padding: 4px 13px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.design_interview .badge {
  background-color: transparent;
  padding: 4px 13px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.design_interview .badge_new {
  color: #366CD6;
  border: 1px solid #366CD6;
}

.design_interview .badge_career {
  color: #F3BE00;
  border: 1px solid #F3BE00;
}

.design_interview .interview_card {
  height: 100%;
}

.design_interview .interview_card h3 {
  font-size: 1.8rem;
}

.design_interview .interview_card .name {
  font-size: 1.3rem;
  color: #A3A3A3;
}

/*-----top_about design override (5 cards)-----*/
.design_about {
  background-color: #FFFCF0;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .design_about {
    padding: 60px 0;
  }
}

.design_about_list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 26px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .design_about_list {
    flex-direction: column;
    gap: 0px;
  }
}
.design_about_list li {
  flex: 0 0 calc(33.333% - 18px);
  min-width: 0;
}

.design_about_list li:nth-child(4),
.design_about_list li:nth-child(5) {
  flex: 0 0 calc(33.333% - 18px);
}

.about_img_wrap {
  width: 100%;
  aspect-ratio: 315/200;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_card_arrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 35px;
  height: 35px;
  background-color: #F3BE00;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
}

/*-----interview detail design override-----*/
.interview_block_ttl {
  border-bottom: 3px solid #F3BE00;
  padding-bottom: 8px;
  display: inline-block;
}

/*-----job detail design override-----*/
.job_spec_row {
  gap: 30px;
  padding: 35px 0;
  align-items: stretch;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .job_spec_row {
    display: block;
  }
}

.job_spec_ttl {
  padding-bottom: 10px;
}

.job_spec_line {
  border-top-color: #F3BE00;
}

.job_spec_label {
  background-color: #FFFCF0;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .job_spec_label {
    width: 100%;
    font-size: 1.3rem;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .job_spec_label {
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
  }
}

.job_company_banner {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3BE00;
  border-radius: 14px;
  padding: 50px 50px;
  text-decoration: none;
  margin-top: 40px;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .job_company_banner {
    flex-direction: column;
    padding: 24px 20px 28px;
    border-radius: 12px;
  }
}
.job_company_banner:hover {
  opacity: 0.85;
}

.job_company_banner_left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .job_company_banner_left {
    border-radius: 8px;
    margin-bottom: 14px;
  }
}

.job_company_banner_img {
  border: 2px solid #fff;
  border-radius: 6px;
  overflow: hidden;
}
.job_company_banner_img img {
  width: 300px;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .job_company_banner_img img {
    width: 100%;
  }
}

.job_company_banner_right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .job_company_banner_right {
    padding-left: 0;
    align-items: center;
    text-align: center;
  }
}

.job_company_banner_ttl {
  font-size: 3.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .job_company_banner_ttl {
    font-size: 2rem;
    margin-bottom: 12px;
  }
}

.job_company_banner_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  font-size: 1.6rem;
  font-weight: 800;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.25s ease;
}
@media screen and (max-width: 767px) {
  .job_company_banner_btn {
    font-size: 1.4rem;
    padding: 10px 24px;
  }
}

.job_company_banner_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F3BE00;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .job_company_banner_arrow {
    width: 24px;
    height: 24px;
    font-size: 1.1rem;
  }
}

.company_logo_btn {
  border-color: #F3BE00;
}
.company_logo_btn img {
  max-height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.company_logo_arrow {
  color: #F3BE00;
}

.job_interview_sec {
  background-color: #fffcf0;
}

.job_spec_inner {
  gap: 30px;
}

.job_interview_ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333333;
}

.job_entry_banner {
  gap: 10px;
  border-radius: 10px;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .job_entry_banner {
    height: 80px;
    font-size: 1.8rem;
    border-radius: 12px;
  }
}

.banner_new {
  background-color: #366CD6;
}

.banner_career {
  background-color: #F3BE00;
}

.banner_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/*-----entry_nav design override-----*/
.entry_nav_btn {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .entry_nav_btn {
    width: 100%;
    max-width: 320px;
  }
}
.entry_nav_btn .banner_arrow {
  background-color: #fff;
}
.entry_nav_btn.banner_new .banner_arrow {
  color: #366CD6;
}
.entry_nav_btn.banner_career .banner_arrow {
  color: #F3BE00;
}

.entry_banner {
  color: #fff;
  gap: 100px;
  padding: 80px 40px;
  border-radius: 24px;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .entry_banner {
    padding: 50px 24px;
    font-size: 2.4rem;
    border-radius: 16px;
  }
}
.entry_banner .banner_arrow {
  background-color: #fff;
  color: #366CD6;
}

.interview_grid .interview_card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/*-----footer design override-----*/
footer {
  background-color: #EFEFEF;
  padding: 50px 40px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 32px 24px;
  }
}
footer .footer_inner {
  max-width: 1200px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  footer .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.footer_logo {
  background-color: transparent;
  width: auto;
  height: auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    margin: 0 0 24px;
  }
}
.footer_logo img {
  height: 40px;
  width: auto;
}

.footer_nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    justify-content: flex-start;
    margin-bottom: 24px;
  }
}
.footer_nav ul {
  gap: 32px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer_nav ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer_nav ul li {
    margin-bottom: 12px;
  }
}
.footer_nav ul li a {
  color: #333;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li a {
    font-size: 1.4rem;
  }
}

.btn_contact {
  background-color: #F3BE00;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .btn_contact {
    width: 200px;
    margin-top: 16px;
  }
}

.footer_line {
  display: block;
  max-width: 1200px;
  margin: 40px auto;
  border: none;
  border-top: 1px solid #ccc;
  height: 0;
}

.footer_bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .footer_bottom {
    flex-direction: column;
  }
}

.footer_badge {
  flex-shrink: 0;
  width: 180px;
  margin-right: auto;
}
.footer_badge img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .footer_badge {
    order: 3;
    width: 200px;
    margin-right: 0;
    margin-top: 30px;
  }
}

.footer_group {
  flex-shrink: 0;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .footer_group {
    order: 1;
    padding: 0;
    width: 100%;
  }
}

.footer_group_ttl,
.footer_brand_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.footer_group_list {
  display: flex;
  gap: 40px;
}
.footer_group_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_group_list ul li {
  font-size: 1.3rem;
  color: #555;
  line-height: 2.2;
}

.footer_brand {
  flex-shrink: 0;
  padding: 0 40px;
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .footer_brand {
    order: 2;
    padding: 30px 0 0;
    margin-top: 30px;
    border-left: none;
    border-top: 1px solid #ccc;
    width: 100%;
  }
}

.footer_brand_list {
  display: flex;
  gap: 40px;
}
.footer_brand_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_brand_list ul li {
  font-size: 1.3rem;
  color: #555;
  line-height: 2.2;
}

.footer_copyright {
  background-color: #A3A3A3;
  text-align: center;
  padding: 16px 0;
  margin: 40px -40px -50px;
}
.footer_copyright p {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    margin: 40px -24px -32px;
  }
}

/*-----flow_sec design override-----*/
.flow_arrow {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.flow_arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #F3BE00;
}

.flow_desc {
  font-weight: 600;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 22px 32px;
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .flow_desc {
    padding: 16px 20px;
    font-size: 1.3rem;
  }
}

.step_num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px 0 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/*-----org_sec design override-----*/
.design_org_sec {
  background-color: #fffcf0;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .design_org_sec {
    padding: 60px 0;
  }
}
.design_org_sec .section_header_left {
  margin-bottom: 30px;
}
.design_org_sec .org_desc {
  text-align: center;
  font-size: 1.6rem;
  color: #333;
  line-height: 2;
  margin-bottom: 40px;
}
@media screen and (max-width: 1079px) {
  .design_org_sec .org_desc {
    text-align: left;
  }
}
.design_org_sec .org_diagram {
  height: auto;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.design_org_sec .org_diagram img {
  width: 100%;
  height: auto;
  display: block;
}

/*-----company_detail_sec design override-----*/
.design_company_detail_sec {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .design_company_detail_sec {
    padding: 60px 0;
  }
}
.design_company_detail_sec .section_header_left {
  margin-bottom: 40px;
}
.design_company_detail_sec .company_detail_card {
  /* border-bottom: 1px solid #e8e8e8;
  */
}
.design_company_detail_sec .company_detail_card:first-child {
  /* border-top: 1px solid #e8e8e8;
  */
}
.design_company_detail_sec .company_detail_img {
  background-color: #c8c8c8;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  inset: auto;
}
.design_company_detail_sec .company_detail_left {
  height: auto;
  aspect-ratio: auto;
}
@media screen and (max-width: 1079px) {
  .design_company_detail_sec .company_detail_left {
    width: 100%;
  }
}
.design_company_detail_sec .company_detail_img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.design_company_detail_sec .company_detail_sub {
  font-size: 1.4rem;
  color: #F3BE00;
  font-weight: 700;
}
.design_company_detail_sec .job_tag {
  background-color: #F3BE00;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 6px 18px;
}
.design_company_detail_sec .company_jobs_label {
  font-size: 1.4rem;
  color: #333;
}

/*-----インタビュー詳細 デザイン上書き-----*/
/* MV：写真全幅 + 左下プロフィールバー */
.interview_detail_mv_design {
  position: relative;
  width: 100%;
  background-color: #333;
  overflow: hidden;
}
.interview_detail_mv_design > img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .interview_detail_mv_design {
    background-color: #fff;
  }
}

.interview_mv_profile_bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  max-width: calc(100% - 40px);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .interview_mv_profile_bar {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 20px auto 40px;
  }
}

.interview_mv_profile_inner {
  display: inline-block;
  padding: 20px 40px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .interview_mv_profile_inner {
    display: block;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }
}

.interview_mv_profile_top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.interview_mv_name {
  font-size: 1.6rem;
  font-weight: 500;
  color: #A3A3A3;
}

.interview_mv_company {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
}
.interview_mv_company .i_company_job {
  display: block;
}
.interview_mv_company .i_company_place {
  display: block;
  font-size: 1.4rem;
}

/* プロフィールヘッダー（旧） */
.interview_profile_header {
  padding: 40px 0 0;
}
.interview_profile_header .badge {
  margin-bottom: 12px;
}

.interview_profile_company {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 8px;
}

.interview_profile_name {
  font-size: 3.2rem;
  font-weight: 900;
  color: #333;
  line-height: 1.4;
}

.interview_profile_year {
  font-size: 1.6rem;
  font-weight: 400;
  color: #666;
  margin-left: 8px;
}

.interview_profile_job {
  font-size: 1.6rem;
  color: #F3BE00;
  font-weight: 700;
  margin-top: 8px;
}

.interview_block_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/*-----entry_sec_ttl 下線色-----*/
.entry_sec_ttl--blue {
  border-bottom-color: #366CD6;
}

.entry_sec_ttl--yellow {
  border-bottom-color: #F3BE00;
}

/*-----career_spec_link デザイン上書き-----*/
.career_spec_link {
  background-color: #F3BE00;
  color: #fff;
}
.career_spec_link:hover {
  background-color: #e0aa00;
}

.career_spec_arrow {
  color: #fff;
}

/*-----news_cat バッジ色-----*/
.news_cat {
  background: #F3BE00;
}

/* テキストのみブロック */
.interview_block--textonly {
  display: block;
}
.interview_block--textonly .interview_block_text {
  width: 100%;
}

/* 「この職場の詳細・採用情報はこちら」内のバナー調整 */
.interview_company_sec .job_company_banner {
  margin-top: 0;
}

.interview_company_img_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----タブレット対応-----*/
/*-----SP対応-----*/
/* ============================
   エントリー 履歴書ダウンロード
   ============================ */
.entry_resume_sec {
  margin-top: 40px;
  padding: 30px;
  background: #fffcf0;
  border-radius: 8px;
}

.entry_resume_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.entry_resume_desc {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.entry_resume_btns {
  display: flex;
  gap: 16px;
}

.entry_resume_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #F3BE00;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.25s ease;
}
.entry_resume_btn:hover {
  background: #FFF8E0;
}

.resume_icon {
  font-weight: 700;
  color: #F3BE00;
  font-size: 1.6rem;
}

.resume_label {
  font-size: 1.4rem;
}

/* ========================================
   採用エントリーCTA（新卒・キャリア／共通フッター上）
   ======================================== */
.recruit_cta_sec {
  padding: 100px 0;
  padding-bottom: 0;
  margin-bottom: 150px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .recruit_cta_sec {
    padding: 30px 0 0;
    margin-bottom: 80px;
  }
}
.recruit_cta_sec .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit_cta_sec .content_wrap {
    width: 100%;
  }
}

.recruit_cta_card {
  border-radius: 20px;
  padding: 40px 109px;
  margin-bottom: 24px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit_cta_card {
    padding: 28px 22px;
    border-radius: 14px;
    margin-bottom: 16px;
  }
}
.recruit_cta_card:last-child {
  margin-bottom: 0;
}
.recruit_cta_card--graduate {
  background: #00A2E1;
}
.recruit_cta_card--career {
  background: #F3BE00;
  padding: 32px 109px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit_cta_card--career {
    padding: 28px 22px;
  }
}
.recruit_cta_card--career .recruit_cta_ttl {
  margin-bottom: 10px;
}

/* entryページ内のCTAカードはコンテナ幅が狭いためpaddingを縮小 */
.entry_section .recruit_cta_card {
  padding: 40px 80px;
}
@media screen and (max-width: 767px) {
  .entry_section .recruit_cta_card {
    padding: 28px 22px;
  }
}

/* 新卒ブロック上段：ロゴ + 見出し+ボタン */
.recruit_cta_top {
  display: flex;
  align-items: center;
  gap: 65px;
}
@media screen and (max-width: 767px) {
  .recruit_cta_top {
    flex-direction: column;
    gap: 18px;
  }
}

.recruit_cta_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  flex-shrink: 0;
  width: 300px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .recruit_cta_logo {
    width: auto;
    padding: 14px 22px;
  }
}
.recruit_cta_logo img {
  width: 265px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .recruit_cta_logo img {
    width: 200px;
  }
}

.recruit_cta_head {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .recruit_cta_head {
    width: 100%;
    align-items: center;
    gap: 12px;
  }
}

.recruit_cta_ttl {
  font-size: 3.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .recruit_cta_ttl {
    font-size: 2.2rem;
    text-align: center;
  }
}
.recruit_cta_ttl--center {
  text-align: center;
  width: 100%;
}

/* 白角丸エントリーボタン（共通、Figma 323×60 ピル） */
.recruit_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: opacity 0.25s ease;
  width: 323px;
  min-width: 0;
  align-self: flex-start;
  box-sizing: border-box;
}
.recruit_cta_card--career .recruit_cta_btn {
  width: 323px;
  min-width: 0;
  margin: 0 auto;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .recruit_cta_btn {
    font-size: 1.5rem;
    padding: 12px 16px;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .recruit_cta_card--career .recruit_cta_btn {
    width: 100%;
    max-width: 320px;
  }
}
.recruit_cta_btn:hover {
  opacity: 0.85;
}

.recruit_cta_btn_label {
  flex: 1;
  text-align: left;
}

.recruit_cta_btn_arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.recruit_cta_btn_arrow::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.recruit_cta_btn_arrow--blue {
  background: #00A2E1;
}
.recruit_cta_btn_arrow--yellow {
  background: #F3BE00;
}
@media screen and (max-width: 767px) {
  .recruit_cta_btn_arrow {
    width: 28px;
    height: 28px;
  }
  .recruit_cta_btn_arrow::after {
    width: 12px;
    height: 12px;
  }
}

/* 区切り線（白半透明） */
.recruit_cta_divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin: 25px 0;
}
@media screen and (max-width: 767px) {
  .recruit_cta_divider {
    margin: 18px 0;
  }
}

/* 新卒ブロック下段：説明文 + PDF/Excel */
.recruit_cta_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .recruit_cta_bottom {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}

.recruit_cta_note {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  margin: 0;
  flex: 0 1 auto;
  width: 370px;
}
@media screen and (max-width: 767px) {
  .recruit_cta_note {
    font-size: 1.3rem;
    text-align: left;
    max-width: 100%;
  }
  .recruit_cta_note br {
    display: none;
  }
}

.recruit_cta_dl_group {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit_cta_dl_group {
    width: 100%;
    gap: 8px;
  }
}

.recruit_cta_dl_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 0;
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  border-radius: 12px;
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 700;
  transition: opacity 0.25s ease;
  min-width: 140px;
}
@media screen and (max-width: 767px) {
  .recruit_cta_dl_btn {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    font-size: 1.7rem;
    border-radius: 10px;
  }
}
.recruit_cta_dl_btn:hover {
  opacity: 0.85;
}

.recruit_cta_dl_icon {
  display: inline-flex;
  width: 24px;
  height: 21px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .recruit_cta_dl_icon {
    width: 18px;
    height: 16px;
  }
}

.recruit_cta_dl_label {
  line-height: 1;
}

/*-----SPナビCTAボタン-----*/
.nav_sp_cta {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
}

.nav_sp_cta .btn_new,
.nav_sp_cta .btn_career {
  flex: 1;
  height: 48px;
  font-size: 1.5rem;
}

/*-----top_news（TOPお知らせセクション）-----*/
.top_news {
  padding: 80px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .top_news {
    padding: 60px 0;
  }
}
.top_news .content_wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.top_news_list {
  margin-top: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .top_news_list {
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.top_news_list li {
  border: none;
}

.top_news_item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 16px;
  color: #333;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .top_news_item {
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 8px;
  }
}
.top_news_item:hover {
  background: rgba(243, 190, 0, 0.06);
}
.top_news_item:hover .top_news_arrow {
  transform: translateX(4px);
}

.top_news_date {
  font-size: 1.4rem;
  color: #999;
  white-space: nowrap;
  min-width: 100px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top_news_date {
    min-width: auto;
    margin-right: 12px;
  }
}

.top_news_cat {
  display: inline-block;
  background: #F3BE00;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  min-width: 80px;
  text-align: center;
}

.top_news_title {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 767px) {
  .top_news_title {
    width: calc(100% - 50px);
    flex: none;
    font-size: 1.5rem;
  }
}

.top_news_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F3BE00;
  color: #fff;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .top_news_arrow {
    align-self: flex-end;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1100px) {
  .btn_new,
  .btn_career {
    width: 120px;
  }
  .page_mv_inner,
  .breadcrumb_inner,
  .catch_sec .content_wrap,
  .company_sec .content_wrap,
  .jobs_sec .content_wrap,
  .top_interview .content_wrap,
  .top_about .content_wrap,
  .job_spec_inner,
  .interview_article_inner {
    width: 96%;
  }
}
@media screen and (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email] {
    width: 100%;
  }
  .footer_nav ul li {
    margin-bottom: 16px;
  }
  .news_nav_prev,
  .news_nav_next {
    min-width: auto;
    flex: 1;
    padding: 10px 16px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .design_mv_catch .en,
  .design_mv_catch .en.yellow {
    font-size: 6rem;
    -webkit-text-stroke: 2px #F3BE00;
  }
  /* 1079px以下のSPレイアウトはFV写真グリッドセクションで定義済み */
  .top_mv .design_mv_catch {
    padding-left: 20px;
  }
  .top_mv .mv_sub {
    margin-left: 20px;
    font-size: 1.5rem;
    margin-top: 16px;
    padding-right: 0;
  }
  .top_mv .mv_card {
    border-radius: 12px !important;
    overflow: hidden;
  }
  .design_breadcrumb {
    padding: 8px 0;
  }
  .job_mv_img img {
    height: 120px;
  }
  .form_input input[type=text],
  .form_input input[type=tel],
  .form_input input[type=email],
  .form_input select,
  .form_input textarea {
    width: 100%;
  }
  .design_interview .interview_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .design_interview .interview_list li {
    width: 100%;
  }
  .design_about_list li,
  .design_about_list li:nth-child(4),
  .design_about_list li:nth-child(5) {
    flex: 0 0 auto;
    width: 100%;
  }
  .design_org_sec .section_ttl_left {
    font-size: 2rem;
  }
  .design_company_detail_sec .section_ttl_left {
    font-size: 2rem;
  }
  .recruit_cta_card {
    max-width: 100%;
    box-sizing: border-box;
  }
}
/*-----CF7 Multi-Step 確認ステップ-----*/
.confirm_section {
  padding: 20px 0 0;
}

.confirm_ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .confirm_ttl {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}

.form_table--confirm .form_input {
  font-size: 1.6rem;
  color: #333;
  line-height: 1.8;
}

.confirm_value {
  display: block;
  padding: 12px 0;
  font-size: 1.6rem;
  line-height: 1.8;
  white-space: pre-wrap;
}

/* CF7 Multi-Step ボタンスタイル上書き */
.cf7mls-btns,
.wpcf7-form .submit_wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.cf7mls-btns br,
.cf7mls-btns .wpcf7-spinner,
.wpcf7-form .submit_wrap br,
.wpcf7-form .submit_wrap .wpcf7-spinner {
  display: none !important;
}
.cf7mls-btns p,
.wpcf7-form .submit_wrap p {
  display: contents;
}
.cf7mls-btns button,
.cf7mls-btns input[type=submit],
.wpcf7-form .submit_wrap button,
.wpcf7-form .submit_wrap input[type=submit] {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.cf7mls_next.cf7mls_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 100%;
  height: 56px;
  background-color: #F3BE00;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}
.cf7mls_next.cf7mls_btn:hover {
  opacity: 0.85;
}
.cf7mls_next.cf7mls_btn img {
  display: none !important;
}

.cf7mls_back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  max-width: 100%;
  height: 52px;
  background-color: #ddd;
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.3s;
}
.cf7mls_back:hover {
  opacity: 0.85;
}

/* CF7 Multi-Step fieldset リセット */
.fieldset-cf7mls {
  border: none;
  padding: 0;
  margin: 0;
}

/*-----サンクスページ-----*/
.thanks_sec {
  padding: 80px 0 120px;
}
@media screen and (max-width: 767px) {
  .thanks_sec {
    padding: 52px 0 80px;
  }
}

.thanks_box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thanks_ttl {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .thanks_ttl {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
}

.thanks_desc {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .thanks_desc {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }
}

.thanks_btn_wrap {
  display: flex;
  justify-content: center;
}
.thanks_btn_wrap .submit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 56px;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 50px;
}

/*----- CF7 フォーム調整 -----*/
.wpcf7-radio,
.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  color: #333;
  cursor: pointer;
}
.wpcf7-radio .wpcf7-list-item input[type=radio],
.wpcf7-radio .wpcf7-list-item input[type=checkbox],
.wpcf7-checkbox .wpcf7-list-item input[type=radio],
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked,
.wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked,
.wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked,
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked {
  border-color: #333;
}
.wpcf7-radio .wpcf7-list-item input[type=radio]:checked::after,
.wpcf7-radio .wpcf7-list-item input[type=checkbox]:checked::after,
.wpcf7-checkbox .wpcf7-list-item input[type=radio]:checked::after,
.wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 1.4rem;
}

.wpcf7-form .form_input select,
.wpcf7-form .form_input input[type=text],
.wpcf7-form .form_input input[type=tel],
.wpcf7-form .form_input input[type=email],
.wpcf7-form .form_input textarea {
  font-size: 1.6rem;
}

.wpcf7-acceptance {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  cursor: pointer;
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked {
  border-color: #333;
  background: #333;
}
.wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 1.4rem;
  color: #333;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label a {
  color: #366CD6;
  text-decoration: underline;
}

.wpcf7-form .form_label p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.wpcf7-form .form_label p br {
  display: none;
}
.wpcf7-form .form_label .form_label_text {
  font-size: 1.6rem;
}
