@charset "UTF-8";

/* =============================================================================
   Base
   ============================================================================= */
:root {
  --base-font-color: #000000;
  --white: #ffffff;
  --black: #000000;
  --bg-primary-color: #79adc2;
  --bg-secondary-color: #f0f9f9;
  --bg-tertiary-color: #f6f6f6;
  --gradient-vertical: linear-gradient(to bottom, #4de3c5 0%, #e7e763 100%);
  --gradient-horizontal: linear-gradient(to right, #4de3c5 0%, #79e3a0 25%, #d8e763 70%, #e7e763 100%);
  --primary-font-set: "Noto Sans JP", sans-serif;
  --en-font-set: "Sofia Sans Extra Condensed", sans-serif;
  --font-weight-Light: 300;
  --font-weight-Regular: 400;
  --font-weight-Medium: 500;
  --font-weight-Bold: 700;
  --font-weight-Black: 900;
}

html {
  min-width: 320px;
  font-size: 62.5%;
}

html,
body {
  overflow-x: hidden;
}

body.js-scroll-lock,
html.js-scroll-lock {
  overflow: hidden !important;
}

body {
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.07em;
  color: var(--base-font-color);
  font-size: 3.733vw;
  font-family: var(--primary-font-set);
  font-weight: var(--font-weight-Regular);
  width: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: var(--black);
}

header,
main,
footer {
  position: relative; /* z-indexを効かせるために必須 */
  z-index: 1; /* パーティクル(0)より上にする */
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a:link,
a:visited {
  color: var(--font-color);
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
}

p {
  text-align: justify;
}

strong {
  background: var(--gradient-horizontal);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

em {
  font-weight: var(--font-weight-Bold);
  font-style: normal;
}

li::marker {
  font-size: 0.6em;
}

#pageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  display: none;
}

#pageOverlay.hide {
  opacity: 0;
}

/* =============================================================================
   Header (SP Base)
   ============================================================================= */

.l-header {
  position: absolute;
  z-index: 8000;
  height: 17.33vw;
}

/* SP Gradient Bar (All Pages) */
.l-header::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-horizontal);
  z-index: 9000;
}

.l-header__inner {
  position: relative;
}

.l-header a {
  text-decoration: none;
}

.l-header__logo {
  width: 16vw;
  padding-left: 20px;
  padding-top: 2.66vw;
  box-sizing: content-box;
}

.l-header__logo img {
  width: 100%;
}

/* Navigation (SP) */
.l-header_nav_pc {
  display: none;
}

.l-header_nav_sp {
  margin-left: 48vw;
  width: 52vw;
}

.l-header_nav_sp li {
  list-style: none;
}

.openbtn {
  width: 15vw;
  height: 15vw;
  cursor: pointer;
  z-index: 9000;
  position: fixed;
  top: 2.66vw;
  right: 2.66vw;
}

.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 3.6vw;
  height: 0.533vw;
  background-color: #ffffff !important;
}

/* スクロール後にbackdrop-filterを有効化 */
.openbtn.scrolled span {
  background-color: transparent !important;
  -webkit-backdrop-filter: invert(100%) contrast(100) grayscale(100%);
  backdrop-filter: invert(100%) contrast(100) grayscale(100%);
}

.openbtn span:nth-of-type(1) {
  top: 38%;
  width: 50%;
}

.openbtn span:nth-of-type(2) {
  top: 50%;
  width: 50%;
}

.openbtn span:nth-of-type(3) {
  top: 62%;
  width: 50%;
}

.openbtn.active span:nth-of-type(1) {
  top: 45%;
  left: 3.5vw;
  transform: translateY(0) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 45%;
  left: 3.5vw;
  transform: translateY(0) rotate(45deg);
  width: 50%;
}

.openbtn.active span {
  background-color: var(--white) !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.c-home {
  display: none;
}

.l-header_nav_wrap_sp {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  background: var(--gradient-vertical);
  width: 100%;
  height: 100vh; /* iOS 15.4未満フォールバック */
  height: 100svh;
  padding: 0 20px 40px;
  top: 0;
  left: 0;
  transition: all 0.3s;
  overflow-y: auto;
}

.l-header_nav_wrap_sp.panelactive {
  visibility: visible;
  opacity: 1;
  z-index: 8000;
}

.l-header__logo_nav {
  width: 50vw;
  padding-top: 8vw;
  margin-inline: auto;
  box-sizing: content-box;
}

.l-header_nav_sp_list {
  padding: 0;
  margin: 5vw 0 10vw;
}

.l-header_nav_sp_list li {
  text-align: left;
  border-bottom: 1px solid var(--white);
  padding: 0 5vw;
}

.l-header_nav_sp_list li:last-child {
  border-bottom: none;
}

.l-header_nav_sp_list a {
  font-weight: var(--font-weight-Bold);
  display: block;
  line-height: 13.33vw;
  font-size: 4.266vw;
  color: var(--white);
}

/* ナビ サブメニュー */
.nav-has-child {
  border-bottom: 1px solid var(--white);
  text-align: left;
  padding: 0 5vw;
}

.nav-parent-label {
  display: block;
  font-weight: var(--font-weight-Bold);
  font-size: 3.6vw;
  color: var(--white);
  padding: 4vw 0 1vw;
  letter-spacing: 0.05em;
}

.nav-child-list {
  padding: 0 0 3vw 0;
  list-style: none;
}

.nav-child-list li {
  border-bottom: none !important;
  text-align: left;
  padding: 0;
}

.nav-child-list li a {
  font-size: 3.8vw !important;
  line-height: 10vw !important;
  padding-left: 1.5em;
  position: relative;
}

.nav-child-list li a::before {
  content: "―";
  position: absolute;
  left: 0;
  color: var(--white);
  opacity: 1;
}

.arrow_r {
  position: relative;
  display: inline-block;
  text-indent: -1em;
}

.arrow_r:before {
  content: "";
  width: 2.6vw;
  height: 2.6vw;
  border: 0;
  border-top: solid 0.533vw #333;
  border-right: solid 0.533vw #333;
  transform: rotate(45deg);
  display: inline-block;
  margin-right: 1em;
}

.c-header_copyright {
  display: none;
}

/* =============================================================================
   MV & Layout
   ============================================================================= */

/* #index: MVの高さ分下げてスクロールでMVが隠れるようにする */
#index {
  margin-top: 100vh; /* iOS 15.4未満フォールバック */
  margin-top: 100svh;
}

.c-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* iOS 15.4未満フォールバック */
  height: 100svh;
  pointer-events: none;
  background: #000;
  overflow: hidden;
}

.c-mv_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-tagline {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto 24vh;
  width: 90vw;
  height: fit-content;
  z-index: 1;
  text-align: center;
  padding: 0;
  transform: none;
}

.c-tagline img {
  max-width: 90vw;
  height: auto;
}

.tag01 {
  width: 90%;
  margin-bottom: 0.5em;
}

.tag02 {
  width: 90%;
  margin-bottom: 1em;
}

.tag03 {
  width: 70%;
}

.tag04 {
  width: 90%;
  margin-bottom: 1.5em;
}

.tag05 {
  width: 70%;
  margin-bottom: 0.5em;
}

.tag06 {
  width: 70%;
}

.tag07 {
  width: 90%;
  margin-bottom: 0.5em;
}

.tag08 {
  width: 70%;
  margin-bottom: 0.5em;
}

.tag09 {
  width: 90%;
}

.tag10 {
  width: 70%;
  margin-bottom: 0.5em;
}

.tag11 {
  width: 70%;
  margin-bottom: 1.5em;
}

.tag12 {
  width: 90%;
}

.tag13 {
  width: 90%;
  margin-bottom: 0.9em;
}

.tag14 {
  width: 90%;
  margin-bottom: 0.6em;
}

.tag15 {
  width: 90%;
  margin-bottom: 0.9em;
}

.tag16 {
  width: 90%;
  margin-bottom: 0.6em;
}

.tag17 {
  width: 90%;
  margin-bottom: 0.6em;
}

.tag18 {
  width: 70%;
}

.tag19 {
  width: 90%;
  margin-bottom: 0.9em;
}

.tag20 {
  width: 90%;
  margin-bottom: 0.9em;
}

.tag21 {
  width: 70%;
}

.c-blur_back {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 15px 20px;
  color: var(--white);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
}

.c-blur_back .l-inner {
  padding: 30px 0;
}

.lower_mv {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.lower_mv::before {
  content: "";
  display: block;
  padding-top: 60%;
}
.lower_mv__inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lower_mv__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.lower_mv__inner__it {
  background-image: url("../images/it_mv.jpg");
}
.lower_mv__inner__human {
  background-image: url("../images/human_mv.jpg");
}
.lower_mv__inner__realestate {
  background-image: url("../images/realestate_mv.jpg");
}
.lower_mv__inner__company {
  background-image: url("../images/company_mv.jpg");
}
.lower_mv__inner__recruit {
  background-image: url("../images/recruit_mv.jpg");
}

.c-white_back {
  background: var(--white);
  padding: 0 20px;
}

.c-center {
  text-align: center !important;
}

.l-center {
  display: grid;
  place-content: center;
}

.u-sp-text-left {
  text-align: left !important;
}

.c-pc_break {
  display: none;
}

/* SP Margins */
.sp_mb10 {
  margin-bottom: 2.66vw !important;
}
.sp_mb20 {
  margin-bottom: 5.33vw !important;
}
.sp_mb30 {
  margin-bottom: 8vw !important;
}
.sp_mb40 {
  margin-bottom: 10.66vw !important;
}
.sp_mb60 {
  margin-bottom: 16vw !important;
}
.sp_mb80 {
  margin-bottom: 21.33vw !important;
}
.sp_mb120 {
  margin-bottom: 32vw !important;
}

.lower {
  color: var(--white);
}

.l-container {
  padding: 0 20px;
}

.l-inner {
  width: 100%;
  padding: 80px 0;
}

.l-inner__lower {
  position: relative;
  padding: 120px 0 60px;
}

main {
  position: relative;
  background: var(--black);
}

#tsparticles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.c-title--head__main {
  font-size: 11.2vw;
  font-weight: var(--font-weight-Bold);
  font-family: var(--en-font-set);
  line-height: 1.2;
}

.c-title--head__main span {
  display: block;
  font-size: 4.266vw;
  font-family: var(--primary-font-set);
}

.c-title--head__gradient {
  background: var(--gradient-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-title--head__gradient span {
  color: var(--black);
}

.c-title--head__lower {
  position: absolute;
  top: -9vw;
  text-align: center;
  width: 100%;
  z-index: 1;
  margin-bottom: 0 !important;
  font-size: 16vw;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.c-title--head__lower span {
  letter-spacing: normal;
  font-size: 4.266vw;
}

.c-title--head__sm {
  font-size: 11vw;
  font-weight: var(--font-weight-Bold);
  font-family: var(--en-font-set);
  line-height: 1.2;
  top: -7vw;
}

.c-title--head__sm span {
  display: block;
  font-size: 3.5vw;
  font-family: var(--primary-font-set);
}

.c-title--head__lower_sub {
  font-size: 5.33vw;
}

.c-title--head__en {
  font-size: 9.6vw;
  font-weight: var(--font-weight-Bold);
  font-family: var(--en-font-set);
  line-height: 1;
  transition: all 0.3s;
}

/* =============================================================================
   Components (Buttons, Accordions, News) - SP Base
   ============================================================================= */

.c-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-weight: var(--font-weight-Bold);
  border: 2px solid #000;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: normal;
  background: var(--black);
  color: var(--white) !important;
}

.c-btn::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-btn_md {
  width: 76.8vw;
  height: 14.933vw;
  font-size: 3.733vw;
}

.c-btn_md::after {
  right: 15px;
  width: 7.466vw;
  height: 7.466vw;
  background: url("../images/btn_arrow.png") no-repeat center center;
  background-size: contain;
}

.c-btn_sk {
  border: 2px solid var(--white);
  color: var(--white) !important;
  background: transparent;
}

.c-btn_sk::after {
  background: url("../images/btn_arrow_wb.png") no-repeat center center;
  background-size: cover;
}

.c-aco_btn {
  width: 83.2vw;
  height: 14.933vw;
  font-size: 3.733vw;
  margin-inline: auto;
  margin-bottom: 20px;
}

.c-aco_btn::after {
  right: 15px;
  width: 7.466vw;
  height: 7.466vw;
  background: url("../images/aco_btn.png") no-repeat center center;
  background-size: cover;
  transition: transform 0.3s ease;
  transform: translateY(-50%) rotate(180deg);
}

.c-aco_btn.close::after {
  transform: translateY(-50%) rotate(0deg);
}

.accordion-content {
  margin-top: 5.33vw;
  margin-bottom: 13.33vw;
  margin-inline: -10px;
  background: var(--bg-secondary-color);
  border-radius: 16px;
  padding-block: 10.66vw;
  padding-inline: 20px;
}

.c-btn_center {
  display: flex;
  justify-content: center;
}

.top_ourJob_box {
  display: flex;
  gap: 20px;
  color: var(--white);
  /* transition: opacity 0.3s; */

  /* &.top_ourJob_box:hover {
    opacity: 0.7;
  } */
}

/* リンク化に伴うスタイル調整 */
.top_ourJob_box[href] {
  color: var(--white) !important;
  text-decoration: none;
}

.top_ourJob_box .jobImg {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.top_ourJob_box .jobImg::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  background: var(--gradient-horizontal);
  opacity: 1;
  z-index: -1;
}

.top_ourJob_box h3 {
  font-weight: var(--font-weight-Bold);
  font-size: 4.266vw;
  margin-bottom: 0.5em;
}

.c-img_zoom {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.c-img_zoom img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.c-ourJob_swiper_btn {
  display: flex;
  position: relative;
  height: 40px;
  gap: 8px;
  margin-bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 0 !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
  width: 40px !important;
  height: 40px !important;
  display: block !important;
}
.swiper-button-prev:after {
  background: url(../images/swiper_btn_prev.png) no-repeat !important;
  background-size: cover !important;
}
.swiper-button-next:after {
  background: url(../images/swiper_btn_next.png) no-repeat !important;
  background-size: cover !important;
}

/* TOP News */
.c-top_news ul {
  border-top: 1px solid #e3e3e3;
  padding: 0 10px;
  margin: 0 -10px;
}

.c-top_news li {
  border-bottom: 1px solid #e3e3e3;
  list-style: none;
  padding: 5.333vw 10px;
  margin: 0 -10px;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.c-top_news li a {
  text-decoration: none;
}

.c-top_news li a:hover {
  opacity: 0.6;
}

.c-top_news__date {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: var(--main-color);
  margin-right: 1em;
  font-size: 3.733vw;
  display: block;
  margin-bottom: 0.2em;
}

.c-aco_title {
  font-weight: var(--font-weight-Bold);
  position: relative;
  padding-left: 2em;
  cursor: pointer;
}

.c-aco_title::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 17px;
  transform: translateY(-50%);
  right: 20px;
  width: 16px;
  height: 11px;
  background: url("../images/faq_arrow.png") no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.c-aco_title.close::before {
  transform: translateY(-50%) rotate(180deg);
}

/* =============================================================================
   Table (SP Base)
   ============================================================================= */

.l-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.l-table tr {
  border-bottom: 2px solid #444;
}

.l-table th,
.l-table td {
  padding: 1em;
  box-sizing: border-box;
  text-align: left;
  font-size: 4vw;
  display: block;
}

.l-table th span,
.l-table td span {
  font-size: 3.2vw;
  display: block;
  padding-top: 1em;
}

.l-table td {
  line-height: 1.4;
  padding-top: 0;
  padding-bottom: 1.5em;
}

/* =============================================================================
   Form (SP Base)
   ============================================================================= */

.c-form_box {
  color: var(--black);
  font-size: 4.266vw;
  font-weight: var(--font-weight-Bold);
}

.c-form_box .c-label {
  color: var(--main-color);
}

.c-form_box .c-label span {
  font-size: 3.2vw;
  background: var(--black);
  color: var(--white);
  line-height: 1;
  padding-inline: 1em;
  margin-left: 1em;
  border-radius: 20px;
}

.c-label {
  display: block;
  font-size: 4.26vw;
  margin-bottom: 1.33vw;
}

.c-input {
  width: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 5px;
  padding: 0.5em;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px var(--sub-color) solid;
}

::placeholder {
  color: #999999;
}

.c-err_text {
  font-size: 3.2vw;
  font-weight: var(--font-weight-Bold);
  color: #e9546b;
}

.c-input_flex {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.c-select_box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2.66vw;
  flex-grow: 1;
}

.c-select_box select {
  font-size: 3.733vw;
  padding-right: 3em;
}

input[type="radio"] {
  margin-right: 4vw;
}

.c-radio_box {
  display: flex;
  flex-wrap: wrap;
  gap: 3vw 6vw;
}

.c-radio_box input[type="radio"] {
  display: none;
}

.c-radio_box label {
  position: relative;
  padding-left: 9.33vw;
  cursor: pointer;
}

.c-radio_box input[type="radio"] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: url(../images/radio-off.svg) no-repeat;
  left: 0;
  top: 3px;
}

.c-radio_box input[type="radio"] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: url(../images/radio-on.svg) no-repeat;
  left: 0;
  top: 3px;
  opacity: 0;
  transition: 0.3s;
}

.c-radio_box input[type="radio"]:checked + label::after {
  opacity: 1;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #6c6c6c;
  font-size: 4.266vw;
  width: 100%;
  height: 100%;
  background: url(../images/select.svg) no-repeat right 10px center / 24px auto;
  cursor: pointer;
}

input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 4vw;
}

.c-check_box {
  display: flex;
  flex-direction: column;
  gap: 3vw 6vw;
}

.c-check_box input[type="checkbox"] {
  display: none;
}

.c-check_box label {
  position: relative;
  padding-left: 9.33vw;
  cursor: pointer;
}

.c-check_box input[type="checkbox"] + label::before {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/check-off.svg) no-repeat;
  left: 0;
  top: 3px;
}

.c-check_box input[type="checkbox"] + label::after {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/check-on.svg) no-repeat;
  left: 0;
  top: 3px;
  opacity: 0;
  transition: 0.3s;
}

.c-check_box input[type="checkbox"]:checked + label::after {
  opacity: 1;
}

.c-textarea {
  height: 10em;
  padding: 1em;
  width: 100%;
  background: #f4f4f4;
  border-radius: 5px;
  border: none;
}

.c-file_box {
  width: 100%;
  background: #f4f4f4;
  border: none;
  border-radius: 5px;
  padding: 0.7em 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.c-file__label {
  width: 26.66vw;
  height: 10.66vw;
  font-size: 4.266vw;
  cursor: pointer;
  color: var(--white);
  font-weight: var(--font-weight-Bold);
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.c-file__label span::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 0;
  bottom: 0;
  border-radius: 3px;
  background: var(--white);
  box-sizing: border-box;
  z-index: -2;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: inline-block;
}

.c-file__label::before {
  background: linear-gradient(to right, #78d0d0 0%, #3e89c9 100%);
  transition: all 0.3s;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  border-radius: 5px;
}

.c-file__label::after {
  background: linear-gradient(to right, #78d0d0 0%, #3e89c9 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -3;
  left: 0;
  border-radius: 5px;
}

.c-file__label:hover::before {
  opacity: 0;
}

.c-file_up {
  width: 100%;
  background: transparent;
  padding: 0;
  display: block;
  position: relative;
  z-index: 1;
}

.c-file_up .c-file__none {
  display: none;
}

.c-file_up .c-file__label {
  width: 100%;
  height: 60px;
  font-size: 16px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

input[type="file"] {
  display: none;
}

.c-file__none {
  text-align: center;
  word-break: break-all;
}

/* --- googlemap (SP) --- */
.l-gmap {
  width: 100%;
  overflow: hidden;
  background-color: #000;
  line-height: 0;
  aspect-ratio: 4 / 3;
  height: 60vw; /* SP用高さ */
}

.l-gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1) !important;
}

/* =============================================================================
   ★ SP用 追加スタイル (Recruit, Dark Mode Form etc.)
   ============================================================================= */

/* --- Recruit: カードレイアウト (SP) --- */
.c-card_wrap {
  display: flex;
  flex-direction: column;
  gap: 5.33vw;
  margin-top: 8vw;
  margin-bottom: 10vw;
}

.c-card {
  background: linear-gradient(to top, #000000 0%, #0a0a0a 25%, #333 100%);
  padding: 6.4vw;
  border-radius: 5px;
  color: #fff;
}

.c-card__title {
  font-size: 5.33vw;
  font-weight: 700;
  margin-bottom: 3.2vw;
}

.c-card__subtitle {
  font-size: 4.8vw;
  font-weight: 700;
  margin-bottom: 3.2vw;
}

.c-card__text {
  margin-bottom: 3.2vw;
  line-height: 1.6;
  font-size: 3.733vw;
}

.c-card__list {
  padding-left: 1em;
  line-height: 1.6;
  font-size: 3.733vw;
}

/* --- Recruit: タブ切り替え (SP) --- */
.p-recruit-tab {
  display: flex;
  justify-content: space-between;
  gap: 2.66vw;
  margin-bottom: 10.66vw;
}

.p-recruit-tab__btn {
  width: 48%;
  padding: 4vw 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 3.733vw;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  background: transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.p-recruit-tab__btn span {
  display: block;
  font-size: 2.66vw;
  font-weight: normal;
  margin-top: 1vw;
  font-family: "Lato", sans-serif;
}

.p-recruit-tab__btn.is-active {
  background: var(--white);
  color: #000;
  box-shadow: 0 1vw 3vw rgba(41, 66, 100, 0.3);
}

.p-recruit-tab__btn.is-active span {
  color: #000;
}

/* パネル制御 */
.p-recruit-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.p-recruit-panel.is-show {
  display: block;
  animation: fadePanel 0.6s ease forwards;
}

/* --- Recruit: トップ画像エリア (SP) --- */
.l-photo_back {
  position: relative;
  background: url(../images/recruit_top.png) no-repeat center center / cover;
  height: auto;
  min-height: 110vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15vw 6vw;
}

.l-photo_back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.l-photo_back > div {
  position: relative;
  z-index: 1;
}

.l-photo_back h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  font-size: 5.6vw;
  line-height: 1.6;
}

.l-photo_back ul,
.l-photo_back p,
.l-photo_back h3 {
  position: relative;
  z-index: 1;
  color: var(--white);
  text-align: center;
  font-size: 3.4vw;
  line-height: 1.8;
}

/* --- Form: ダークモード配色 (SP) --- */
.l-entry-inner {
  background-color: rgba(34, 34, 34, 0.5);
  border: 1px solid #555;
  padding: 5vw;
  border-radius: 10px;
}

.l-entry-inner .c-form_box,
.l-entry-inner .c-label {
  color: #ffffff;
}

.l-entry-inner .c-form_box .c-label span {
  background-color: #ffffff;
  color: #000000;
}

.l-entry-inner .c-input,
.l-entry-inner .c-textarea,
.l-entry-inner select {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #555555;
}

.l-entry-inner ::placeholder {
  color: #999999;
}

.l-entry-inner select {
  background-color: #dddddd;
  color: #333333;
}

.l-entry-inner a {
  color: #78d0d0;
}

.l-entry-inner .c-btn {
  border: 1px solid #555;
  color: #fff !important;
}

/* =============================================================================
   Footer (SP Base)
   ============================================================================= */

footer {
  padding-top: 16vw;
  padding-bottom: 21.33vw;
  background: var(--black);
  color: var(--white);
}

footer h2 {
  font-size: 5.33vw;
  margin-bottom: 1em;
}

footer p {
  font-size: 3.2vw;
  letter-spacing: normal;
}

.l-footer_inner {
  padding: 0 20px;
}

.c-footer_logo {
  text-align: center;
  margin-bottom: 8vw;
}

.c-footer_logo img {
  width: 33.6vw;
}

.c-footer_content {
  text-align: center;
  color: #fff;
}

.c-footer_link {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8vw;
  font-size: 3.2vw;
  list-style: none;
  padding: 0;
}

.c-footer_link a {
  color: #fff;
  text-decoration: none;
}

.c-footer_address {
  font-size: 3.2vw;
  margin-bottom: 8vw;
  text-align: center;
}

.c-copyright {
  text-decoration: none;
  font-size: 3.2vw;
  display: block;
  text-align: center;
}

/* =============================================================================
   Text Animation & Keyframes (SP + PC共通)
   ============================================================================= */

/* テキストアニメーション */
.js-text-io.c-gradient-text {
  position: relative;
  color: transparent;
  letter-spacing: 0.1em;
}
.js-text-io.c-gradient-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: var(--gradient-horizontal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.js-text-io {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.js-text-io.is-active {
  --y: 0;
  --rotate: 0deg;
}
.js-text-io .char {
  display: inline-block;
  transform: translateY(var(--y, -110%)) rotate(var(--rotate, -45deg));
  transition: transform var(--dur, 0.6s) cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(var(--step, 0.02s) * var(--char-index));
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .js-text-io .char {
    transition: none !important;
    transform: none !important;
  }
}

/* fadePanelアニメーション */
@keyframes fadePanel {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =============================================================================
   News Modal
   ============================================================================= */

/* News Modal */
.c-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.c-modal.is-active {
  display: flex;
  opacity: 1;
}

.c-modal__content {
  background: #fff;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.c-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  color: #333;
  transition: color 0.3s;
}

.c-modal__close:hover {
  color: #999;
}

.c-modal__date {
  display: block;
  color: #294264;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}

.c-modal__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  line-height: 1.4;
  color: #333;
  text-align: left;
}

.c-modal__text {
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .c-modal__content {
    padding: 30px 20px;
  }
  .c-modal__title {
    font-size: 20px;
  }
  .c-modal__text {
    font-size: 14px;
  }
}

/* =============================================================================
   PC Media Query (Over 980px)
   ============================================================================= */

@media only screen and (min-width: 980px) {
  /* Base Overrides */
  body {
    font-size: 1.6rem;
  }

  /* Grid System */
  .col1 {
    width: 5.9829%;
  }
  .col2 {
    width: 14.5299%;
  }
  .col3 {
    width: 23.0769%;
  }
  .col4 {
    width: 31.6239%;
  }
  .col5 {
    width: 40.1709%;
  }
  .col6 {
    width: 48.7179%;
  }
  .col7 {
    width: 57.2649%;
  }
  .col8 {
    width: 65.8119%;
  }
  .col9 {
    width: 74.3589%;
  }
  .col10 {
    width: 82.9059%;
  }
  .col11 {
    width: 91.4529%;
  }
  .col12 {
    width: 100%;
  }

  .row {
    display: flex;
    justify-content: space-between;
    gap: 2.5641%;
  }

  .c-layout_cg {
    flex-direction: row-reverse;
  }

  /* Hover Effects */
  .top_ourJob_box:hover .c-img_zoom img {
    transform: scale(1.1);
  }

  .c-hover_img {
    position: relative;
  }
  .c-hover_img img {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.3s ease;
  }
  .c-hover_img:hover .hover_on {
    opacity: 1;
  }
  .hover_on {
    opacity: 0;
  }
  .hover_off {
    opacity: 1;
  }

  /* Header (PC) */
  .l-header {
    width: 100px;
    position: fixed;
    top: 0;
    z-index: 8000;
    right: 0;
  }

  .l-header::before {
    content: none;
    display: none;
  }

  .l-header__inner {
    padding: 35px 25px;
    height: 100vh; /* iOS 15.4未満フォールバック */
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--gradient-vertical);
    transition: all 0.3s;
  }

  .l-header__logo_nav {
    width: 16vw;
    padding-top: 2.66vw;
    box-sizing: content-box;
  }

  /* Navigation (PC) */
  .l-header_nav_sp {
    margin: 0;
    width: 50px;
    position: relative;
  }

  .c-home {
    font-size: 24px;
    width: 100%;
    text-align: center;
    top: 45px;
    left: 0;
    position: absolute;
    cursor: pointer;
    letter-spacing: 0.1em;
  }

  .openbtn {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    position: absolute;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 2px;
    background-color: var(--white) !important;
  }
  /* PCではbackdrop-filterを無効化（SPのみ有効） */
  .openbtn.scrolled span {
    background-color: var(--white) !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .openbtn span:nth-of-type(1) {
    top: 10px;
    width: 50px;
  }
  .openbtn span:nth-of-type(2) {
    top: 20px;
    width: 50px;
  }
  .openbtn span:nth-of-type(3) {
    top: 30px;
    width: 50px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 16.5px;
    left: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 50px;
  }
  .openbtn.active span:nth-of-type(2) {
    display: none;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 28.5px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 50px;
  }
  .c-home {
    color: var(--white);
    font-family: var(--en-font-set);
    display: block;
  }

  .l-header_nav_wrap_sp {
    visibility: hidden;
    opacity: 1;
    position: fixed;
    width: 500px;
    height: 100vh; /* iOS 15.4未満フォールバック */
    height: 100svh;
    padding: 0 20px 40px;
    top: 0;
    right: -500px;
    left: auto;
    transition: all 0.3s;
    overflow-y: auto;
  }

  .l-header_nav_sp_list {
    padding: 0;
    margin: 30px 20px;
  }
  .l-header_nav_sp_list li {
    text-align: left;
    border-bottom: 1px solid var(--white);
    padding: 0 20px;
    white-space: nowrap;
  }
  .l-header_nav_sp_list li:last-child {
    border-bottom: none;
  }
  .l-header_nav_sp_list a {
    font-weight: var(--font-weight-Bold);
    color: var(--white);
    display: block;
    line-height: 80px;
    font-size: 18px;
    white-space: nowrap;
  }

  /* サブメニュー PC用 */
  .nav-has-child {
    padding: 0 20px;
    white-space: nowrap;
  }

  .nav-parent-label {
    font-size: 14px;
    padding: 20px 0 5px;
  }

  .nav-child-list {
    padding: 0 0 10px 0;
  }

  .nav-child-list li a {
    font-size: 16px !important;
    line-height: 50px !important;
    padding-left: 1.5em;
  }

  .l-header.panelactive {
    width: 500px;
  }
  .l-header_nav_wrap_sp.panelactive {
    visibility: visible;
    right: 0;
    z-index: 8000;
  }

  .l-header_nav_pc {
    background: transparent;
    display: block;
  }
  .l-header_nav_pc ul {
    padding-left: 1em;
    margin-bottom: 30px;
  }
  .l-header_nav_pc ul li {
    list-style: none;
    white-space: nowrap;
    margin-bottom: 1em;
  }
  .l-header_nav_pc ul li a {
    color: var(--font-color);
    font-weight: var(--font-weight-Bold);
    font-size: 1.6rem;
    position: relative;
    left: 0;
    transition: all 0.3s;
  }
  .l-header_nav_pc ul li a:hover {
    opacity: 0.7;
    left: 0.5em;
  }

  .arrow_r {
    text-indent: 0;
  }
  .arrow_r:before {
    width: 8px;
    height: 8px;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    top: 0;
    bottom: 0;
    left: -1.2em;
    position: absolute;
    margin: auto;
  }

  .c-header_entry a {
    height: 136px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-primary-color);
    color: var(--white);
    font-size: 22px;
    font-weight: var(--font-weight-Bold);
    margin-inline: -33px;
    transition: all 0.3s;
    box-sizing: border-box;
  }
  .c-header_entry a:hover {
    opacity: 0.8;
    background: #21b573;
    color: var(--white);
  }

  .c-header_copyright {
    color: var(--white);
    writing-mode: vertical-rl;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9500;
  }

  /* MV & Layout (PC) */
  #index {
    margin-top: 100vh; /* iOS 15.4未満フォールバック */
    margin-top: 100svh;
  }

  .c-mv {
    margin-right: 100px !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* iOS 15.4未満フォールバック */
    height: 100svh;
    pointer-events: none;
    background: #000;
    overflow: hidden;
  }
  .c-mv .c-mv_img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .c-mv .c-tagline {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto auto 18vh;
    width: 45vw;
    height: fit-content;
    z-index: 1;
    text-align: center;
    transform: translateX(-50px);
  }

  /* Tagline Images width */
  .tag01 {
    width: 80%;
    margin-bottom: 3em;
  }
  .tag02 {
    width: 80%;
    margin-bottom: 2em;
  }
  .tag03 {
    width: 60%;
  }
  .tag04 {
    width: 70%;
    margin-bottom: 3.5em;
  }
  .tag05 {
    width: 60%;
  }
  .tag06 {
    width: 60%;
    margin-top: 3em;
    margin-bottom: 2em;
  }
  .tag07 {
    width: 80%;
  }
  .tag08 {
    width: 70%;
    margin-bottom: 0.5em;
  }
  .tag09 {
    width: 90%;
  }
  .tag10 {
    width: 70%;
    margin-bottom: 0.5em;
  }
  .tag11 {
    width: 70%;
    margin-bottom: 1.5em;
  }
  .tag12 {
    width: 90%;
  }
  .tag13 {
    width: 90%;
    margin-bottom: 0.9em;
  }
  .tag14 {
    width: 90%;
    margin-bottom: 0.6em;
  }
  .tag15 {
    width: 90%;
    margin-bottom: 0.9em;
  }
  .tag16 {
    width: 90%;
    margin-bottom: 0.6em;
  }
  .tag17 {
    width: 90%;
    margin-bottom: 0.6em;
  }
  .tag18 {
    width: 60%;
  }
  .tag19 {
    width: 90%;
    margin-bottom: 0.9em;
  }
  .tag20 {
    width: 90%;
    margin-bottom: 0.9em;
  }
  .tag21 {
    width: 60%;
  }

  .c-mv .swiper-slide {
    position: relative;
  }
  .c-mv .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }

  .lower_mv {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
  }
  .lower_mv::before {
    content: "";
    display: block;
    padding-top: 33.333%;
  }
  .lower_mv__inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .lower_mv__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  .lower_mv__inner__it {
    background-image: url("../images/it_mv.jpg");
  }
  .lower_mv__inner__human {
    background-image: url("../images/human_mv.jpg");
  }
  .lower_mv__inner__realestate {
    background-image: url("../images/realestate_mv.jpg");
  }
  .lower_mv__inner__company {
    background-image: url("../images/company_mv.jpg");
  }
  .lower_mv__inner__recruit {
    background-image: url("../images/recruit_mv.jpg");
  }

  .lower::before {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    display: block;
    background: #4de3c5;
    height: 5px;
    z-index: 10;
  }

  .c-pc_center {
    text-align: center;
  }

  .u-sp-text-left {
    text-align: center !important;
  }

  .c-sp_break {
    display: none;
  }
  .c-pc_break {
    display: inline;
  }

  /* Reset Mobile Margins */
  .sp_mb10,
  .sp_mb20,
  .sp_mb30,
  .sp_mb40,
  .sp_mb60,
  .sp_mb80,
  .sp_mb120 {
    margin-bottom: 0 !important;
  }

  /* PC Margins */
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }

  main {
    margin-right: 100px;
    background: var(--black);
  }
  .l-container {
    padding: 0 70px;
  }

  /* blur_back PC復元 */
  .c-blur_back {
    padding: 70px;
    max-width: 800px;
    margin-left: calc(50% - 400px - 50px);
    margin-right: auto;
    border-radius: 20px;
  }

  /* white_back PC復元 */
  .c-white_back {
    padding: 0;
  }
  .l-container.c-white_back {
    padding: 0 70px;
  }
  .l-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
  }
  .l-entry-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 10px;
    background: #fff;
  }

  /* Headings */
  .c-title--head__main {
    font-size: 72px;
    font-weight: var(--font-weight-Bold);
    line-height: 1;
  }
  .c-title--head__main span {
    display: block;
    font-size: 20px;
  }

  .c-title--head__en {
    font-size: 58px;
    text-align: left;
    font-family: var(--en-font-set);
    transition: all 0.3s;
  }
  .c-title--head__gradient {
    display: inline-block;
  }

  /* Text Animations */
  .js-text-io.c-gradient-text {
    position: relative;
    color: transparent;
    letter-spacing: 0.1em;
  }
  .js-text-io.c-gradient-text::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: var(--gradient-horizontal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .js-text-io {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
  }
  .js-text-io.is-active {
    --y: 0;
    --rotate: 0deg;
  }
  .js-text-io .char {
    display: inline-block;
    transform: translateY(var(--y, -110%)) rotate(var(--rotate, -45deg));
    transition: transform var(--dur, 0.6s) cubic-bezier(0.77, 0, 0.175, 1);
    transition-delay: calc(var(--step, 0.02s) * var(--char-index));
    will-change: transform;
  }
  @media (prefers-reduced-motion: reduce) {
    .js-text-io .char {
      transition: none !important;
      transform: none !important;
    }
  }

  .c-title--head__lower {
    position: relative;
    top: -119px;
    text-align: center;
    width: 100%;
    z-index: 1;
    margin-bottom: 0 !important;
    font-size: 86px;
    letter-spacing: 0.2em;
  }
  .c-title--head__lower span {
    letter-spacing: normal;
  }

  .c-title--head__sm {
    font-size: 64px;
  }
  .c-title--head__sm span {
    font-size: 16px;
  }
  .c-title--head__lower_sub {
    font-size: 24px;
  }
  .c-title--head__lower_third {
    font-size: 20px;
  }
  .c-title--head__center {
    display: block;
    padding-top: 80px;
  }

  /* Buttons (PC) */
  .c-btn {
    transition: all 0.2s;
    background: var(--black);
    color: var(--white) !important;
  }
  .c-btn::after {
    background: url("../images/btn_arrow_wb.png") no-repeat center center;
    background-size: cover;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-btn:hover {
    background: var(--black);
    color: var(--white);
  }

  .c-btn_md {
    width: 360px;
    height: 70px;
    font-size: 18px;
  }
  .c-btn_md::after {
    width: 36px;
    height: 36px;
  }
  .c-btn_md:hover::after {
    background: url("../images/btn_arrow_on.png") no-repeat center center;
    width: 36px;
    height: 36px;
    background-size: cover;
  }

  .c-btn_sk {
    border: 2px solid var(--white);
    color: var(--white) !important;
    background: transparent;
  }
  .c-btn_sk::after {
    width: 36px;
    height: 36px;
    background: url("../images/btn_arrow_wb.png") no-repeat center center;
    background-size: cover;
  }
  .c-btn_sk:hover {
    background: var(--white);
    color: var(--black) !important;
    opacity: 0.85;
  }
  .c-btn_sk:hover::after {
    background: url("../images/btn_arrow.png") no-repeat center center;
    background-size: cover;
    width: 36px;
    height: 34px;
  }

  .c-aco_btn {
    width: 360px;
    height: 70px;
    font-size: 18px;
    margin-inline: 0;
    margin-bottom: 20px;
  }
  .c-aco_btn::after {
    width: 34px;
    height: 34px;
    background: url("../images/aco_btn.png") no-repeat center center;
    transition: transform 0.3s ease;
  }
  .c-aco_btn:hover::after {
    background: url("../images/aco_btn_on.png") no-repeat center center;
    background-size: cover;
  }
  .c-aco_btn.close::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .c-text_lg {
    font-size: 20px;
  }
  .c-text_mb {
    margin-bottom: 1em;
  }

  .accordion-content {
    margin-top: 30px;
    margin-inline: 0;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 60px;
  }

  .top_ourJob_box h3 {
    font-size: 30px;
  }

  /* Swiper Btns */
  .c-ourJob_swiper_btn {
    display: flex;
    position: relative;
    float: right;
    height: 60px;
    gap: 10px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    position: static !important;
    width: 60px !important;
    height: 60px !important;
    margin-top: 0 !important;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    content: "" !important;
    width: 60px !important;
    height: 60px !important;
    display: block !important;
  }
  .swiper-button-prev:after {
    background: url(../images/swiper_btn_prev.png) no-repeat !important;
    background-size: cover !important;
  }
  .swiper-button-next:after {
    background: url(../images/swiper_btn_next.png) no-repeat !important;
    background-size: cover !important;
  }

  /* PC News */
  .c-top_news ul {
    border-top: 1px solid #e3e3e3;
    padding: 0;
  }
  .c-top_news li {
    border-bottom: 1px solid #e3e3e3;
    list-style: none;
    padding: 30px 0 30px 30px;
    flex-direction: row;
    gap: 0;
  }
  .c-top_news__date {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 0;
  }

  /* Recruit top (PC) */
  .l-photo_back {
    position: relative;
    background: url(../images/recruit_top.png) no-repeat center center / cover;
    height: 460px;
    min-height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .l-photo_back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
  }
  .l-photo_back h2 {
    font-size: 37px;
    line-height: 1.2;
  }
  .l-photo_back ul,
  .l-photo_back p,
  .l-photo_back h3 {
    font-size: inherit;
    line-height: inherit;
  }
  .l-photo_back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
  }
  .l-photo_back__skill {
    position: relative;
    top: -100px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: skewY(-5deg);
    background: url(../images/skill.jpg) no-repeat center center / cover;
  }
  .l-photo_back__skill div {
    transform: skewY(5deg);
  }
  .l-photo_back__skill div h2 {
    font-size: 22px;
  }
  .l-photo_back h2,
  .l-photo_back h3,
  .l-photo_back p,
  .l-photo_back ul {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
  }
  .l-photo_back h2 {
    font-size: 37px;
  }
  .l-photo_back ul {
    text-align: left;
  }

  /* Accordion Title (PC) */
  .c-aco_title {
    position: relative;
    padding-left: 3em;
    cursor: pointer;
  }
  .c-aco_title::before {
    content: "";
    position: absolute;
    left: 1rem;
    top: 17px;
    transform: translateY(-50%);
    right: 20px;
    width: 16px;
    height: 11px;
    background: url("../images/faq_arrow.png") no-repeat center center;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .c-aco_title.close::before {
    transform: translateY(-50%) rotate(180deg);
  }

  /* Recruit Card (PC) */
  .c-card_wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px auto;
    max-width: 1400px;
  }
  .c-card_wrap_02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-card {
    background: linear-gradient(to top, #000000 0%, #0a0a0a 25%, #333 100%);
    padding: 24px;
    position: relative;
    border-radius: 5px;
  }
  .c-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .c-card__subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  .c-card__text {
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 16px;
  }
  .c-card__list {
    padding-left: 18px;
    line-height: 1.6;
    font-size: 16px;
  }

  /* Table (PC) */
  .l-table th,
  .l-table td {
    font-size: 16px;
    padding: 1.2em 2em;
    vertical-align: top;
    display: table-cell;
  }
  .l-table th span,
  .l-table td span {
    display: block;
    margin-top: 1em;
    padding-top: 0;
  }
  .l-table th {
    width: 13em;
    padding-left: 0.5em;
  }
  .l-table td span {
    font-size: 14px;
    display: inline-block;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  /* Form (PC) */
  .c-form_box {
    font-size: 16px;
  }
  .c-form_box .c-label span {
    font-size: 12px;
  }
  .c-label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .c-err_text {
    font-size: 12px;
  }
  .c-input {
    width: 100%;
    padding: 1.2em 1em;
  }
  .c-input_flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .c-input_flex div {
    width: 100%;
  }
  .c-select_box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .c-select_box select {
    font-size: 1.6rem;
  }

  input[type="radio"] {
    margin-right: 15px;
  }
  .c-radio_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .c-radio_box label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
  }
  .c-radio_box input[type="radio"] + label::before {
    position: absolute;
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: url(../images/radio-off.svg) no-repeat;
    left: 0;
    top: 1px;
  }
  .c-radio_box input[type="radio"] + label::after {
    position: absolute;
    content: "";
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: url(../images/radio-on.svg) no-repeat;
    left: 0;
    top: 1px;
    opacity: 0;
    transition: 0.3s;
  }
  .c-radio_box input[type="radio"]:checked + label::after {
    opacity: 1;
  }

  select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: none;
    color: #6c6c6c;
    font-size: 16px;
    width: 100%;
    height: 100%;
    background:
      url(../images/select.svg) no-repeat right 18px center / 14px auto,
      #f4f4f4 !important;
    cursor: pointer !important;
  }

  input[type="checkbox"] {
    margin-right: 15px;
  }
  .c-check_box {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .c-check_box label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
  }

  .c-textarea {
    height: 16em;
  }

  .c-file_box {
    width: 420px;
    background: #f4f4f4;
    border: none;
    border-radius: 5px;
    padding: 0.7em 1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .c-file__label {
    width: 103px;
    height: 40px;
    font-size: 16px;
  }
  .c-file_up {
    width: 420px;
    padding: 0;
  }
  .c-file_up .c-file__label {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }

  /* Dark Mode Form (PC) */
  .l-entry-inner {
    background-color: rgba(34, 34, 34, 0.5);
    border: 1px solid #555;
  }
  .l-entry-inner .c-btn {
    border: 1px solid #555;
  }
  .l-entry-inner .c-form_box,
  .l-entry-inner .c-label {
    color: #ffffff;
  }
  .l-entry-inner .c-form_box .c-label span {
    background-color: #ffffff;
    color: #000000;
  }
  .l-entry-inner .c-input,
  .l-entry-inner .c-textarea,
  .l-entry-inner select {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #555555;
  }
  .l-entry-inner ::placeholder {
    color: #999999;
  }
  .l-entry-inner select {
    background-color: #dddddd;
    color: #333333;
  }
  .l-entry-inner a {
    color: #78d0d0;
  }

  /* Google Map (PC) */
  .l-gmap {
    height: 500px;
    aspect-ratio: auto;
  }
  .l-gmap:hover iframe {
    filter: grayscale(0%);
  }

  /* Recruit Tab (PC) */
  .p-recruit-tab {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
  }
  .p-recruit-tab__btn {
    width: 48%;
    max-width: 300px;
    padding: 15px 0;
    border: 1px solid #fff;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
    background: transparent;
    text-align: center;
  }
  .p-recruit-tab__btn span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
    color: #fff;
    margin-top: 5px;
    font-family: "Lato", sans-serif;
  }
  .p-recruit-tab__btn:hover {
    background: #fff;
    color: #000;
  }
  .p-recruit-tab__btn:hover span {
    color: #000;
  }
  .p-recruit-tab__btn.is-active {
    background: var(--white);
    color: #000;
    box-shadow: 0 5px 15px rgba(41, 66, 100, 0.3);
    transform: translateY(-2px);
  }
  .p-recruit-tab__btn.is-active span {
    color: #000;
  }

  .p-recruit-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }
  .p-recruit-panel.is-show {
    display: block;
    animation: fadePanel 0.6s ease forwards;
  }

  @keyframes fadePanel {
    0% {
      opacity: 0;
      transform: translateY(15px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .p-recruit-lead {
    text-align: center;
    margin-bottom: 50px;
  }
  .c-lead-title {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.6;
  }

  /* --- Footer (PC) --- */
  footer {
    padding-top: 40px;
    padding-bottom: 20px;
    margin-right: 0; /* Clear previous margin if any */
  }

  .c-footer_logo {
    margin-bottom: 30px;
    text-align: center;
  }
  .c-footer_logo img {
    width: 140px;
  }

  .c-footer_link {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 14px;
  }
  .c-footer_link a:hover {
    opacity: 0.7;
  }

  .c-footer_address {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* Copyright fix */
  .c-copyright {
    text-decoration: none;
    font-size: 14px; /* Reduced from 14px */
    display: block;
    text-align: center;
    color: #fff; /* Fix visibility on black background */
  }
}

/* =============================================================================
   iPhone SE 専用調整（画面高さ約667px・幅375px）
   アドレスバー表示時に100vhが実表示域をはみ出すため
   c-taglineのbottomオフセットを縮小して全タグラインをファーストビューに収める
   ============================================================================= */
@media screen and (max-height: 680px) and (max-width: 390px) {
  .c-tagline {
    margin: auto auto 30vh;
  }
  /* AOS が fixed+z-index:-1 のコンテナ内で正常動作しないため
     SE では c-tagline 内の全タグライン画像を強制表示 */
  .c-tagline [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
