@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  font-weight: 100;
  line-height: 1.7;
}

/* sub-sub-header */
.sub-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  z-index: 50;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 821px) {
  .sub-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
  }
}

.sub-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
@media screen and (min-width: 821px) {
  .sub-header__inner {
    padding-top: 20px;
    width: 100%;
    height: 100%;
  }
}

.sub-header__logo {
  z-index: 40;
}
.sub-header__logo img {
  width: 84px;
  height: 47px;
}
@media screen and (min-width: 821px) {
  .sub-header__logo img {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 143px;
    height: 76px;
  }
}

.sub-header__nav {
  position: absolute;
  top: 70px;
  left: -100%;
  opacity: 0;
  transition: all 0.5s linear;
  background: #fff;
}
.sub-header__nav.is-checked {
  background: #fff;
  top: 70px;
  left: 0;
  opacity: 1;
  z-index: 30;
  padding-left: 20px;
  width: 100%;
  height: calc(100vh - 70px);
}
@media screen and (min-width: 821px) {
  .sub-header__nav {
    position: static;
    display: flex;
    justify-content: flex-end;
    background: transparent;
    opacity: 1;
    width: 100%;
    z-index: 30;
  }
}

.sub-header__list {
  overflow: auto;
}
@media screen and (min-width: 821px) {
  .sub-header__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-header__list {
    gap: 30px;
  }
}

.sub-header__item {
  margin: 33px 0;
}
@media screen and (min-width: 821px) {
  .sub-header__item {
    margin: 0px;
    margin-left: auto;
    overflow: hidden;
  }
}

.sub-header__item-en {
  font-family: "Urbanist", sans-serif;
  font-size: 19px;
  line-height: 1.21;
  letter-spacing: 1.9px;
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .sub-header__item-en {
    font-size: 12px;
  }
}
@media screen and (min-width: 821px) {
  .sub-header__item-en {
    font-size: 12px;
  }
}

.sub-header__item-ja {
  margin-top: 5px;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0px;
  font-weight: 300;
}
@media screen and (min-width: 821px) {
  .sub-header__item-ja {
    display: none;
  }
}

.sub-header__item-en,
.sub-header__item-ja {
  transition: opacity 0.3s;
  opacity: 1;
}

.sub-header__item-en:hover,
.sub-header__item-ja:hover {
  opacity: 0.3;
}

.sub-header__item-logo {
  margin-top: 80px;
  gap: 10px;
}
@media screen and (min-width: 821px) {
  .sub-header__item-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    gap: 5px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-header__item-logo {
    gap: 10px;
  }
}

.logo_x {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 821px) {
  .logo_x {
    margin-right: 0;
  }
}

.logo_youtube {
  width: 33px;
  height: 22px;
}
@media screen and (min-width: 821px) {
  .logo_youtube {
    margin-left: 20px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .logo_youtube {
    margin-left: 0;
  }
}

.header__item-logo {
  transition: opacity 0.3s;
  opacity: 1;
}

.mv__title {
  font-weight: 400;
}

.drawer__icon {
  display: block;
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 11;
  transition: all 0.3s linear;
  z-index: 30;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(1) {
  transform: rotate(25deg);
  top: 8px;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(2) {
  display: none;
}
.drawer__icon.is-checked .drawer__icon-bar:nth-child(3) {
  transform: rotate(-25deg);
  top: 8px;
}
@media screen and (min-width: 821px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon-bar {
  position: absolute;
  width: 25px;
  height: 2px;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
  background-color: #050505;
}
.drawer__icon-bar:nth-child(2) {
  top: 8px;
}
.drawer__icon-bar:nth-child(3) {
  top: 16px;
}

.sub_mv {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 0;
  margin-bottom: -100px;
}
@media screen and (min-width: 821px) {
  .sub_mv {
    padding-top: 70px;
    margin-bottom: -100px;
  }
}
.sub_mv .sub_mv__inner {
  /* …既存のスタイル… */
}
.sub_mv .sub_mv__image {
  position: relative;
}
.sub_mv .sub_mv__image img {
  /* … */
}
.sub_mv .sub_mv__image::after {
  /* 必要なら残してOK */
}

.sub_mv__inner {
  padding: 40px 20px 30px;
  position: relative;
  height: auto;
}
.sub_mv__inner::before {
  position: absolute;
  content: "";
  top: 0%;
  right: 0%;
  background-image: url(image/s_sp_image_event2.png);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  margin-top: 10px;
}
@media screen and (min-width: 821px) {
  .sub_mv__inner {
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-top: 72px;
  }
}

.suv_mv__container {
  width: 100%;
  display: flex;
  width: 77.3vw;
  margin-left: auto;
}

.sub_mv__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: auto;
}
@media screen and (min-width: 821px) {
  .sub_mv__text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* テキストは左揃え */
    margin-left: auto;
    text-align: left; /* 念のため */
    position: relative;
    width: 77.3vw; /* 1920px基準で1484px分の割合 */
    max-width: 1484px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1080px) {
  .sub_mv__text-container {
    width: 77.3vw; /* 1920px基準で1484px分の割合 */
    max-width: 1484px;
    margin-left: auto;
  }
}

.sub_mv__title {
  position: relative; /* 擬似要素の基準にする */
  line-height: 1.2;
  font-size: 39px;
  font-family: "Urbanist";
  font-weight: 900;
  font-style: italic;
  color: #050505;
  letter-spacing: 0.3px;
  margin-left: 40px;
}
.sub_mv__title::before {
  content: "";
  position: absolute;
  left: -16px; /* 必要に応じて位置調整 */
  top: 50%; /* 上から50%の位置に */
  transform: translateY(-50%);
  bottom: 0;
  width: 4px;
  height: 34px; /* 赤線の太さ */
  background: #e60012; /* 赤線の色 */
}
@media screen and (min-width: 821px) {
  .sub_mv__title::before {
    width: 6px;
    height: 50px;
    left: -30px;
  }
}
@media screen and (min-width: 1080px) {
  .sub_mv__title::before {
    width: 7px;
    height: 82px;
    left: -40px;
  }
}
@media screen and (min-width: 821px) {
  .sub_mv__title {
    font-size: 55px;
  }
}
@media screen and (min-width: 1080px) {
  .sub_mv__title {
    font-size: 91px;
  }
}

.sub_mv__sub-title {
  display: inline-block;
  font-size: 13px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  align-self: flex-start;
  text-align: left;
  margin-left: 40px;
}
@media screen and (min-width: 821px) {
  .sub_mv__sub-title {
    font-size: 17px;
  }
}

.sub_mv__image {
  position: relative;
}
.sub_mv__image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 134px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub_mv__image .sub_mv__image::after {
  content: "";
  position: absolute;
  bottom: -80;
  left: 0;
  width: 100%;
  height: 50px; /* 下に追加したい量 */
}
@media screen and (min-width: 821px) {
  .sub_mv__image {
    position: absolute;
    bottom: -10;
    right: 0;
  }
  .sub_mv__image img {
    width: 77.3vw; /* 1920px基準で1484px分の割合 */
    max-width: 1484px;
    margin-left: auto;
    aspect-ratio: 1484/486;
  }
}

.sub-event {
  background: #f7f7f7;
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (min-width: 821px) {
  .sub-event {
    padding-top: 150px;
  }
}

.sub-section__title {
  grid-area: title;
  text-align: center;
  color: #e60000;
}
@media screen and (min-width: 821px) {
  .sub-section__title {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

.sub-section__title-en {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 821px) {
  .sub-section__title-en {
    font-size: 45px;
    line-height: 1.2;
    letter-spacing: 2.7px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-section__title-en {
    font-size: 60px;
  }
}

.sub-section__title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  margin-top: 10px;
  color: #050505;
}
@media screen and (min-width: 821px) {
  .sub-section__title-ja {
    font-size: 17px;
  }
}

.sub-event__inner {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.sub-event__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
  background: #fff;
  background: #fff;
  width: 100% !important;
  box-sizing: border-box;
  margin-top: 50px;
}
@media screen and (min-width: 821px) {
  .sub-event__slide {
    margin: 0;
  }
}

.sub-event__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-event__title-pc {
  order: 1;
  font-size: 22px;
  color: #e60000;
  font-weight: 700;
  margin-bottom: 18px;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .sub-event__title-pc {
    font-size: 32px;
    margin: 50px 0;
  }
}

.sub-event__image {
  order: 2;
  width: 100%;
  max-width: 800px;
  margin-bottom: 18px;
}
.sub-event__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (min-width: 821px) {
  .sub-event__image {
    margin-bottom: 28px;
  }
}

.sub-event__sub-title {
  order: 3;
  font-size: 18px;
  font-weight: 600;
  color: #050505;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 821px) {
  .sub-event__sub-title {
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 80px;
  }
}

.sub-event__description {
  order: 4;
  font-family: "Noto Sans JP";
  font-size: 15px;
  color: #050505;
  margin-bottom: 18px;
  text-align: left;
  width: 100%;
  max-width: 800px;
}
@media screen and (min-width: 821px) {
  .sub-event__description {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.sub-section__button-sp {
  order: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
@media screen and (min-width: 821px) {
  .sub-section__button-sp {
    margin-top: 24px;
  }
}

.sub-event__bg-flex {
  display: flex;
  flex-direction: column !important;
  padding: 0 !important;
  max-width: 100% !important;
}

.sub-event__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  gap: 0 !important;
  grid-template-areas: unset !important;
}

.swiper-wrapper {
  width: 100% !important;
}

.sub-event__swiper {
  max-width: 100%;
  overflow: hidden;
}

.sub-ticket-link__anchor {
  display: inline-block;
  font-family: "Noto Sans JP";
  font-size: 15px;
  color: #e60000;
  font-weight: 400;
  margin-bottom: 10px;
}
@media screen and (min-width: 821px) {
  .sub-ticket-link__anchor {
    font-size: 20px;
  }
}

.sub-ticket-links {
  order: 4;
  font-family: "Noto Sans JP";
  font-size: 15px;
  color: #050505;
  margin: 18px 0;
  text-align: left;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 821px) {
  .sub-ticket-links {
    font-size: 20px;
    margin: 30px 0;
  }
}

.sub-section__button-sp {
  margin-bottom: 80px;
}

.sub-event__slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 100% !important;
  box-sizing: border-box;
}

.sub-event .swiper-pagination {
  display: none;
}

.archive__inner {
  padding: 55px 20px 114px;
}
@media screen and (min-width: 821px) {
  .archive__inner {
    padding: 114px 20px;
  }
}

.archive__title-container {
  width: 100%;
}

.archive__title {
  color: #e60000;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-align: center;
  padding-bottom: 28px;
  font-weight: 700;
}
@media screen and (min-width: 821px) {
  .archive__title {
    padding-bottom: 8px;
    font-size: 60px;
  }
}

.archive__description {
  line-height: 1.7;
  letter-spacing: 0.7px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 14px;
  padding-bottom: 60px;
}
@media screen and (min-width: 821px) {
  .archive__description {
    padding-bottom: 100px;
  }
}

.archive__card-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .archive__card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .archive__card-wrapper {
    gap: 0px 78px;
  }
}

.archive__card {
  font-family: "Noto Sans JP";
}

.archive__card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.archive__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding-bottom: 0;
  min-height: 0;
}

.archive__card-title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  font-family: "Noto Sans JP";
  color: #050505;
  text-align: center;
  padding-bottom: 16px;
}
@media screen and (min-width: 821px) {
  .archive__card-title {
    text-align: left;
  }
}

.archive__date {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.7px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 60px;
}
@media screen and (min-width: 821px) {
  .archive__date {
    text-align: left;
  }
}

.sub-services {
  background: #f7f7f7;
  padding-top: 100px;
}
@media screen and (min-width: 821px) {
  .sub-services {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-services {
    padding-top: 200px;
  }
}

.sub-services__inner {
  padding: 60px 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.sub-services__title {
  color: #e60000;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 1.3px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}
@media screen and (min-width: 821px) {
  .sub-services__title {
    font-size: 32px;
    text-align: center;
  }
}
@media screen and (min-width: 1080px) {
  .sub-services__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-services__title {
    font-size: 48px;
  }
}
@media screen and (min-width: 821px) {
  .sub-services__title::before {
    content: "EMOTION IN MOTION";
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap;
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 70px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: -1;
  }
}
@media screen and (min-width: 1080px) {
  .sub-services__title::before {
    bottom: 0%;
    left: 50%;
    font-size: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-services__title::before {
    bottom: 0%;
    left: 50%;
    font-size: 110px;
  }
}
@media screen and (min-width: 1300px) {
  .sub-services__title::before {
    top: -90px;
    font-size: 130px;
  }
}

.sub-services__description {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.7px;
  font-weight: 400;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 821px) {
  .sub-services__description {
    text-align: center;
    font-size: 22px;
  }
  .sub-services__description.pc-none {
    display: none;
  }
}

.sub-services-point__inner {
  padding: 40px 28px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .sub-services-point__inner {
    padding: 81px 28px 164px;
  }
}

.sub-services-point__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1.3px;
  font-weight: 500;
  color: #050505;
  padding-left: 13px;
  border-left: 3px solid #e60000;
  margin-bottom: 53px;
}

.sub-services-point__container {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
}

.sub-services-point__card {
  padding: 30px 0 25px;
  border-top: #707070 1.5px solid;
  width: 100%;
}
.sub-services-point__card:last-child {
  border-bottom: 1.5px solid #707070;
}
@media screen and (min-width: 821px) {
  .sub-services-point__card {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 80px;
  }
}

.services-point__text {
  padding: 0px 17px;
}
@media screen and (min-width: 821px) {
  .services-point__text {
    flex: 1;
  }
}

.services-point__text-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #e60000;
  padding-bottom: 25px;
  font-weight: 500;
}

.services-point__text-description {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.7px;
  color: #050505;
  padding-bottom: 25px;
}

.services-point__image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 134px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 821px) {
  .services-point__image {
    margin-left: auto;
    flex-shrink: 0;
  }
}

.sub-services-point__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.sub-service-overview {
  background: #f0f0f0;
}
@media screen and (min-width: 821px) {
  .sub-service-overview {
    background: #fff;
  }
}

.sub-service-overview__inner {
  padding: 40px 28px 60px;
  position: relative;
}

.sub-service-overview__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1.3px;
  font-weight: 600;
  color: #050505;
  padding-left: 13px;
  border-left: 3px solid #e60000;
  margin-bottom: 53px;
  max-width: 1300px;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__title {
    margin-left: auto;
    margin-right: auto;
  }
}

.sub-service-overview__container {
  display: flex;
  flex-direction: column;
}

.sub-service-overview__card {
  padding: 30px 0 60px;
  max-width: 1300px;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__card {
    padding-bottom: 100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "title image" "sub-title image" "description image";
    gap: 0px 50px;
  }
}

.sub-service-overview__card--last {
  padding: 30px 0 60px;
  max-width: 1300px;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__card--last {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text image" "sub-title image" "description image";
    gap: 0px 50px;
  }
}

.sub-service-overview__text-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #e60000;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
  grid-area: title;
  font-weight: 500;
}
.sub-service-overview__text-title::before {
  content: "SERVICE 01";
  position: absolute;
  top: -75%;
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 65px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-title::before {
    content: "SERVICE 01";
    position: absolute;
    top: -60px;
    left: 200px;
    white-space: nowrap;
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 70px;
    font-weight: 900;
    pointer-events: none;
    z-index: -1;
    padding-bottom: 0;
    color: rgba(240, 240, 240, 0.6);
  }
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-title {
    text-align: left;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .sub-service-overview__text-title {
    padding-top: 40px;
    font-size: 32px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-service-overview__text-title::before {
    font-size: 100px;
    top: -45px;
    left: 280px;
  }
}

.sub-service-overview__text-next-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #e60000;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
  grid-area: text;
  font-weight: 500;
}
.sub-service-overview__text-next-title::before {
  content: "SERVICE 02";
  position: absolute;
  top: -75%;
  left: 50%;
  transform: translate(-50%);
  white-space: nowrap;
  font-family: "avenir-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 65px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: -1;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-next-title::before {
    content: "SERVICE 02";
    position: absolute;
    top: -60px;
    left: 200px;
    white-space: nowrap;
    font-family: "avenir-lt-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 70px;
    font-weight: 900;
    pointer-events: none;
    z-index: -1;
    text-align: left;
    padding-bottom: 0;
    color: rgba(240, 240, 240, 0.6);
  }
}
@media screen and (min-width: 1080px) {
  .sub-service-overview__text-next-title::before {
    font-size: 80px;
    top: -45px;
    left: 280px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-service-overview__text-next-title::before {
    font-size: 100px;
    top: -45px;
    left: 280px;
  }
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-next-title {
    text-align: left;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .sub-service-overview__text-next-title {
    padding-top: 40px;
    font-size: 32px;
  }
}

.sub-service-overview__text-sub-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  padding-bottom: 30px;
  grid-area: sub-title;
  font-weight: 500;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-sub-title {
    padding-bottom: 0;
  }
}

.sub-service-overview__text-description {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.9px;
  color: #050505;
  grid-area: description;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__text-description {
    padding-bottom: 0;
  }
}

.sub-service-overview__image {
  grid-area: image;
  justify-self: stretch;
  align-self: center;
}
.sub-service-overview__image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 134px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 40px;
}
@media screen and (min-width: 821px) {
  .sub-service-overview__image img {
    padding-bottom: 0;
  }
}

.sub-service-overview__image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.sub-service-overview__button {
  position: relative;
  bottom: 2vh;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .sub-service-overview__button {
    bottom: 3vh;
  }
}

.sub-service-flow {
  background: #f0f0f0;
}

.sub-service-flow__inner {
  padding: 40px 28px 60px;
  background-image: url(image/s_pc_deco_recruit01.png);
  background-repeat: repeat;
  background-size: cover;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__inner {
    padding: 115px 0 127px;
  }
}

.sub-service-flow__container {
  background: #fff;
  padding: 40px 30px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__container {
    width: 90%;
    padding: 72px 0 98px;
  }
}

.sub-service-flow__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1.3px;
  font-weight: 500;
  color: #e60000;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__title {
    font-size: 37px;
  }
}

.sub-service-flow__text-description {
  font-family: #050505;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  color: #050505;
  text-align: center;
  padding-bottom: 64px;
}

/* １．ステップ群を相対位置に */
.sub-service-flow__steps {
  position: relative;
  counter-reset: flow;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__steps {
    width: 90%;
  }
}

/* ２．コンテナの疑似要素で縦線を１本だけ描画 */
.sub-service-flow__steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 30.5px;
  bottom: 64px;
  width: 2px;
  background: #e60012;
}
@media screen and (min-width: 480px) {
  .sub-service-flow__steps::before {
    top: 20px;
    bottom: 40px;
  }
}
@media screen and (min-width: 821px) {
  .sub-service-flow__steps::before {
    left: 130px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-service-flow__steps::before {
    bottom: 30px;
  }
}

/* ４．丸＋番号はそのまま */
.sub-service-flow__step::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: -2px;
  top: 10px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e60012;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: "avenir-lt-pro", sans-serif;
  letter-spacing: 0.9px;
  /* 線より手前に */
}
@media screen and (min-width: 821px) {
  .sub-service-flow__step::before {
    left: 100px;
  }
}

/* ５．オフセットに合わせた padding-left */
.sub-service-flow__step {
  position: relative;
  counter-increment: flow;
  padding-left: 91px; /* 30 + 65 + 26 */
  margin-bottom: 40px;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__step {
    padding-left: 220px;
  }
}

.sub-service-flow__step:last-child {
  margin-bottom: 0;
}

.sub-service-flow__step-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #e60000;
  padding-bottom: 12px;
}
@media screen and (min-width: 821px) {
  .sub-service-flow__step-title {
    font-size: 22px;
  }
}

.sub-service-flow__step-description {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: #050505;
}

.sub-gallery {
  background: #f0f0f0;
  padding-top: 100px;
}
@media screen and (min-width: 821px) {
  .sub-gallery {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-gallery {
    padding-top: 200px;
  }
}

.sub-gallery__inner {
  padding: 46px 20px 114px;
  max-width: 1300px;
  margin: 0 auto;
}

.sub-gallery__title {
  display: inline-block;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-align: center;
  padding-left: 30px;
  border-left: 3px solid #e60000;
  margin-bottom: 49px;
  font-weight: 500;
}

.sub-gallery__description {
  line-height: 1.7;
  letter-spacing: 0.7px;
  font-weight: 400;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 14px;
  padding-bottom: 60px;
}

.sub-gallery__card-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .sub-gallery__card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-gallery__card-wrapper {
    gap: 0px 78px;
  }
}

.sub-gallery__card-image img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  padding-bottom: 13px;
  transition: filter 0.3s ease-in-out;
  aspect-ratio: 16/11;
}
.sub-gallery__card-image:hover img {
  filter: brightness(60%);
}

.sub-gallery__card-title {
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  font-family: "Noto Sans JP";
  color: #050505;
  text-align: left;
  margin-bottom: 50px;
}

.sub-gallery__category {
  display: inline-block;
  background-color: #e60000;
  color: #fff; /* 文字色は白 */
  font-size: 14px; /* お好みで調整 */
  line-height: 1;
  border-radius: 999px; /* pill 型に */
  padding: 6px 18px; /* 上下4px 左右12px */
  text-decoration: none;
  margin-bottom: 16px; /* 下線を消す */
  display: inline-block;
  background-color: #e60000;
  color: #fff; /* 文字色は白 */
  font-size: 14px; /* 現在のフォントサイズ */
  line-height: 1;
  border-radius: 999px;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden; /* テキストがはみ出した場合に隠す (任意) */
  text-overflow: ellipsis;
  width: 122px;
}
@media screen and (min-width: 821px) {
  .sub-gallery__category {
    width: 131px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  font-family: "Noto Sans JP";
}

.pagination__arrow {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pagination__arrow--prev::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.pagination__list {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 48px;
}

.pagination__item {
  display: flex;
  align-items: center;
  height: 48px;
  margin-top: 0;
}

.pagination__link {
  text-decoration: none;
  color: #777;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  line-height: 48px;
}

.pagination__item.is-active .pagination__link {
  color: #e60012;
  font-weight: bold;
}

/* スクリーンリーダー用隠しテキスト */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sub-gallery__title {
  display: inline-block;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-align: center;
  padding-left: 14px;
  border-left: 3px solid #e60000;
  margin-bottom: 49px;
  font-weight: 500;
}

.sub-works-list__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 58px 28px 119px;
}

.sub-works-list-title {
  font-family: "Noto Sans JP";
  display: inline-block;
  color: #050505;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  text-align: center;
  padding-left: 14px;
  border-left: 3px solid #e60000;
  margin-bottom: 33px;
  font-weight: 500;
}

.search-box {
  background: #e60000;
  font-family: "Noto Sans JP";
  margin-bottom: 62px;
}

.search-box__inner {
  padding: 32px 51px 35px;
}
@media screen and (min-width: 821px) {
  .search-box__inner {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1080px) {
  .search-box__inner {
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
  }
}

.search-box__title {
  font-size: 22px;
  letter-spacing: 1.1px;
  padding-bottom: 43px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .search-box__title {
    padding-bottom: 0;
    margin-left: 37px;
  }
}

.search-box__text-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 44px;
}
@media screen and (min-width: 1080px) {
  .search-box__text-inner {
    display: flex;
    flex-direction: row;
    padding-bottom: 0;
  }
}

.search-box__form {
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .search-box__form {
    display: flex;
  }
}

/* ─── セレクトのテキストを中央寄せ ─── */
.search-box__select select {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  display: block;
  justify-content: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 47px;
  padding: 0 40px 0 20px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1080px) {
  .search-box__select select {
    width: 180px;
  }
}
@media screen and (min-width: 1300px) {
  .search-box__select select {
    width: 260px;
  }
}

.search-box__select {
  font-weight: 400;
  position: relative;
}

/* ─── 下向き三角の疑似要素も中央に ─── */
.search-box__select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #999;
  transform: translateY(-50%);
  pointer-events: none; /* アイコンがクリックを邪魔しない */
}

.search-box__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  width: 163px;
  height: 44px;
  background-color: #fff;
  border: 1px solid #e60000;
  border-radius: 22px;
  color: #e60000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-sizing: border-box;
}
@media screen and (min-width: 1080px) {
  .search-box__button {
    margin-right: 37px;
    margin-left: 37px;
  }
}

.search-box__icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: currentColor;
}

/*───────────────────────────────────*/
/* モバイル（デフォルト）：Flex で横並び → タイトルは次行 */
/*───────────────────────────────────*/
.sub-gallery__card-list {
  display: grid;
  /* 左から：日付 80px + タグ  auto + 場所 auto */
  grid-template-columns: 80px auto 80px 80px;
  padding: 8px 0;
  border-bottom: 1px solid #ccc;
  gap: 0 16px; /* カラム間の余白 */ /* 中央寄せ */
  align-items: baseline;
  justify-items: start;
  padding-top: 23px;
  padding-bottom: 14px;
}

/* 日付 */
.sub-gallery__card__date {
  grid-column: 1; /* 1列目 */
  grid-row: 1;
  white-space: nowrap;
  color: #666;
  font-size: 14px; /* 日付→カテゴリ */
  font-family: "Noto Sans JP";
}

/* カテゴリ */
.sub-gallery__card__category {
  grid-column: 2; /* 2列目 */
  grid-row: 1; /* カテゴリ→場所 */
}

.pill {
  display: inline-block;
  box-sizing: border-box; /* ここがミソ */
  width: 87px; /* 固定幅 */
  height: 19px; /* 固定高さ */
  line-height: 19px; /* テキストを真ん中揃え */
  text-align: center; /* 横方向センター */
  font-size: 12px; /* 文字サイズはお好みで */
  border: 1px solid #e60000;
  background: transparent;
  color: #e60000;
  text-decoration: none;
  white-space: nowrap;
}

/* 場所 */
.sub-gallery__card__region {
  grid-column: 3; /* 3列目 */
  grid-row: 1;
  color: #050505;
  font-size: 14px;
  justify-self: start;
}

/* タイトルは必ず次行に */
.sub-gallery__card__title {
  /* タイトルは 2行目にまたがって全カラムを使う */
  grid-column: 1/-1;
  grid-row: 2;
  margin: 14px 0 0 0; /* 上に少しだけ余白 */
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  font-family: "Noto Sans JP";
}
@media screen and (min-width: 821px) {
  .sub-gallery__card__title {
    padding-top: 0; /* タブレット以上では上パディングをなくす */
  }
}

/*───────────────────────────────────*/
/* タブレット以上：Grid で 4 列に切り替え */
/*───────────────────────────────────*/
@media screen and (min-width: 821px) {
  .sub-gallery__card-list {
    display: grid;
    padding: 16px 0;
    grid-template-areas: "date title category region";
    -moz-column-gap: 24px;
         column-gap: 24px;
    justify-items: start;
    grid-template-columns: 80px 1fr 87px 67px; /* ④ 場所は「最も長いテキストの幅」に固定 */
  }
  .sub-gallery__card__date {
    grid-area: date;
    margin: 0;
  }
  .sub-gallery__card__title {
    grid-area: title;
    margin: 0;
  }
  .sub-gallery__card__category {
    grid-area: category;
    margin: 0;
    margin-left: -10px;
  }
  .sub-gallery__card__region {
    grid-area: region;
    margin: 0;
    margin-left: -10px;
  }
  .sub-gallery__card__title-link {
    font-weight: 400;
  }
  /* PC では Pill のパディングを戻す */
}
/* ラッパーに相対位置と高さ制限 */
.sub-gallery__list-wrapper {
  position: relative;
  /* 初期表示は項目10件分だけ */
  max-height: calc((2.4em + 8px) * 10);
  overflow: hidden;
  transition: max-height 0.3s ease;
}

/* フェード用の疑似要素 */
.sub-gallery__list-wrapper::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 180px; /* フェード量 */
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* 「全表示」されたら max-height とオーバーレイを消す */
.sub-gallery__list-wrapper.all-visible {
  max-height: none;
}

.sub-gallery__list-wrapper.all-visible::after {
  opacity: 0;
}

/*もっと見るボタン*/
.sub-gallery__more {
  text-align: center;
  margin-top: 55px; /* お好みで調整 */
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.sub-gallery__more-button {
  position: relative;
  background: none;
  border: none;
  color: #e60012;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  padding-bottom: 14px; /* 下のチェブロン用に余白確保 */
  line-height: 1;
}

.sub-gallery__arrow {
  position: relative;
  display: inline-block;
  width: 37.6px;
  height: 13.1px;
  cursor: pointer;
  pointer-events: none;
}

.sub-gallery__arrow::before,
.sub-gallery__arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 23px;
  border-radius: 9999px;
  background-color: #e60000;
  transform-origin: 50% calc(100% - 1px);
}

.sub-gallery__arrow::before {
  transform: rotate(58deg);
}

.sub-gallery__arrow::after {
  transform: rotate(-58deg);
}

.sub-gallery__arrow-bottom {
  position: relative;
  top: -7px;
}

/* ----works-detailセクション------*/
.sub-works__detail {
  background: #f0f0f0;
  padding-top: 100px;
}
@media screen and (min-width: 821px) {
  .sub-works__detail {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-works__detail {
    padding-top: 200px;
  }
}

.sub-works__detail__inner {
  padding: 54px 0px 27px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 27px;
}
@media screen and (min-width: 821px) {
  .breadcrumb {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
}

.breadcrumb__item {
  position: relative;
  padding-left: 12px; /* 矢印分の余白 */
}
@media screen and (min-width: 821px) {
  .breadcrumb__item {
    padding-left: 0;
  }
}

/* 先頭以外の li にだけ擬似要素で矢印を描画 */
.breadcrumb__item + .breadcrumb__item::before,
.breadcrumb__item + .breadcrumb__item::after {
  content: "";
  position: absolute;
  left: -20px; /* 親の padding-left の位置に */
  top: 50%;
  width: 12px; /* 線の長さ */
  height: 2px; /* 線の太さ */
  transform: translateY(-50%); /* 垂直中央に */
  background-color: #050505;
  border-radius: 9999px;
  transform-origin: 100% 50%; /* 右端を回転の支点に */
}

/* 下向き斜め線 */
.breadcrumb__item + .breadcrumb__item::before {
  transform: translateY(-50%) rotate(30deg);
}

/* 上向き斜め線 */
.breadcrumb__item + .breadcrumb__item::after {
  transform: translateY(-50%) rotate(-30deg);
}

/* リンクスタイル */
.breadcrumb__link {
  font-family: "Noto Sans JP";
  color: #050505;
  font-size: 16px;
  font-weight: 400;
}

.sub-works__detail__title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  color: #fff;
  background: #e60000;
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-works__detail__title {
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sub-works__detail__container {
  font-family: "Noto Sans JP";
  font-weight: 400;
  padding: 0 20px;
  font-size: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.sub-works__detail__image {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .sub-works__detail__image {
    padding-bottom: 112px;
  }
}

/* picture の中の img 要素を必ずコンテナ幅に合わせる */
.sub-works__detail__image img {
  display: block; /* 行頭や行末の余白をなくすため */
  width: 100%; /* picture の幅にぴったり */
  height: auto; /* アスペクト比を守る */
  -o-object-fit: cover;
     object-fit: cover; /* 必要ならトリミングありでフィット */
}

.sub-works__detail__wrapper {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-top: 32px;
  padding-bottom: 17px;
  border-bottom: #707070 1px solid;
  align-items: flex-start;
}
@media screen and (min-width: 821px) {
  .sub-works__detail__wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

.sub-works__detail__heading {
  padding-left: 7px;
  border-left: 3px solid #e60000;
  display: inline-block;
}
@media screen and (min-width: 821px) {
  .sub-works__detail__heading {
    flex: 0 120px;
    text-align: left;
    line-height: 1.7;
  }
}

.sub-works__detail__heading-name {
  padding-left: 10px;
  flex: 1;
  text-align: left;
  line-height: 1.7;
}

.sub-works__detail__heading-name p {
  margin-bottom: 1em; /* 1文字分の余白（適宜調整してください） */
}

.sub-works__detail__heading-name p:last-child {
  margin-bottom: 0;
}

.sub-works__detail-button {
  margin-top: 45px;
  text-align: center;
}
.sub-works__detail-button a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 45px;
  color: #fff;
  background: #e60000;
  border-radius: 999px;
}

/* サムネイル付きギャラリーのスタイル例 */
.works-photo-gallery .main-image-area {
  margin-bottom: 15px;
}

.works-photo-gallery .main-image-area img {
  max-width: 100%;
  height: auto;
  display: block;
}

.works-photo-gallery .thumbnail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* サムネイル間の余白 */
  list-style: none;
  padding-bottom: 30px;
}

.works-photo-gallery .thumbnail-list li {
  width: 75px;
  height: 75px;
}
@media screen and (min-width: 821px) {
  .works-photo-gallery .thumbnail-list li {
    width: 100px;
    height: 100px;
  }
}

.works-photo-gallery .thumbnail-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をボックスいっぱいに表示 */
  cursor: pointer; /* カーソルをポインターにする */
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
}

.works-photo-gallery .thumbnail-list img:hover {
  opacity: 0.7;
}

/*----COMPANYセクション---------------*/
.sub-company__detail {
  background: #f0f0f0;
  padding-top: 100px;
}
@media screen and (min-width: 821px) {
  .sub-company__detail {
    padding-top: 150px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-company__detail {
    padding-top: 200px;
  }
}

.sub-company__detail__inner {
  padding: 80px 28px;
}
@media screen and (min-width: 821px) {
  .sub-company__detail__inner {
    padding: 90px 0 141px;
  }
}

.sub-company__detail__container {
  margin: 0 auto;
  background: #fff;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  position: relative;
  overflow: visible;
  max-width: 900px;
}
@media screen and (min-width: 821px) {
  .sub-company__detail__container {
    margin-bottom: 50px;
  }
}

.sub-company__detail__container::before,
.sub-company__detail__container::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 120px;
  background-size: 100% 100%;
  transform-origin: 50% 50%;
  background: #e60012;
  opacity: 1;
  opacity: 1;
  transform: rotate(10deg);
  transform: translate(-50%, -50%);
  transition: opacity 5s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

/* 上側 */
.sub-company__detail__container::before {
  top: 0px;
  left: 10px; /* 四角の半分だけはみ出す */
  transform: rotate(10deg);
  transform-origin: 50% 50%;
}
@media screen and (min-width: 821px) {
  .sub-company__detail__container::before {
    width: 600px;
    height: 200px;
    left: 20px;
  }
}

/* 下側 */
.sub-company__detail__container::after {
  bottom: 0%;
  right: 10px; /* 四角の半分だけはみ出す */
  transform: rotate(10deg);
  transform-origin: 50% 50%;
  z-index: 0;
}
@media screen and (min-width: 821px) {
  .sub-company__detail__container::after {
    width: 600px;
    height: 200px;
    right: 20px;
  }
}

.sub-company__bottom-sentinel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.sub-company__detail__text-container {
  padding: 40px 20px 47px;
  margin: 0 auto;
  background: #fff;
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .sub-company__detail__text-container {
    padding: 70px 50px 80px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-company__detail__text-container {
    padding: 94px 130px 94px;
  }
}

.sub-company__detail__title {
  font-size: 25px;
  letter-spacing: 0.9px;
  line-height: 2.5;
  font-weight: 500;
  text-align: center;
  padding-bottom: 45px;
}

.sub-company__detail__description {
  font-size: 17px;
  line-height: 2.5;
  letter-spacing: 0.8px;
  color: #050505;
  padding-bottom: 34px;
}

.sub-company__signature {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: right;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.9px;
}

.sub-company__overview {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-company__overview__inner {
  padding: 50px 28px 85px;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__inner {
    padding: 100px 28px;
  }
}

.sub-company__overview__title {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  padding-left: 10px;
  border-left: 3px solid #e60000;
  margin-bottom: 40px;
}

.sub-company__overview__card {
  padding-bottom: 85px;
  max-width: 900px;
  margin: 0 auto;
}

.sub-company__overview__card-item {
  padding: 30px 0 15px;
  border-bottom: #707070 1px solid;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__card-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    align-items: start;
  }
}

.sub-company__overview__card-title {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #050505;
}
@media screen and (min-width: 821px) {
  .sub-company__overview__card-title {
    padding-left: 7px;
    border-left: 3px solid #e60000;
  }
}

.sub-company__overview__card-text {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #050505;
}

.sub-company__overview__item {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.8px;
  color: #050505;
  margin-bottom: 10px;
}

.slash::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  border: 0.5px solid #050505;
  transform: skew(-30deg);
  margin: 0 10px 3px;
  vertical-align: middle;
}

.sub-company__access__title {
  font-size: 25px;
  letter-spacing: 1px;
  font-weight: 500;
  padding-left: 10px;
  border-left: 3px solid #e60000;
  margin-bottom: 40px;
}

.sub-company__access {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  /* 高さは親で制御しない */
}

.sub-company__access__map {
  width: 100%;
  aspect-ratio: 956/482;
  display: block;
  max-width: 900px;
  margin: 0 auto;
  border: none;
  /* 高さはaspect-ratioで自動調整 */
}

/*----recruitセクション----*/
.side-scroll-nav {
  display: none;
}
@media screen and (min-width: 821px) {
  .side-scroll-nav {
    z-index: 10;
    display: block;
    position: fixed;
    left: 30px;
    top: 70vh;
    color: #050505;
  }
}
@media screen and (min-width: 1200px) {
  .side-scroll-nav {
    left: 5vw;
    top: 57vh;
  }
}

.side-scroll-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-scroll-nav-item {
  margin-bottom: 28px;
  position: relative;
  padding-left: 16px;
}
.side-scroll-nav-item:last-child {
  margin-bottom: 0;
}
.side-scroll-nav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background: #e60000;
  border-radius: 50%;
  display: block;
}
.side-scroll-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: #ccc;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.side-scroll-nav-item a {
  color: #050505;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}

.sub-recruit_mv__container {
  position: relative;
  padding: 80px 28px 40px 0;
  width: 100%;
  height: 82vh;
  background-image: url(image/s_sp_image_recruit_mv2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__container {
    background-image: url(image/s_pc_image_recruit_mv2.jpg);
    padding: 40px 0;
  }
}

.sub-recruit_mv__title {
  position: relative; /* 擬似要素の基準にする */
  line-height: 1.2;
  font-size: 39px;
  font-family: "Urbanist";
  font-weight: 900;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.3px;
  padding-left: 30px;
}
.sub-recruit_mv__title::before {
  content: "";
  position: absolute;
  left: -8px; /* 必要に応じて位置調整 */
  top: 50%; /* 上から50%の位置に */
  transform: translateY(-50%);
  bottom: 0;
  width: 4px;
  height: 36px; /* 赤線の太さ */
  background: #fff; /* 赤線の色 */
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__title::before {
    width: 6px;
    height: 42px;
    left: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit_mv__title::before {
    height: 64px;
  }
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__title {
    padding-left: 72px;
    margin-top: 72px;
    font-size: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit_mv__title {
    margin-top: 72px;
    font-size: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-recruit_mv__title {
    left: 2vw;
  }
}

.sub-recruit_mv__sub-title {
  font-family: "Noto Sans JP";
  color: #fff;
  font-size: 13px;
  padding-left: 26px;
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__sub-title {
    padding-left: 72px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-recruit_mv__sub-title {
    content: "";
    position: absolute;
    left: 2vw;
  }
}

.sub-recruit_mv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-recruit_mv__text--multi img {
  display: block;
  margin-bottom: 40px;
}
.sub-recruit_mv__text--multi img:nth-child(2), .sub-recruit_mv__text--multi img:nth-child(3) {
  margin-left: 10px;
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__text--multi {
    display: none;
  }
}

.sub-recruit_mv__text--single {
  display: none;
}
@media screen and (min-width: 821px) {
  .sub-recruit_mv__text--single {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    padding-top: 40px;
  }
}
.sub-recruit_mv__text--single img {
  display: block;
  margin: 0 auto;
  width: 70vw;
  max-width: 900px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1080px) {
  .sub-recruit_mv__text--single img {
    width: 70vw;
    max-width: 1200px;
    max-height: 50vh;
  }
}

.sub-recruit__entry {
  padding: 33px;
  width: 260px;
  position: fixed;
  background: linear-gradient(120deg, rgb(239, 183, 153) 0%, rgb(234, 91, 76) 60%, rgb(230, 0, 0) 100%);
  color: #fff;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 20;
  font-size: 26px;
  font-family: "Urbanist";
  font-weight: 900;
  letter-spacing: 0.5px;
  font-style: italic;
  color: #fff;
}
.sub-recruit__entry::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("image/s_sp_recruit__entry-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 27px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 821px) {
  .sub-recruit__entry {
    font-size: 32px;
    width: 320px;
    padding: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .sub-recruit__entry {
    font-size: 42px;
    width: 350px;
    padding: 40px;
  }
}

.sub-recruit_message {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 821px) {
  .sub-recruit_message::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 200px;
    transform: translate(-50%, -50%);
    background: url(image/s_pc_deco_recruit1.png) no-repeat center;
    background-size: contain;
    z-index: -1;
  }
}

.sub-recruit_message__inner {
  padding: 50px 28px 75px;
}

.sub-recruit_message__title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 35px;
  font-family: "Urbanist", sans-serif;
  font-weight: 900;
  font-style: italic;
  color: #e60000;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  text-align: center;
  margin: 2rem 0;
}
.sub-recruit_message__title::before, .sub-recruit_message__title::after {
  content: "";
  width: 12px;
  height: 5px;
  background-color: currentColor;
}

.sub-recruit_message__description {
  font-family: "Noto Sans JP";
  font-weight: 400;
  line-height: 2.3;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 821px) {
  .sub-recruit_message__description {
    text-align: center;
  }
}

.sub-recruit_message__description--text {
  padding-bottom: 3em;
  line-height: 2.5;
}
.sub-recruit_message__description--text:last-child {
  padding-bottom: 0;
}

.sub-recruit__overview {
  background: #f0f0f0;
}

.sub-recruit__overview__inner {
  padding: 43px 28px 58px;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__inner {
    padding: 43px 0px 58px;
    width: 77vw;
    margin-left: auto;
  }
}

.sub-recruit__overview__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1;
  padding-left: 13px;
  border-left: 3px solid #e60000;
  margin-bottom: 40px;
  font-weight: 500;
}

.sub-recruit__overview__container {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sub-recruit__overview__text-wrapper {
  position: absolute; /* フローから外してカード上に重ねる */
  left: 0;
  right: 0;
  bottom: 0; /* 下端に固定 */
  display: flex;
  align-items: baseline; /* ベースラインでタイトル／仕切り線／テキストを揃える */
  padding: 8px 18px;
  background-color: #e60000;
  z-index: 1;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__text-wrapper {
    width: 50%;
    bottom: 20px;
    max-width: 600px;
  }
}

.sub-recruit__overview__card1 {
  width: 100%;
  aspect-ratio: 374/179;
  background-image: url(image/s_sp_image_recruit_s1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__card1 {
    aspect-ratio: 1367/374;
    background-image: url(image/s_pc_image_recuruit1.jpg);
  }
}

.sub-recruit__overview__card2 {
  width: 100%;
  aspect-ratio: 374/179;
  background-image: url(image/s_sp_image_recruit_s2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__card2 {
    aspect-ratio: 1367/374;
    background-image: url(image/s_pc_image_recuruit2.jpg);
  }
}

.sub-recruit__overview__card3 {
  width: 100%;
  aspect-ratio: 374/179;
  background-image: url(image/s_sp_image_recruit_s3.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__card3 {
    aspect-ratio: 1367/374;
    background-image: url(image/s_pc_image_recuruit3.jpg);
  }
}

.sub-recruit__overview__card-title {
  font-size: 46px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1.4px;
  line-height: 1; /* 行の高さを文字サイズに揃える */
  margin: 0;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__card-title {
    font-size: 60px;
    line-height: 1.2;
  }
}

/* 仕切り線 */
.sub-recruit__overview__divider {
  display: block;
  flex: 1; /* タイトルとテキストの間を全部埋める */
  height: 1px; /* 線の太さ */
  background: #fff; /* 線の色 */
  margin: 0 10px; /* 線まわりの余白（お好みで調整） */
}

.sub-recruit__overview__card-text {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.8px;
  line-height: 1; /* 行の高さを文字サイズに揃える */
  margin: 0;
}
@media screen and (min-width: 821px) {
  .sub-recruit__overview__card-text {
    font-size: 20px;
  }
}

@media screen and (min-width: 821px) {
  .sub-recruit__content--wrapper {
    margin-left: auto;
    width: 77vw;
    box-sizing: border-box;
  }
}

@media screen and (min-width: 1080px) {
  .sub-recruit__content--container {
    max-width: 1100px;
    box-sizing: border-box;
  }
}

.sub-recruit__interview__inner {
  padding: 53px 28px 73px;
}
@media screen and (min-width: 821px) {
  .sub-recruit__interview__inner {
    padding: 53px 28px 73px 0px;
    width: 77vw;
    margin-left: auto;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit__interview__inner {
    width: 100%;
  }
}

.sub-recruit__interview__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1px;
  padding-left: 13px;
  border-left: 3px solid #e60000;
  margin-bottom: 42px;
  font-weight: 500;
}

.sub-recruit__interview__cards {
  display: flex;
  flex-direction: column;
  gap: 45px;
  color: #fff;
}
@media screen and (min-width: 821px) {
  .sub-recruit__interview__cards {
    flex-direction: row;
    gap: 20px;
  }
}

.sub-recruit__interview__card1 {
  display: block;
  width: 100%;
  aspect-ratio: 374/451;
  background-image: url(image/s_sp_recruit_image_mvs1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sub-recruit__interview__card2 {
  display: block;
  width: 100%;
  aspect-ratio: 374/451;
  background-image: url(image/s_sp_recruit_image_mvs2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sub-recruit__interview__card3 {
  display: block;
  width: 100%;
  aspect-ratio: 374/451;
  background-image: url(image/s_sp_recruit_image_mvs3.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sub-recruit__interview__card__inner {
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 821px) {
  .sub-recruit__interview__card__inner {
    padding: 10px 10px;
  }
}

.sub-recruit__interview__card__label {
  max-width: 118px;
  padding: 10px 35px;
  background: #e60000;
}

.sub-recruit__interview__card__text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sub-recruit__interview__card__name {
  font-family: "Noto Sans JP";
  font-size: 16px;
  letter-spacing: 1.2px;
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .sub-recruit__interview__card__name {
    font-size: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit__interview__card__name {
    font-size: 25px;
  }
}

.sub-recruit__interview__card__subname {
  color: #e60000;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.sub_big-name {
  font-size: 32px;
}

/*----------モーダルのスタイル-------------- */
/* 初期設定 */
.modal__button {
  background: none;
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  color: unset;
  background-color: unset;
  border: unset;
  overflow: unset;
}

body:has(dialog[open]) {
  overflow: hidden;
}

.dialog::backdrop {
  opacity: 0;
  transition: background 0.3s ease-in-out;
}
.dialog.js-show.modal__content {
  opacity: 1;
}
.dialog.js-show::backdrop {
  opacity: 1;
  /* 背景画像 */
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.modal__close-btn {
  position: absolute;
  z-index: 2;
  top: 40px;
  right: -20px;
  font-size: 30px;
  color: #333;
}

.modal__open-btn {
  padding: 4px 20px;
}

.modal {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  overflow-y: auto;
}

.modal .is-open {
  display: block;
}

.modal__content {
  padding: 0;
  border: none;
  background: transparent;
}

.modal__inner {
  background: rgba(112, 112, 112, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 40px 20px;
  box-sizing: border-box;
}

.modal__container {
  max-width: 1300px;
  background: #fff;
  color: #050505;
  width: 100%;
  padding: 76px 28px 40px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  z-index: 105;
  position: relative;
  margin: auto;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.modal__container::-webkit-scrollbar {
  width: 10px;
  background: #eee;
}
.modal__container::-webkit-scrollbar-thumb {
  background: #505050;
}

.modal.is-open {
  display: block;
}

.modal__close-btn {
  position: fixed;
  z-index: 10001;
  top: 40px;
  left: calc(50% + 600px - 24px);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: background 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  font-size: 0;
}
@media screen and (min-width: 821px) {
  .modal__close-btn {
    right: 24px;
    top: 80px;
  }
}
@media screen and (min-width: 1080px) {
  .modal__close-btn {
    left: auto;
    right: 10vw;
  }
}

@media (max-width: 1200px) {
  .modal__close-btn {
    left: auto;
    right: 50px;
  }
}
.modal__close-btn::before,
.modal__close-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.modal__close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__close-btn:hover,
.modal__close-btn:focus {
  background: #fff;
  color: #000;
  border: 1px solid #707070;
}

.modal__close-btn:hover::before,
.modal__close-btn:hover::after,
.modal__close-btn:focus::before,
.modal__close-btn:focus::after {
  background: #000;
}

.modal__banner--top {
  position: sticky;
  background: #fff;
  width: 100vw;
  height: 100vw;
  z-index: 100;
  top: 0%;
  left: 0;
}

@media screen and (min-width: 1500px) {
  .modal__close-btn {
    left: auto;
    right: 20vw;
  }
}

@media screen and (min-width: 821px) {
  .modal__wrapper {
    margin: 0 auto;
    max-width: 1000px;
  }
}

.modal__pc__flex {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 821px) {
  .modal__pc__flex {
    flex-direction: row;
    gap: 40px;
    align-items: flex-end;
  }
}

.modal__image {
  width: 100%;
  padding-bottom: 34px;
  position: relative;
}
.modal__image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (min-width: 821px) {
  .modal__image {
    flex: 1 1 60%;
    max-width: 600px;
    padding-bottom: 80px;
  }
}

.modal__read {
  width: 100%;
}
@media screen and (min-width: 821px) {
  .modal__read {
    flex: 1 1 40%;
    max-width: 400px;
  }
}

.modal__text {
  padding-bottom: 77px;
}

.modal__title {
  font-size: 15px;
  padding-bottom: 15px;
  letter-spacing: 0.7px;
}

.modal__name {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 1.2px;
  padding-bottom: 15px;
}

.modal__subname {
  color: #e60000;
  font-size: 11px;
  font-weight: 400;
}

.modal__text__container--title {
  color: #e60000;
  letter-spacing: 0.5px;
  padding-bottom: 23px;
}

.modal__text__container--text {
  font-size: 14px;
  line-height: 2.2;
  padding-bottom: 50px;
}

.modal__text__container--schedule {
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .modal__text__container--schedule {
    padding-bottom: 40px;
  }
}

.modal__text__container--schedule__inner {
  max-width: 700px;
  margin: 0 auto;
}

.modal__text__container--schedule-title {
  color: #e60000;
  letter-spacing: 0.5px;
  text-align: center;
  padding-bottom: 30px;
}

.modal__text__container--schedule-card {
  padding: 20px 0;
  border-bottom: #989898 1px solid;
}
.modal__text__container--schedule-card:first-of-type {
  border-top: 1px solid #989898;
}
@media screen and (min-width: 821px) {
  .modal__text__container--schedule-card {
    display: flex;
    align-items: center;
    gap: 80px;
  }
}

.modal__text__container--schedule-time {
  color: #e60000;
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 10px;
}
@media screen and (min-width: 821px) {
  .modal__text__container--schedule-time {
    flex: 0 0 80px;
  }
}

@media screen and (min-width: 821px) {
  .modal__text__container--schedule-contents {
    flex: 1 1 auto;
  }
}

.sub-recruit__requirements__inner {
  padding: 0px 28px 53px;
}
@media screen and (min-width: 821px) {
  .sub-recruit__requirements__inner {
    padding: 100px 0 180px 28px;
  }
}

.sub-recruit__requirements__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1;
  padding-left: 13px;
  border-left: 3px solid #e60000;
  margin-bottom: 40px;
  font-weight: 500;
}

.sub-recruit__requirements__cards {
  font-family: "Noto Sans JP";
  color: #050505;
  letter-spacing: 0.9px;
  font-weight: 400;
}

.sub-recruit__requirements__card {
  padding: 26px 0;
  border-bottom: 1px solid #707070;
  margin-bottom: 19px;
}
@media screen and (min-width: 821px) {
  .sub-recruit__requirements__card {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.sub-recruit__requirements__card-title {
  font-size: 16px;
  margin-bottom: 1em;
  font-weight: 400;
}
@media screen and (min-width: 821px) {
  .sub-recruit__requirements__card-title {
    position: relative;
    padding-left: 10px;
    line-height: 1.7;
  }
  .sub-recruit__requirements__card-title::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 4px;
    height: 1em;
    background-color: #e60000;
  }
}

.sub-recruit__requirements__card-text:last-child {
  padding-bottom: 0;
}

/* タブレット以上：横並び */
@media (min-width: 821px) {
  .sub-recruit__requirements__card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 32px 0;
    border-bottom: 1px solid #ddd;
  }
  .sub-recruit__requirements__card-title {
    flex: 0 0 200px;
    margin-bottom: 0;
  }
  .sub-recruit__requirements__text-container {
    flex: 1 1 auto;
  }
}
.sub-recruit__requirements__card-text {
  line-height: 1.7;
  padding-bottom: 1em;
  font-weight: 400;
}
.sub-recruit__requirements__card-text:last-child {
  padding-bottom: 0;
}

.sub-recruit__wrapper {
  background: #f0f0f0;
}

.sub-recruit__container {
  background-image: url(image/s_pc_deco_recruit01.png);
  background-size: 1920px 4099px;
  background-repeat: repeat;
}

.sub-recruit-flow {
  padding: 40px 28px 60px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow {
    padding: 100px 28px 60px 0;
  }
}
@media screen and (min-width: 1200px) {
  .sub-recruit-flow {
    width: 77vw;
    margin-left: auto;
    max-width: 1100px;
  }
}

.sub-recruit-flow__inner {
  padding-bottom: 100px;
}

.sub-recruit-flow__container {
  background: #fff;
}

.sub-recruit-flow__container__inner {
  background: #fff;
  margin: 0 auto;
  padding: 60px 30px 60px;
  max-width: 1100px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__container__inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.sub-recruit-flow__title {
  font-family: "Noto Sans JP";
  font-size: 25px;
  letter-spacing: 1.3px;
  font-weight: 500;
  color: #e60000;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__title {
    font-size: 37px;
  }
}

.sub-recruit-flow__steps {
  position: relative;
  counter-reset: flow;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__steps {
    width: 90%;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit-flow__steps {
    width: 100%;
  }
}

.sub-recruit-flow__steps::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 10.5px;
  bottom: 80.5px;
  width: 2px;
  background: #e60012;
}
@media screen and (min-width: 480px) {
  .sub-recruit-flow__steps::before {
    bottom: 60.5px;
  }
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__steps::before {
    left: 50px;
    bottom: 90.5px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit-flow__steps::before {
    left: 30px;
    bottom: 80.5px;
  }
}

.sub-recruit-flow__step::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: -2px;
  top: 10px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e60012;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-family: "avenir-lt-pro", sans-serif;
  letter-spacing: 0.9px;
  /* 線より手前に */
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step::before {
    left: 20px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit-flow__step::before {
    left: 0px;
  }
}

.sub-recruit-flow__step {
  position: relative;
  counter-increment: flow;
  padding-left: 91px; /* 30 + 65 + 26 */
  margin-bottom: 20px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step {
    padding-left: 220px;
  }
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step {
    padding-left: 100px;
  }
}

.sub-recruit-flow__step-title {
  font-family: "Noto Sans JP";
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 1px;
  color: #e60000;
  padding-bottom: 12px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step-title {
    font-size: 22px;
  }
}

.sub-recruit-flow__step-description {
  font-family: #050505;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.9px;
  color: #050505;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step-description {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit-flow__step-description {
    padding-bottom: 20px;
  }
}

.sub-recruit-flow__step:last-child {
  margin-bottom: 0;
}

.sub-recruit-flow__selection {
  color: #050505;
  padding-bottom: 64px;
}

.sub-recruit-flow__selection-title3 {
  display: flex;
  flex-direction: column;
}

.sub-recruit-flow__step--center {
  position: relative;
  margin-bottom: 81px !important;
  margin-top: 40px;
}
.sub-recruit-flow__step--center::before {
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  left: 30px;
}
@media screen and (min-width: 821px) {
  .sub-recruit-flow__step--center::before {
    left: 50px;
  }
}
@media screen and (min-width: 1080px) {
  .sub-recruit-flow__step--center::before {
    left: 30px;
  }
}
.sub-recruit-flow__step--center .sub-service-flow__step-title {
  display: inline-block;
  padding-bottom: 0;
}

/* -------recruit-entry------------- */
.recruit-entry {
  text-align: center;
}

.recruit-entry__inner {
  padding: 40px 28px 60px;
}
@media screen and (min-width: 821px) {
  .recruit-entry__inner {
    padding: 40px 28px 150px 0px;
  }
}
@media screen and (min-width: 1200px) {
  .recruit-entry__inner {
    width: 77vw;
    margin-left: auto;
    max-width: 1100px;
  }
}

.recruit-entry__container {
  padding: 60px 28px 40px;
  background: #fff;
  font-family: "Noto Sans JP";
  font-weight: 400;
}

.recruit-entry__title {
  font-size: 25px;
  letter-spacing: 1px;
  padding-bottom: 47px;
  font-weight: 500;
}
@media screen and (min-width: 1080px) {
  .recruit-entry__title {
    font-size: 37px;
    padding-bottom: 60px;
  }
}

.recruit-entry__subtitle {
  font-size: 17px;
  color: #e60000;
  padding-bottom: 50px;
}

.recruit-entry__tel-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding-bottom: 20px;
}

.recruit-entry__tel-number {
  font-size: 23px;
  letter-spacing: 1.1px;
}

.recruit-entry__tel-note {
  padding-bottom: 80px;
  font-size: 14px;
}

.contact__form__group__wrapper {
  text-align: left;
}
@media screen and (min-width: 1080px) {
  .contact__form__group__wrapper {
    margin: 0 auto;
    max-width: 700px;
  }
}

@media screen and (min-width: 821px) {
  .contact__form__group > p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 34px;
  }
}

@media screen and (min-width: 821px) {
  .contact__form__group label[for=message].contact__form__label {
    margin-top: 10px;
  }
}
@media screen and (min-width: 821px) {
  .contact__form__group > p:has(.contact__form__area-message) {
    align-items: flex-start;
  }
}
.contact__form__label {
  font-size: 16px;
  padding-left: 7px;
  border-left: 3px solid #e60000;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
@media screen and (min-width: 821px) {
  .contact__form__label {
    flex: 0 0 200px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1080px) {
  .contact__form__label {
    flex: 0 0 280px;
    margin-bottom: 0;
  }
}

.require {
  font-size: 12px;
  color: #e60000;
}

.contact__form__area {
  aspect-ratio: 308/45;
  width: 100%;
  height: 45px;
  padding: 0 12px;
  background-color: #f0f0f0;
  margin-bottom: 34px;
}
@media screen and (min-width: 821px) {
  .contact__form__area {
    margin: 0;
    flex: 1;
  }
}
@media screen and (min-width: 1080px) {
  .contact__form__area {
    width: 400px;
  }
}

@media screen and (min-width: 821px) {
  .contact__form__group-radio > p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    margin-bottom: 34px;
  }
}

.contact__form__radio {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-bottom: 36px;
  padding-left: 11px;
}
@media screen and (min-width: 821px) {
  .contact__form__radio {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding-left: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 821px) {
  .wpcf7-list-item label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
}
.contact__form__radio label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  cursor: pointer;
}
@media screen and (min-width: 821px) {
  .contact__form__radio label {
    white-space: nowrap;
    gap: 5px;
    align-items: center;
  }
}
.contact__form__radio label input[type=radio] {
  vertical-align: middle;
}

.contact__form__area-message {
  aspect-ratio: 308/207;
  width: 100%;
  height: 207px;
  padding: 0 12px;
  line-height: 45px;
  background-color: #f0f0f0;
  margin-bottom: 34px;
}
@media screen and (min-width: 1080px) {
  .contact__form__area-message {
    width: 400px;
  }
}

@media screen and (min-width: 1080px) {
  .pc-none {
    display: none;
  }
}

.contact__form__policy__check {
  background: #f0f0f0;
}

input.wpcf7-form-control.wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 117px;
  height: 42px;
  background: #e60000;
  font-size: 1rem;
  font-family: inherit;
  border: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  margin: 0 auto;
}

.contact__form__policy {
  position: relative;
  padding: 54px 0; /* 上にたっぷり、下は少しだけ */
  text-align: center; /* テキストはセンター寄せ */
}

.contact__form__policy__check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: #fff;
  border: 2px solid #505050;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  outline: none;
  z-index: 1;
}
.contact__form__policy__check:checked {
  background: #054ab0;
  border: 2px solid #054ab0;
}
.contact__form__policy__check:checked::after {
  content: "";
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 10px;
  height: 22px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(35deg);
  display: block;
}

/* 3) ラベル部分をチェック分だけ下にずらす */
.contact__form__policy .wpcf7-list-item-label {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #050505;
}
@media screen and (min-width: 821px) {
  .contact__form__policy .wpcf7-list-item-label {
    margin-top: 0;
    font-size: 16px;
  }
}

.contact__form__policy__check + .wpcf7-list-item-label a {
  text-decoration: underline;
}

/*-------------Contactセクションーーーーーーーーー*/
.sub-company__signature-inner {
  text-align: center;
}

.recruit-entry-inner__subtitle {
  color: #e60000;
  padding-bottom: 36px;
  font-size: 23px;
}

.sub-company__detail__container--contact {
  max-width: 700px;
}

.recruit-entry-inner__tel-number {
  display: inline-block;
  font-size: 26px;
  margin-bottom: 16px;
}

.contact__form__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 53px 28px 73px;
  font-weight: 500px;
}

.entry__title {
  text-align: center;
  padding-bottom: 70px;
  font-size: 25px;
}

/*-------------Privacyセクションーーーーーーーーー*/
.privacy__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 117px 28px 77px;
}

.privacy__title {
  text-align: center;
  font-family: "Urbanist", sans-serif;
  color: #e60000;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  font-weight: 700;
  padding-bottom: 13px;
}

.privacy__sub__title {
  text-align: center;
  font-family: "Noto Sans JP";
  color: #e60000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding-bottom: 56px;
}

.privacy__read {
  font-family: "Noto Sans JP";
  line-height: 2.2;
  letter-spacing: 0.7;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 48px;
}

.privacy__text__title {
  font-family: "Noto Sans JP";
  color: #e60000;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding-bottom: 22px;
}

.privacy__text__card__description {
  font-family: "Noto Sans JP";
  line-height: 2.2;
  letter-spacing: 0.7;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 48px;
}

.privacy__button {
  width: 117px;
  height: 42px;
  margin: 0 auto;
}
.privacy__button a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e60000;
  color: #fff;
}

/*-------------confirmセクションーーーーーーーーー*/
@media screen and (min-width: 821px) {
  .confirm__form__group__wrapper {
    margin: 0 auto;
    max-width: 500px;
  }
}
@media screen and (min-width: 1080px) {
  .confirm__form__group__wrapper {
    margin: 0 auto;
    max-width: 700px;
  }
}

.contact__button_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 50px;
}
@media screen and (min-width: 821px) {
  .contact__button_container {
    margin: 0 auto;
    max-width: 500px;
  }
}

.contact__button__return {
  width: 117px;
  height: 42px;
  flex-shrink: 0;
  flex-grow: 0;
}
.contact__button__return a {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #050505;
  color: #fff;
  margin-bottom: 16px;
}

.contact__button__return p {
  margin: 0;
  padding: 0;
  line-height: 1;
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/*-------------sendセクションーーーーーーーーー*/
.send {
  padding-top: 70px;
}

.send__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 47px 28px 77px;
  text-align: center;
}

.send__title {
  font-family: "Urbanist", sans-serif;
  color: #e60000;
  font-size: 35px;
  line-height: 1.2;
  letter-spacing: 1.7px;
  font-weight: 700;
  padding-bottom: 13px;
}

.send__sub__title {
  font-family: "Noto Sans JP";
  color: #e60000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  padding-bottom: 65px;
}

.send__finish {
  font-family: "Noto Sans JP";
  color: #050505;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.9px;
  padding-bottom: 35px;
}

.send__text {
  line-height: 1.7;
  padding-bottom: 60px;
}

.send__button__return {
  width: 150px;
  height: 42px;
  margin: 0 auto;
}
.send__button__return a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e60000;
  color: #fff;
}

/*-------------equipment/=セクションーーーーーーーーー*/
.sub_equipment-mv {
  padding-top: 70px;
}

.suv_equipment-mv__container {
  width: 100%;
  display: flex;
  margin-left: auto;
}

.sub_equipment-mv__text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: auto;
  padding-bottom: 80px;
}
@media screen and (min-width: 821px) {
  .sub_equipment-mv__text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* テキストは左揃え */
    margin-left: auto;
    text-align: left; /* 念のため */
    position: relative;
    width: 77.3vw; /* 1920px基準で1484px分の割合 */
    max-width: 1484px;
    margin-left: auto;
  }
}
@media screen and (min-width: 1080px) {
  .sub_equipment-mv__text-container {
    width: 77.3vw; /* 1920px基準で1484px分の割合 */
    max-width: 1484px;
    margin-left: auto;
  }
}

.sub_equipment-mv__title {
  position: relative; /* 擬似要素の基準にする */
  line-height: 1.2;
  font-size: 39px;
  font-family: "Urbanist";
  font-weight: 900;
  font-style: italic;
  color: #050505;
  letter-spacing: 0.3px;
  margin-left: 40px;
}
.sub_equipment-mv__title::before {
  content: "";
  position: absolute;
  left: -16px; /* 必要に応じて位置調整 */
  top: 50%; /* 上から50%の位置に */
  transform: translateY(-50%);
  bottom: 0;
  width: 4px;
  height: 34px; /* 赤線の太さ */
  background: #e60012; /* 赤線の色 */
}
@media screen and (min-width: 821px) {
  .sub_equipment-mv__title::before {
    width: 6px;
    height: 50px;
    left: -30px;
  }
}
@media screen and (min-width: 1080px) {
  .sub_equipment-mv__title::before {
    width: 7px;
    height: 82px;
    left: -40px;
  }
}
@media screen and (min-width: 821px) {
  .sub_equipment-mv__title {
    font-size: 55px;
  }
}
@media screen and (min-width: 1080px) {
  .sub_equipment-mv__title {
    font-size: 91px;
  }
}

.sub_equipment-mv__sub-title {
  display: inline-block;
  font-size: 13px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  align-self: flex-start;
  text-align: left;
  margin-left: 40px;
}
@media screen and (min-width: 821px) {
  .sub_equipment-mv__sub-title {
    font-size: 17px;
  }
}

.sub_equipment-mv__text {
  margin: 50px 0;
  font-size: 20px;
  text-align: center;
}

.sub_equipment-mv__table {
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.sub_equipment-mv__table__card {
  padding: 40px 0;
}

.sub_equipment-mv__table__title {
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  padding-bottom: 5px;
}

.tablepress caption a {
  display: none;
}

.tablepress th.column-1,
.tablepress td.column-1 {
  min-width: 160px !important;
  width: 20vw !important;
  white-space: normal !important;
  word-break: break-all !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.tablepress th.column-2,
.tablepress td.column-2 {
  min-width: 120px !important;
  width: 10vw !important;
  white-space: normal !important;
  word-break: break-all !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.tablepress th.column-3,
.tablepress td.column-3 {
  min-width: 75px !important;
  width: 10vw !important;
  white-space: normal !important;
  word-break: break-all !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.tablepress th.column-4,
.tablepress td.column-4 {
  min-width: 280px;
  width: 20vw !important;
  white-space: normal !important;
  word-break: break-all !important;
  writing-mode: horizontal-tb !important;
  text-orientation: mixed !important;
}

.dt-scroll-body {
  position: relative;
}

.sub_equipment__send__button__return {
  width: 150px;
  height: 42px;
  margin: 0px auto;
  margin-bottom: 100px;
}
.sub_equipment__send__button__return a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e60000;
  color: #fff;
}

/* ScrollHintのヒント背景色・枠線・影を変更 *//*# sourceMappingURL=sub.css.map */