/*
Theme Name: 採用LP
Author: moro
Description: オリジナルテーマ
Version: 1.0
*/

/* ===== リセット ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #1D1D1F;
  line-height: 1.7;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* ===== 共通 ===== */
.inner {
  width: 90%;
  max-width: 1440px; /* すべてのセクションを1440pxに統一 */
  margin: 0 auto;
}

.to-top {
  position: fixed;
  left: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: rgba(30, 226, 206, 0.6); /* 透過カラー */
  color: #fff;
  font-size: 12px; /* TOPの文字サイズ */
  text-align: center;
  border-radius: 50%;
  border: 1px solid #fff;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 9999;

  display: flex;
  flex-direction: column; /* 縦並び */
  justify-content: center;
  align-items: center;
  gap: 2px; /* 矢印と文字の間隔 */
}

/* 上向き矢印は疑似要素で追加 */
.to-top::before {
  content: "↑"; /* 矢印 */
  font-size: 16px;
  display: block;
  line-height: 1;
}

/* 表示状態 */
.to-top {
  opacity: 1 !important;
  pointer-events: auto !important;
  z-index: 9999;
}

.section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

/* ===== concept ===== */
.concept-wrapper {
  position: relative;
  background-image: url("images/背景1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

/* ===== 回転テキスト ===== */
.circle-text {
  position: absolute;
  left: -360px;
  top: -340px;
  width: 800px;
  height: 800px;
  pointer-events: none;
  z-index: 0;
}

.circle-text svg {
  width: 100%;
  height: 100%;
  animation: circleRotate 30s linear infinite;
}

.circle-text text {
  fill: #cfc6bbcc;
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 0;
  font-weight: 500;
}


@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== ヘッダー ===== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 9999;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.header-inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

.logo img {
  width: 138px;
  height: 50px;
}

/* ===== ハンバーガー ===== */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #1D1D1F;
  left: 0;
  transition: 0.3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* ×に変形 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 10px;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-list a {
  color: #1D1D1F;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0.08em;
}

.nav-list a:hover {
  color: #73E5DA;
  opacity: 1;
}

/* ===== メインビジュアル ===== */

.mv-img.sp {
  display: none;
}

.mv {
  position: relative;
}

.mv-inner {
  position: relative;
}

.mv-title {
  position: absolute;
  right: 6%;
  bottom: 18%;
  text-align: right;
  color: #fff;
  line-height: 1;
}

.mv-title-main {
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0.15em;
  line-height: 1.4;
}

.mv-title-main.second {
  display: block;
}

.mv-title-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  margin: 24px 0;
}

.mv-sub {
  display: block;
  font-size: 18px;
  margin-bottom: -10px;
  font-weight: Medium;
}

.mv-text {
  display: block;
  font-size: 18px;
  margin: 0;
  font-weight: Medium;
}

/* ===== CTAテキスト ===== */
.cta-text {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.cta-text::before,
.cta-text::after {
  content: "";
  position: absolute;
  top: 45%;
  width: 40px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.cta-text::before {
  right: 100%;
  margin-right: 3px;
  transform: rotate(55deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Crect x='2' y='9' width='10' height='2.5' rx='2' fill='%23333'/%3E%3Crect x='18' y='8' width='8' height='3' rx='2' fill='%23333'/%3E%3Crect x='32' y='10' width='11' height='2' rx='2' fill='%23333'/%3E%3Crect x='48' y='9' width='7' height='2.8' rx='2' fill='%23333'/%3E%3C/svg%3E");
}

.cta-text::after {
  left: 100%;
  margin-left: 3px;
  transform: rotate(-55deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Crect x='3' y='9' width='9' height='2.8' rx='2' fill='%23333'/%3E%3Crect x='17' y='10' width='12' height='2' rx='2' fill='%23333'/%3E%3Crect x='34' y='8' width='8' height='3' rx='2' fill='%23333'/%3E%3Crect x='47' y='9' width='10' height='2.4' rx='2' fill='%23333'/%3E%3C/svg%3E");
}

/* ===== CTAボタン ===== */
.cta-area {
  text-align: center;
  padding: 100px 0 100px;
}

.cta-line-btn img {
  width: 36px;
  height: auto;
  display: block;
}

.cta-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 480px;
  max-width: 90%;
  margin: 0 auto;
  padding: 28px 40px;
  background: #06C755;
  color: #fff;
  border-radius: 60px;
  font-size: 30px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.cta-line-btn:hover {
  background: #00a000;
  transform: translateY(-3px);
}

/* ===== Concept Area ===== */
.concept-area {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.philosophy {
  position: relative;
  max-width: 1440px;
  width: 100%;
  min-height: 973px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.philosophy-text {
  text-align: left;
  max-width: 502px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 2.5;
}

.philosophy-text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 70px;
}

.philosophy-text p {
  font-size: 18px;
  line-height: 50px;
  color: #1D1D1F;
}

/* ===== images ===== */
.ph-img{
  position:absolute;
  object-fit:cover;
}

.ph1 {
  width: 320px;
  height: 320px;
  top: 60px;
  right: 100px;
}

.ph2 {
  width: 300px;
  height: 320px;
  top: 418px;
  left: 30px;
}

.ph3 {
  width: 250px;
  height: 220px;
  top: 642px;
  right: 50px;
}

/* ===== 共通セクションタイトル ===== */
.section-title {
  text-align: left;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

/* ===== ABOUT ===== */
.about {
  padding: 0 20px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.about .section-title {
  font-size: 30px;
  margin-bottom: 60px;
}

.about > p {
  text-align: left;
  max-width: 760px;
  margin: 0 0 60px;
  line-height: 2.2;
  font-size: 18px;
  color: #1D1D1F
}

/* ===== feature-grid ===== */
.feature-grid {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* ===== カード ===== */
.feature-card {
  width: 543px;
  min-height: 301px;
  background: #fff;

  border: 5px solid #1ee2ce;
  border-radius: 50px;

  padding: 30px;
  align-items: center;

  /* ★ gridに変更 */
  display: grid;
  grid-template-columns: 140px 1fr; /* 画像｜テキスト */
  grid-template-rows: auto 1fr;
  gap: 20px 30px;
}

/* ===== タイトル ===== */
.feature-card h3 {
  grid-column: 1 / 3; /* ← 横いっぱい */
  grid-row: 1;

  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0;
}

/* ===== カード内レイアウト（リセット） ===== */
.card-content {
  display: contents; /* ← 中身だけグリッドに参加させる */
}

/* ===== 画像 ===== */
.card-content img {
  grid-column: 1;
  grid-row: 2;

  width: 160px;
  height: auto;
}

/* ===== テキスト ===== */
.card-content p {
  grid-column: 2;
  grid-row: 2;

  margin-left: 0;
  font-size: 16px;
  line-height: 24px;
  color: #1D1D1F;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
/* ===== career ===== */
.career {
  padding-bottom: 80px;
  background-image: url("images/背景2.png");
  background-size: 90%;
  position: relative;
}


.career-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px;
  padding-bottom: 0;
}

/* ===== 上段（テキスト＋イラスト） ===== */
.career-head {
  position: relative;
  max-width: 1140px;
  margin: 0 auto 200px;
}

/* タイトル */
.career .section-title {
  font-size: 48px;
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 700;
  padding-top: 60px;
}

/* テキスト */
.career-head-text {
 max-width: 700px;
 width: 70%;
 padding-right: 100px;
}

.career-lead,
.career-sub {
  font-size: 18px;
  line-height: 2;
  margin-top: 12px;
}

/* イラスト */
.career-illust {
 position: absolute;
  right: 0;
  top: 250px; /* ←位置微調整 */
}

/* 画像 */
.career-illust img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* ===== カードエリア ===== */
.career-cards {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.career-card {
  width: 100%;
  max-width: 750px;
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  text-align: left;
  border: 5px solid #1ee2ce;
  position: relative;
  margin-bottom: 0;
}

.career-card:last-child {
  margin-bottom: 0;
}

.career-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 43px solid #1ED1D8;
}

.career-card:last-child::after {
  display: none;
}

.career-card.blue {
  border: 5px solid #1EC1E2;
}

.career-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.career-card p {
  font-size: 18px;
  line-height: 2;
  color: #1D1D1F;
  font-weight: 400;
}

.career-label {
  position: absolute;
  left: 15%;
  top: 0;
  transform: translate(-50%, -50%);
  background: #19c2b3;
  color: #fff;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 25px;
  margin: 0;
}

.career-label.blue {
  background: #007bff;
}

/* ===== 下メッセージ ===== */
.career-message {
  text-align: center;
  margin-top: 50px;
}

.career-message-inner {
  display: inline-block;
  text-align: left;
  max-width: 700px;
  color: #1D1D1F;
}

.career-message h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.career-message ul {
  list-style: none;
  padding: 0;
}

.career-message li {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
}

/* ===== 求人の特徴（appeal） ===== */
.appeal-wrapper {
  background-color: #F2FFFE;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.appeal {
  padding: 60px 80px 0;
}

.appeal .inner {
  max-width: 1440px;
  margin: 0 auto;
}

.appeal-head {
  text-align: right;
  margin-bottom: 50px;
}

.appeal-sub {
  font-size: 25px;
  margin-bottom: 20px;
  color: #1D1D1F;
  text-align: right;
  letter-spacing: -0.01em;
}

.appeal-head .section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-align: right;
  letter-spacing: -0.02em;
}

.appeal-grid {
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 300px); /* ← 戻す */
  gap: 40px; /* ← ここで間隔管理 */

  justify-content: center; /* ← 中央寄せ */
}

.appeal-card {
  width: 300px;
  height: 350px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 36px;
  background: #25c6b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  padding: 20px;
  transition: 0.3s ease;
}

.appeal-card:nth-child(even) {
  background: #b6a694;
}

.appeal-card:hover {
  transform: translateY(-6px);
}

.appeal-card img {
  width: 120px;
}

.appeal-card p {
  font-size: 32px;
  line-height: 1.4;
}

.appeal-card .accent {
  font-weight: 800;
  font-size: 46px;
  letter-spacing: 1px;
}

/* ===== 研修カード（training） ===== */
.training-wrapper {
  background-image: url("images/背景3.png");
  background-size: 90%;
}

.training {
  position: relative;
  overflow: visible;
}

/* ===== 回転テキスト ===== */
.circle-text-training {
  position: absolute;
  right: -200px;   /* ← 左に配置 */
  top: -70px;    /* ← 上に少しはみ出す */
  width: 600px;
  height: 600px;
  left: auto;
}

.circle-text svg {
  width: 100%;
  height: 100%;
  animation: circleRotate 30s linear infinite;
}

.circle-text text {
  fill: rgba(30, 226, 206, 0.4); /* #1EE2CE の40%*/
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 4px;
  font-weight: 600;
  font-family: "Edu SA Beginner", cursive;
}

@keyframes circleRotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.training-head {
  padding: 40px 0 0 60px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
}

.training-head .section-title {
  text-align: left;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.training-lead {
  text-align: left;
  max-width: 760px;
  margin: 0 0 30px;
  line-height: 2.2;
  font-size: 16px;
  color: #1D1D1F;
}

.training-steps {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-card {
  width: 100%;
  max-width: 900px;
  margin: 50px 220px;
  background: #fff;
  padding: 30px 50px;
  border-radius: 50px;
  text-align: left;
  border: 5px solid #1EE2CE;
  position: relative;
}

.training-card:last-child {
  margin-bottom: 0;
}

.training-card::after {
  content: "";
  position: absolute;
  bottom: -61px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 22px solid #1ED1D8;
}

.training-card.middle::after {
  border-top: 22px solid #1EA8E2;
}

.training-card:last-child::after {
  display: none;
}

.training-card.middle {
  border-color: #1EC1E2;
}

.training-card.advanced {
  border-color: #1E90E2;
}

.training-card h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-list li {
  margin-bottom: 6px;
}

.list-title {
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 0.6;
  position: relative;
  padding-left: 18px;
}

.list-title::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.list-desc {
  font-size: 16px;
  color: #1D1D1F;
  line-height: 1.2;
  padding-left: 16px;
}

.training-label {
  position: absolute;
  left: 30px;
  top: 0;
  transform: translateY(-50%);
  background: #1EE2CE;
  color: #fff;
  padding: 1px 18px;
  border-radius: 30px;
  font-size: 32px;
  font-weight: bold;
  z-index: 2;
}

.training-card.middle .training-label {
  background: #1EC1E2;
}

.training-card.advanced .training-label {
  background: #1E90E2;
}

/* ===== 社員の声 ===== */
.voice {
  padding: 20px 0 40px 0;
  background: #FDFDFD;
}

.voice .inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: 0;
}

.section-title {
  text-align: left;
  font-size: 50px;
  margin-bottom: 60px;
}

/* ===== Swiper ===== */
.voice-swiper {
  overflow: visible;
  padding-right: 0;
}

.voice-swiper .swiper-wrapper {
  display: flex;
  width: auto !important;
}

.voice-swiper .swiper-slide {
  display: flex;
  justify-content: flex-start;
  width: auto !important;
  margin-right: 100px;
}

.voice-progress-wrap {
  padding: 0 200px;
}

.voice-progress {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.voice-progress-bar {
  width: 33.333%;
  height: 100%;
  background: #666;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.voice-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 645px;
  height: 320px;
  padding: 30px;
  background: #CFF7F3;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.voice-card img {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  padding: 15px;
}

.voice-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.voice-card p {
  font-size: 16px;
  line-height: 1.4;
  color: #1D1D1F;
}

/* ===== 採用セクション ===== */
.recruit-wrapper {
  background: #F2FFFE;
}

.recruit {
  padding: 40px 20px;
}

.recruit-title {
  text-align: left;
  font-size: 50px;
  font-weight: bold;
}

.recruit-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.recruit-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-item {
  padding-bottom: 0;
}

.recruit-item h3 {
  font-size: 18px;
  font-weight: 600;
}

.recruit-item p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #1D1D1F;
}

.recruit-flow {
  margin-top: 80px;
}

.flow-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
}

.recruit-flow img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== 代表メッセージセクション ===== */
.message {
  padding: 200px 100px;
}

.message-content {
  display: flex;
  align-items: stretch;
  gap: 80px;
}

.message-img {
  width: 350px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 600px;
  height: 400px;
}

.message-title {
  text-align: left;
  margin: 0 0 24px 0;
  font-size: 30px;
}

.message-text p {
  font-size: 12px;
  line-height: 1.8;
  color: #1D1D1F;
  margin-bottom: 6px;
  margin-top: 0;
}

.ceo-name {
  text-align: right;
  margin-top: 30px;
  font-size: 14px;
}


/* ===== フッター ===== */
.footer {
  background: #73E5DA;
  padding: 60px 0;
}

.footer .inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  width: 300px;
  height: auto;
  display: block;
}

.footer-sns {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.sns-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sns-link:hover img {
  opacity: 0.7;
}

/* ===== 固定LINEボタン ===== */
.line-btn img {
  width: 28px;
  height: auto;
  display: block;
}

.line-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-top-left-radius: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

/* ===== レスポンシブ ===== */

@media screen and (max-width: 1000px) and (min-width: 700px) {
  /* ipad・PCベースの微調整だけ */

/* ===== 回転テキスト ===== */
.circle-text {
  position: absolute;
  left: -350px;
  top: -250px;
  width: 500px;
  height: 500px;
  pointer-events: none;
  z-index: 0;
}


.logo img {
  width: 80px;
  height: 30px;
}

.nav-list {
  display: flex;
  gap: 20px;
}

.nav-list a {
  color: #1D1D1F;
  font-size: 8px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0.08em;
}

.nav-list a:hover {
  color: #73E5DA;
  opacity: 1;
}

/* ===== メインビジュアル ===== */

.mv-img.sp {
  display: none;
}

.mv {
  position: relative;
}

.mv-inner {
  position: relative;
}

.mv-title {
  position: absolute;
  bottom: 18%;
  left: 3%;
  font-size: 42px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.15em;
}

.mv-title .line2 {
  display: block;
  text-align: right;
}

/* ===== Concept Area ===== */

.philosophy-text {
  text-align: left;
  max-width: 460px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 2.5;
}

.philosophy-text h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
}

.philosophy-text p {
  font-size: 12px;
  line-height: 45px;
  color: #1D1D1F;
}

/* ===== images ===== */
.ph-img{
  position:absolute;
  object-fit:cover;
}

.ph1 {
  width: 240px;
  height: 240px;
  top: 60px;
  right: 40px;
}

.ph2 {
  width: 180px;
  height: 200px;
  top: 700px;
  left: 30px;
}

.ph3 {
  width: 180px;
  height: 200px;
  top: 550px;
  right: 30px;
}

/* ===== 共通セクションタイトル ===== */
.section-title {
  text-align: left;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 0.08em;
}

/* ===== ABOUT ===== */
.about {
  padding: 0 20px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

.about .section-title {
  font-size: 28px;
  margin-bottom: 40px;
}

.about > p {
  text-align: left;
  max-width: 760px;
  margin: 0 0 60px;
  line-height: 2.2;
  font-size: 14px;
  color: #1D1D1F
}

/* ===== feature-grid ===== */
.feature-grid {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* ===== カード ===== */
  .feature-card {
    width: 100%;           /* ← 幅いっぱい */
    padding: 30px;
    border-radius: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* ← 中央揃え */
    text-align: center;
    gap: 20px;

    min-height: 320px;
  }

  /* ===== カード内構造 ===== */
  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* 画像 */
  .card-content img {
    order: 1;
    width: 120px;
    margin: 0 auto;
  }

  /* タイトル */
  .feature-card h3 {
    order: 2;
    font-size: 18px;
    text-align: center;
  }

  /* テキスト */
  .card-content p {
    order: 3;
    margin-left: 0;        /* ← 横レイアウトの名残を消す */
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    max-width: 280px;
  }


/* ===== career ===== */

/* ===== 上段（テキスト＋イラスト） ===== */

/* タイトル */
.career .section-title {
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0;
  font-weight: 700;
  padding-top: 60px;
}

/* テキスト */
.career-head-text {
 max-width: 700px;
 width: 70%;
 padding-right: 100px;
}

.career-lead,
.career-sub {
  font-size: 14px;
  line-height: 2;
  margin-top: 12px;
}

/* イラスト */
.career-illust {
 position: absolute;
  right: 0;
  top: 230px; /* ←位置微調整 */
}

/* 画像 */
.career-illust img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

/* ===== カードエリア ===== */
.career-cards {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}

.career-card {
  width: 100%;
  max-width: 750px;
  background: #fff;
  padding: 40px;
  border-radius: 30px;
  text-align: left;
  border: 5px solid #1ee2ce;
  position: relative;
  margin-bottom: 0;
}

.career-card:last-child {
  margin-bottom: 0;
}

.career-card::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 43px solid #1ED1D8;
}

.career-card:last-child::after {
  display: none;
}

.career-card.blue {
  border: 5px solid #1EC1E2;
}

.career-card h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.career-card p {
  font-size: 18px;
  line-height: 2;
  color: #1D1D1F;
  font-weight: 400;
}

.career-label {
  position: absolute;
  left: 15%;
  top: 0;
  transform: translate(-50%, -50%);
  background: #19c2b3;
  color: #fff;
  padding: 8px 22px;
  border-radius: 40px;
  font-size: 25px;
  margin: 0;
}

.career-label.blue {
  background: #007bff;
}

/* ===== 下メッセージ ===== */
.career-message {
  text-align: center;
  margin-top: 50px;
}

.career-message-inner {
  display: inline-block;
  text-align: left;
  max-width: 700px;
  color: #1D1D1F;
}

.career-message h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.career-message ul {
  list-style: none;
  padding: 0;
}

.career-message li {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
}

/* ===== 求人の特徴（appeal） ===== */
.appeal-wrapper {
  background-color: #F2FFFE;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.appeal {
  padding: 60px 80px 0;
}

.appeal .inner {
  max-width: 1440px;
  margin: 0 auto;
}

.appeal-head {
  text-align: right;
  margin-bottom: 50px;
}

.appeal-sub {
  font-size: 25px;
  margin-bottom: 20px;
  color: #1D1D1F;
  text-align: right;
  letter-spacing: -0.01em;
}

.appeal-head .section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-align: right;
  letter-spacing: -0.02em;
}

.appeal-grid {
  max-width: 1140px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 300px); /* ← 戻す */
  gap: 40px; /* ← ここで間隔管理 */

  justify-content: center; /* ← 中央寄せ */
}

.appeal-card {
  width: 300px;
  height: 350px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border-radius: 36px;
  background: #25c6b8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #fff;
  padding: 20px;
  transition: 0.3s ease;
}

.appeal-card:nth-child(even) {
  background: #b6a694;
}

.appeal-card:hover {
  transform: translateY(-6px);
}

.appeal-card img {
  width: 120px;
}

.appeal-card p {
  font-size: 32px;
  line-height: 1.4;
}

.appeal-card .accent {
  font-weight: 800;
  font-size: 46px;
  letter-spacing: 1px;
}

/* ===== 研修カード（training） ===== */
.training-wrapper {
  background-image: url("images/背景3.png");
  background-size: 90%;
}

.training {
  position: relative;
  overflow: visible;
}

/* ===== 回転テキスト ===== */
.circle-text-training {
  position: absolute;
  right: -200px;   /* ← 左に配置 */
  top: -70px;    /* ← 上に少しはみ出す */
  width: 600px;
  height: 600px;
  left: auto;
}

.circle-text svg {
  width: 100%;
  height: 100%;
  animation: circleRotate 30s linear infinite;
}

.circle-text text {
  fill: rgba(207, 198, 187, 0.5);
  font-size: clamp(20px, 2vw, 32px);
  letter-spacing: 4px;
  font-weight: 600;
}

@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.training-head {
  padding: 40px 0 0 60px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: left;
}

.training-head .section-title {
  text-align: left;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.training-lead {
  text-align: left;
  max-width: 760px;
  margin: 0 0 30px;
  line-height: 2.2;
  font-size: 16px;
  color: #1D1D1F;
}

.training-steps {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.training-card {
  width: 100%;
  max-width: 900px;
  margin: 50px 220px;
  background: #fff;
  padding: 30px 50px;
  border-radius: 50px;
  text-align: left;
  border: 5px solid #1EE2CE;
  position: relative;
}

.training-card:last-child {
  margin-bottom: 0;
}

.training-card::after {
  content: "";
  position: absolute;
  bottom: -61px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 22px solid #1ED1D8;
}

.training-card.middle::after {
  border-top: 22px solid #1EA8E2;
}

.training-card:last-child::after {
  display: none;
}

.training-card.middle {
  border-color: #1EC1E2;
}

.training-card.advanced {
  border-color: #1E90E2;
}

.training-card h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-list li {
  margin-bottom: 6px;
}

.list-title {
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 0.6;
  position: relative;
  padding-left: 18px;
}

.list-title::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.list-desc {
  font-size: 16px;
  color: #1D1D1F;
  line-height: 1.2;
  padding-left: 16px;
}

.training-label {
  position: absolute;
  left: 30px;
  top: 0;
  transform: translateY(-50%);
  background: #1EE2CE;
  color: #fff;
  padding: 1px 18px;
  border-radius: 30px;
  font-size: 32px;
  font-weight: bold;
  z-index: 2;
}

.training-card.middle .training-label {
  background: #1EC1E2;
}

.training-card.advanced .training-label {
  background: #1E90E2;
}

/* ===== 社員の声 ===== */
.voice {
  padding: 40px 0 80px 0;
  background: #FDFDFD;
}

.voice .inner {
  max-width: 1440px;
  margin-left: auto;
  margin-right: 0;
}

.section-title {
  text-align: left;
  font-size: 50px;
  margin-bottom: 60px;
}

/* ===== Swiper ===== */
.voice-swiper {
  overflow: visible;
  padding-right: 0;
}

.voice-swiper .swiper-wrapper {
  display: flex;
  width: auto !important;
}

.voice-swiper .swiper-slide {
  display: flex;
  justify-content: flex-start;
  width: auto !important;
  margin-right: 100px;
}

.voice-progress-wrap {
  padding: 0 200px;
}

.voice-progress {
  width: 100%;
  height: 8px;
  background: #ddd;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.voice-progress-bar {
  width: 33.333%;
  height: 100%;
  background: #666;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 0.3s ease;
}

.voice-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 645px;
  height: auto;
  padding: 75px 50px;
  background: #CFF7F3;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.voice-card img {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}

.voice-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.voice-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.voice-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #1D1D1F;
}

/* ===== 採用セクション ===== */
.recruit-wrapper {
  background: #F2FFFE;
}

.recruit {
  padding: 40px 20px;
}

.recruit-title {
  text-align: left;
  font-size: 50px;
  font-weight: bold;
}

.recruit-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.recruit-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recruit-item {
  padding-bottom: 0;
}

.recruit-item h3 {
  font-size: 18px;
  font-weight: 600;
}

.recruit-item p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  color: #1D1D1F;
}

.recruit-flow {
  margin-top: 80px;
}

.flow-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 60px;
}

.recruit-flow img {
  width: 100%;
  max-width: 980px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== 代表メッセージセクション ===== */
.message {
  padding: 200px 100px;
}

.message-content {
  display: flex;
  align-items: stretch;
  gap: 80px;
}

.message-img {
  width: 350px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.message-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 600px;
  height: 400px;
}

.message-title {
  text-align: left;
  margin: 0 0 24px 0;
  font-size: 30px;
}

.message-text p {
  font-size: 12px;
  line-height: 1;
  color: #1D1D1F;
  margin-bottom: 6px;
  margin-top: 0;
}

.ceo-name {
  text-align: right;
  margin-top: 30px;
  font-size: 14px;
}


/* ===== フッター ===== */
.footer {
  background: #73E5DA;
  padding: 60px 0;
}

.footer .inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo img {
  width: 300px;
  height: auto;
  display: block;
}

.footer-sns {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.sns-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sns-link:hover img {
  opacity: 0.7;
}

/* ===== 固定LINEボタン ===== */
.line-btn img {
  width: 28px;
  height: auto;
  display: block;
}

.line-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: #fff;
  padding: 10px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-top-left-radius: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
}

/* ===== スマートフォン ===== */
@media screen and (max-width: 600px) {

  .inner {
  width: 100%;
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 20px;  
  }

  /* ===== ヘッダー ===== */
  .header {
    height: 80px;
    background: transparent;
    z-index: 9999; 
  }

  .header-inner {
    max-width: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; 
  }

  /* ロゴ */
  .logo img {
    width: 83px;
    height: 30px;
  }

  /* ===== ハンバーガー（白丸） ===== */
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    margin-left: auto;
    position: relative;
  }

  .hamburger span {
    display: none;
  }

  /* ===== ✕を作る ===== */
  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #1D1D1F;
    opacity: 0;
    transition: 0.3s;
  }

  .hamburger::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .hamburger::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* ===== クリック後 ===== */
  .hamburger.active::before,
  .hamburger.active::after {
    opacity: 1;
  }

  /* ===== ナビ ===== */
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100vh;
    background: #fff;
    display: flex;  
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.3s;
    z-index: 150;
  }

  .nav-list.active {
    right: 0;
  }

  .nav-list a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
  }

  /* ===== メインビジュアル ===== */

  .mv-img.pc {
    display: none;
  }

  .mv-img.sp {
    display: block;
  }

  .mv-inner {
    position: relative;
    height: 500px;
  }

  .mv-inner img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% center;
  }

  .mv-title { 
  position: absolute; 
  bottom: 35%; /* ← 全体を上へ */
  left: 2%; 
  right: auto; 

  text-align: right; 
  line-height: 1; 
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* ← 右揃え */
  color: #fff; 
} 
 
/* メインタイトル */ 
.mv-title-main { 
  display: block; 
  font-size: clamp(18px, 5vw, 24px); /* ← 少し小さく */
  font-weight: bold; 
  letter-spacing: 0.03em; 
  line-height: 0.3; /* ← タイトル間さらに詰める */
} 

/* 2行目微調整 */
.mv-title-main.second {
  margin-top: -2px;
}
 
/* 横線 */ 
.mv-title-line { 
  width: 160px; 
  height: 1px; 
  background-color: #fff; 
  margin: 18px 0 14px;
}
 
/* サブ */ 
.mv-sub { 
  display: block; 
  font-size: 8px; 
  margin-bottom: -6px; /* ← textとの間さらに狭く */
  line-height: 0; 
} 
 
/* テキスト */ 
.mv-text { 
  display: block; 
  font-size: 8px; 
  line-height: 0; 
}


  /* ===== CTA ===== */
  .cta-area {
    padding: 60px 0;
  }

  .cta-line-btn {
  width: 100%;
  font-size: clamp(14px, 4vw, 20px); /* ← 自動で縮む */
  padding: clamp(12px, 4vw, 18px) clamp(16px, 5vw, 24px);
  white-space: nowrap; /* ← 改行させない */
  }

  /* ===== 回転テキスト ===== */

  .circle-text {
    position: absolute;
    left: -320px;
    top: -200px;
    width: 500px;
    height: 500px;
  }

  .circle-text text {
  font-size: 32px;
  letter-spacing: 0.1em; /* ← 10% */
  }

  .circle-text-training {
    display: none;
  }

  /* ===== Concept ===== */
  .philosophy {
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    position: relative;

  }

  /* テキスト */
  .philosophy-text {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0 40px; 
    text-align: left;
    line-height: 2;
    position: relative;
    z-index: 2;
  }

  .philosophy-text h2 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.8;
  }

  .philosophy-text p {
    font-size: 16px;
    line-height: 1.8 !important;
  }

  /* ===== 画像 ===== */

  /* ① 右上 */
.ph1 {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 10%;
  width: 120px;
  height: auto; /* ← 高さ固定やめる */
}

.ph2,
.ph3 {
    position: static; 
    width: 120px;
    height: auto;
}

/* ② 左下 */
/* ③ 右下 */
 .ph-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .ph3 {
  transform: translateY(-30px);
}

  /* ===== ABOUT ===== */

  .about .section-title {
    text-align: left;       /* ← 左揃え */
    font-size: 22px;
    margin-bottom: 20px;  
    max-width: 300px;
  }

  .about > p {
    margin: 0 0 40px;       /* ← 上余白を詰める */
    font-size: 16px;
    line-height: 2.5;
  }

  /* ===== カード全体 ===== */
  .feature-grid {
    grid-template-columns: 1fr; /* ← 1列（縦並び） */
    gap: 30px;
    max-width: 768px;
    margin-bottom: 50px;
  }

  /* ===== カード ===== */
  .feature-card {
    width: 100%;           /* ← 幅いっぱい */
    padding: 30px;
    border-radius: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;   /* ← 中央揃え */
    text-align: center;
    gap: 20px;

    min-height: 320px;
  }

  /* ===== カード内構造 ===== */
  .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* 画像 */
  .card-content img {
    order: 1;
    width: 120px;
    margin: 0 auto;
  }

  /* タイトル */
  .feature-card h3 {
    order: 2;
    font-size: 18px;
    text-align: center;
  }

  /* テキスト */
  .card-content p {
    order: 3;
    margin-left: 0;        /* ← 横レイアウトの名残を消す */
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    max-width: 280px;
  }

 /* ===== 全体 ===== */
  .career {
    background-size: cover;
    padding-top: 30px;
    padding-bottom: 60px;
  }

  /* ===== 上段 ===== */
  .career-head {
    margin: 0 auto 60px;
    text-align: left;
  }

  .career .section-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .career-head-text {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .career-lead,
  .career-sub {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ===== イラスト ===== */
  .career-illust {
    position: static; /* ← absolute解除が超重要 */
    margin-top: 20px;
    text-align: center;
  }

  .career-illust img {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
  }

  /* ===== カード ===== */
  .career-cards {
    gap: 100px;
  }

  .career-card {
    max-width: 100%;
    padding: 24px;
    border-radius: 30px;
  }

  .career-card h3 {
    font-size: 18px;
  }

  .career-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ===== ラベル ===== */
  .career-label {
    font-size: 22px;
    padding: 4px 10px;
    left: 10px;
    transform: translateY(-50%);
  }

  /* ===== 矢印 ===== */
  .career-card::after {
    bottom: -80px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 50px solid #1ED1D8;
  }

  /* ===== 下メッセージ ===== */
  .career-message {
    margin-top: 40px;
  }

  .career-message h3 {
    font-size: 18px;
    max-width: 200px;
  }

  .career-message li {
    font-size: 14px;
  }

  /* ===== 求人の特徴 ===== */
  .appeal {
    padding: 40px 0;
  }

  /* ===== 見出し ===== */
  .appeal-head {
    text-align: center; 
    margin: 0 auto 30px;
    padding: 0 ; 
  }

  .appeal-sub {
    font-size: 14px;
    text-align: center;
    margin-bottom: 10px;
  }

  .appeal-head .section-title {
    font-size: 20px;
    text-align: left;
    line-height: 1.4;
  }

  /* ===== グリッド ===== */
  .appeal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  }

  /* ===== カード ===== */
  .appeal-card {
    width: 100%; 
    max-width: 140px;
    margin: 0 auto;
    height: auto; /* ← 高さ固定やめる */
    aspect-ratio: 4 / 5;

    border-radius: 20px;

    justify-content: center; /* ← 中央寄せ */
  }

  /* 画像 */
  .appeal-card img {
    width: 60px;
  }

  /* テキスト */
  .appeal-card p {
    font-size: 10px;
  }

  .appeal-card .accent {
    font-size: 20px;
  }

/* ===== 研修制度 ===== */

  .training-head {
    padding: 20px 0;
  }

  .training-head .section-title {
    font-size: 24px;
  }

  .training-lead {
    font-size: 14px;
    line-height: 2;
  }

  .training-steps {
    padding: 0 16px;
    margin-bottom: 60px;
  }

  /* ★カードを横長に統一 */
  .training-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 80px;        /* ← 横の余白を削除 */
    padding: 16px;
    border-radius: 24px;   /* 少しコンパクトに */
  }

  /* ★タイトル調整 */
  .training-card h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* ★ラベル調整 */
  .training-label {
    font-size: 20px;
    padding: 4px 14px;
    left: 10px;
  }

  /* ★リスト */
  .list-title {
    font-size: 13px;
    line-height: 1.2;
  }

  .list-desc {
    font-size: 12px;
    line-height: 1.2;
  }

  /* ★矢印のサイズ調整 */
 .training-card::after {
  content: "";
  position: absolute;
  bottom: -92px; /* ← 高さ分ずらす */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;

  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 43px solid #1ED1D8;
}

.training-card.middle::after {
  border-top: 43px solid #1EA8E2;
}

/* ===== 社員の声 ===== */

  .voice .inner {
    margin: 0 auto;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* ★ Swiper */
  .voice-swiper {
    overflow: visible; 
    padding-bottom: 20px; 
  }

  .swiper-slide {
  display: flex;
  justify-content: center;
  }

  .voice-swiper .swiper-slide {
  width: auto;
  display: flex;
  justify-content: center;
  }

  .voice-progress-wrap {
    display: none;
  }

  /* ★ カード（縦レイアウト） */
  .voice-card {
    flex-direction: column; /* ← 縦並び */
    align-items: center;
    gap: 20px;
    width: 250px;
    max-width: none; 
    min-height: auto;
    padding: 20px;
    border-radius: 20px;
  }

  /* ★ 画像 */
  .voice-card img {
    width: 100px;
    height: 100px;
    padding: 4px;
  }

  /* ★ テキスト中央寄せ */
  .voice-text {
    align-items: center;
    text-align: left; /* ← 画像っぽくしたいならleftでもOK */
    width: 100%;
  }

  /* ★ タイトル */
  .voice-card h3 {
    width: 100%;
    font-size: 16px;
    margin-bottom: 0;
    position: relative;
  }

  /* ★ 下線 */
  .voice-card h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #1D1D1F;
    margin-top: 2px;
  }

  /* ★ 本文 */
  .voice-card p {
    font-size: 12px;
    line-height: 1.2;
  }

  /* ★ プログレスバー余白 */
  .voice-progress-wrap {
    padding: 0 20px;
  }

  /* ===== 採用セクション（スマホ） ===== */

  .recruit-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  /* ★ 横並び → 縦並び */
  .recruit-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .recruit-col {
    gap: 12px;
  }

  .recruit-item h3 {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .recruit-item p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* ★ フロー */
  .recruit-flow {
    margin-top: 50px;
  }

  .flow-title {
    font-size: 20px;
    margin-bottom: 30px;
  }


  /* ===== フロー画像横スクロール ===== */

  .flow-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-right: 0;
  }

  .flow-scroll img {
    width: 300%;        /* ← 横長維持 */
    height: auto;      /* ← 好きな高さに調整 */
    max-width: none;    
  }

  /* スクロールバー消す（任意） */
  .flow-scroll::-webkit-scrollbar {
    display: none;
  }

  .message {
    padding: 60px 16px;
  }

  /* ★ 縦並び＋順番変更 */
  .message-content {
    flex-direction: column;
    gap: 30px;
  }

  /* ★ テキストを上に */
  .message-text {
    order: 1;
    width: 100%;
    height: auto;
  }

  /* ★ 画像を下に */
  .message-img {
    order: 2;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* ★ タイトル */
  .message-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  /* ★ 本文 */
  .message-text p {
    font-size: 14px;
    line-height: 2;
  }

/* ===== フッター ===== */

   .footer {
    min-height: 300px;
    display: flex;
    padding-top: 30px;
  }

  .footer .inner {
    gap: 30px;
    margin: auto;
  }

  /* ★ ロゴ縮小 */
  .footer-logo img {
    width: 200px;
  }

  /* ★ SNSアイコン縮小 */
  .sns-link {
    width: 48px;
    height: 48px;
  }

  .sns-link img {
    width: calc(100% - 12px);
    height: calc(100% - 12px);
  }

  /* ★ SNS間隔少し詰める */
  .footer-sns {
    gap: 15px;
  }

  /* ===== CTAボタン ===== */
.cta-area {
  text-align: center;
  padding: 30px 0 30px;
}

.cta-line-btn img {
  width: 30px;
  height: auto;
  display: block;
}

.cta-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 440px;
  max-width: 90%;
  margin: 0 auto;
  padding: 18px 40px;
  background: #06C755;
  color: #fff;
  border-radius: 60px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(0,0,0,0.5);
  transition: 0.3s;
}

.cta-line-btn:hover {
  background: #06C755;
  transform: translateY(-3px);
}


  /* ===== CTAテキスト ===== */
.cta-text {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-text::before,
.cta-text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 2px;           /* ← 線の太さ */
  background: #1D1D1F;      /* ← 線の色 */
}

.cta-text::before {
  right: 100%;
  margin-right: 6px;
  transform: rotate(55deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Crect x='2' y='9' width='10' height='2.5' rx='2' fill='%23333'/%3E%3Crect x='18' y='8' width='8' height='3' rx='2' fill='%23333'/%3E%3Crect x='32' y='10' width='11' height='2' rx='2' fill='%23333'/%3E%3Crect x='48' y='9' width='7' height='2.8' rx='2' fill='%23333'/%3E%3C/svg%3E");
}

.cta-text::after {
  left: 100%;
  margin-left: 6px;
  transform: rotate(-55deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='20'%3E%3Crect x='3' y='9' width='9' height='2.8' rx='2' fill='%23333'/%3E%3Crect x='17' y='10' width='12' height='2' rx='2' fill='%23333'/%3E%3Crect x='34' y='8' width='8' height='3' rx='2' fill='%23333'/%3E%3Crect x='47' y='9' width='10' height='2.4' rx='2' fill='%23333'/%3E%3C/svg%3E");
}

/* ===== 固定LINEボタン ===== */
.line-btn img {
  width: 20px;
  height: auto;
  display: block;
}

.line-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #22c55e;
  color: #fff;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  border-top-left-radius: 30px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

}
