/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #11111B;
  color: #fff;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  font-weight: normal;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease-in-out;
}

button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

dl,
ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt,
dd {
  margin: 0;
  padding: 0;
}


/* **************************************************************
 Utility Classes
*************************************************************** */
.section {
  padding: 50px 0;
  width: 100%;
}

.section.secondary {
  background-color: rgb(51,51,58);
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.section.container__page {
  padding-top: 160px;
}

.section.news__list {
  padding-top: 160px;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.inner--summary {
  display: block;
  margin: 15px 0 40px;
  line-height: 2;
  letter-spacing: 0.278px;
}

.inner--btns {
  margin-top: 40px;
}

.title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
  color: inherit;
  font-weight: normal;
}

.title--en {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  line-height: 1;
  font-weight: normal;
}

.title--jp {
  font-size: 24px;
  line-height: 1;
  text-align: center;
  font-weight: normal;
}

.title--max {
  margin-bottom: 25px;
  line-height: 1.3;
  font-size: 46px;
  font-weight: normal;
}

.title--mid {
  margin-bottom: 25px;
  line-height: 1.3;
  font-size: 31px;
  font-weight: normal;
}

.title--mid .min {
  font-size: 16px;
}

.title--min {
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.title--min .min {
  display: block;
  font-size: 20px;
}

.title--mic {
  display: block;
  line-height: 1.3;
  font-size: 24px;
  font-weight: normal;
}


.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  min-height: 40px;
  background-color: #33333B;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.btn:hover {
  background-color: #1d1dff;
}

.btn--white {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 12px 32px;
  min-height: 40px;
  background-color: #fff;
  border-radius: 4px;
  font-family: 'Montserrat',
    sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1;
  color: #11111B;
  text-align: center;
}

.btn--white:hover {
  background-color: #1d1dff;
  color: #fff;
}

.btn--max {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 104px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 24px;
  font-weight: normal;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}

.btn--max::after {
  content: "\f054";
  position: absolute;
  right: 45px;
  top: 50%;
  translate: 0 -50%;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.btn--max:hover {
  opacity: 1;
  background-color: #1d1dff;
  color: #fff;
}

.bg--navy {
  background-color: #11111B;
  color: #fff;
}

.bg--gray {
  background-color: #33333B;
  color: #fff;
}

.list--disc li {
  position: relative;
  padding-left: 22px;
}

.list--disc li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.slide-wrap {
  position: relative;
  padding: 0 24px;
  overflow: hidden;
}

.slide-pagination {
  position: absolute;
  left: 45px !important;
  top: calc(100vw * 220 / 342);
  transform: translateY(-60px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: #fff;
}

.slide-scrollbar {
  position: relative !important;
  bottom: inherit !important;
  width: 72px !important;
  height: 1px !important;
  background-color: rgba(255, 255, 255, 0.24) !important;
}



/* **************************************************************
 header
*************************************************************** */
/* ヘッダー自体を全幅の固定バーにする */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

/* 背景は .header の全幅に敷く */
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 11;
  background-color: rgba(255, 255, 255, 0.5);
}

/* .header__inner は中身を中央に収める箱に戻す */
.header__inner {
  position: relative;
  left: auto;
  translate: none;
  z-index: 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 15px 24px;
  background-color: transparent;
}

.header__menu {
  display: none;
}

.header__menu--nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu--nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #000;
}

.header__menu--nav a:hover {
  color: #1d1dff;
}

.header__menu--nav .btn {
  border-bottom: none;
}

.btn-menu {
  position: fixed;
  z-index: 1500;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-menu::before {
  content: "\f0c9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 33px;
  color: #fff;
}

.btn-menu.is-opened::before {
  content: "\f00d";
}

.hamburger__menu--open {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #11111B;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 112px 24px 40px;
  translate: 0 -100%;
  transition: translate 0.2s ease-in-out;
  overflow-y: auto;
}

.hamburger__menu--open.is-opened {
  translate: 0 0;
}

.hamburger__catch--inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
}

.hamburger__catch--main {
  display: block;
  margin-bottom: 25px;
  line-height: 1.2;
  font-size: 32px;
  font-size: clamp(32px, 8.2vw, 52px);
  font-weight: 400;
}

.hamburger__catch--text {
  line-height: 1.2;
  font-size: 20px;
  font-size: clamp(20px, 5.12vw, 30px);
}

.hamburger__menu--nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  gap: 15px;
  margin: 70px 0 25px;
  font-family: 'Montserrat', sans-serif;
}

.hamburger__menu--nav li {
  line-height: 1;
}

.hamburger__menu--nav a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-align: left;
}

.hamburger__menu--nav a:hover {
  color: #1d1dff;
}

.hamburger__menu--cv {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}




/* **************************************************************
 splash
*************************************************************** */
.splash {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 !important;
}

.splash__img {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 1080px;
  object-fit: cover;
  overflow: clip;
}
.splash__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1248px;
  pointer-events: none;

  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 1248px;
  padding: 24px;
}

.splash__catch {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: fit-content;
  line-height: 1.3;
  font-size: clamp(40px, 6.25vw, 60px);
  color: #fff;
  white-space: nowrap;
}

.splash__text--main {
  margin-top: 15px;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #fff;
  font-weight: normal;
}

.splash__btn {
  width: fit-content;
  margin-top: 70px;
  pointer-events: all;
}

/* **************************************************************
 news
*************************************************************** */
.news__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.news__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.news__item-date {
  flex-shrink: 0;
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  width: 120px;
}

.news__item-link {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.news__item-link:hover {
  color: #1d1dff;
}

.news__item-link-text {
  line-height: 1.2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  word-break: break-all;
}

.news__item-link-icon {
  margin-top: -5px;
}

.news__bottom {
  margin-top: 55px;
}


.news__pager {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 80px;
  gap: 8px;
}

.news__pager-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  width: 100%;
  box-sizing: border-box;
}

.news__pager-button:hover {
  background-color: #fff;
  color: #11111B;
}

.news__pager-button-text {
  font-size: 24px;
  line-height: 1em;
}


.news__inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.news__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news__head-title {
  line-height: 1.3;
  font-size: 32px;
  font-weight: normal;
}

.news__body p {
  line-height: 2;
  margin: 20px 0;
  text-align: justify;
}

.news__cv .btn {
  padding: 12px;
  width: 150px;
}

.news__cv .btn--white {
  padding: 12px;
  width: 150px;
}


/* **************************************************************
 company
*************************************************************** */
.company__catch--img {
  position: relative;
  width: 100%;
  height: 374px;
  margin-top: 55px;
}

.company__catch--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 集合写真は左右・上下を切らず全体を表示する */
.company__catch--img--full {
  height: auto;
}

.company__catch--img--full img {
  position: static;
  translate: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}



/* **************************************************************
 service
*************************************************************** */
.service__catch--img {
  position: relative;
  width: 100%;
  height: 324px;
  margin: 40px 0;
}

.service__catch--img img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__cont {
  margin: 80px 0;
}

.service__conta--img {
  position: relative;
  width: 100%;
  margin-bottom: 32px;
}

/* **************************************************************
 project
*************************************************************** */
.project__bottom {
  margin-top: 55px;
}

.projects__cont:hover .btn {
  opacity: 1;
  background-color: #1C86FF;
  color: #fff;
}

.projects__cont--image {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 220 / 342);
  text-align: center;
}

.projects__cont--image img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.projects__cont--info {
  margin-top: 40px;
}

.projects__info--title {
  font-size: 14px;
}

.projects__info--title .main {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 32px;
}

.projects__cont--info p {
  display: block;
  margin-top: 20px;
  font-size: 14px;
}

.projects__cont--btn {
  margin-top: 24px;
}

.projects__cont--btn .btn {
  width: 110px;
}


.projects__items {
  display: flex;
  flex-direction: column;
  gap: 55px;
  width: 100%;
}

.project__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.project__body p {
  line-height: 2;
  margin: 20px 0;
  text-align: justify;
}

/* **************************************************************
 style
*************************************************************** */
.style__cont {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
  margin: 80px 0;
}

.style__cont--box {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.style__cont--left {
  display: flex;
  justify-content: center;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-width: 104px;
}

.style__cont--right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.style__cont--title {
  line-height: 1;
  font-size: 32px;
  color: #fff;
  text-align: center;
}

.style__cont--text {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-align: left;
}


.stats__cont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 44px;
  width: 100%;
}

.stats__cont--left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.stats__cont--right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.stats__cont:first-of-type .stats__cont--left {
  border-top: none;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.stats__item-title {
  font-weight: normal;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.0174em;
  text-align: center;
  margin: 0;
}

.stats__item-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.stats__item-number {
  font-weight: 600;
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  margin: 0;
}


.stats__item-unit {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.4em;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats__item-unit.min {
  font-size: 16px;
}

.stats__item-description {
  margin: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7em;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}


/* Interview Section */
.interview__cont {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.interview__cont--movie {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.interview__cont--movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview__cont--movie .play-button {
  position: absolute;
  z-index: 2;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 50px;
  color: rgba(17, 17, 27, 0.6);
}

.interview__cont--movie .play-button.is-play {
  display: none;
}

.interview__cont--box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.interview__cont--profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.interview__cont--name {
  font-size: 32px;
  line-height: 1;
}

.interview__cont--details {
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.interview__cont--details dl {
  display: grid;
  grid-template-columns: auto 1fr;
}

.interview__cont--image {
  position: relative;
  width: 100%;
  padding-top: calc(100% * 294 / 248);
  border-radius: 4px;
  overflow: hidden;
}

.interview__cont--image img {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* **************************************************************
 member
*************************************************************** */
.member__item {
  position: relative;
  display: block;
  padding-top: 40px;
  margin: 50px 0;
}

.member__item:not(:first-of-type):before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}

.member__item--img {
  margin-bottom: 24px;
}

.member__item--img img {
  width: 100%;
  height: auto;
}

.member__item--name {
  font-size: 32px;
  font-weight: normal;
}

.member__item--name .ruby {
  display: block;
  font-size: initial;
}

.member__item--role {
  line-height: 1;
}

.member__item--info {
  display: block;
  margin: 24px 0;
}

.member__item--summary {
  display: block;
  margin-top: 40px;
  line-height: 2;
}

/* **************************************************************
 recruit
*************************************************************** */
.recruit__inner {
  margin: 80px 0;
}

.recruit__inner:last-of-type {
  margin-bottom: 0;
}

.recruit__inner .title--mic {
  margin-bottom: 40px;
}

.recruit__portrait {
  display: grid;
  gap: 15px;
}

.recruit__portrait--item {
  display: grid;
  gap: 15px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  line-height: 1.4;
}

.recruit__charm {
  display: grid;
  gap: 15px;
}

.recruit__charm--item {
  padding: 15px;
  background-color: #F9F4F4;
  color: #11111b;
}

/* **************************************************************
 information
*************************************************************** */
.information__cont {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.information__cont--box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 30px 0;
  width: 100%;
}

.information__cont--box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}

.information__cont--box:first-of-type {
  padding-top: 0;
}

.information__cont--box:first-of-type::before {
  display: none;
}

.information__cont--label {
  font-size: 16px;
  line-height: 1;
  text-align: left;
  font-weight: 400;
}

.information__cont--value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
}

.information__cont--value .min {
  display: block;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
}

.information__cont + .information__cont {
  border-top: 1px solid #fff;
  margin-top: 30px;
  padding-top: 30px;
}


/* **************************************************************
 talk
*************************************************************** */
.talk__profile--list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 80px 0;
}

.talk__profile--item {
  display: flex;
  gap: 24px;
}

.talk__profile---thumb {
  width: 120px;
  flex-shrink: 0;
}

.talk__profile--cont {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.4;
}

.talk__profile--name {
  font-size: 32px;
  font-weight: normal;
}

.talk__content {
  position: relative;
  margin-top: 40px;
  padding-top: 10px;
}

.talk__content:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background-color: #fff;
}


.talk__tag--bk {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #72727B;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--bl {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #ff1d1d;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.talk__tag--rd {
  display: flex;
  padding: 8px 16px;
  flex-direction: column;
  width: fit-content;
  margin-top: 40px;
  margin-bottom: 15px;
  border-radius: 50rem;
  background-color: #F85453;
  line-height: 1;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}



/* **************************************************************
 entry
*************************************************************** */

.entry__cont {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.entry__cont--box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
}

.entry__cont--text {
  font-family: 'Inter', sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
}

.entry__cont--btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.entry__cont--btns .entry-line:hover {
  background-color: #06C755;
}

.entry__cont--btns .entry-indeed:hover {
  background-color: #003a9b;
}


/* **************************************************************
 dormitory
*************************************************************** */
.dormitory__lead {
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
}

.dormitory__gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr auto;   /* ← 追加 */
  grid-template-areas:
    "main sub1"
    "main sub2"
    "group group";
  gap: 4px;
}

.dormitory__gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: #1a1a24;
}

.dormitory__gallery figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dormitory__gallery--main  { grid-area: main; }
.dormitory__gallery--sub1  { grid-area: sub1; aspect-ratio: 3 / 3; }
.dormitory__gallery--sub2  { grid-area: sub2; aspect-ratio: 3 / 3; }
.dormitory__gallery--group { grid-area: group; aspect-ratio: 16 / 9; }


/* **************************************************************
 footer
*************************************************************** */
.footer {
  position: relative;
  padding: 55px 0;
  background-color: #11111B;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px 0;
}

.footer__logo {
  display: block;
  width: fit-content;
  min-width: 330px;
}

.footer__address {
  min-width: 330px;
  font-size: 14px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 330px;
  gap: 15px 0;
}

.footer__nav li {
  width: 50%;
  line-height: 1;
}

.footer__nav li.entry {
  width: 100%;
}

.footer__nav li.entry .btn {
  background-color: #fff;
  color: #11111B;
}

.footer__nav li.entry .btn:hover {
  background-color: #1d1dff;
  color: #fff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0 25px;
}

.footer__sns li {
  width: 56px;
  height: 56px;
}

.footer__sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #4a4a52;
  border-radius: 8px;
  font-size: 30px;
}

.footer__sns li a:hover {
  background-color: #1d1dff;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
}


/* **************************************************************
*
* PC view
*
*************************************************************** */
@media (width > 1024px) {

  /* **************************************************************
 Utility Classes
*************************************************************** */
  .section {
    padding: 80px 0;
  }

  .inner {
    max-width: 648px;
    margin-left: auto;
    margin-right: 0;
  }

  .inner--btns {
    margin-top: 80px;
  }

  .slide-pagination {
    left: 24px !important;
    top: calc(544px * 332 / 432 - 60px);
  }


  /* **************************************************************
 header
*************************************************************** */
  .header__menu {
    display: block;
  }

  .btn-menu {
    display: none;
  }

  .hamburger__menu--open {
    display: none;
  }



  /* **************************************************************
 splash
*************************************************************** */
  .splash__inner {
    position: fixed;
    z-index: 100;
    left: 50%;
    top: 160px;
    translate: -50%;
    padding: 0 24px;
  }

  /* **************************************************************
   news
  *************************************************************** */
  .news__item {
    flex-direction: row;
  }

  .news__pager {
    flex-direction: row;
  }

  /* **************************************************************
   service
  *************************************************************** */
  .stats__cont {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats__cont--left {
    padding: 24px 30px 24px 0;
  }

  .stats__cont--right {
    padding: 24px 0 24px 30px;
  }

  .stats__cont--right::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 1px;
    height: calc(100% - 48px);
    background-color: rgba(255, 255, 255, 0.24);
  }

  .stats__cont:first-of-type .stats__cont--left,
  .stats__cont:first-of-type .stats__cont--right {

    border-top: none;
  }


  .stats__item-description {
    font-size: 12px;
  }

  /* **************************************************************
   projects
  *************************************************************** */
  .project__list {
    max-width: calc(50%);
    min-width: 568px;
    margin-left: auto;
    margin-right: 0;
    padding: 0;
  }

  .project__list .swiper-slide {
    width: 544px;
  }

  .projects__cont--image {
    padding-top: calc(100% * 332 / 544);
  }

  /* **************************************************************
   interview
  *************************************************************** */
  .interview__cont {
    flex-direction: row;
  }

  .interview__cont--movie {
    width: 53%;
  }

  .interview__cont--movie:hover {
    cursor: pointer;
  }

  .interview__cont--movie .play-button {
    width: 95px;
    height: 95px;
    font-size: 40px;
    transition: all 0.2s ease-in-out;
  }

  .interview__cont--movie:hover .play-button {
    background-color: #fff;
    scale: 1.2;
  }


  /* **************************************************************
   member
  *************************************************************** */
  .member__item {
    margin: 80px 0;
  }

  /* **************************************************************
   talk
  *************************************************************** */
  .talk__profile---thumb {
    width: auto;
    flex-shrink: 0;
  }


  /* **************************************************************
 information
*************************************************************** */
  .information__cont--box {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .information__cont--label {
    min-width: 75px;
  }

  /* **************************************************************
 footer
*************************************************************** */
  .footer .inner {
    max-width: 1200px;
    margin-right: auto;
    padding: 0;
  }

  .footer__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    justify-content: space-between;
  }

  .footer__nav {
    grid-column: 2/3;
    grid-row: 1/3;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
  }

  .footer__sns {
    margin: 0;
  }


}

/* **************************************************************
 works gallery
*************************************************************** */
.works__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 80px;
}

.works__gallery--item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  background-color: #1a1a24;
}

.works__gallery--item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works__gallery--item:hover img {
  transform: scale(1.05);
}

@media (width > 1024px) {
  .works__gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* **************************************************************
 lightbox
*************************************************************** */
.works__gallery--item {
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox__img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  background: none;
  transition: color 0.2s ease;
}

.lightbox__close:hover {
  color: #1d1dff;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.lightbox__nav:hover {
  background-color: #1d1dff;
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

@media (width > 1024px) {
  .lightbox__nav--prev {
    left: 40px;
  }
  .lightbox__nav--next {
    right: 40px;
  }
}

/* works gallery 「もっと見る」 */
.works__gallery--item.is-hidden {
  display: none;
}

.works__gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.works__gallery-more.is-hidden {
  display: none;
}

.works__gallery-more-btn {
  min-width: 200px;
  cursor: pointer;
}

/* works gallery 動画 */
.works__gallery--movie-item {
  cursor: pointer;
}

.works__gallery--movie-item video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.works__gallery--play {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  color: #11111B;
  font-size: 22px;
  transition: all 0.2s ease;
  pointer-events: none;
}

.works__gallery--movie-item:hover .works__gallery--play {
  background-color: #1d1dff;
  color: #fff;
  scale: 1.1;
}

/* lightbox 動画対応 */
.lightbox__video {
  display: none;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 4px;
}

.lightbox.is-video .lightbox__img {
  display: none;
}

.lightbox.is-video .lightbox__video {
  display: block;
}

/* ========================================================
   フォント統一：英字も含めて全要素を明朝体に
======================================================== */
html,
body,
button,
input,
select,
textarea,
.btn,
.btn--white,
.header__menu--nav a,
.hamburger__menu--nav,
.title--en,
.news__item-link-text,
.stats__item-description,
.style__cont--text,
.entry__cont--text,
.information__cont--value .min,
.interview__cont--details,
.dormitory__lead,
.talk__tag--bk,
.talk__tag--bl,
.talk__tag--rd,
.footer {
  font-family: "Times New Roman", "Cormorant Garamond", Georgia, "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", serif;
}
/* **************************************************************
 service page
*************************************************************** */
.service__wrap {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SERVICE ／ 事業内容 */
.service__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.service__eyebrow .en {
  color: rgba(255, 255, 255, 0.55);
}

.service__eyebrow .jp {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.4);
}

.service__eyebrow .jp::before {
  content: "／";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.25);
}

.service__label {
  margin: 56px 0 12px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}

/* 本文 */
.service__body {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
  color: rgba(255, 255, 255, 0.85);
}

.service__body strong {
  font-weight: 600;
  color: #fff;
}

.service__cta {
  width: fit-content;
  margin-top: 40px;
}

/* 写真＋キャプション */
.service__photo {
  position: relative;
  margin: 48px 0 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background-color: #1a1a24;
}

.service__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  height: 45%;
  background: linear-gradient(to top, rgba(17, 17, 27, 0.75), transparent);
  pointer-events: none;
}

.service__photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== STRENGTH：内線 × 外線 ===== */
.strength__cross {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  margin-top: 56px;
}

.strength__card {
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
}

.strength__card--en {
  margin-bottom: 14px;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #C9A66B;
}

.strength__card--title {
  display: block;
  margin-bottom: 12px;
  line-height: 1.3;
  font-size: 24px;
  font-weight: normal;
}

.strength__card--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.strength__mark {
  align-self: center;
  line-height: 1;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.35);
}

/* ===== 特殊工事＋数値 ===== */
.strength__special {
  margin-top: 40px;
  padding: 36px 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
}

.strength__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  line-height: 1;
  color: #C9A66B;
}

.strength__stat .label,
.strength__stat .unit {
  font-size: 12px;
  letter-spacing: 0.16em;
}

.strength__stat .num {
  font-size: 64px;
  line-height: 1;
}

/* ===== 番号付き3ブロック ===== */
.service__items {
  display: flex;
  flex-direction: column;
}

.service__item {
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.service__item:first-of-type {
  padding-top: 0;
  border-top: none;
}

.service__index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.service__index .num {
  color: #C9A66B;
}

.service__index .cat {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.service__index .cat::before {
  content: "／";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.25);
}

.service__item .inner--summary {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.8;
}

/* キーワードタグ */
.service__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.service__tags li {
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== クロージング ===== */
.service__closing {
  text-align: center;
}

.service__closing .title--mid {
  margin-bottom: 20px;
}

.service__closing .service__body {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PC ===== */
@media (width > 1024px) {
  .service__wrap {
    max-width: 960px;   /* 880px + padding 40px × 2 */
    padding: 0 40px;
  }

  .service__label {
    margin-top: 72px;
  }

  .service__photo {
    margin-top: 64px;
    aspect-ratio: 21 / 9;
  }

  .service__photo figcaption {
    right: 24px;
    bottom: 20px;
  }

  .strength__cross {
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-top: 72px;
  }

  .strength__card {
    flex: 1;
    padding: 36px 32px;
  }

  .strength__mark {
    flex-shrink: 0;
    font-size: 24px;
  }

  .strength__special {
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: start;
    gap: 0 48px;
    margin-top: 56px;
    padding: 48px;
  }

  .strength__stat {
    grid-row: 1 / 4;
    margin-bottom: 0;
    padding-right: 48px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .strength__stat .num {
    font-size: 88px;
  }

  .service__item {
    padding: 96px 0;
  }
}

/* ===== ENTRY 所在地マップ ===== */
.entry__map {
  margin-top: 24px;
}

.entry__map--label {
  margin-bottom: 16px;
  line-height: 1;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
}

.entry__map--frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background-color: #1a1a24;
}

.entry__map--frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.entry__map--address {
  margin-top: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

@media (width > 1024px) {
  .entry__map {
    margin-top: 40px;
  }

  .entry__map--frame {
    aspect-ratio: 21 / 9;
  }
}

/* **************************************************************
 benefits（働きやすい環境・福利厚生）
*************************************************************** */
.benefits {
  margin-top: 56px;
  margin-bottom: 56px;
}

.benefits__title {
  margin-bottom: 32px;
  line-height: 1.3;
  font-size: 24px;
  font-weight: normal;
}

.benefits__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.benefits__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  overflow: hidden;
}

.benefits__card--img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #1a1a24;
}

.benefits__card--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits__card--body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.benefits__card--label {
  margin-bottom: 12px;
  line-height: 1;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #C9A66B;
}

.benefits__card--name {
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: normal;
}

/* 項目リスト */
.benefits__card--list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.benefits__card--list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.benefits__card--list .term {
  flex-shrink: 0;
  min-width: 84px;
  color: rgba(255, 255, 255, 0.55);
}

.benefits__card--list .desc {
  color: #fff;
}

.benefits__card--text {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  text-align: justify;
  color: rgba(255, 255, 255, 0.75);
}

@media (width > 1024px) {
  .benefits {
    margin-top: 80px;
  }

  .benefits__cards {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .benefits__card--body {
    padding: 28px 24px;
  }

  .benefits__card--name {
    font-size: 19px;
  }

  .benefits__card--text {
    font-size: 12px;
  }
}

/* **************************************************************
 career step（キャリアステップ）
*************************************************************** */
.career {
  margin-top: 72px;
}

.career__eyebrow {
  margin-bottom: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #4E80E3;
}

.career__title {
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.3;
  font-size: 28px;
  font-weight: 700;
}

.career__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== 3ステップ ===== */
.career__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.career__card {
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.career__card.is-highlight {
  background-color: #4E80E3;
  border-color: #4E80E3;
}

.career__card--step {
  margin-bottom: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.85);
}

.career__card--name {
  display: block;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.career__card--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
}

.career__card.is-highlight .career__card--text {
  color: rgba(255, 255, 255, 0.92);
}

/* タグ */
.career__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.career__tags li {
  padding: 8px 12px;
  background-color: rgba(255, 255, 255, 0.08);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.career__card.is-highlight .career__tags li {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ===== 安全教育ブロック ===== */
.career__safety {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.career__safety--img {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #1a1a24;
}

.career__safety--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career__safety--body {
  padding: 24px;
}

.career__safety--name {
  display: block;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}

.career__safety--text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.career__safety--text + .career__safety--text {
  margin-top: 6px;
}

/* ===== PC：階段状に配置 ===== */
@media (width > 1024px) {
  .career {
    margin-top: 96px;
  }

  .career__title {
    font-size: 34px;
  }

  .career__steps {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 20px;
    margin-top: 56px;
  }

  .career__card {
    padding: 28px 24px;
  }

  /* STEP が進むほど上へ持ち上げる */
  .career__card--1 {
    margin-top: 96px;
  }

  .career__card--2 {
    margin-top: 48px;
  }

  .career__card--3 {
    margin-top: 0;
  }

  .career__safety {
    grid-template-columns: 340px 1fr;
    align-items: stretch;
    margin-top: 64px;
  }

  .career__safety--img {
    aspect-ratio: auto;
    height: 100%;
  }

  .career__safety--body {
    padding: 32px;
  }
}
@media (width > 1024px) {
  .career__steps {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;   /* 旧 start */
    gap: 20px;
    margin-top: 56px;
  }

  .career__card {
    padding: 28px 24px;
  }

  /* STEP が進むほど上端を持ち上げる（下端は揃う） */
  .career__card--1 {
    margin-top: 96px;
  }

  .career__card--2 {
    margin-top: 48px;
  }

  .career__card--3 {
    margin-top: 0;
  }
}

/* **************************************************************
 MVV（MISSION / VISION / VALUE）
*************************************************************** */
.mvv {
  margin: 72px 0;
}

.mvv__block + .mvv__block {
  margin-top: 56px;
}

/* パンフレットのバンド見出し */
.mvv__band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  background: linear-gradient(to bottom, #6FA3E8, #4E80E3);
  border-bottom: 3px solid rgba(255, 255, 255, 0.35);
  line-height: 1.3;
  font-weight: normal;
  color: #fff;
  text-align: center;
}

.mvv__band .en {
  font-size: 26px;
  letter-spacing: 0.16em;
}

.mvv__band .jp {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.mvv__text {
  margin-top: 28px;
  text-align: center;
}

.mvv__text p {
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.mvv__text p + p {
  margin-top: 12px;
}

/* PC でのみ改行させる br */
.u-br--pc {
  display: none;
}

@media (width > 1024px) {
  .mvv {
    margin: 96px 0;
  }

  .mvv__block + .mvv__block {
    margin-top: 72px;
  }

  .mvv__band {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
  }

  .mvv__band .en {
    font-size: 30px;
  }

  .mvv__band .jp {
    font-size: 20px;
  }

  .mvv__text {
    margin-top: 32px;
  }

  .mvv__text p {
    font-size: 16px;
  }

  .u-br--pc {
    display: inline;
  }
}

/* ========================================================
   フォント統一：Zen Maru Gothic（全要素へ強制適用）
   ※ファイル末尾に追記。既存ルールは変更しない
======================================================== */
:root {
  --font-maru:
    "Zen Maru Gothic",
    "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4",
    "BIZ UDPGothic", "Meiryo",
    sans-serif;
}

/* Font Awesome のアイコン要素だけ除外し、それ以外は全部 */
*:not([class*="fa-"]):not([class^="fa"]) {
  font-family: var(--font-maru) !important;
}

::placeholder {
  font-family: var(--font-maru) !important;
}

/* Thin に落ちる事故を防ぐため、基準ウェイトを明示 */
body {
  font-weight: 400;
}

/* ========================================================
   splash：スマホで画像の両端まで表示
   ※末尾に追記。既存ルールは変更しない
======================================================== */
@media (width <= 767px) {
  .splash__img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }

  .splash__img img {
    height: auto;
    object-fit: contain;
  }

  .splash__inner {
    position: relative;
    padding: 24px;
  }

  .splash {
    background-color: #11111B;
  }
}

/* ========================================================
   benefits：枠を外してイラストを浮かせる
   ※末尾に追記。既存ルールは変更しない
======================================================== */
.benefits__card {
  border: none;
  border-radius: 0;
  overflow: visible;
  background-color: transparent;
}

.benefits__card--img {
  aspect-ratio: 1 / 1;
  max-width: 300px;
  width: 300px;
  margin: 0 auto;
  overflow: visible;
  background-color: transparent;
}

.benefits__card--img img {
  object-fit: contain;
  mix-blend-mode: lighten;
}

.benefits__card--body {
  padding: 24px 0 0;
  text-align: center;
}

.benefits__card--list,
.benefits__card--text {
  text-align: left;
}

@media (width > 1024px) {
  .benefits__card--img {
    max-width: 260px;
  }

  .benefits__card--body {
    padding: 20px 0 0;
  }
}

/* ========================================================
   splash：SP は main_sp.jpg を大きく、青空に文字を載せる
======================================================== */
.splash__img--sp {
  display: none;
}

@media (width <= 767px) {
  .splash {
    background-color: transparent;
  }

  .splash__img {
    position: relative;
    height: 100vh;
    max-height: none;
    aspect-ratio: auto;
    overflow: hidden;
  }

  .splash__img--pc {
    display: none;
  }

  .splash__img--sp {
    display: block;
    max-width: 460vw !important;
    width: 448vw !important;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
  }

  /* 青空の上にテキストを重ねる */
  .splash__inner {
    position: absolute;
    left: 0;
    top: 0;
    bottom: auto;
    padding: 110px 24px 0;
  }

  .splash__catch {
    display: block;
    width: auto;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #11111B;
    white-space: normal;
    text-shadow: 0 1px 14px rgba(255, 255, 255, 0.65);
  }

  .splash__text--main {
    margin-top: 14px;
    font-size: 17px;
    letter-spacing: 0.08em;
    color: #11111B;
    text-shadow: 0 1px 14px rgba(255, 255, 255, 0.65);
  }

  .splash__btn {
    margin-top: 36px;
  }

  .splash__btn .btn--white {
    background-color: #11111B;
    color: #fff;
  }
}
/* ===========================================
   スマホ：トップ以外はヒーローを非表示
   =========================================== */
@media (max-width: 767px) {
    .splash.is-sub {
        display: none;
    }
}

/* ===========================================
   スマホ：ヒーローのキャッチ／社名／ENTRYを上下左右中央に
   =========================================== */
@media (width <= 767px) {
    .splash__inner {
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 24px;
        text-align: center;
    }

    .splash__catch {
        width: 100%;
        text-align: center;
    }

    .splash__text--main {
        width: 100%;
        text-align: center;
    }

    .splash__btn {
        margin: 36px auto 0;
    }
}

/* ========================================================
   splash / header：ダーク背景写真に合わせた配色調整
   ※ファイル末尾に追記
======================================================== */

/* --- ヘッダー背景を黒の半透明に --- */
.header::before {
  background-color: rgba(0, 0, 0, 0.3);
}

/* --- ナビの文字を白に --- */
.header__menu--nav a {
  color: #fff;
}

.header__menu--nav a:hover {
  color: #8AB4FF;   /* #1d1dff は黒背景だと沈むので明るめの青に */
}

/* --- ENTRY ボタンを黒背景・白文字に（ヒーロー内のみ） --- */
.splash__btn .btn--white {
  background-color: #11111B;
  color: #fff;
}

.splash__btn .btn--white:hover {
  background-color: #1d1dff;
  color: #fff;
}

.splash__catch,
.splash__text--main {
  color: #11111B;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;   /* 線を文字の下に描く。これが無いと線が字を侵食する */
}

@media (width > 1024px) {
  .splash__catch,
  .splash__text--main,
  .splash__btn {
    margin-left: 0%;   /* 30〜45% で微調整 */
  }
}
.splash__btn .btn--white {
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.splash__catch,
.splash__text--main {
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);  /* 念のための沈み込み防止 */
}

/* ========================================================
   TOP ヒーロー刷新：白背景＋縦組みキャッチ＋角丸画像
   ※ファイル末尾に追記。フロントページ（body.is-front）限定でスコープ
======================================================== */

/* --- フロントのヘッダーを白背景に合わせる（透明化・ダーク文字・ピルナビ） --- */
body.is-front .header::before {
  background: transparent;
}

body.is-front .header__inner {
  padding-top: 28px;
  padding-bottom: 0;
}

/* ハンバーガー（SP）：黒背景ヒーローに合わせて白 */
body.is-front .btn-menu::before {
  color: #fff;
}

@media (width > 1024px) {
  /* 実ナビをフローティングピル化 */
  body.is-front .header__menu--nav {
    gap: clamp(18px, 2vw, 34px);
    padding: 16px 36px;
    background: rgba(244, 244, 242, 0.82);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.25);
  }

  body.is-front .header__menu--nav a {
    color: #2a2a2a;
    font-size: 14px;
    letter-spacing: 0.14em;
    white-space: nowrap;
  }

  body.is-front .header__menu--nav a:hover {
    color: #1d1dff;
  }
}

/* --- ヒーロー本体（分割レイアウト） --- */
body.is-front .splash--front {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  background: #11111B;
  padding: 0 !important;
  overflow: hidden;
}

body.is-front .splash__text {
  flex: 0 0 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 40px;
}

body.is-front .splash--front .splash__catch {
  display: block;
  width: auto;
  writing-mode: horizontal-tb;
  font-family: 'Shippori Mincho', 'Noto Serif JP', serif;
  font-weight: 600;
  font-size: clamp(34px, 3.4vw, 56px);
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: #fff;
  text-align: center;
  white-space: normal;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

/* PC：キャッチコピーはスクロールしても位置固定（左カラム中央） */
@media (width > 1024px) {
  body.is-front .splash--front .splash__catch {
    position: fixed;
    top: 50%;
    left: 17%;
    transform: translate(-50%, -50%);
    z-index: 90;
    margin: 0;
  }
}

body.is-front .splash__media {
  flex: 1 1 66%;
  position: relative;
  padding: 28px 28px 28px 0;
}

body.is-front .splash--front .splash__img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  overflow: hidden;
  border-radius: 190px 24px 24px 200px / 190px 24px 24px 300px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.35);
}

body.is-front .splash--front .splash__img--pc {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-front .splash--front .splash__img--sp {
  display: none;
}

/* --- タブレット／スマホ：横組みキャッチ＋画像を縦積み --- */
@media (width <= 1024px) {
  body.is-front .splash--front {
    flex-direction: column;
    min-height: auto;
    padding: 88px 0 0 !important;
  }

  body.is-front .splash__text {
    flex: none;
    padding: 24px 24px 8px;
  }

  body.is-front .splash--front .splash__catch {
    writing-mode: horizontal-tb;
    max-height: none;
    text-align: center;
    font-size: clamp(28px, 6.5vw, 40px);
    line-height: 1.6;
    letter-spacing: 0.08em;
  }

  body.is-front .splash__media {
    flex: none;
    padding: 12px 16px 40px;
  }

  body.is-front .splash--front .splash__img {
    min-height: 58vh;
    border-radius: 70px 16px 16px 80px / 70px 16px 16px 130px;
  }

  /* SP でも main.jpg（縦長）を角丸ボックス内に表示 */
  body.is-front .splash--front .splash__img--pc {
    display: block;
  }

  body.is-front .splash--front .splash__img--sp {
    display: none;
  }
}

/* ========================================================
   TOP ヒーロー刷新（第2版）：全面写真＋左下キャッチ＋右上サブコピー
   ※ style.css の末尾に追記。既存ルールは変更しない。
   ※ 「TOP ヒーロー刷新：白背景＋縦組みキャッチ＋角丸画像」ブロックは
      残っていてもここで全て上書きされる（削除しても可）
======================================================== */

/* --- ヘッダー：透明背景、白文字のテキストナビ＋右端に白ボタン --- */
body.is-front .header::before {
  background: linear-gradient(to bottom, rgba(17, 17, 27, 0.55), rgba(17, 17, 27, 0));
}

body.is-front .header__inner {
  max-width: none;
  padding: 24px 40px;
}

body.is-front .header__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (width > 1024px) {
  body.is-front .header__menu--nav {
    gap: clamp(20px, 2.2vw, 36px);
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
  }

  body.is-front .header__menu--nav a {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  }

  body.is-front .header__menu--nav a:hover {
    color: rgba(255, 255, 255, 0.6);
  }
}

.header__cta {
  display: none;
}

@media (width > 1024px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background-color: #fff;
    border-radius: 999px;
    color: #11111B;
    font-size: 13px;
    letter-spacing: 0.1em;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .header__cta:hover {
    background-color: #11111B;
    color: #fff;
  }

  .header__cta--arrow {
    font-size: 14px;
    line-height: 1;
  }
}

/* --- ヒーロー本体：写真を全面に敷く --- */
body.is-front .splash--front {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  background: #11111B;
  padding: 0 !important;
  overflow: hidden;
}

.splash__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.splash__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.splash__bg--sp {
  display: none;
}

/* 文字の可読性用：左下と上端を軽く沈める */
.splash__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(17, 17, 27, 0.55) 0%, rgba(17, 17, 27, 0) 45%),
    linear-gradient(to right, rgba(17, 17, 27, 0.35) 0%, rgba(17, 17, 27, 0) 50%);
  pointer-events: none;
}

/* --- 左下：キャッチコピー＋英字 --- */
body.is-front .splash__text {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 18%;
  display: block;
  flex: none;
  padding: 0;
  max-width: 60%;
}

/* .splash__catch は既存で position:fixed / flex / nowrap が当たっているので全て戻す */
body.is-front .splash--front .splash__catch {
  position: static;
  transform: none;
  display: block;
  width: auto;
  margin: 0;
  writing-mode: horizontal-tb;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif !important;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: left;
  white-space: normal;
  -webkit-text-stroke: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

body.is-front .splash--front .splash__tagline {
  margin-top: 28px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- 右上：サブコピー --- */
body.is-front .splash--front .splash__sub {
  position: absolute;
  z-index: 2;
  right: 8%;
  top: 22%;
  margin: 0;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif !important;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.5);
}

/* --- 右下：SCROLL（横書き＋下に縦線） --- */
body.is-front .splash--front .splash__scroll {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px;
  letter-spacing: 0.24em;
  line-height: 1;
  color: #fff;
  writing-mode: horizontal-tb;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

body.is-front .splash--front .splash__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  animation: splash-scroll-line 2.2s ease-in-out infinite;
}

@keyframes splash-scroll-line {
  0%   { transform: scaleY(0);   transform-origin: top; }
  45%  { transform: scaleY(1);   transform-origin: top; }
  55%  { transform: scaleY(1);   transform-origin: bottom; }
  100% { transform: scaleY(0);   transform-origin: bottom; }
}

@media (prefers-reduced-motion: reduce) {
  body.is-front .splash--front .splash__scroll::after {
    animation: none;
  }
}

/* --- タブレット／スマホ --- */
@media (width <= 1024px) {
  /* ヘッダー：PCナビとENTRYボタンは出さない（ハンバーガーのみ） */
  body.is-front .header__menu {
    display: none;
  }

  body.is-front .header__inner {
    padding: 20px 24px;
  }

  body.is-front .header__title--logo img {
    width: 180px;
    height: auto;
  }

  /* ヒーロー：絶対配置をやめ、下寄せの縦積みにする */
  body.is-front .splash--front {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
    padding: 96px 24px 64px !important;
  }

  .splash__bg--pc {
    display: none;
  }

  .splash__bg--sp {
    display: block;
    object-position: 60% center;
  }

  body.is-front .splash__text {
    position: static;
    order: 1;
    max-width: none;
  }

  body.is-front .splash--front .splash__catch {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.6;
  }

  body.is-front .splash--front .splash__tagline {
    margin-top: 24px;
    font-size: 10px;
    line-height: 1.9;
  }

  /* サブコピー：キャッチの下に、間隔を空けて置く */
  body.is-front .splash--front .splash__sub {
    position: static;
    order: 2;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 13px;
    line-height: 2;
    opacity: 0.9;
  }

  body.is-front .splash--front .splash__scroll {
    display: none;
  }
}

/* ========================================================
   TOP ヒーロー：キャッチをスクロール追随（PCのみ）
======================================================== */
@media (width > 1024px) {
  body.is-front .splash__text {
    position: fixed;
    left: 48px;
    bottom: 24%;
    z-index: 2;
    max-width: 60%;
    pointer-events: none;           /* 下のコンテンツのクリックを邪魔しない */
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  /* ヒーローを抜けたら消す */
  body.is-front.is-hero-out .splash__text {
    opacity: 0;
    visibility: hidden;
  }
}

/* ========================================================
   下層ページのヒーロー（キャッチのみ／PCは左に固定追随）
   ※ header.php 側で <section class="section splash splash--sub"> を出力すること
======================================================== */

/* --- ヘッダー：ナビと ENTRY を横並びに（PCのみ） --- */
@media (width > 1024px) {
  .header__menu {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

/* --- ヒーロー本体（SP/タブレット基準） --- */
.splash--sub {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 0;
  background-color: #11111B;
  padding: 110px 24px 0 !important;   /* 下は 0。間隔は次セクションの padding に任せる */
}

.splash--sub .splash__text {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
}

.splash--sub .splash__catch {
  display: block;                      /* 既存の flex / gap:40px を解除 */
  width: auto;                         /* fit-content を解除 */
  white-space: normal;                 /* nowrap を解除 */
  margin: 0;
  font-family: 'Shippori Mincho', 'Noto Serif JP', 'Hiragino Mincho ProN', serif !important;
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: left;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.splash--sub .splash__tagline {
  margin-top: 18px;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px;
  line-height: 1.9;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- PC：キャッチを左に固定、ヒーローはフローから外す --- */
@media (width > 1024px) {
  .splash--sub {
    display: block;
    height: 0;
    padding: 0 !important;             /* 場所を取らせない */
    overflow: visible;
  }

  .splash--sub .splash__text {
    position: fixed;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: auto;
    max-width: 38%;
    margin: 0;
    pointer-events: none;              /* 下のコンテンツのクリックを邪魔しない */
  }

  .splash--sub .splash__tagline {
    margin-top: 28px;
    font-size: 12px;
  }
}

/* --- フッターでキャッチを隠す（固定要素の重なり対策） --- */
.footer {
  z-index: 3;
}

/* ========================================================
   会社概要：COMPANY 見出しの右にロゴ
======================================================== */
.company__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 80px;   /* .title の余白を親へ移す */
}

.company__head .title {
  margin-bottom: 0;
}

.company__head--logo {
  flex-shrink: 0;
  width: 239px;
  height: auto;
}

@media (width <= 767px) {
  .company__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 56px;
  }

  .company__head--logo {
    width: 180px;
  }
}