/* ===== リセット & 基本設定 ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden; /* 横スクロール防止 */
  font-family: "Noto Sans JP", sans-serif;
}
/* ファーストビュー */
.fv {
  position: relative;
  height: 100vh;
  overflow:hidden;
}
.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.fv-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fvSlide 18s infinite;
}
/* 黒の透かし */
.fv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.51); /* ← 黒51% */
}
.slide1 {
  background-image: url("image/tenshin-fv02.png");
  animation-delay: 0s;
}

.slide2 {
  background-image: url("image/tenshin-fv01.png");
  animation-delay: 6s;
}

.slide3 {
  background-image: url("image/tenshin-fv03.png");
  animation-delay: 12s;
}
@keyframes fvSlide {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}
/* FVロゴ背景 */
.fv-logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 80px;
  background: #fff;
  padding: 0 40px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  align-items: center;
  z-index: 10;
}

/* ロゴ文字 */
.fv-logo {
  font-weight: 700;
  font-size:16px;
}

/* キャッチコピー */
.fv-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
   z-index: 10;
}

.fv-text h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.fv-sub {
  font-size: 18px;
  letter-spacing: 0.1em;
}

.fv-sub span {
  color: #c80000;
}
/* ==========================================================================
   スマホ・タブレット版（画面幅768px以下）の調整
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* 1. スライド画像の切り替え */
  /* 用意しているスマホ用画像のパス（例: image/tenshin-fv01-sp.png など）に書き換えてね！ */
  .slide1 {
    background-image: url("image/tenshin-fv02-ph.png"); /* ← ここをスマホ用画像パスに */
  }

  .slide2 {
    background-image: url("image/tenshin-fv01-ph.png"); /* ← ここをスマホ用画像パスに */
  }

  .slide3 {
    background-image: url("image/tenshin-fv03-ph.png"); /* ← ここをスマホ用画像パスに */
  }

  /* 2. ロゴ背景の調整 */
  .fv-logo-bg {
    height: 80px;       /* 少しコンパクトに */
    padding: 0 20px;    /* 左右の余白を狭める */
  }
  
  .fv-logo {
    font-size: 18px;    /* 文字をスマホサイズに */
  }

  /* 3. キャッチコピーエリアの調整 */
  .fv-text {
    padding: 0 20px;    /* 画面端に文字がくっつかないように余白を作る */
    box-sizing: border-box;
  }

  /* メインの日本語キャッチコピー */
  .fv-text h1 {
    font-size: 26px;    /* スマホで1行、または綺麗に2行で収まるサイズに */
    line-height: 1.5;   /* 改行されたときに見やすくなるよう行間を広げる */
    margin-bottom: 12px;
    font-weight: 700;
  }

  /* 英語のサブコピー */
  .fv-sub {
    font-size: 13px;    /* 小さめのスマホでもはみ出さないサイズに調整 */
    line-height: 1.6;   /* 英語が長くて改行されても重ならないようにする */
    letter-spacing: 0.05em;
  }
}
/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  transform: translateY(-100%);
  transition: 0.4s;
  z-index: 20;
}
.header-logo {
  font-weight: 700;
}
.header-nav a {
  font-weight: 600;
  color: #000;
  transition: color 0.3s ease;
}
.header-nav a:hover {
  color: #D01A1A; /* ブランドカラーに変更OK */
}
.header.show {
  transform: translateY(0);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
}

.header-nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #000;
}
/* 表示切り替え */
.pc-only { display: flex; }
.sp-only { display: none; }
/* ===== スマホメニュー（PCでは非表示） ===== */
.sp-menu {
  display: none;
}
.sp-only {
  display: none;
}
.pc-only{
  display:block;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
  /.pc-only{
    display:none;
  }
  /* ヘッダーを赤に */
  .header {
    background: #D01A1A;
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-logo {
    color: #fff;
    font-size: 16px;
  }

  .pc-only { display: none; }
  .sp-only { display: block; }

  /* ハンバーガー */
  .hamburger {
    width: 28px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 200;
  }

  .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    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;
  }

  /* スマホメニュー */
  .sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 150;
  }

  .sp-menu a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
  }

  .sp-menu.active {
    opacity: 1;
    pointer-events: auto;
  }
  /* PC用ナビはスマホでは消す */
  .header-nav {
    display: none;
  }
}
/* ===== Footer ===== */
.footer {
  background: #D01A1A;
  color: #fff;
  padding: 80px 40px 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 上段 */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-company {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em; 
  display: block;
  margin: 0 auto;
  text-align: center;
}

.footer-address {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
}

/* 横ライン */
.footer-line {
  margin: 40px auto; 
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  width: 60%; 
}

/* ナビ */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  font-weight:600;
}

.footer-nav a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {

  /* スマホ版のときだけフッターを非表示にする */
  .footer {
    display: none;
  }

}
/* ===== 中ページ ファーストビュー ===== */
.page-fv {
  position: relative;
  height: 90vh;
  min-height: 360px;
  background: url("image/tenshin-nakafv.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 文字を見やすくするための暗幕 */
.page-fv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* タイトル */
.page-fv-title {
  position: relative;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2em;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-fv {
    display: none;
  }
}
.service-intro {
  position: relative;
  background: #F4F2EC;
  padding: 120px 0;
  overflow: hidden;
}

.service-bg-slash {
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 450px;
  background: #D01A1A;
  z-index: 1;

  /* 三角形にカット */
  clip-path: polygon(
    0 0,      /* 左上（直角） */
    100% 0,   /* 右上 */
    0 100%    /* 左下 */
  );
}

.service-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* ===== 左カード ===== */
.service-cards {
  position: relative;
  width: 360px;
  height: 420px;
}

.service-card {
  position: absolute;
  background: #fff;
  padding: 24px 12px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto; 
  border-radius: 8px;
}

.card1 {
  top: 200px;
  left: 80px;
  transform: scale(0.92) rotate(6deg);
  z-index: 2;
}

.card2 {
  top: 100px;
  left: 0;
  transform: rotate(4deg);
  z-index: 3;
}

.card3 {
  top: -30px;
  left: 190px;
  transform: rotate(-9deg);
  z-index: 1;
}

/* ===== 右テキスト ===== */
.service-text {
  flex: 1;
}

.service-lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  text-align: right;
  margin-top: -30px; 
  margin-right: 120px;
}

.service-title {
  font-size: 80px;
  font-weight: 800;
  color: #D01A1A;
  margin-bottom: 0;
  margin-top: -15px; 
  text-align: right;
  margin-right: 110px;
}

.service-catch {
  display: inline-block;
  background: #D01A1A;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 14px 40px;
  margin-bottom: 30px;
  margin-top: 40px; 
}

.service-desc {
  font-size: 16px;
  font-weight:700;
  line-height: 2;
  max-width: 520px;
}
@media (max-width:768px){

  .service-intro{
    padding:80px 0 60px;
    overflow:hidden;
  }

  /* 赤い三角 */
  .service-bg-slash{
    width:240px;
    height:240px;
    top:0;
    left:0;
  }

  .service-inner{
    display:flex;
    flex-direction:column;
    gap:40px;
    padding:0 20px;
    position:relative;
  }

  /* ---------- タイトル ---------- */

  .service-text{
    order:1;
    width:100%;
    text-align:center;
  }

  .service-lead{
    margin:0;
    font-size:18px;
    line-height:1.5;
  }

  .service-title{
    font-size:67px;
    font-weight:900;
    margin:5px 0 10px;
    line-height:1;
  }
  .company-page .service-title{
  font-size: 58px; /* 好きなサイズに */
  }
  .service-catch{
    display:inline-block;
    margin:25px auto;
    padding:12px 20px;
    font-size:18px;
  }

  .service-desc{
    max-width:320px;
    margin:0 auto;
    text-align:center;
    font-size:16px;
    font-weight:800;
    line-height:1.9;
  }

  /* ---------- カード ---------- */

  .service-cards{
    order:2;
    position:relative;
    width:100%;
    height:320px;
    margin-top:30px;
  }

  .service-card{
    width:110px;
    padding:16px;
    border-radius:14px;
  }

  .service-card img{
    width:100%;
    border-radius:8px;
  }

  /* 左下 */
  .card1{
    top:100px;
    left:30px;
    width:110px;
    transform:rotate(-16deg);
    z-index:3;
  }

  /* 真ん中 */
  .card2{
    top:-20px;
    left:50%;
    width:160px;
    transform:translateX(-50%) rotate(6deg);
    z-index:2;
  }

  /* 右下 */
  .card3{
    top:160px;
    right:20px;
    left:auto;
    transform:rotate(25deg);
    z-index:1;
  }

}
.business-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

/* 各ブロック */
.business-item {
  margin-bottom: 120px;
}

/* 赤帯タイトル */
.business-heading {
  text-align: center;
  margin-bottom: 50px;
}

.business-heading span {
  display: inline-block;
  background: #D01A1A;
  color: #fff;
  font-weight: bold;
  padding: 12px 80px;
  letter-spacing: 0.1em;
}

/* 本体 */
.business-body {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* 画像 */
.business-image {
  flex: 0 0 380px;
  margin-left:30px;
}

.business-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト */
.business-text {
  flex: 1;
  margin-left: 60px;
}

.business-text p {
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}
/* 2個目・4個目だけ画像右・テキスト左 */
.business-item:nth-child(2) .business-body,
.business-item:nth-child(4) .business-body {
  flex-direction: row-reverse;
}
.business-item:nth-child(2) .business-image,
.business-item:nth-child(4) .business-image {
  margin-left: 0;
  margin-right: 30px;
}
.business-item:nth-child(2) .business-text,
.business-item:nth-child(4) .business-text {
  margin-left: 110px;
}
@media screen and (max-width: 768px) {

  .business-content {
    padding: 40px 16px;
  }

  /* 各ブロックの間隔 */
  .business-item {
    margin-bottom: 80px;
  }

  /* 赤帯 */
  .business-heading span {
    padding: 10px 40px;
    font-size: 15px;
  }

  /* 本体を縦並びに */
  .business-body {
    flex-direction: column;
    gap: 24px;
  }

  /* 画像 */
  .business-image {
    flex: none;
    width: 100%;
    margin: 0;
  }

  .business-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  /* テキスト */
  .business-text {
    margin: 20px 0 0;
    text-align: left;
  }

  .business-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* 交互レイアウト解除（超重要） */
  .business-item:nth-child(2) .business-body,
  .business-item:nth-child(4) .business-body {
    flex-direction: column;
  }

  .business-item:nth-child(2) .business-image,
  .business-item:nth-child(4) .business-image {
    margin: 0;
  }

  .business-item:nth-child(2) .business-text,
  .business-item:nth-child(4) .business-text {
    margin: 0;
  }
}
/* 全体 */
.recruit-info {
  max-width: 1100px;
  margin: 80px auto 0;
}

/* 各ブロック */
.recruit-info-item {
  margin-bottom: 80px;
}

/* 赤帯タイトル */
.recruit-info-heading {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0px; 
}

.recruit-info-heading span {
  display: inline-block;
  background: #D01A1A;
  color: #fff;
  font-weight: bold;
  padding: 14px 90px;
  letter-spacing: 0.1em;
}

/* 本体 */
.recruit-info-body {
  display: flex;
  align-items: center;
  gap: 10px;
  
}

/* 左イラスト */
.recruit-info-image {
  flex: 0 0 320px;
  margin-left: 150px;
}

.recruit-info-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右テキスト */
.recruit-info-text {
  flex: 1;
  margin-left: 120px;
}

.recruit-info-text p {
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}
@media screen and (max-width: 768px) {

  /* セクション全体 */
  .recruit-info {
    padding: 0 16px;
    margin-top: 60px;
  }

  /* 各ブロック */
  .recruit-info-item {
    margin-bottom: 60px;
  }

  /* 本体を縦並びに */
  .recruit-info-body {
    flex-direction: column;
    gap: 0;
  }

  /* 画像 */
  .recruit-info-image {
    flex: none;
    width: 70%;        /* ← ここで画像サイズ調整 */
    margin: 0 auto;    /* 中央寄せ */
  }

  /* テキスト */
  .recruit-info-text {
    margin: 20px 0 0;  /* ← 画像との間 */
    text-align: left;  /* 読みやすさ重視 */
  }

  .recruit-info-text p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* 赤帯タイトル */
  .recruit-info-heading span {
    padding: 12px 40px;
    font-size: 14px;
  }
  /* 働きやすい職場環境だけ */
.recruit-info-item:nth-child(2) .recruit-info-text {
  margin-top: -10px;   /* ← 今より小さく（0〜10pxくらいで調整） */
}
/* 働きやすい職場環境・経験者優遇だけタイトル上に余白 */
.recruit-info-item:nth-child(2) .recruit-info-heading,
.recruit-info-item:nth-child(3) .recruit-info-heading {
  margin-top: 30px;  /* ← 少し足す（20〜40pxで調整） */
}
/* 未経験大歓迎・働きやすい職場環境のテキスト下に余白 */
.recruit-info-item:nth-child(1) .recruit-info-text,
.recruit-info-item:nth-child(2) .recruit-info-text {
  margin-bottom: 30px; /* ← 少し足す（20〜40pxで調整） */
}
}
/* セクション全体 */
.recruit-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0 0 60px;
  background: transparent;
  margin-top: -40px;
}

/* 流れる本体 */
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 25s linear infinite;
}

/* 共通文字スタイル */
.marquee-track span {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 80px;
  white-space: nowrap;
}

/* 塗りつぶし文字（グレー） */
.marquee-fill {
  color: #9a9a9a;
}

/* アウトライン文字（中は透明） */
.marquee-outline {
  color: transparent;
  -webkit-text-stroke: 2px #9a9a9a;
  text-stroke: 2px #9a9a9a;
}

/* アニメーション */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {

  /* マーキー全体 */
  .recruit-marquee {
    padding: 0 0 40px;
    margin-top: -20px;
  }

  /* 流れる文字 */
  .marquee-track span {
    font-size: 40px;   /* ← 80px → 40px */
    margin-right: 40px;
    letter-spacing: 0.04em;
  }

  /* アウトラインの太さも少し細く */
  .marquee-outline {
    -webkit-text-stroke: 1px #9a9a9a;
    text-stroke: 1px #9a9a9a;
  }
}
.recruit-detail {
  max-width: 800px;
  margin: 0 auto 120px;
  padding: 0 20px;
}

.recruit-detail-title {
  text-align: center;
  margin-bottom: 40px;
}

.recruit-detail-title span {
  font-size: 20px;
  font-weight: bold;
  color: #D01A1A;
  letter-spacing: 0.15em;
  position: relative;
  padding: 0 20px;
}

.recruit-detail-title span::before,
.recruit-detail-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: #999;
}

.recruit-detail-title span::before {
  left: -100px;
}

.recruit-detail-title span::after {
  right: -100px;
}

/* ===== テーブル ===== */
.recruit-detail-table {
  border-top: 1px solid #999;
}

.recruit-detail-row {
  display: flex;
  border-bottom: 1px solid #999;
  padding: 24px 0;
}

.recruit-detail-row dt {
  width: 220px;
  font-weight: bold;
  color: #333;
}

.recruit-detail-row dd {
  flex: 1;
  margin: 0;
  color: #333;
  line-height: 1.8;
  margin-left: 90px;
}

.recruit-detail-row .note {
  font-size: 13px;
  color: #666;
}
@media (max-width: 768px) {

  .recruit-detail {
    margin: 0 auto 80px;
    padding: 0 15px;
  }

  .recruit-detail-title span {
    font-size: 18px;
  }

  .recruit-detail-title span::before,
  .recruit-detail-title span::after {
    width: 40px;
  }

  .recruit-detail-title span::before {
    left: -50px;
  }

  .recruit-detail-title span::after {
    right: -50px;
  }

  /* 1列表示 */
  .recruit-detail-row {
    display: block;
    padding: 0;
    border-bottom: 1px solid #ddd;
  }

  /* 項目名 */
  .recruit-detail-row dt {
    width: 100%;
    background: #f2f2f2;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: bold;
    box-sizing: border-box;
  }

  /* 内容 */
  .recruit-detail-row dd {
    margin: 0;
    padding: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .recruit-detail-row .note {
    font-size: 13px;
  }

}
.contact-page .service-intro {
  display: none;
}
/* ==========================
   CONTACT
========================== */

.contact-section {
  padding: 100px 20px;
  text-align: center;
}

/* タイトル */

.contact-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.contact-heading {
  background: #0b2747;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 12px 180px;
  line-height: 1;
}

.bolt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  object-fit: contain;
  z-index: 2;
}

.bolt-left {
  left: -5px;
}

.bolt-right {
  right: -5px;
}

/* 説明文 */

.contact-text {
  max-width: 650px;
  margin: 0 auto 80px;
  text-align: center;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 600;
  color: #222;
}

/* フォーム背景 */

.contact-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #FAF1DA;
  padding: 70px;
}

/* フォーム */

.form-group {
  margin-bottom: 40px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.form-group input {
  width: 320px;
  height: 45px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 0 10px;
  font-size: 15px;
}

.form-group textarea {
  width: 100%;
  height: 250px;
  border: 1px solid #cfcfcf;
  background: #fff;
  padding: 15px;
  font-size: 15px;
  resize: vertical;
}

/* ボタン */

.submit-btn {
  display: block;
  margin: 50px auto 0;
  width: 180px;
  height: 55px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(
    to bottom,
    #16395f 0%,
    #0b2747 100%
  );
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.submit-btn:hover {
  opacity: .8;
}
/* =========================
   Contact レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {

  .contact-section {
    padding: 60px 16px;
  }
  .contact-form-wrap {
    max-width: 350px;   /* ← ここで小さくする */
    margin: 0 auto;     /* ← 中央寄せ */
    padding: 30px 20px;
  }
  /* ===== タイトル ===== */
  .contact-title-wrap {
    width: 100%;
    margin-bottom: 24px;
  }

  .contact-heading {
    font-size: 20px;
    padding: 12px 40px;   /* 左右に余白を戻す */
    width: fit-content;  /* ← 中身分の幅にする */
    margin: 0 auto; 
  }

  /* ボルトはスマホでは非表示 */
  .bolt {
    display: none;
  }

  /* ===== 説明文 ===== */
  .contact-text {
    font-size: 14px;
    margin-bottom: 40px;
    padding: 0 4px;
  }
  /* ===== フォーム背景 ===== */
  .contact-form-wrap {
    padding: 30px 20px;
  }

  /* ===== フォーム ===== */
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }

  .form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 140px;
  }

  /* ===== 送信ボタン ===== */
  .submit-btn {
    width: 70%;
    padding: 14px 0;
    font-size: 16px;
    border-radius: 30px;
  }
}
.company-profile {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* 共通ブロック */
.company-block {
  margin-bottom: 80px;
}

/* タイトル帯 */
.company-title-bar {
  width: 260px;
  margin: 0 auto 40px;
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.company-title-bar.red {
  background: #D01A1A;
  color: #fff;
}

/* 代表挨拶 */
.company-message {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}

.company-image img {
  width: 340px;
  height: auto;
  display: block;
  margin-left:90px;
}

.company-text {
  flex: 1;
  font-size: 15px;
  line-height: 2;
  margin-left:100px;
}

/* 理念 */
.company-philosophy {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.company-philosophy h3 {
  font-size: 28px;
  margin-bottom: 0;
}

.company-sub {
  margin-bottom: 30px;
  font-weight: bold;
}

.company-philosophy p {
  line-height: 2;
  font-size: 15px;
}
@media screen and (max-width: 768px) {

  /* ===== 共通 ===== */
  .company-block {
    margin-bottom: 60px;
  }

  .company-title-bar {
    width: 200px;
    margin-bottom: 30px;
    font-size: 14px;
  }

  /* ===== 代表挨拶：縦並び ===== */
  .company-message {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .company-image img {
    width: 220px;      /* 少し小さく */
    margin-left: 0;    /* PC用マージン解除 */
  }

  .company-text {
    margin-left: 0;    /* PC用マージン解除 */
    text-align: left;
    font-size: 14px;
    line-height: 1.9;
  }

  /* ===== 理念 ===== */
  .company-philosophy {
    padding: 0 10px;
  }

  .company-philosophy h3 {
    font-size: 22px;
  }

  .company-sub {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .company-philosophy p {
    font-size: 14px;
    line-height: 1.9;
  }
}
/*==============================
会社概要
==============================*/

.outline{
    padding:20px 20px;
}

/* タイトル */

.outline-title-wrap{
    position:relative;
    width:fit-content;
    margin:0 auto 70px;
}

.outline-title{
    background:#4A6D8C;
    color:#fff;
    font-size:25px;
    font-weight:bold;
    letter-spacing:.1em;
    padding:6px 140px;
    text-align:center;
}

.outline-bolt{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:52px;
    height:52px;
    object-fit:contain;
}

.outline-bolt-left{
    left:-9px;
}

.outline-bolt-right{
    right:-8px;
}

/* テーブル */

.outline-table{
    max-width:800px;
    margin:0 auto;
    border-top:1px solid #bfbfbf;
}

.outline-row{
    display:grid;
    grid-template-columns:220px 1fr;
    border-bottom:1px solid #bfbfbf;
}

.outline-head{
    font-size:18px;
    font-weight:600;
    text-align:center;
    padding:28px 20px;
}

.outline-data{
    font-size:16px;
    font-weight:500;
    line-height:1.8;
    padding:28px 20px 28px 80px;
}
body.index-page .outline {
  padding-bottom: 80px; /* 好きな量に調整 */
}
@media screen and (max-width: 768px) {

  /* タイトル */
  .outline-title-wrap{
    margin-bottom:40px;
  }

  .outline-title{
    font-size:18px;
    padding:8px 80px;
  }

  .outline-bolt{
    width:36px;
    height:36px;
  }

  /* テーブル全体 */
  .outline-table{
    border-top:none;
  }

  /* 1行ずつ縦並び */
  .outline-row{
    display:block;
    border-bottom:1px solid #bfbfbf;
  }

  /* 見出し：横いっぱいのグレー帯 */
  .outline-head{
    width:100%;
    text-align:left;
    font-size:15px;
    padding:12px 16px;
    background:#e6e6e6;
    border-right:none;
  }

  /* データ */
  .outline-data{
    font-size:14px;
    padding:14px 16px 20px;
    line-height:1.8;
  }
  .outline-bolt-left {
    left: 8px;   /* ← 好みで調整（例：0px / 6px / 10px など） */
  }
  .outline-bolt-right {
    right: 8px;   /* ← 好みで調整（0px / 6px / 10px など） */
  }
  .company-image {
    margin-top:10px;
    margin-bottom:10px;
  }
  .company-image img {
    width: 100%;
    max-width: 300px; /* ← ここを大きくする */
    margin: 0 auto;
    display: block;
  }
}
/* ===========================
   PARALLAX
=========================== */

.parallax-section {
  width: 100%;
  margin-top: 0px;   /* ← 上を縮める */
  margin-bottom: 100px;
}

.parallax-bg {
  width: 100%;
  height: 450px;

  background-image: url("image/tenshin-para.png"); /* ←画像を入れる */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* パララックス */
  background-attachment: fixed;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .parallax-section {
    margin-bottom: 60px; /* 下余白を少し縮める */
  }

  .parallax-bg {
    height: 260px;               /* ← スマホ用高さ */
    background-attachment: scroll; /* ← パララックス無効 */
    background-position: center top; /* 見切れ防止 */
  }
}
.job-block {
  padding: 80px 20px;
  background: #F4F2EC;
}

.job-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* 左：丸ポイント */
.job-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.job-point {
  text-align: center;
}

.job-point-circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 1px solid #999;
  background: #fff;

  display: flex;
  flex-direction: column;   /* ← 縦並び */
  align-items: center;
  justify-content: center;
  gap: 10px;                /* 画像と文字の間 */
}

.job-point-circle img {
  max-width: 150px;
  height: auto;
}

.job-point-circle p {
  font-size: 14px;
  font-weight: bold;
  color: #D01A1A;
  text-align: center;
  line-height: 0.9;
  margin: -10px 0 0;
}
.job-point:nth-child(3) {
  transform: translate(120px, -20px);
}
/* 右：テキスト */
.job-content {
  flex: 1;
}

.job-sub {
  color: #D01A1A;
  font-size:20px;
  font-weight: 800;
  margin: 0 0 0 110px;
}

.job-title {
  font-size: 80px;
  font-weight: 900;
  color: #D01A1A;
  line-height: 0.8;
  margin: 0 0 0 60px;
}

.job-lead {
  color: #D01A1A;
  font-size:20px;
  font-weight: 800;
  margin: 4px 0 30px 190px;
}

.job-text {
  font-size: 18px;
  font-weight:600;
  line-height: 2;
  margin: 40px 0 30px 60px;
}

/* ボタン */
.job-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: #fff;
  border-radius: 30px;
  color: #D01A1A;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  margin-top: 40px;
  margin-left: 70px;
  transition: all 0.3s ease;
}
.job-btn-text {
  font-size: 25px; /* 好きなサイズに */
  font-weight: 700; /* 少し強調 */
}
.job-btn-arrow {
  background: #D01A1A;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.job-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background: #D01A1A;
  color: #fff;
}

.job-btn:hover .job-btn-arrow {
  background: #fff;
  color: #D01A1A;
}
@media (max-width:768px){

  .job-block{
    padding:60px 20px;
  }

  .job-block-inner{
    display:flex;
    flex-direction:column-reverse; /* ←右(文章)→左(丸)の順 */
    gap:40px;
  }

  /* ---------- タイトル ---------- */

  .job-content{
    width:100%;
    text-align:center;
  }

  .job-sub{
    margin:0;
    font-size:20px;
  }

  .job-title{
    margin:10px 0;
    font-size:64px;
    font-weight:800;
    
  }

  .job-lead{
    margin:0;
    font-size:20px;
  }

  .job-text{
    margin:60px auto 0;
    font-size:18px;
    line-height:1.8;
    text-align:center;
    max-width:330px;
  }

  /* ---------- 丸 ---------- */

  .job-points{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:6px;
    justify-items:center;
    margin-top:0;
    transform: translateY(-10px); 
  }

  /* 真ん中を一番上へ */
  .job-point:nth-child(2){
    grid-column:1 / 3;
    justify-self:center;
    order:-1;
  }

  .job-point:nth-child(1){
    transform:none;
  }

  .job-point:nth-child(3){
    transform:none;
  }

  .job-point-circle{
    width:180px;
    height:180px;
  }

  .job-point-circle img{
    max-width:98px;
  }

  .job-point-circle p{
    font-size:13px;
    font-weight:700;
    line-height:1.2;
    margin:0;
  }

  /* ---------- ボタン ---------- */

  .job-btn{
    display:flex;
    justify-content:space-between;
    align-items:center;

    width:280px;
    margin:40px auto 0;
    padding:14px 22px;
    
  }

  .job-btn-text{
    font-size:22px;
  }

  .job-btn-arrow{
    width:42px;
    height:42px;
    font-size:18px;
  }

}

.overview-intro {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
}

.overview-intro-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* 背景カード */
.overview-bg-red {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #D01A1A;
  z-index: 0;
}

.overview-bg-cream {
  position: absolute;
  bottom: -30px;
  right: 70px;
  width: 60%;
  height: 60%;
  background: #F4F2EC;
  z-index: 0;
}

/* 左側 */
.overview-content {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 60px;
  color: #fff;
}

.overview-sub {
  font-size: 20px;
  font-weight:800;
  margin-left: 18px;
  
}
.overview-title {
  font-size: 70px;
  font-weight: 900;
  margin-top: -20px;
}
.overview-lead {
  font-size: 20px;
  font-weight:800;
  margin-top: -15px;
  margin-left: 95px;
}

/* 白カード */
.overview-message {
  position: relative;
  background: #fff;
  color: #000;
  padding: 30px;
  margin: 40px 0;
  line-height: 2;
  border: 3px solid #000;
}

/* テープ */
.overview-tape {
  position: absolute;
  width: 100px;
}

.tape-top {
  top: -38px;
  left: -35px;
}

.tape-bottom {
  bottom: -40px;
  right: -30px;
}
.overview-message p {
  font-weight: 600; /* ← 少し太く */
}
/* ボタン */
.overview-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #b31217;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-left: 130px;
}

.overview-btn-text {
  font-size: 20px;
  font-weight: 700;
}

/* ▶ を丸の中に */
.overview-btn-arrow {
  background: #b31217;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* ホバー演出（job-btn と揃える） */
.overview-btn:hover {
  background: #b31217;
  color: #fff;
}

.overview-btn:hover .overview-btn-arrow {
  background: #fff;
  color: #b31217;
}

/* 右画像 */
.overview-images {
  position: absolute;
  top: 80px;
  right: 0;
  width: 45%;
  z-index: 1;
}

.overview-images-top {
  display: flex;
  gap: 20px;
  position: relative; 
}
.overview-image-item{
  position:relative;
  width:35%;
}
.overview-images-top img {
  width: 35%;
  height: 450px;
  object-fit: cover;
  border: 3px solid #000;
}
.overview-image-item .pin{
  position:absolute;
  width:35%;
  top:-18px;
  left:50%;
  transform:translateX(-50%)
  z-index:2;
}
.overview-images-top img:first-child {
  margin-top: -60px; /* ← 少し上へ */
}
.overview-images-top img:last-child {
  margin-top: -120px; /* ← 少し上へ */
  margin-left: 20px;
}
.overview-images-bottom {
  margin-top: -10px;
  text-align: right;
  transform: translateX(-100px); 
}

.overview-images-bottom img {
  width: 110%;
  height: 330px;
  object-fit: cover;
}
@media screen and (max-width:768px){

  .overview-intro{
    padding:0;
    overflow:hidden;
  }

  .overview-intro-inner{
    position:relative;
    padding:40px 18px 50px;
    min-height:900px;
  }

  /*====================
  背景
  ====================*/

  .overview-bg-red{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#D01A1A;
    z-index:0;
  }

  .overview-bg-cream{
    display:none;
  }

  /*====================
  タイトル
  ====================*/

  .overview-content{
    width:100%;
    padding:0;
    text-align:center;
    color:#fff;
    position:relative;
    z-index:5;
    top:40px;
  }

  .overview-sub{
    margin:0;
    font-size:16px;
  }

  .overview-title{
    margin:6px 0;
    font-size:58px;
    line-height:1;
  }

  .overview-lead{
    margin:0;
    font-size:17px;
    margin-bottom:60px;
  }

  /*====================
  左右画像
  ====================*/

  .overview-images{
    position:relative;
    width:100%;
    top:auto;
    right:auto;
    margin-top:40px;
  }

  .overview-images-top{
    position:relative;
    height:420px;
  }

  .overview-images-top img{
    position:absolute;
    width:100px;
    height:360px;
    object-fit:cover;
    border:3px solid #222;
  }

  .overview-images-top img:first-child{
    left:15px;
    top:30px;
    margin:0;
  }

  .overview-images-top img:last-child{
    right:15px;
    top:3px;
    margin:0;
  }

  /*====================
  白カード
  ====================*/

  .overview-message{
    position:absolute;
    top:190px;
    left:50%;
    transform:translateX(-50%);
    width:74%;
    padding:28px 22px 80px;
    margin:0;
    background:#fff;
    border:3px solid #222;
    z-index:10;
  }

  .overview-message p{
    font-size:15px;
    line-height:1.8;
    font-weight:700;
    transform:translateY(30px);
  }

  /*====================
  テープ
  ====================*/

  .overview-tape{
    width:90px;
  }

  .tape-top{
    top:-40px;
    left:-20px;
  }

  .tape-bottom{
    right:-18px;
    bottom:-45px;
  }

  /*====================
  ボタン
  白カードの上に重ねる
  ====================*/

  .overview-btn{
    position:absolute;
    top:150px;
    right:25px;
    
    display:flex;
    justify-content:space-between;
    align-items:center;

    width:200px;
    padding:10px 16px;

    background:#fff;
    border-radius:999px;
    border: 1px solid #000; 
    z-index:20;
  }

  .overview-btn-text{
    font-size:14px;
    font-weight:700;
  }

  .overview-btn-arrow{
    width:38px;
    height:38px;
    font-size:18px;
  }

  /*====================
  後ろ姿
  ====================*/

  .overview-images-bottom{
    margin-top:-110px;
    transform:none;
    text-align:center;
    transform:translateX(-35px);
  }

  .overview-images-bottom img{
    width:120%;
    height:auto;
  }

}

/* 業務内容ブロック全体 */
.workscope-block {
  position: relative;
  background: linear-gradient(
    180deg,
    #D01A1A 0%,   /* 上 */
    #6A0D0D 100%  /* 下 */
  );
  clip-path: polygon(
    0 30%,      /* ← 下方向を大きく */
    65% 0,       /* 上辺：右に斜めで上がる */
    100% 0,     /* 右上 */
    100% 100%,  /* 右下 */
    0 88%       /* 左下：下の斜め */
  );
  padding: 120px 0 160px;
  overflow: hidden;
  z-index: 2;
}
.workscope-bg {
  background: #F4F2EC; /* ← 三角部分の色 */
  position: relative;
  overflow: hidden;
}
.workscope-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;        /* ← 下の斜めが出る高さ分 */
  background: #fff;    /* 下の斜めカットの色 */
  z-index: 0;
}
/* 中央寄せ */
.workscope-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.workscope-head {
  margin-bottom: 40px;
}
.workscope-head-float {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-160%);
  z-index: 10;
}
.workscope-head-float .workscope-sub,
.workscope-head-float .workscope-title,
.workscope-head-float .workscope-lead {
  color: #D01A1A;
}
/* 見出し */
.workscope-sub {
  color: #fff;
  font-weight: 800;
  font-size:19px;
  margin-bottom: -6px;
  margin-left: 20px; 
}

.workscope-title {
  font-size: 85px;
  font-weight: 900;
  color: #fff;
  margin: 0; /* ← 上下完全にリセット */
  line-height: 1.05;
}

.workscope-lead {
  color: #fff;
  font-size:19px;
  font-weight: 800;
  margin-top: 2px;
  margin-left: 120px;
}

/* カード */
.workscope-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 140px auto 40px;
  max-width: 800px;
}

.workscope-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;   /* ← 上下も少し広げると◎ */
  min-height: 290px; 
  box-shadow: 8px 8px 4px rgba(0, 0, 0, 0.25);
}
.workscope-card-image {
  position: relative;
}
.workscope-card img {
  width: 95%;
  border-radius: 10px;
  display: block;
  margin-left: 6px;
}
.workscope-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25); /* ← 白25％ */
  border-radius: 10px;
  pointer-events: none;
}
.workscope-card p {
  margin-top: 20px;
  font-size:20px;
  font-weight: 800;
  color: #D01A1A;
}
/* 4枚目・5枚目だけ右へ（幅は変わらない） */
.workscope-card:nth-child(4),
.workscope-card:nth-child(5) {
  transform: translateX(140px);
}
/* ボタン */
.workscope-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #b31217;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 40px;
}

/* テキスト */
.workscope-btn-text {
  font-size: 20px;
  font-weight: 700;
}

/* ▶ を丸の中に */
.workscope-btn-arrow {
  background: #b31217;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* ホバー演出（overview-btn と完全一致） */
.workscope-btn:hover {
  background: #b31217;
  color: #fff;
}

.workscope-btn:hover .workscope-btn-arrow {
  background: #fff;
  color: #b31217;
}

/* 装飾画像 */
.workscope-excavator {
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 380px;
  z-index: 5;
}

.workscope-tool {
  position: absolute;
  bottom: 20px;
  right: -10px;
  width: 250px;
}
@media screen and (max-width: 768px) {

  /* ===== 全体 ===== */
  .workscope-block{
    position: relative;
    background: linear-gradient(180deg,#D01A1A 0%, #5E0A0A 100%);
    padding: 120px 20px 60px;
    overflow: hidden;
    clip-path:none;
  }

  /* ===== クリーム斜め（左上） ===== */
  .workscope-block::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:260px;
    background:#F4F2EC;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index:1;
  }

  /* ===== タイトル（左上固定） ===== */
  .workscope-head-float{
    position:absolute;
    top:40px;
    left:20px;
    transform:none;
    z-index:10;
  }

  .workscope-title{
    font-size:52px;
    line-height:1;
  }
  .workscope-sub{
    font-size:16px;
    margin-left:40px;
  }
  .workscope-lead{
    font-size:16px;
    margin-left:40px;
  }
  .workscope-sub,
  .workscope-lead{
    color:#D01A1A;
  }

  /* ===== カードエリア ===== */
  .workscope-cards{
    position: relative;
    margin-top: 160px;
    height: 600px; /* ←ここが“ばらけ配置の土台” */
  }

  /* 共通カード */
  .workscope-card{
    position:absolute;
    width:160px;
    min-height:200px;
    padding:16px 12px;
    box-shadow:8px 8px 12px rgba(0,0,0,.25);
  }

  /* ===== バラけ配置（ここが肝） ===== */

  .workscope-card:nth-child(1){
    top: 10px;
    left: 20px;
    transform: rotate(-3deg);
  }

  .workscope-card:nth-child(2){
    top: -60px;
    right: 20px;
    transform: rotate(3deg);
  }

  .workscope-card:nth-child(3){
    top: 240px;
    left: 30px;
    transform: rotate(-3deg);
  }

  .workscope-card:nth-child(4){
    top: 160px;
    right: 20px;
    transform: rotate(3deg);
  }

  .workscope-card:nth-child(5){
    top: 380px;
    left: 70%;
    transform: translateX(-50%) rotate(8deg);
  }

  /* ===== ボタン（下に固定感） ===== */
  .workscope-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    margin: 40px auto 0;
    width:260px;
  }
  .workscope-excavator{
    width:250px;
    bottom:60px;
    
  }
  .workscope-tool{
    width:180px;
    bottom:40px;
  }
  /* 装飾画像は軽く調整 */
  .workscope-excavator,
  {
    opacity:0.8;
    
  }
}

/* ===== 横スクロール文字 ===== */
.workscope-marquee {
  position: relative;
  margin-top:-100px;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.workscope-marquee-track {
  display: flex;
  width: max-content;
  animation: workscope-marquee 30s linear infinite;
}

.workscope-marquee-track span {
  font-size: 72px;
  font-weight: 900;
  color: #B0B0B0; /* ← 透かし感 */
  letter-spacing: 0.05em;
  margin-right: 80px;
  white-space: nowrap;
}

/* アニメーション */
@keyframes workscope-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* 2つ目・4つ目だけアウトライン文字 */
.workscope-marquee-track span:nth-child(2),
.workscope-marquee-track span:nth-child(4) {
  color: transparent;                 /* 中を消す */
  -webkit-text-stroke: 1px #000;      /* 黒のふち */
  text-stroke: 2px #000;              /* 念のため */
}
@media screen and (max-width: 768px) {
  .workscope-marquee {
    margin-top: -60px;
  }

  .workscope-marquee-track span {
    font-size: 40px;
    margin-right: 40px;
  }
}

