@charset "UTF-8";
/* ========================================================
   1. Layout & Base (左側レイアウト・ベース)
======================================================== */
.left-side {
  position: sticky;
  top: 0;
  container-type: inline-size;
  flex: 1 1 0;
  width: 100%;
  max-width: 867px;
  min-width: 0;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0 4vw;
}

@media screen and (min-width: 768px) and (max-width: 1100px) {
  .left-side {
    display: none;
  }
  .right-side {
    flex: 0 1 700px;
    width: 100%;
  }
}
.left-scroll-line {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 20;
  width: 1px;
  height: 0;
  background-color: rgba(255, 255, 255, 0.7);
}

.catchcopy-wrapper {
  display: flex;
  flex-direction: row-reverse;
}

.catchcopy-wrapper .vertical-text {
  writing-mode: vertical-rl;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-left: 12px;
  line-height: 1.5;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 767px) {
  /* 全体レイアウト */
  .main-container {
    position: relative;
    display: block;
  }
  .right-side {
    width: 100%;
    min-width: 0;
  }
  /* 左側（非表示化など） */
  .left-side {
    display: block;
    position: static;
    flex: none;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  /* PC用ラインはスマートフォンでは非表示 */
  .left-scroll-line {
    display: none;
  }
}
/* ========================================================
  2. Loading (ローディング画面)
======================================================== */
.left-loading {
  position: absolute;
  inset: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #2e2d2d;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s ease, visibility 1s ease;
}

.left-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.left-loading_content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8%;
}

.left-loading_background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.left-loading_background video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-loading_background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  .left-loading {
    display: none;
  }
}
/* ========================================================
   3. Slideshow (スライドショー)
======================================================== */
.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.6s ease, visibility 1.6s ease;
}

.slide img {
  display: block;
  width: 100%;
  /* max-width: 80%; */
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease-out;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide.is-active img {
  transform: scale(1.2);
}

/* PCでは非表示 */
.mobile-slideshow {
  display: none;
}

@media screen and (max-width: 767px) {
  /* スライドショー切替 */
  .left-side > .slideshow {
    display: none;
  }
  .mobile-slideshow {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
  }
  .mobile-slideshow .slideshow {
    width: 100%;
    height: 100%;
  }
}
/* ========================================================
   4. Top KV (キービジュアル)
======================================================== */
.left-side-kv {
  position: relative;
  width: 100%;
  height: 150vh;
  background-color: #111;
}

.left-side-kv_inner {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.left-side-kv_content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8%;
  box-sizing: border-box;
}

.left-side-kv_copy {
  position: relative;
  margin: 0;
  color: #fff;
}

.left-side-kv_copy-line {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.left-side-kv_copy-text {
  display: block;
  font-size: clamp(3rem, 3.8vw, 8rem);
  font-size: clamp(3rem, 10cqw, 8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.left-side-kv_copy-text.is-show {
  transform: translateY(0);
}

.left-side-kv_copy-sub {
  display: block;
  margin-top: 28px;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.left-side-kv_copy-sub.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールに合わせて伸びるライン */
.left-side-kv_border {
  position: absolute;
  top: 0;
  right: 10%;
  width: 1px;
  height: 0;
  background-color: rgba(204, 238, 100, 0.7);
  will-change: height;
}

.left-side-kv_background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.left-side-kv_movie {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.left-side-kv_background::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
  /* トップKV調整 */
  .left-side-kv {
    height: 140vh;
  }
  .left-side-kv_inner {
    min-height: 600px;
  }
  .left-side-kv_content {
    padding: 0 24px;
  }
  .left-side-kv_border {
    right: 24px;
  }
  /* 重複していた記述を統合 */
  .left-side-kv_copy-text {
    font-size: clamp(2.8rem, 10vw, 5.6rem);
  }
  .left-side-kv_copy-sub {
    margin-top: 20px;
    font-size: 1.2rem;
  }
}
/* ======================================================== */
/* right-side ＊右側main*/
/* ------------------------------------------------------- */
/* right-side-kv 右側メインKV
---------------------------------------------------------- */
.right-side-kv {
  position: relative;
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
  height: 100vh;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}

@media screen and (max-width: 767px) {
  .right-side-kv {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 100svh;
    margin: 0 auto;
    padding: 70px 20px 60px;
    overflow: hidden;
  }
}
/* 変更 */
/* right-side-kv 右側メインKV
---------------------------------------------------------- */
.right-side-kv {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 50px 20px;
  box-sizing: border-box;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media screen and (max-width: 767px) {
  .right-side-kv {
    width: 100%;
    max-width: none;
    min-height: 100svh;
    margin: 0 auto;
    padding: 70px 20px 60px;
    overflow: hidden;
  }
}
/* 左側の装飾テキスト
---------------------------------------------------------- */
.side-decoration {
  position: absolute;
  left: 0;
  top: 400px;
  border-left: 4px dotted #d1c9c4;
  padding-left: 5px;
  z-index: 50;
}

.vertical-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

@media screen and (max-width: 767px) {
  .side-decoration {
    left: 20px;
    top: 420px;
  }
}
/* 斜めレイアウト（Transform: skewY）
---------------------------------------------------------- */
.slanted-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.slanted-wrapper img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.slanted-wrapper > .top-heading:empty {
  border: 0;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .slanted-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
/* 上部テキスト 
---------------------------------------------------------- */
.top-heading {
  text-align: center;
  border-bottom: 2px solid #333;
  padding-bottom: 10px;
  margin-bottom: 4rem;
  position: relative;
}
.top-heading h2 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 1;
}

/* マーク */
.triangle-mark {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #333;
}

/* 画像グリッド 
---------------------------------------------------------- */
.image-grid {
  display: flex;
  gap: 5px;
  align-items: flex-start;
  width: 100%;
  height: auto;
}

.panel {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.image-grid .panel-1 {
  margin-top: 84px;
}

.image-grid .panel-2 {
  margin-top: 56px;
}

.image-grid .panel-3 {
  margin-top: 28px;
}

.image-grid .panel-4 {
  margin-top: 0;
}

.panel-inner {
  width: 100%;
  height: 100%;
  transform: skewY(8deg) scale(1.2);
  background-size: cover;
  background-position: center;
}

/* 4枚の人物画像全体 */
.slanted-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

/* 空の見出しが線や余白を作らないようにする */
.slanted-wrapper > .top-heading:empty {
  border: 0;
  margin: 0;
  padding: 0;
}

/* 画像を横一列に並べる */
.image-grid {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
  height: auto;
}

/* 各画像パネルの共通設定 */
.image-grid .panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
}

/* 画像の大きさ */
.image-grid .panel-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* 1枚目：グレー */
.image-grid .panel-1 {
  margin-top: 84px;
}

/* 2枚目：オレンジ */
.image-grid .panel-2 {
  margin-top: 56px;
}

/* 3枚目：グリーン */
.image-grid .panel-3 {
  margin-top: 28px;
}

/* 4枚目：イエロー */
.image-grid .panel-4 {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .image-grid .panel-1 {
    margin-top: 15.27%;
  }
  .image-grid .panel-2 {
    margin-top: 10.18%;
  }
  .image-grid .panel-3 {
    margin-top: 5.09%;
  }
}
/* 文字の設定
---------------------------------------------------------- */
.main-typography {
  text-align: right;
  margin-top: -60px;
  /* Designの文字を上の画像に少し被せる */
  position: relative;
  z-index: 10;
}

/* h2 */
.title-design {
  font-family: "Great Vibes", cursive;
  font-size: 10rem;
  line-height: 0.8;
  color: #111;
  text-align: right;
}

/* h3 */
.title-future {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  margin-top: 10px;
}

/* p */
.tags {
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}

.text-box {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .main-typography {
    margin-top: -40px;
  }
  .title-design {
    font-size: clamp(6rem, 22vw, 9rem);
  }
  .title-future {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }
  .tags {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
    letter-spacing: 0.08em;
  }
  .text-box {
    font-size: 1.2rem;
    line-height: 2;
  }
}
/*  ボタン
---------------------------------------------------------- */
.action-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 400px;
  padding: 15px;
  border-radius: 40px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  position: relative;
  transition: opacity 0.3s ease;
}
.btn:hover {
  opacity: 0.8;
}

.btn-blue {
  background-color: #00a2b4;
  box-shadow: 0 4px 0 #008796;
}

@media screen and (max-width: 767px) {
  .action-buttons {
    margin-top: 30px;
  }
  .btn {
    width: 53%;
    padding: 1px;
  }
  .btn-text {
    font-size: 1.3rem;
    font-weight: normal;
  }
}
/* アニメーション (Keyframes & Delays) 
---------------------------------------------------------- */
/* 初期状態は全て非表示 */
.animate-step-1,
.animate-step-2,
.animate-step-3-1,
.animate-step-3-2,
.animate-step-3-3,
.animate-step-4 {
  opacity: 0;
  animation-fill-mode: forwards;
}

/* フェードイン（その場） */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 上から下へゆっくりフェードイン */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下から上へフェードイン（ボタン用） */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から順番にパネルを表示 */
.panel {
  animation: fadeIn 0.6s ease-out forwards;
}

.panel-1 {
  animation-delay: 0.2s;
}

.panel-2 {
  animation-delay: 0.6s;
}

.panel-3 {
  animation-delay: 1s;
}

.panel-4 {
  animation-delay: 1.4s;
}

/* 上の文字とライン*/
.top-heading {
  animation: fadeInDown 0.8s ease-out forwards;
  animation-delay: 2s;
}

/* 画像の文字を上から順番にゆっくり*/
.title-design {
  animation: fadeInDown 1.2s ease-out forwards;
  animation-delay: 2.6s;
}

.title-future {
  animation: fadeInDown 1s ease-out forwards;
  animation-delay: 3.4s;
}

.tags {
  animation: fadeInDown 1s ease-out forwards;
  animation-delay: 4.2s;
}

/* 最後にボタンを表示 */
.action-buttons {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 4s;
}

/*-------------------------------------------------------- */
/* recruit_concept コンセプト
---------------------------------------------------------- */
.recruit_concept {
  position: relative;
  padding: 148px 0;
  background-color: #1a1a1a;
  overflow: hidden;
}
.recruit_concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../img/recruit/TOP_bkimg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.5;
}
.recruit_concept .container {
  position: relative;
  z-index: 1;
}
.recruit_concept .title {
  padding: 8% 0;
}
.recruit_concept .read-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2;
}
.recruit_concept .read-title .read-title_space {
  display: inline-block;
  transform: translateX(-0.5em);
}

.description {
  text-align: justify;
  line-height: 2;
}
.description:nth-child(2) {
  margin-top: 36px;
  padding-bottom: 8%;
}

@media (max-width: 768px) {
  .read-title {
    font-family: 2rem;
  }
}
/* ------------------------------------------------------- */
/* recruit_about　私たちについて */
/* ------------------------------------------------------- */
.recruit_about {
  background-color: #d8f53a;
  padding: 60px 0;
  position: relative;
  color: #333;
  text-align: justify;
}

/* 上部の円 */
.circle-accent {
  width: 60px;
  height: 60px;
  background-color: #d8f53a;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.about-body {
  margin-bottom: 36px;
}
.about-body p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 20px;
  text-align: justify;
}

/* ------------------------------------------------------- */
/* about_image-sub */
/* ------------------------------------------------------- */
.about_img-sub .container {
  padding: 0;
  background-color: #fff;
}

.about-images {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  width: 100%;
}

/* 大きい画像：右側80% */
.main-image {
  grid-column: 3/11;
  grid-row: 1;
}

/* 小さい画像：左側50% */
.sub-image {
  grid-column: 1/6;
  grid-row: 2;
}

.about-images img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------- */
/* recruit_member 人を知る*/
/* ------------------------------------------------------- */
.recruit_member {
  background-color: #333;
  padding-bottom: 0;
}
.recruit_member .container {
  padding: 0 40px;
}

@media screen and (max-width: 768px) {
  .recruit_member .container {
    padding: 0 20px;
  }
}
/* Recruit Card 　デザイン */
/* ------------------------------------------------------- */
.recruit-card {
  position: relative;
  width: 420px;
  height: 602px;
  background-color: #f1ff00;
  border-left: 4px solid #000;
}

@media screen and (max-width: 768px) {
  .recruit-card {
    width: 340px;
    height: 488px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-card {
    width: 100%;
    height: auto;
    aspect-ratio: 420/602;
  }
}
.recruit-card_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Recruit Card 写真 */
.recruit-card_image {
  position: absolute;
  top: 40px;
  left: 45px;
  width: 329px;
  height: 522px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .recruit-card_image {
    top: 34px;
    left: 37px;
    width: 266px;
    height: 420px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-card_image {
    top: 6.65%;
    left: 10.71%;
    width: 78.33%;
    height: 86.71%;
  }
}
.recruit-card_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Recruit Card 上下テキスト */
.recruit-card_top,
.recruit-card_bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #000;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .recruit-card_top,
  .recruit-card_bottom {
    font-size: 8px;
  }
}
.recruit-card_top {
  top: 12px;
}

@media screen and (max-width: 480px) {
  .recruit-card_top {
    top: 8px;
  }
}
.recruit-card_bottom {
  color: #fff;
  bottom: 1em;
  background-color: #333;
  padding: 0 16px;
}

@media screen and (max-width: 480px) {
  .recruit-card_bottom {
    bottom: 1em;
  }
}
/* Recruit Card 左右テキスト */
.recruit-card_left,
.recruit-card_right {
  position: absolute;
  top: 50%;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #000;
  white-space: nowrap;
  transform-origin: center;
}

@media screen and (max-width: 480px) {
  .recruit-card_left,
  .recruit-card_right {
    font-size: 8px;
  }
}
.recruit-card_left {
  left: -21px;
  transform: translateY(-50%) rotate(-90deg);
}

@media screen and (max-width: 768px) {
  .recruit-card_left {
    left: -22px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-card_left {
    left: -20px;
  }
}
.recruit-card_right {
  right: -21px;
  transform: translateY(-50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
  .recruit-card_right {
    right: -22px;
  }
}
@media screen and (max-width: 480px) {
  .recruit-card_right {
    right: -20px;
  }
}
/* Swiper 外側 */
/*---------------------------------------------------------- */
.member-swiper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 480px) {
  .member-swiper {
    max-width: 100%;
  }
}
/* Swiper本体 */
/*---------------------------------------------------------- */
.memberSwiper {
  width: 100%;
  padding: 40px 0;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .memberSwiper {
    padding: 30px 0;
  }
}
@media screen and (max-width: 480px) {
  .memberSwiper {
    padding: 24px 0;
  }
}
.memberSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
}

/* Swiperスライド・カード */
/*---------------------------------------------------------- */
.memberSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
  width: 420px;
  opacity: 0.45;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

@media screen and (max-width: 768px) {
  .memberSwiper .swiper-slide {
    width: 340px;
  }
}
@media screen and (max-width: 480px) {
  .memberSwiper .swiper-slide {
    width: calc(100% - 70px);
  }
}
.memberSwiper .swiper-slide-active {
  opacity: 1;
}

.memberSwiper .swiper-slide-prev,
.memberSwiper .swiper-slide-next {
  opacity: 0.45;
}

.swiper-slide:last-child .recruit-card {
  border-right: 4px solid #000;
}

/* 矢印 */
/*---------------------------------------------------------- */
.gray-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #d9d9d9;
}

@media screen and (max-width: 480px) {
  .gray-bar {
    height: 52px;
  }
}
.nav-buttons {
  display: flex;
  align-items: center;
}

.custom-prev,
.custom-next {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background-color: #fff;
  border: 0;
  border-left: 1px solid #000;
  border-radius: 0;
  color: #000;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

@media screen and (max-width: 480px) {
  .custom-prev,
  .custom-next {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
}
.custom-prev:hover,
.custom-next:hover {
  background-color: #f1ff00;
}

.custom-prev:focus-visible,
.custom-next:focus-visible {
  outline: 2px solid #000;
  outline-offset: -4px;
}

.custom-prev.swiper-button-disabled,
.custom-next.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

/* ------------------------------------------------------- */
/*  HOW WE WORK　家づくりが形になるまで*/
/* ------------------------------------------------------- */
.we_work {
  color: #333;
}

.we_work-iner {
  padding: 36px 0;
}

.work-step_thumb {
  margin-bottom: 30px;
}
.work-step_thumb img {
  width: 100%;
  display: block;
}

.scene-number {
  display: flex;
  align-items: baseline;
  margin: 0 0 15px 0;
}
.scene-number .num {
  font-family: "Joan", serif;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -2px;
}
.scene-number .text {
  font-family: "Joan", serif;
  font-size: 1.6rem;
  margin-left: 5px;
}

.work-step {
  display: grid;
  gap: 30px;
}

.work-step-title p {
  margin: 0;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.work-step_descripition {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  text-align: justify;
}

.work-step_text {
  max-width: 280px;
  margin-top: 24px;
}
.work-step_text p {
  text-align: justify;
}

.work-step-header {
  min-width: 0;
}

.work-arrow {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.work-arrow img {
  width: 100px;
  height: auto;
}

.work_layoutR .work-step_descripition {
  grid-template-columns: 140px 1fr;
}
.work_layoutR .work-arrow {
  order: 1;
}
.work_layoutR .work-step-header {
  order: 2;
}
.work_layoutR .work-step_thumb {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .work-arrow img {
    width: 50%;
    height: auto;
  }
  .work-step_text {
    max-width: 290px;
    margin-top: 26px;
  }
  .work_layoutR .work-step_descripition {
    grid-template-columns: 100px 1fr;
  }
  .work-step-title p {
    font-size: 1.75rem;
    font-weight: 700;
  }
}
/* ------------------------------------------------------- */
/*  WE ARE HERE　ここにいる3つの理由*/
/* ------------------------------------------------------- */
.WE_ARE_HERE {
  background-color: #fff;
}

/* --- リスト部分 --- */
.point-list {
  list-style: none;
  padding: 0;
  margin: 0 0 80px 0;
  color: #333;
}
.point-list li {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-bottom: 2px solid #777777;
}
.point-list li:last-child {
  border-bottom: none;
  padding: 0;
}

.list-num {
  display: flex;
  align-items: center;
  font-family: "Joan", serif;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -2px;
  line-height: 1;
  font-weight: normal;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 2px solid #1a1a1a;
}
@media (max-width: 768px) {
  .list-num {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 38px;
  }
  .list-num::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #1a1a1a;
    margin-left: 15px;
    transform: rotate(20deg);
  }
}

.list-text {
  flex: 1;
}
.list-text h3 {
  font-size: 1.8rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .list-text h3 {
    font-size: 16px;
    font-weight: bold;
  }
}
.list-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333333;
}

.list-num {
  display: flex;
  align-items: center;
  font-family: "Joan", serif;
  font-size: 7rem;
  line-height: 1;
  letter-spacing: -2px;
  line-height: 1;
  font-weight: normal;
  padding-right: 25px;
  margin-right: 25px;
  border-right: 2px solid #1a1a1a;
}
@media (max-width: 768px) {
  .list-num {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 15px;
    font-size: 38px;
  }
  .list-num::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #1a1a1a;
    margin-left: 15px;
    transform: rotate(20deg);
  }
}

.list-text {
  flex: 1;
}
.list-text h3 {
  font-size: 1.8rem;
  margin: 0 0 8px 0;
  font-weight: 700;
}
@media (max-width: 768px) {
  .list-text h3 {
    font-size: 16px;
    font-weight: bold;
  }
}
.list-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .point-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 0;
  }
}
/* ------------------------------------------------------- */
/* Work Style 　働く場所を知る*/
/* ------------------------------------------------------- */
.work_style {
  color: #fff;
  background-color: #1a1a1a;
}
.work_style .container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
}
.work_style .title-heading_wh {
  padding-top: 80px;
}
.work_style .work-step-title {
  margin-top: 40px;
}
.work_style .work-step-title p {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.8;
}

.work_style_description {
  margin-top: 48px;
  margin-bottom: 80px;
}
.work_style_description p {
  font-size: 1.6rem;
  line-height: 2;
  text-align: justify;
}
.work_style_description .sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .work_style_description p {
    font-size: 1.4rem;
  }
  .work_style_description p .sp-br {
    display: block;
  }
  .work-step-title p {
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: justify;
  }
}
/* Work Style 横スライド */
/* ------------------------------------------------------- */
.work-style-list {
  display: flex;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.work-style-item {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.work_style_thumb {
  width: 100%;
}
.work_style_thumb img {
  display: block;
  width: 100%;
  height: auto;
}

/* モデルハウス情報 */
/* ------------------------------------------------------- */
.work-style-info {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 32px;
  padding: 34px 40px;
  color: #111;
  background-color: #fff;
  box-sizing: border-box;
}

.work-style-number {
  margin: 0;
  font-size: 6rem;
  line-height: 1;
}

.work-style-wrap {
  padding: 40px;
  background-color: #fff;
}
.work-style-wrap p {
  color: #333;
  margin: 0 0 6px;
  font-size: 1.4rem;
  line-height: 1.8;
  text-align: justify;
}

.font-strong {
  font-weight: bold;
}

.work-style-text h4 {
  width: fit-content;
  margin: 0 0 10px;
  border-bottom: 1px solid #111;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.25rem;
}
.work-style-text p {
  margin: 0 0 6px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.work-style-text p:last-child {
  margin-bottom: 0;
}

/* 矢印 */
/* ------------------------------------------------------- */
.work_style .gray-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #666;
}
.work_style .custom-prev,
.work_style .custom-next {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  color: #fff;
  background-color: transparent;
  border: 0;
  border-left: 1px solid #fff;
  border-radius: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}
.work_style .custom-prev:hover,
.work_style .custom-next:hover {
  color: #000;
  background-color: #f1ff00;
}
.work_style .custom-prev:focus-visible,
.work_style .custom-next:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -4px;
}
.work_style .custom-prev:disabled,
.work_style .custom-next:disabled {
  opacity: 0.4;
  cursor: default;
}

.work-style-list {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.work-style-item {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  min-width: 0;
  scroll-snap-align: start;
}

.work-style-info {
  display: grid;
  flex: 1;
  grid-template-columns: 100px minmax(0, 1fr);
  align-content: start;
  gap: 32px;
  padding: 34px 40px;
  color: #111;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .work_style .container {
    padding: 0 20px;
  }
  .work_style .title-heading_wh {
    padding-top: 60px;
  }
  .work-style-wrap {
    margin-bottom: 56px;
    padding: 20px;
  }
  .work-style-wrap p {
    font-size: 1.4rem;
  }
  .work-style-info {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    padding: 28px 20px;
    background-color: reds;
  }
  .work-style-number {
    font-size: 4.2rem;
  }
  .work-style-text h4 {
    font-size: 1.6rem;
  }
  .work-style-text p {
    font-size: 1.3rem;
  }
  .sub-title {
    margin-top: 32px;
  }
  .sub-title p {
    font-size: 2rem;
  }
}
/* benefits */
/* ======================================================== */
.benefits img {
  display: inline-block;
  max-width: 100%;
  width: 100%;
}

/* ======================================================== */
/*  work_recruit*/
/* ======================================================== */
.work_recruit {
  background-color: #d8f53a;
  color: #333;
}
.work_recruit img {
  width: 100%;
  max-width: 100%;
}

.entry-thanks__message {
  font-size: 1.6rem;
}

.work_recruit_description {
  margin: 36px 0;
  text-align: justify;
}

/* ======================================================== */
/* Job_Openings */
/* ======================================================== */
.Job_Openings .title-heading_bk {
  text-align: center;
  /* ラインの描画 */
}
.Job_Openings .title-heading_bk::after {
  display: none;
}

.job-item {
  max-width: 700px;
  margin: 0 auto 0;
}

/* Chrome・Safariのマーカー削除 */
.job-item summary::-webkit-details-marker {
  display: none;
}

/* Firefoxなど */
.job-item summary::marker {
  display: none;
}

.job-content {
  padding: 20px;
  background: #fff;
  border-radius: 50%;
  line-height: 2;
  color: #333;
  text-align: justify;
}
.job-content h4 {
  font-weight: bold;
}

.more_button {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0 0;
}
.more_button a {
  display: inline-block;
  padding: 2px 20px;
  color: #333;
  text-decoration: none;
  border-radius: 50px;
  background-color: #d8f53a;
  font-size: 1.3rem;
  font-weight: normal;
  border: solid 1px #333;
}

/* ＋マーク */
.job-item summary {
  background: #666;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 10px 40px;
  border-top: 3px solid #fff;
}

.job-item:last-child summary {
  border-bottom: 3px solid #fff;
}

.job-item summary::after {
  content: "+";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  line-height: 1;
}

.job-item[open] summary::after {
  content: "−";
}

@media screen and (max-width: 768px) {
  .job-item summary {
    font-size: 1.6rem;
    padding: 10px;
  }
}
/* ============================================================
  モーダル (MODAL)
============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: calc(100vh - 80px);
  margin: 5% auto;
  padding: 0;
  overflow-y: auto;
  background-color: #fff;
  box-sizing: border-box;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  z-index: 10;
  color: #333;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.close-btn:hover {
  color: #999;
}

@media screen and (max-width: 768px) {
  /* モーダル */
  .modal-overlay {
    height: 100vh;
    height: 100dvh;
    padding: 16px;
  }
  .modal-content {
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    margin: 0;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .close-btn {
    top: 14px;
    right: 14px;
  }
}
/* ============================================================
  インタビュー全体共通・コンテナ
============================================================ */
.interview_voice {
  width: 100%;
  background: #f5f3eb;
  padding: 80px 0;
  color: #333;
  box-sizing: border-box;
}

.interview_voice .container {
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.interview_voice img {
  display: block;
  width: 100%;
  height: auto;
}

.interview_mv,
.profile,
.private,
.message {
  width: 100%;
}

.profile_inner {
  padding: 0 40px;
}

.space {
  display: inline-block;
  transform: translatey(-0.25em);
}

@media (max-width: 768px) {
  .interview_voice {
    padding: 60px 0;
  }
  .interview_voice .container {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
  }
  .interview_mv,
  .interview_photo {
    min-width: 0;
  }
}
/* ============================================================
  タイトル (TITLE)
============================================================ */
.interview_title {
  display: grid;
  place-items: center;
  width: 100%;
  margin-bottom: 40px;
  padding: 28px 60px;
  text-align: center;
  box-sizing: border-box;
}

.interview_title h2 {
  font-family: "Jersey 25", sans-serif;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
}

@media (max-width: 768px) {
  .interview_title {
    margin-bottom: 0;
    padding: 24px 20px;
  }
  .interview_title h2 {
    font-size: clamp(28px, 9vw, 42px);
    white-space: nowrap;
  }
}
/* ============================================================
  メインビジュアル (MV)・キャッチコピー
============================================================ */
.interview_mv {
  padding-bottom: 0;
}

.interview_photo {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.catch_copy {
  position: absolute;
  left: 20px;
  top: 40px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.catch_copy .copy {
  flex: 0 0 auto;
  align-self: flex-start;
  height: max-content;
  white-space: nowrap;
}

.copy {
  writing-mode: vertical-rl;
  background: #fff;
  padding: 18px 10px;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.copy01 {
  margin-top: 2em;
  text-align: center;
}

.member_name {
  max-width: 240px;
  width: 100%;
  background: #efff00;
  margin-bottom: 36px;
  padding: 18px 20px;
}

.member_name h3 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
}

.member_name p {
  font-size: 1.6rem;
}

.copy-tight-pc {
  display: inline-block;
  margin-inline: -0.2em;
}

@media (max-width: 768px) {
  /* 写真 */
  .interview_photo img {
    width: 100%;
    height: auto;
    transform: none;
  }
  /* 写真上のキャッチコピー */
  .catch_copy {
    top: auto;
    right: 0;
    bottom: 40px;
    left: auto;
    z-index: 2;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 6px;
    width: 100%;
    max-width: 100%;
    padding-left: 8px;
    box-sizing: border-box;
  }
  .catch_copy .copy {
    writing-mode: horizontal-tb;
    padding: 8px 12px;
    max-width: 100%;
    font-size: clamp(14px, 4.4vw, 20px);
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
    box-sizing: border-box;
  }
  .copy01 {
    margin-top: 0;
  }
  .copy .space {
    transform: none;
  }
  .member_name h3 {
    font-size: 2.6rem;
  }
}
/* ============================================================
  プロフィール (PROFILE)
============================================================ */
.profile_list dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  row-gap: 6px;
}

.profile_list dt {
  font-weight: bold;
}

.profile_text p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 24px;
  text-align: justify;
}

@media (max-width: 768px) {
  .profile_inner {
    padding: 0 20px;
  }

  .profile_text p {
  font-size: 1.4rem;
}
}
/* ============================================================
  チャート (CHART)
============================================================ */
.radar-chart {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 60px auto 20px;
}

.radar-data {
  display: none;
  /* データ取得専用 */
}

.radar-chart canvas {
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .radar-chart {
    margin: 60px auto;
  }
}
/* ============================================================
  個人フリー項目　private
============================================================ */
.private {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin-top: 80px;
  padding: 0 34px 50px;
  color: #fff;
  background-color: #333;
  box-sizing: border-box;
}

.private_heading {
  display: grid;
  grid-template-columns: max-content;
  justify-self: end;
  justify-items: end;
  gap: 8px;
  max-width: 100%;
  margin-top: -20px;
  margin-right: -34px;
  margin-bottom: 28px;
}

.private_heading span,
.private_heading p {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 14px;
  color: #111;
  background-color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
  text-align: justify;
}

.private_inner {
  min-width: 0;
}

.private_inner h3 {
  margin: 0 0 32px;
  font-size: clamp(18px, 3.4vw, 25px);
  font-weight: 400;
  line-height: 1.65;
}

.private_inner p {
  margin: 0 0 18px;
  font-size: clamp(13px, 2.4vw, 1.6rem);
  font-weight: normal;
  line-height: 2;
}

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

.sub_photo {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .private {
    margin-top: 60px;
    padding: 0 20px 42px;
  }
  .private_heading {
    gap: 6px;
    margin-top: -18px;
    margin-right: -20px;
    margin-bottom: 26px;
  }
  .private_heading span,
  .private_heading p {
    padding: 7px 12px;
  }
  .private_inner h3 {
    margin-bottom: 28px;
  }
}
/* ============================================================
  メッセージ (MESSAGE)
============================================================ */
.message {
  background: #efff00;
  padding: 60px 40px 80px;
  position: relative;
}
.message .profile_inner {
  padding: 0;
}

.message::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #efff00;
}

.message_text p {
  font-size: 1.6rem;
  margin-bottom: 24px;
  text-align: justify;
}

@media (max-width: 768px) {
  .message {
    padding: 60px 20px 80px;
  }
  .message_text p {
    font-size: 1.4rem;
  }
}
/* ============================================================
  戻るボタン (BACK AREA)
============================================================ */
.back_area {
  text-align: center;
  padding: 80px 0 20px;
}

.back_btn {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
}

.back_note {
  margin-top: 20px;
  line-height: 1.8;
}

/* ========================================================
/*  about_img 施工事例
======================================================== */
.about_img {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  color: #fff;
  min-height: 760px;
  isolation: isolate;
}

@media screen and (max-width: 768px) {
  .about_img {
    min-height: 0;
  }
}
.about-business-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(rgba(3, 7, 35, 0.82), rgba(3, 7, 35, 0.82)), url("../../img/recruit/about-business1H600.jpg") center/cover no-repeat;
}

.about_img .container.about-business-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 700px;
  min-height: 760px;
  margin: 0 auto;
  padding: 0 0 0 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about_img .container.about-business-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    min-height: 0;
    padding: 60px 20px;
  }
}
.about-business-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding-right: 34px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .about-business-content {
    grid-column: 1;
    grid-row: 1;
    align-self: auto;
    width: 100%;
    max-width: 520px;
    padding-right: 0;
  }
}
.about-business-en {
  display: inline-block;
  width: fit-content;
  margin: 0 0 20px;
  padding-bottom: 7px;
  border-bottom: 2px solid #f1ff00;
  font-family: "Joan", serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .about-business-en {
    margin-bottom: 16px;
    font-size: 2.2rem;
  }
}
.about-business-sub {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8;
}

.about-business-ja {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .about-business-ja {
    margin-bottom: 24px;
    font-size: 2.6rem;
  }
}
.about-business-text p {
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 2;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .about-business-text p {
    margin-bottom: 14px;
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
  }
}
.about-business-arrow {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-business-slidearea {
  display: flex;
  align-self: stretch;
  gap: 16px;
  min-width: 0;
  height: 760px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .about-business-slidearea {
    grid-column: 1;
    grid-row: 2;
    align-self: auto;
    width: 100%;
    height: 500px;
    gap: 10px;
  }
}
.about-business-column {
  width: calc(50% - 6px);
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .about-business-column {
    width: calc(50% - 5px);
  }
}
.about-business-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-business-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  will-change: transform;
}

@media screen and (max-width: 768px) {
  .about-business-track {
    gap: 10px;
  }
}
.about-business-slide {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
}

.about-business-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .about-business-link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about-business-link a {
    max-width: 300px;
    padding: 14px 18px;
    font-size: 1.3rem;
  }
}
/* 社員構成 */
/*-------------------------------------------------------- */
.staffｰcomposition .ratio-image {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #f5f3f1;
}
.staffｰcomposition .ratio-image img {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.staffｰcomposition p span {
  display: inline-block;
  color: #333;
  text-align: right;
}

/* home-top */
.home-top {
  display: flex;
  justify-content: center;
  margin: 20px 0 0;
}
.home-top a {
  display: inline-block;
  padding: 2px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background-color: #333;
  font-size: 1.3rem;
  font-weight: normal;
  border: solid 1px #333;
}
