/*
Theme Name: Custom Top
Theme URI: https://example.com/
Author: あなたの名前
Author URI: https://example.com/
Description: Figmaデザインを元にしたカスタムTOPページテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-top
Tags: custom, figma, top
*/

/* === モダンアニメーション - 光とグレーベース === */

/* GPU加速設定 */
* {
  will-change: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.animate-fade-in,
.animate-slide-up,
.animate-bounce,
.light-beam,
.light-ray,
.particles-container,
.logo-image {
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

/* キーフレームアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes lightBeam {
  0% {
    transform: translateX(-100%) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(100vw) rotate(45deg);
    opacity: 0;
  }
}

@keyframes lightRay {
  0% {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    transform: translateX(-50%) scaleY(0);
    opacity: 0;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    border-color: transparent;
  }
  51%,
  100% {
    border-color: rgba(255, 255, 255, 0.8);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes logoGlow {
  0%,
  100% {
    filter: brightness(0) invert(1)
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  }
  50% {
    filter: brightness(0) invert(1)
      drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* アニメーションクラス */
.animate-fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 1s ease-out forwards;
}

.animate-bounce {
  animation: bounce 2s infinite;
  z-index: 0;
}

/* 光エフェクト */
.light-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.light-beam {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  top: 20%;
  left: -200px;
  animation: lightBeam 4s ease-in-out infinite;
}

.light-beam-2 {
  top: 40%;
  animation-delay: 1.5s;
  animation-duration: 5s;
}

.light-beam-3 {
  top: 60%;
  animation-delay: 3s;
  animation-duration: 4.5s;
}

.light-ray {
  position: absolute;
  width: 1px;
  height: 100vh;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  left: 50%;
  top: 0;
  animation: lightRay 3s ease-in-out infinite;
}

.light-ray-2 {
  left: 25%;
  animation-delay: 1s;
}

.light-ray-3 {
  left: 75%;
  animation-delay: 2s;
}

/* モダングラデーション背景 */
.modern-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(47, 47, 47, 0.95) 0%,
    rgba(60, 60, 60, 0.9) 25%,
    rgba(40, 40, 40, 0.95) 50%,
    rgba(55, 55, 55, 0.9) 75%,
    rgba(45, 45, 45, 0.95) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
  z-index: 0;
}

/* パーティクル効果 */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

/* ロゴエフェクト */
.logo-container {
  transition: all 0.3s ease;
}

.logo-image {
  transition: all 0.3s ease;
  animation: logoGlow 3s ease-in-out infinite;
  filter: brightness(0) invert(1); /* SVGを白色に変換 */
}

.logo-container:hover .logo-image {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
}

/* タイピングエフェクト */
.typing-text {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  animation: typing 2s steps(30) forwards, blink 1s infinite;
}

/* メニュー項目のグラスモーフィズム */
.menu-item {
  position: relative;
  padding: 8px 16px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.menu-item:hover a {
  color: rgba(255, 255, 255, 0.9);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .light-beam {
    width: 150px;
    animation-duration: 3s;
  }

  .particle {
    width: 1px;
    height: 1px;
  }

  .animate-fade-in,
  .animate-slide-up {
    animation-duration: 0.8s;
  }

  .typing-text {
    animation-duration: 1.5s;
  }

  .header-wrap .header-kv {
    padding-left: 20px;
    max-width: 90%;

    img {
      width: 100%;
      max-width: 280px;
    }
  }

  .header-wrap .header-menu {
    right: 20px;
    bottom: 20px;

    .menu-text {
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;

      p {
        padding: 4px 8px;
        margin: 2px 0;
        font-size: 12px;
      }
    }
  }

  .header-wrap .scroll {
    left: 20px;
    bottom: -180px;

    p {
      font-size: 12px;
    }
  }

  .scroll {
    left: 20px !important;
    bottom: -180px !important;
    z-index: 1;
  }

  .menu-item {
    padding: 6px 12px;
    font-size: 12px;
  }

  .modern-gradient-bg {
    background-size: 200% 200%;
  }
}

@media (max-width: 480px) {
  .header-wrap .header-kv img {
    width: 100%;
    max-width: 280px;
  }

  .fv-text p {
    font-size: 14px;
  }

  .header-menu .menu-text {
    flex-direction: column;

    p {
      font-size: 11px;
      padding: 3px 6px;
    }
  }

  .light-beam {
    width: 100px;
    height: 1px;
  }

  .light-ray {
    width: 0.5px;
  }
}

/* 高解像度ディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: brightness(0) invert(1); /* 高解像度でも白色を維持 */
  }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  .modern-gradient-bg {
    background: linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.98) 0%,
      rgba(35, 35, 35, 0.95) 25%,
      rgba(25, 25, 25, 0.98) 50%,
      rgba(40, 40, 40, 0.95) 75%,
      rgba(30, 30, 30, 0.98) 100%
    );
  }

  .menu-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-item:hover {
    background: rgba(255, 255, 255, 0.15);
  }
}

/* 動作軽減設定のサポート */
@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-slide-up,
  .animate-bounce,
  .light-beam,
  .light-ray,
  .typing-text,
  .logo-image {
    animation: none;
  }

  .logo-image {
    filter: brightness(0) invert(1) !important; /* アニメーション無効時も白色を維持 */
  }

  .particles-container {
    display: none;
  }

  .modern-gradient-bg {
    animation: none;
    background: rgba(47, 47, 47, 0.95);
  }
}

/* --- レスポンシブ対応の全体レイアウト --- */
/* 全セクションに適用される共通ルール */
.blog-flow,
.blog-problems,
.blog-solutions,
.blog-process,
.blog-documentation-details,
.blog-web-maintenance,
.blog-customer-image,
.blog-benefits-losses,
.blog-ceo-message,
.blog-learning-pricing,
.blog-consultation,
.blog-contact {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0 !important;
  padding: 0 20px 0 20px;
  box-sizing: border-box;
}

/* 1024px幅の固定サイズ要素をレスポンシブ化 */
[style*="width: 1024px"],
.blog-phone-contact-background {
  width: 100% !important;
  max-width: 1024px !important;
  margin: 0 auto !important;
}

/* --- レイアウト・配色・フォント例 --- */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background: #fff;
}
.body-wrap {
  width: 100%;
  margin: 0 auto; /* 中央寄せしつつ幅制限 */
}

header {
  display: flex;
  width: 100%;
  height: 100vh; /* 画面の高さ（ビューポートの高さ）に合わせる */
  justify-content: center;
  align-items: center;
  position: relative;

  background: white;
}

.header-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;

  .header-kv {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 3;
    text-align: left;
    max-width: 1200px;
    padding-left: 60px;

    img {
      width: 700px;
      filter: brightness(1.1) contrast(1.1);
    }
  }

  .fv-text {
    text-align: left;
    margin-top: 20px;

    p {
      margin: 5px 0;
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
  }

  .header-menu {
    position: absolute;
    right: 98px;
    bottom: 32px;
    width: 100%;

    .menu-text {
      width: 100%;
      display: flex;
      justify-content: end;
      flex-direction: row;
      gap: 8px;

      p {
        padding: 0 8px;
        margin: 0 4px;
      }
    }
  }

  .scroll {
    position: absolute;
    left: 98px;
    bottom: 32px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);

    p {
      margin: 0;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
    }
  }
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  clip-path: url(#ngm-logo-clip);
  /* transform: scale(0.5);  */
  transform-origin: center center;
  opacity: 0.3;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.sec-mar {
  width: 100%; /* 親要素の幅いっぱい */
  min-height: 500px;
  background-image: url("./assets/svg/sec-mar-bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  .sec-mar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 72px 16px;
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    .sec-mar-text {
      font-size: 48px;
      .catch-wrap {
        display: flex;
        flex-direction: column;
        gap: 32px;
      }
      .serif {
        font-family: "Noto Serif JP", serif;
        font-weight: 400;
      }
      .strong {
        font-size: 56px;
      }
      .web-wrap {
        display: flex;
        align-items: center;
        margin-bottom: 32px;
      }
      p {
        margin: 0;
      }
      .line {
        display: inline-block;
        text-align: center;
        font-weight: bold;
        background-color: #333333;
        color: white;
      }

      /* PC版専用のフォントサイズ */
      @media (min-width: 769px) {
        .line {
          font-size: 56px;
        }
      }

      .detail {
        max-width: 615px;
        font-size: 18px;
      }
    }
    .sec-mar-icon-list {
      display: flex;
      flex-direction: row;
      .sec-mar-icon-hp {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 8px;
        background-image: url(./assets/svg/hp-icon.svg);
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .sec-mar-icon-hp:hover {
        transform: scale(1.05);
      }

      .hp-icon-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
      }
      .sec-mar-icon-sns {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 8px;
        background-image: url(./assets/svg/sns-icon.svg);
      }
      .sec-mar-icon-pop {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 8px;
        background-image: url(./assets/svg/pop-icon.svg);
      }
    }
  }
}
.sec-marpic {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 72px 24px;
  max-width: 1152px;
  width: 100%;
  .marpic-1 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    .kick-motion {
      background-image: url(./assets/gif/kick-motion.gif);
      background-size: 120px;
      background-repeat: no-repeat;
      background-position: center;
    }
    .philosophy {
      display: flex;
      flex-direction: column;
      align-items: space-between;
      font-size: 18px;
      border: rgb(222, 222, 222) solid 1px;
      width: 504px;
      padding: 32px;
      height: fit-content;
      .bold {
        font-weight: bold;
        margin-bottom: 8px;
      }
      p {
        span {
          padding-bottom: 2px;
          margin-left: 8px;
          color: white;
          width: 24px;
          height: 24px;
          background-color: #333333;
          display: inline-flex;
          align-items: center;
          justify-content: center;
          vertical-align: baseline;
        }
      }
    }
  }
  .marpic-2 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    .telep-motion {
      background-image: url(./assets/gif/telep-motion.gif);
      background-size: 170px;
      background-repeat: no-repeat;
      background-position: center;
    }
    .philosophy {
      display: flex;
      flex-direction: column;
      align-items: space-between;
      font-size: 18px;
      border: rgb(222, 222, 222) solid 1px;
      width: 504px;
      padding: 32px;
      height: fit-content;
    }
  }
}
.marpic-3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  .muscle-motion {
    background-image: url(./assets/gif/muscle-motion.gif);
    background-size: 170px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .philosophy {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    font-size: 18px;
    border: rgb(222, 222, 222) solid 1px;
    width: 504px;
    padding: 32px;
    height: fit-content;
  }
}
.marpic-4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  .medit-motion {
    background-image: url(./assets/gif/medit-motion.gif);
    background-size: 170px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .card-merit {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    .card-wrap {
      background-color: #fafafa;
      width: 100%;
      height: 340px;
      margin-bottom: 8px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      a {
        width: 100%;
        height: 340px;
      }
    }
    .card-wrap:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
  }
}
.card {
  display: block;
  .card-wrap {
    background-color: #fafafa;
    width: 490px;
    height: 340px;
    margin-bottom: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
}

.sec-blog {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  height: 1054px;
  background-image: url(./assets/svg/sec-blog-bg.svg);
  background-size: cover;
  background-position: center;
  .sec-blog-wrap {
    margin: 0 auto;
    width: 1280px;
  }
  .sec-blog-title {
    p {
      font-size: 18px;
      margin-bottom: 32px;
    }
    button {
      font-size: 18px;
      color: white;
      background-color: #333333;
      width: fit-content;
      height: fit-content;
      padding: 8px 16px;
    }
  }
  /* Blog Card Container */
  .blog-card-container {
    position: relative;
    width: 100%;
    max-width: 1152px; /* 3記事 × 360px + ギャップ2つ × 32px = 1152px */
    overflow: hidden;
    padding: 48px 0;
  }

  .blog-card-slider {
    display: flex;
    gap: 32px;
    transition: transform 0.3s ease;
    width: calc(300% + 64px); /* 3ページ分の幅 */
    height: 400px;
    padding: 0;
  }

  .blog-card-item {
    flex: 0 0 360px; /* 固定幅でアスペクト比を保持 */
    width: 360px;
    max-width: 360px; /* 最大幅を制限してアスペクト比を保持 */
    background: #ffffff;
    overflow: hidden;
    border: rgb(222, 222, 222) solid 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }

  .blog-card-inner {
    width: 100%;
    height: 240px;
    background-color: #f5f5f5;
    background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    overflow: hidden;
  }

  .blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #333333;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 0;
  }

  .blog-card-content {
    padding: 16px;
  }

  .blog-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .blog-card-date {
    font-size: 14px;
    color: #666666;
    font-weight: 400;
  }

  /* Blog Pagination Controls */
  .blog-pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .blog-prev-btn,
  .blog-next-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #d6d6d6;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #333333;
    transition: all 0.3s ease;
  }

  .blog-prev-btn:hover,
  .blog-next-btn:hover {
    background: #333333;
    color: #ffffff;
    border-color: #333333;
  }

  .blog-prev-btn:disabled,
  .blog-next-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .blog-pagination-dots {
    display: flex;
    gap: 8px;
  }

  .blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d6d6d6;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .blog-dot.active {
    background: #333333;
  }

  .blog-dot:hover {
    background: #666666;
  }
  .page-nation {
    display: flex;
    justify-content: center;
    .circle {
      background-color: #222;
      margin: 0 8px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }
  }
}
.corporate-rogo-list {
  width: 1104px;
  padding: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  margin: 0 auto;
}

.corporate-rogo-list .rogo-scroll-container {
  display: flex;
  gap: 32px;
  animation: scrollLeft 30s linear infinite;
  white-space: nowrap;
  width: calc(212px * 16); /* ロゴ16個分の幅 */
}

.corporate-rogo-list .rogo {
  background-color: #fafafa;
  width: 180px;
  height: 96px;
  flex-shrink: 0;
  display: inline-block;
}
.sec-service {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 72px 0;
  max-width: 1152px;
  width: 100%;
  .sec-service-title {
    p {
      font-size: 32px;
      /* position: sticky; */
      margin-bottom: 32px;
      top: 56px;
    }
  }

  /* PC版では改行を非表示 */
  .mobile-br {
    display: none;
  }
  .service-card {
    width: 100%;
    margin: 0 auto;
    .card-wrap {
      height: 591px;
      background-color: white;
      border: rgb(222, 222, 222) solid 1px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      /* display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: repeat(3, 591px);
      gap: 500px; */
      /* .card {
        position: sticky;
        top: 128px;
      }
      .card1 {
        background-color: #155724;
        z-index: 1;
      }
      .card2 {
        background-color: #ccffd8;
        z-index: 2;
      }
      .card3 {
        background-color: #83af23;
        z-index: 3;
      } */
    }
    .card-wrap:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }
  }
  .service-card {
    color: #333333;
    font-size: 48px;
    display: flex;
    justify-content: ;
    .card-wrap {
      display: flex;
      gap: 32px;
      padding: 32px 64px;
      align-items: center;
      justify-content: center;
      height: 458px;
      .phone {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          height: 500px;
          width: 270px;
          margin-top: 32px;
        }
        video:not(.web-movie) {
          position: absolute;
          top: 74px;
          left: 40px;
          width: 190px;
          height: 364px;
          object-fit: cover;
          z-index: 1;
          border-radius: 0 !important;
        }

        video.web-movie {
          position: absolute;
          top: 74px;
          left: 40px;
          width: 190px;
          height: 364px;
          object-fit: cover;
          z-index: 1;
          border-radius: 16px !important;
          overflow: hidden !important;
          pointer-events: auto;
        }
      }
    }
    .serif {
      font-family: "Noto Serif JP", serif;
      font-weight: 400;
    }
    .strong {
      font-size: 56px;
    }
    .web-wrap {
      display: flex;
      align-items: center;
      margin-bottom: 32px;
    }
    p {
      margin: 0;
    }
    .line {
      display: inline-block;
      text-align: center;
      font-size: 56px;
      font-weight: bold;
      background-color: #f79e1b;
      color: white;
    }
    .detail {
      max-width: 615px;
      font-size: 18px;
    }
  }
}
.sec-recruit {
  background-color: #ffffff;
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.sec-recruit-content {
  max-width: 1152px;
  margin: 0 auto;
}

.sec-recruit-header {
  margin-bottom: 32px;
}

.sec-recruit-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.sec-recruit-cards {
  display: flex;
  gap: 24px;
  height: 366px;
}

.sec-recruit .recruit-card {
  flex: 1;
  background-color: #f6f6f6;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.sec-recruit .recruit-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.sec-recruit .recruit-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sec-recruit .recruit-title-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.sec-recruit .recruit-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.sec-recruit .recruit-description {
  flex: 1;
}

.sec-recruit .recruit-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.92px;
}
.sec-greeting {
  display: flex;
  gap: 32px;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 72px 24px;
  max-width: 1152px;
  width: 100%;
  .sec-greeting-title {
    font-size: 32px;
  }
  .greeting-wrap {
    display: flex;
    gap: 32px;
    .greeting-text {
      display: flex;
      gap: 32px;
      flex-direction: column;
    }
    p {
      margin: 0;
    }
    .greeting-photo {
      background-color: #222;
      width: 552px;
      height: 390px;
      flex-shrink: 0;
      img {
        width: 552px;
        transform: scaleX(-1);
      }
    }
  }
}

/* お問い合わせフォーム */
.sec-contact {
  background-color: #fafafa;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 72px 0;
}

.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 884px;
  width: 884px;
}

.contact-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.contact-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-table {
  border-top: 1px solid #d7d8db;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.form-row {
  border-bottom: 1px solid #d7d8db;
}

.form-label {
  padding: 18px 12px;
  background-color: #fafafa;
  border-right: none;
  width: 220px;
  vertical-align: center;
  text-align: left;
}

.form-label-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
}

.form-required {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-optional {
  background-color: #ffffff;
  color: #797d86;
  border: 1px solid #c9cbcf;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-input-cell {
  padding: 18px 12px;
  background-color: #fafafa;
  width: auto;
  vertical-align: center;
}

.form-input,
.form-select {
  width: 300px;
  height: 48px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-select::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.form-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  resize: vertical;
  vertical-align: top;
  box-sizing: border-box;
}

.form-textarea::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.form-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-bottom: 24px;
}

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.form-checkbox {
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #333333;
}

.form-note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  flex-grow: 1;
}

.form-note-link {
  color: #1782cf;
  text-decoration: none;
}

.form-note-link:hover {
  text-decoration: underline;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-submit {
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  cursor: pointer;
  width: 322px;
  height: 63px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-submit:hover {
  background-color: #555555;
}

/* エラー・成功メッセージ */
.contact-success-message {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid #c3e6cb;
  border-radius: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.contact-error-message {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid #f5c6cb;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

.contact-error-message p {
  margin: 5px 0;
}

/* 会社概要ページのスタイル */
.company-page-wrap {
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Fixed Header - 共通スタイル */
.company-fixed-header,
.service-fixed-header,
.recruit-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding: 12px 16px;
  width: 100%;
  height: 80px;
  box-sizing: border-box;
}

/* 子ページのFixed Headerは常に表示 */
#childPageFixedHeader,
#fixedHeader {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

/* TOPページのFixed Headerは別の制御 */
#topFixedHeader {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.company-header-content,
.service-header-content,
.recruit-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  height: 100%;
}

.company-logo,
.service-logo,
.recruit-logo {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.company-logo-link,
.service-logo-link,
.recruit-logo-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.company-logo-link:hover,
.service-logo-link:hover,
.recruit-logo-link:hover {
  opacity: 0.8;
}

.company-logo-text,
.service-logo-text,
.recruit-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 304px;
}

.company-logo-title,
.service-logo-title,
.recruit-logo-title {
  font-family: "Petrona", serif;
  font-size: 0;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 800px;
}

.logo-letter-large {
  font-size: 28px;
  font-family: "Petrona", serif;
}

.logo-letter-small {
  font-size: 18px;
  font-family: "Petrona", serif;
}

.company-logo-subtitle,
.service-logo-subtitle,
.recruit-logo-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 4px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

/* PC版専用スタイル（769px以上） */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }

  .company-nav,
  .service-nav,
  .recruit-nav {
    display: flex !important;
    align-items: center;
    visibility: visible !important;
  }

  /* PC版でのナビゲーション要素を強制表示 */
  .company-header-content .company-nav,
  .service-header-content .service-nav,
  .recruit-header-content .recruit-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* company-fixed-header内のナビゲーション表示を最優先 */
  .company-fixed-header .company-nav {
    display: flex !important;
    visibility: visible !important;
  }

  /* ヘッダーのPC版メニュー表示 */
  .header-menu .menu-text {
    display: flex !important;
    width: 100% !important;
    justify-content: end !important;
    flex-direction: row !important;
    gap: 8px !important;
  }

  .header-menu .menu-text p {
    padding: 0 8px !important;
    margin: 0 4px !important;
  }

  .header-hamburger {
    display: none !important;
  }

  .header-mobile-nav {
    display: none !important;
  }
}

.company-nav,
.service-nav,
.recruit-nav {
  display: flex !important;
  gap: 36px;
  align-items: center;
  padding: 0;
  visibility: visible !important;
  position: relative;
  z-index: 100;
}

.nav-link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background-color: #f5f5f5;
  color: #2563eb;
}

.nav-link.active {
  background-color: #2563eb;
  color: white;
  font-weight: 700;
}

.nav-link-active {
  font-weight: 600;
}

/* Main Content */
.company-main {
  margin-top: 80px;
  flex: 1;
}

/* Company Hero */
.company-hero {
  background-image: url("assets/svg/header-back-image.svg");
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 64px 54px;
  position: relative;
  overflow: hidden;
}

.company-hero-content {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.company-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 32px;
  color: #333333;
  font-weight: bold;
  margin: 0;
}

/* Company Info */
.company-info {
  background-color: #ffffff;
  padding: 48px 64px 0;
}

.company-info-content {
  max-width: 1152px;
  margin: 0 auto;
}

.company-info-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding: 0;
  border: none;
}

.company-info-row:last-child {
  margin-bottom: 0;
}

.company-info-label {
  width: 120px;
  flex-shrink: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.company-info-label-regular {
  font-weight: 500;
}

.company-info-label-bold {
  font-weight: 600;
}

.company-info-value {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-weight: 400;
}

.company-address {
  margin-bottom: 16px;
}

.company-address p {
  margin: 0;
  line-height: 24px;
}

.company-tel p {
  margin: 0;
  line-height: 24px;
}

.business-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height: 24px;
}

.business-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333333;
}

.business-list li:last-child {
  margin-bottom: 0;
}

/* Company Recruit */
.company-recruit {
  background-color: #ffffff;
  padding: 72px 64px;
}

.company-recruit-content {
  max-width: 1152px;
  margin: 0 auto;
}

.company-recruit-header {
  margin-bottom: 32px;
}

.company-recruit-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.company-recruit-cards {
  display: flex;
  gap: 24px;
  height: 366px;
}

.recruit-card {
  flex: 1;
  background-color: #f6f6f6;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.recruit-card-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.recruit-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recruit-title-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  line-height: 36px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.recruit-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.recruit-description {
  flex: 1;
}

.recruit-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.92px;
}

/* Company Contact */
.company-contact {
  background-color: #fafafa;
  padding: 72px;
  display: flex;
  justify-content: center;
}

.company-contact-content {
  max-width: 884px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

/* Company Footer */
.company-footer {
  background-color: #5e6e81;
  background-image: linear-gradient(
    135deg,
    #5e6e81 0%,
    #4a5568 50%,
    #2d3748 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.company-footer-content {
  position: relative;
  z-index: 1;
  padding: 120px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 96px;
}

.footer-logo {
  width: 552px;
  margin-top: 32px;
}

.footer-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 120px;
  line-height: normal;
  color: #ffffff;
  font-weight: 900;
  margin: 0;
}

.footer-nav {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
}

.footer-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.footer-nav-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.social-link {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 300;
}

.footer-copyright p {
  margin: 0;
}

/* ハンバーガーメニューボタン */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease;
  margin: 2px 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* モバイルナビゲーション - 基本設定 */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 300px;
  height: 110vh;
  background-color: #ffffff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 100px 0 40px 0;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-sizing: border-box;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

/* モバイルナビにロゴを追加 */
.mobile-nav-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.mobile-nav-logo .company-logo {
  padding: 0;
  width: auto;
  max-width: 250px;
}

.mobile-nav-logo .company-logo-title {
  font-size: 0;
  line-height: 1.2;
  width: auto;
  max-width: 250px;
}

.mobile-nav-logo .logo-letter-large {
  font-size: 18px;
}

.mobile-nav-logo .logo-letter-small {
  font-size: 12px;
}

.mobile-nav-logo .company-logo-subtitle {
  font-size: 10px;
  line-height: 1.2;
  margin-top: 2px;
}

.mobile-nav.active {
  transform: translateX(0);
}

/* モバイルナビゲーションが開いている時のbodyスクロール制御 */
body.mobile-nav-open,
body.no-scroll {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

.mobile-nav-link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  padding: 20px 30px;
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
  width: 100%;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-nav-link:hover {
  color: #2563eb;
  background-color: #f8f9fa;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .company-fixed-header {
    padding: 0 16px;
  }

  .company-header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .company-logo {
    padding: 12px 0;
  }

  .company-logo-text {
    width: auto;

    .logo-letter-large {
      font-size: 18px;
    }

    .logo-letter-small {
      font-size: 14px;
    }
  }

  /* ハンバーガーメニューを表示 */
  .hamburger-menu {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    z-index: 1002;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .hamburger-menu .hamburger-line {
    background-color: #333333;
  }

  /* モバイル版でのみPC版ナビゲーションを非表示 */
  .company-nav,
  .service-nav,
  .recruit-nav {
    display: none !important;
    visibility: hidden !important;
  }

  /* モバイルナビゲーション - モバイル版設定 */
  .mobile-nav {
    display: flex;
    transform: translateX(-100%);
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  /* モバイルナビゲーションを左から開く形式で表示 */
  .mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 100px 0 40px 0;
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-sizing: border-box;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav.active {
    transform: translateX(0);
  }

  .mobile-nav .mobile-nav-link {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    padding: 20px 30px;
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-nav .mobile-nav-link:hover {
    background-color: #f8f8f8;
  }

  /* オーバーレイ背景 */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }

  .mobile-nav-overlay.active {
    display: block;
  }

  /* ヘッダー用ハンバーガーメニュー */
  .header-hamburger {
    position: absolute;
    top: -16px;
    right: -60px;
    z-index: 1001;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }

  .header-hamburger .hamburger-line {
    background-color: #333333;
  }

  /* ヘッダー用モバイルナビゲーション */
  .header-mobile-nav {
    display: none;
    position: fixed;
    top: -370px;
    left: 96px;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .header-mobile-nav.active {
    display: flex !important;
    transform: translateX(0);
  }

  .header-mobile-nav .mobile-nav-link {
    z-index: 1002;
    font-size: 24px;
    color: #ffffff;
    margin: 15px 0;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 8px;
  }

  .header-mobile-nav .mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* モバイル版でのheader-menu位置調整 */
  .header-menu {
    position: static !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }

  /* モバイル版でのmenu-textスタイル */
  .header-menu .menu-text {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    width: 100%;
    max-width: calc(100vw - 32px);
    flex-wrap: wrap;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .header-menu .menu-text .menu-item {
    padding: 6px 12px;
    font-size: 12px;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    flex-shrink: 0;
  }

  .header-menu .menu-text .menu-item a {
    white-space: nowrap;
  }

  .header-menu .menu-text .menu-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
  }

  .header-menu .menu-text .menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .company-main {
    margin-top: 80px;
  }
  .company-hero {
    padding: 40px 16px;
  }

  .company-info {
    padding: 24px 16px 0;
  }

  .company-info-row {
    flex-direction: column;
    gap: 8px;
  }

  .company-info-label {
    width: auto;
  }

  .company-recruit {
    padding: 40px 16px;
  }

  .company-recruit-cards {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .company-contact {
    padding: 40px 16px;
  }

  .company-contact-content {
    max-width: 100%;
  }

  .form-table {
    display: block;
  }

  .form-row {
    display: block;
    border-bottom: 1px solid #d7d8db;
    margin-bottom: 16px;
  }

  .form-label,
  .form-input-cell {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    width: 100%;
    max-width: 100%;
  }

  .footer-main {
    flex-direction: column;
    gap: 24px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-logo-text {
    font-size: 80px;
  }

  .footer-nav {
    width: 100%;
    gap: 24px;
  }

  .footer-nav-link {
    font-size: 20px;
    line-height: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === SERVICE PAGE STYLES === */

/* Service Page Wrapper */
.service-page-wrap {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Service Fixed Header */
.service-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding: 16px;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
}

.service-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.service-logo {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.service-logo-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.service-logo-link:hover {
  opacity: 0.8;
}

.service-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 304px;
}

.service-logo-title {
  font-family: "Petrona", serif;
  font-size: 0;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.service-logo-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.service-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 0;
}

.service-nav .nav-link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.service-nav .nav-link:hover {
  opacity: 0.7;
}

.service-nav .nav-link-active {
  font-weight: 600;
}

/* Service Main */
.service-main {
  margin-top: 80px;
  flex: 1;
}

/* Service Intro */
.service-intro {
  background: #ffffff;
  padding: 48px 64px 0;
  width: 1280px;
  margin: 0 auto;
}

.service-intro-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 1152px;
  margin: 0 auto;
}

.service-intro-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  text-align: left;
  margin: 0;
  width: 100%;
  min-width: max-content;
}

/* Service Business Section */
.service-business-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.service-business-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
}

.service-business-link:hover {
  text-decoration: none;
  color: inherit;
}

.service-business-link:visited {
  text-decoration: none;
  color: inherit;
}

.service-business-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  width: 100%;
  min-width: max-content;
}

.service-business-item {
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  gap: 32px;
  width: 100%;
  box-sizing: border-box;
  .phone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      height: 500px;
      width: 270px;
      margin-top: 32px;
    }
    video:not(.web-movie) {
      position: absolute;
      top: 74px;
      left: 40px;
      width: 190px;
      height: 364px;
      object-fit: cover;
      z-index: 1;
      border-radius: 0 !important;
    }
    video.web-movie {
      position: absolute;
      top: 74px;
      left: 40px;
      width: 190px;
      height: 364px;
      object-fit: cover;
      z-index: 1;
      border-radius: 16px !important;
      overflow: hidden !important;
      pointer-events: auto;
    }
  }
}

.service-business-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 596px;
}

.service-business-header {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.service-business-headline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  width: 100%;
  text-align: left;
}

.service-business-description {
  width: 528px;
}

.service-business-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  letter-spacing: 2.24px;
  margin: 0 0 16px 0;
}

.service-business-description p:last-child {
  margin-bottom: 0;
}

.service-business-image {
  height: 349px;
  width: 169.2px;
  position: relative;
  flex-shrink: 0;
}

/* Phone Mockup */
.service-phone-mockup {
  width: 100%;
  height: 100%;
  position: relative;
}

.service-phone-frame {
  width: 100%;
  height: 100%;
  background: #333333;
  border-radius: 0;
  padding: 8px;
  box-sizing: border-box;
  position: relative;
}

.service-phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-play-button {
  width: 40px;
  height: 40px;
  background: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
}

/* Service Recruit */
.service-recruit {
  background: #ffffff;
  padding: 48px 64px 72px;
  width: 1280px;
  margin: 0 auto;
}

.service-recruit-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.service-recruit-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.service-recruit-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  width: 100%;
  text-align: left;
}

.service-recruit-cards {
  display: flex;
  gap: 24px;
  height: 366px;
  width: 100%;
}

.service-recruit-card {
  flex: 1;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  overflow: hidden;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
}

.service-recruit-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.service-recruit-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.service-recruit-title-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #333333;
  margin: 0;
  width: 100%;
}

.service-recruit-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #333333;
  margin: 0;
  width: 100%;
}

.service-recruit-description {
  width: 100%;
}

.service-recruit-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  letter-spacing: 1.92px;
  margin: 0;
  width: 100%;
}

.service-recruit-card-decoration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 154.212px;
  height: 103px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTU0IiBoZWlnaHQ9IjEwMyIgdmlld0JveD0iMCAwIDE1NCAxMDMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDEwM0gxNTRWMEwwIDEwM1oiIGZpbGw9InJnYmEoMjAwLCAyMDAsIDIwMCwgMC4zKSIvPgo8L3N2Zz4K");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

/* Service Contact */
.service-contact {
  width: 100%;
  overflow: hidden;
}

.service-contact-content {
  flex: 1;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: flex-start;
}

.service-contact-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  width: 884px;
}

.service-contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  text-align: left;
  white-space: nowrap;
  width: 220px;
}

.service-contact-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

/* Service Form */
.service-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 24px;
  width: 884px;
}

.service-form-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

.service-form-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 12px 18px;
  gap: 48px;
  border-bottom: 1px solid #d7d8db;
}

.service-form-label {
  width: 220px;
  flex-shrink: 0;
}

.service-form-label-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.service-form-label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  text-align: left;
  white-space: nowrap;
}

.service-form-required {
  background: #ffffff;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #000000;
  text-align: left;
  white-space: nowrap;
}

.service-form-optional {
  background: #ffffff;
  border: 1px solid #c9cbcf;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #797d86;
  text-align: left;
  white-space: nowrap;
}

.service-form-input-cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
  width: 860px;
}

.service-form-select {
  background: #ffffff;
  border: 1px solid #d7d8db;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px 0 12px;
  width: 300px;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #bcbec2;
}

.service-form-input {
  background: #ffffff;
  border: 1px solid #d7d8db;
  border-radius: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 12px 48px 12px 12px;
  width: 300px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
}

.service-form-input::placeholder {
  color: #bcbec2;
}

.service-form-textarea {
  flex: 1;
  background: #ffffff;
  border: 1px solid #d7d8db;
  border-radius: 0;
  height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  padding: 12px;
  width: 100%;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  resize: vertical;
}

.service-form-textarea::placeholder {
  color: #bcbec2;
}

.service-form-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.service-form-note {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
}

.service-form-checkbox {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin: 0;
}

.service-form-note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  width: 800px;
}

.service-form-note-link {
  color: #1782cf;
  text-decoration: none;
}

.service-form-note-link:hover {
  text-decoration: underline;
}

.service-form-submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.service-form-submit {
  background: #333333;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  width: 322px;
  gap: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  color: #ffffff;
  text-align: center;
}

.service-form-submit:hover {
  background: #555555;
}

/* Service Footer */
.service-footer {
  background: #5e6e81;
  overflow: hidden;
  position: relative;
}

.service-footer-content {
  background-image: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAABAAEDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAAAAv/xAAUEAEAAAAAAAAAAAAAAAAAAAAA/8QAFQEBAQAAAAAAAAAAAAAAAAAAAAX/xAAUEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwCdABmX/9k=");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1280px;
  margin: 0 auto;
  position: relative;
}

.service-footer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.service-footer-main {
  display: flex;
  flex-direction: column;
  gap: 96px;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 64px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.service-footer-logo {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
}

.service-footer-logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 120px;
  line-height: normal;
  color: #ffffff;
  margin: 0;
  width: 552px;
}

.service-footer-nav {
  flex-wrap: wrap;
  display: flex;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
  color: #ffffff;
  font-size: 30px;
  text-align: left;
  white-space: nowrap;
  width: 400px;
}

.service-footer-nav-link {
  color: #ffffff;
  text-decoration: none;
  line-height: 42px;
  transition: opacity 0.3s ease;
}

.service-footer-nav-link:hover {
  opacity: 0.8;
}

.service-footer-bottom {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.service-footer-social {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}

.service-social-link {
  width: 24px;
  height: 24px;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.service-social-link:hover {
  opacity: 0.8;
}

.service-footer-copyright {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  text-align: left;
  white-space: nowrap;
}

.service-footer-copyright p {
  margin: 0;
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
  .service-header-content {
    padding: 0 16px;
    flex-direction: column;
    gap: 16px;
  }

  .service-nav {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-intro {
    padding: 24px 16px 0;
    width: 100%;
  }

  .service-intro-content {
    width: 100%;
    gap: 32px;
  }

  .service-intro-title {
    font-size: 24px;
    line-height: 36px;
  }

  .service-business-item {
    flex-direction: column;
    padding: 32px 16px;
    text-align: center;
  }

  .service-business-content {
    width: 100%;
  }

  .service-business-description {
    width: 100%;
  }

  .service-business-image {
    width: 120px;
    height: 240px;
    margin: 0 auto;
  }

  .service-recruit {
    padding: 24px 16px 36px;
    width: 100%;
  }

  .service-recruit-title {
    font-size: 24px;
    line-height: 36px;
  }

  .service-recruit-cards {
    flex-direction: column;
    height: auto;
    gap: 16px;
  }

  .service-recruit-card {
    height: auto;
    min-height: 200px;
  }

  .service-contact {
    width: 100%;
  }

  .service-contact-content {
    padding: 36px 16px;
    width: 100%;
  }

  .service-contact-header {
    width: 100%;
  }

  .service-contact-title {
    width: 100%;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }

  .service-contact-form {
    width: 100%;
  }

  .service-form-row {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 12px;
  }

  .service-form-label {
    width: 100%;
  }

  .service-form-input-cell {
    width: 100%;
  }

  .service-form-select,
  .service-form-input {
    width: 100%;
  }

  .service-form-note-text {
    width: 100%;
  }

  .service-form-submit {
    width: 100%;
  }

  .service-footer-content {
    width: 100%;
  }

  .service-footer-main {
    padding: 60px 16px;
    gap: 48px;
  }

  .service-footer-logo-text {
    font-size: 60px;
    width: 100%;
  }

  .service-footer-nav {
    width: 100%;
    gap: 24px;
  }

  .service-footer-nav-link {
    font-size: 20px;
    line-height: 28px;
  }

  .service-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === CONTACT PAGE STYLES === */

/* Contact Page Wrapper */
.contact-page-wrap {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Contact Fixed Header */
.contact-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding: 16px;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
}

.contact-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.contact-logo {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.contact-logo-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.contact-logo-link:hover {
  opacity: 0.8;
}

.contact-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 304px;
}

.contact-logo-title {
  font-family: "Petrona", serif;
  font-size: 0;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.contact-logo-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.contact-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 0;
}

.contact-nav .nav-link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.contact-nav .nav-link:hover {
  opacity: 0.7;
}

.contact-nav .nav-link-active {
  font-weight: 600;
}

/* Contact Main */
.contact-main {
  margin-top: 80px;
  flex: 1;
}

/* Contact Hero */
.contact-hero {
  background-color: #ffffff;
  padding: 80px 64px 54px;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: -1058px;
  left: -709.999px;
  width: 2801.12px;
  height: 2523.2px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2801 2523"><defs><pattern id="dots" x="0" y="0" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="%23e8e8e8"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
  z-index: 0;
}

.contact-hero-content {
  max-width: 1152px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  line-height: 32px;
  color: #333333;
  font-weight: bold;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #f5f5f5;
  padding: 72px;
  display: flex;
  justify-content: center;
}

.contact-form-content {
  max-width: 884px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.contact-form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.contact-form-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.contact-form-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-form-table {
  border-top: 1px solid #d7d8db;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.contact-form-row {
  border-bottom: 1px solid #d7d8db;
}

.contact-form-label {
  padding: 18px 12px;
  background-color: #ffffff;
  border-right: none;
  width: 220px;
  vertical-align: center;
  text-align: left;
}

.contact-form-label-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form-label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
}

.contact-form-required {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-optional {
  background-color: #ffffff;
  color: #797d86;
  border: 1px solid #c9cbcf;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-input-cell {
  padding: 18px 12px;
  background-color: #ffffff;
  width: auto;
  vertical-align: center;
}

.contact-form-input,
.contact-form-select {
  width: 300px;
  height: 48px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  box-sizing: border-box;
}

.contact-form-input::placeholder,
.contact-form-select::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.contact-form-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  resize: vertical;
  vertical-align: top;
  box-sizing: border-box;
}

.contact-form-textarea::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.contact-form-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contact-form-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-bottom: 24px;
}

.contact-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-form-checkbox {
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #333333;
}

.contact-form-note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  flex-grow: 1;
}

.contact-form-note-link {
  color: #1782cf;
  text-decoration: none;
}

.contact-form-note-link:hover {
  text-decoration: underline;
}

.contact-form-submit-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-form-submit {
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  cursor: pointer;
  width: 322px;
  height: 63px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form-submit:hover {
  background-color: #555555;
}

/* Contact Footer */
.contact-footer {
  background: #5e6e81;
  background-image: linear-gradient(
    135deg,
    #5e6e81 0%,
    #4a5568 50%,
    #2d3748 100%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.contact-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.contact-footer-content {
  position: relative;
  z-index: 1;
  padding: 120px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-footer-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 96px;
}

.contact-footer-logo {
  width: 552px;
}

.contact-footer-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 120px;
  line-height: normal;
  color: #ffffff;
  font-weight: 900;
  margin: 0;
}

.contact-footer-nav {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
}

.contact-footer-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 30px;
  line-height: 42px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.contact-footer-nav-link:hover {
  opacity: 0.8;
}

.contact-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact-social-link {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.contact-social-link:hover {
  opacity: 0.8;
}

.contact-footer-copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 300;
}

.contact-footer-copyright p {
  margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-header-content {
    flex-direction: column;
    gap: 16px;
  }

  .contact-logo {
    padding: 12px 16px;
  }

  .contact-logo-text {
    width: auto;
  }

  .contact-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-main {
    margin-top: 80px;
  }

  .contact-hero {
    padding: 40px 16px;
  }

  .contact-form-section {
    padding: 40px 16px;
    background-color: #f5f5f5;
  }

  .contact-form-content {
    max-width: 100%;
  }

  .contact-form-table {
    display: block;
  }

  .contact-form-row {
    display: block;
    border-bottom: 1px solid #d7d8db;
    margin-bottom: 16px;
  }

  .contact-form-label,
  .contact-form-input-cell {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .contact-form-input,
  .contact-form-select,
  .contact-form-textarea {
    width: 100%;
    max-width: 100%;
  }

  .contact-footer-main {
    flex-direction: column;
    gap: 24px;
  }

  .contact-footer-logo {
    width: 100%;
  }

  .contact-footer-logo-text {
    font-size: 80px;
  }

  .contact-footer-nav {
    width: 100%;
    gap: 24px;
  }

  .contact-footer-nav-link {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* === RECRUIT PAGE STYLES === */

/* Recruit Page Wrapper */
.recruit-page-wrap {
  width: 100%;
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Recruit Fixed Header */
.recruit-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  padding: 16px;
  width: 100%;
  height: 120px;
  box-sizing: border-box;
}

.recruit-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.recruit-logo {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.recruit-logo-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

.recruit-logo-link:hover {
  opacity: 0.8;
}

.recruit-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 304px;
}

.recruit-logo-title {
  font-family: "Petrona", serif;
  font-size: 0;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.recruit-logo-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  font-weight: 400;
  width: 100%;
}

.recruit-nav {
  display: flex;
  gap: 36px;
  align-items: center;
  padding: 0;
}

.recruit-nav .nav-link {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.recruit-nav .nav-link:hover {
  opacity: 0.7;
}

.recruit-nav .nav-link-active {
  font-weight: 600;
}

/* Recruit Main */
.recruit-main {
  margin-top: 80px;
  flex: 1;
}

/* Recruit Message */
.recruit-message {
  background-color: #ffffff;
  padding: 48px 64px;
}

.recruit-message-content {
  max-width: 1152px;
  margin: 0 auto;
  text-align: center;
}

.recruit-message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  margin: 0 0 32px 0;
}

.recruit-message-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #333333;
}

.recruit-message-description p {
  margin: 0;
}

/* Recruit Positions */
.recruit-positions {
  background-color: #ffffff;
  padding: 72px 64px;
}

.recruit-positions-content {
  max-width: 1152px;
  margin: 0 auto;
}

.recruit-positions-header {
  margin-bottom: 48px;
}

.recruit-positions-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.recruit-positions-cards {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.recruit-position-card {
  background-color: #f6f6f6;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.recruit-position-card-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.recruit-position-header-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recruit-position-title-en {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  line-height: 42px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.recruit-position-title-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  font-weight: 500;
  margin: 0;
}

.recruit-position-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  font-weight: 400;
  margin: 0;
}

.recruit-position-details {
  display: flex;
  gap: 48px;
}

.recruit-detail-item {
  flex: 1;
}

.recruit-detail-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #333333;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.recruit-detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.recruit-detail-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #333333;
  font-weight: 400;
}

.recruit-detail-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #333333;
}

.recruit-detail-list li:last-child {
  margin-bottom: 0;
}

/* Recruit Environment */
.recruit-environment {
  background-color: #ffffff;
  padding: 72px 64px;
}

.recruit-environment-content {
  max-width: 1152px;
  margin: 0 auto;
}

.recruit-environment-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  font-weight: 500;
  margin: 0 0 48px 0;
  text-align: left;
}

.recruit-environment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.recruit-environment-item {
  background-color: #fafafa;
  padding: 32px;
  border-radius: 0;
}

.recruit-environment-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #333333;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.recruit-environment-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  font-weight: 400;
  margin: 0;
}

/* Recruit Apply */
.recruit-apply {
  background-color: #fafafa;
  padding: 72px;
  display: flex;
  justify-content: center;
}

.recruit-apply-content {
  max-width: 884px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.recruit-apply-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.recruit-apply-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 48px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.recruit-apply-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #333333;
  margin: 0;
  text-align: center;
}

.recruit-apply-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.recruit-form-table {
  border-top: 1px solid #d7d8db;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.recruit-form-row {
  border-bottom: 1px solid #d7d8db;
}

.recruit-form-label {
  padding: 18px 12px;
  background-color: #ffffff;
  border-right: none;
  width: 220px;
  vertical-align: center;
  text-align: left;
}

.recruit-form-label-inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.recruit-form-label-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
}

.recruit-form-required {
  background-color: #ffffff;
  color: #000000;
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-form-optional {
  background-color: #ffffff;
  color: #797d86;
  border: 1px solid #c9cbcf;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recruit-form-input-cell {
  padding: 18px 12px;
  background-color: #ffffff;
  width: auto;
  vertical-align: center;
}

.recruit-form-input,
.recruit-form-select {
  width: 300px;
  height: 48px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  box-sizing: border-box;
}

.recruit-form-input::placeholder,
.recruit-form-select::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.recruit-form-textarea {
  width: 100%;
  height: 120px;
  padding: 12px;
  border: 1px solid #d7d8db;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #333333;
  background-color: #ffffff;
  resize: vertical;
  vertical-align: top;
  box-sizing: border-box;
}

.recruit-form-textarea::placeholder {
  color: #bcbec2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}

.recruit-form-select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.recruit-form-notes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding-bottom: 24px;
}

.recruit-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.recruit-form-checkbox {
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  accent-color: #333333;
}

.recruit-form-note-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin: 0;
  flex-grow: 1;
}

.recruit-form-note-link {
  color: #1782cf;
  text-decoration: none;
}

.recruit-form-note-link:hover {
  text-decoration: underline;
}

.recruit-form-submit-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.recruit-form-submit {
  background-color: #333333;
  color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 18px 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  cursor: pointer;
  width: 322px;
  height: 63px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-form-submit:hover {
  background-color: #555555;
}

/* Recruit Footer */
.recruit-footer {
  background-color: #333333; /* フォールバック背景色 */
  position: relative;
  overflow: hidden;
  padding: 120px 64px;
  min-height: 400px; /* 最小高さを設定 */
}

/* 動画背景を追加 */
.recruit-footer-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; /* 動画を表示レイヤーに */
  opacity: 1; /* 透明度を明示的に設定 */
}
.recruit-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* 軽いオーバーレイ */
  z-index: 2;
}

.recruit-footer-content {
  position: relative;
  z-index: 3; /* コンテンツを最前面に */
  max-width: 1280px;
  margin: 0 auto;
}

.recruit-footer-main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 96px;
}

.recruit-footer-logo {
  width: 552px;
  img {
    width: 300px;
    filter: brightness(0) invert(1);
  }
}

.recruit-footer-logo-text {
  font-family: "Inter", sans-serif;
  font-size: 120px;
  line-height: normal;
  color: #ffffff;
  font-weight: 900;
  margin: 0;
}

.recruit-footer-nav {
  width: 400px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 60px;
}

.recruit-footer-nav-link {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  line-height: 42px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.recruit-footer-nav-link:hover {
  opacity: 0.8;
}

.recruit-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.recruit-footer-social {
  display: flex;
  gap: 24px;
  align-items: center;
}

.recruit-social-link {
  color: #ffffff;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.recruit-social-link:hover {
  opacity: 0.8;
}

.recruit-footer-copyright {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 300;
}

.recruit-footer-copyright p {
  margin: 0;
}

/* Responsive Design for Recruit Page */
@media (max-width: 768px) {
  .recruit-header-content {
    flex-direction: column;
    gap: 16px;
  }

  .recruit-logo {
    padding: 12px 16px;
  }

  .recruit-logo-text {
    width: auto;
  }

  .recruit-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .recruit-main {
    margin-top: 80px;
  }

  .recruit-message {
    padding: 24px 16px;
  }

  .recruit-positions {
    padding: 40px 16px;
  }

  .recruit-position-card {
    padding: 24px;
  }

  .recruit-position-details {
    flex-direction: column;
    gap: 24px;
  }

  .recruit-environment {
    padding: 40px 16px;
  }

  .recruit-environment-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit-apply {
    padding: 40px 16px;
  }

  .recruit-apply-content {
    max-width: 100%;
  }

  .recruit-form-table {
    display: block;
  }

  .recruit-form-row {
    display: block;
    border-bottom: 1px solid #d7d8db;
    margin-bottom: 16px;
  }

  .recruit-form-label,
  .recruit-form-input-cell {
    display: block;
    width: 100%;
    padding: 12px;
  }

  .recruit-form-input,
  .recruit-form-select,
  .recruit-form-textarea {
    width: 100%;
    max-width: 100%;
  }

  .recruit-footer-main {
    flex-direction: column;
    gap: 24px;
  }

  .recruit-footer-logo {
    width: 100%;
  }

  .recruit-footer-logo-text {
    font-size: 80px;
  }

  .recruit-footer-nav {
    width: 100%;
    gap: 24px;
  }

  .recruit-footer-nav-link {
    font-size: 20px;
    line-height: 28px;
  }

  .recruit-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ================================
   Blog Page Styles
   ================================ */

.blog-page-wrap {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.5;
}

/* Header Styles */
.blog-header {
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
  padding: 16px 32px;
}

.blog-header-content {
  max-width: 1920px;
  margin: 0 auto;
}

.blog-header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 38px;
}

.blog-logo-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #333333;
  margin: 0;
  line-height: normal;
}

.blog-header-contact {
  display: flex;
  gap: 32px;
  align-items: center;
}

.blog-header-contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-contact-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin: 0;
  line-height: normal;
}

.blog-contact-phone {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 4px 0;
}

.blog-phone-icon {
  width: 18px;
  height: 18px;
  color: #333333;
}

.blog-phone-number {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  letter-spacing: 1.44px;
  line-height: normal;
}

.blog-contact-time {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #333333;
  margin: 0;
  line-height: normal;
}

.blog-header-buttons {
  display: flex;
  gap: 16px;
}

.blog-header-btn {
  height: 40px;
  padding: 8px 24px;
  border-radius: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  transition: all 0.3s ease;
}

.blog-line-btn {
  background: #4e4e4e;
  color: #ffffff;
  width: 139px;
}

.blog-contact-btn {
  background: #d25800;
  color: #ffffff;
  width: 139px;
}

.blog-contact-btn i {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.blog-hero {
  background: #ffffff;
  padding: 120px 16px 64px;
  min-height: 937px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-hero-content {
  max-width: 1024px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 96px;
}

.blog-hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.blog-hero-titles {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-hero-main-title {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 56px;
  color: #252525;
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}

.blog-hero-subtitle-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-hero-subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 32px;
  color: #252525;
  margin: 0;
  line-height: normal;
}

.blog-hero-final {
  display: flex;
  align-items: center;
  gap: 64px;
}

.blog-hero-final-text {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 48px;
  color: #252525;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-hero-final-highlight {
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 56px;
  padding: 8px 16px;
  line-height: normal;
}

.blog-hero-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #333333;
  width: 493px;
  margin: 0;
  line-height: 1.5;
}

.blog-hero-right {
  width: 242.407px;
  height: 500px;
  position: relative;
}

.blog-hero-image {
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  border-radius: 0;
}

/* Documentation Section */
.blog-documentation {
  background: #ffffff;
  padding: 16px;
}

.blog-documentation-content {
  max-width: 1024px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 0;
  padding: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.blog-documentation-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.blog-documentation-items {
  display: flex;
  gap: 42px;
  align-items: center;
}

.blog-doc-item {
  background: #f7f7f7;
  width: 120.682px;
  height: 120.682px;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.blog-doc-item-header {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #333333;
  text-align: center;
  position: absolute;
  top: 10.841px;
  left: 50%;
  transform: translateX(-50%);
  line-height: normal;
}

.blog-doc-item-image {
  background: #7e7e7e;
  width: 75.381px;
  height: 64.67px;
  position: absolute;
  left: 22px;
  top: 34.841px;
  padding: 1.162px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flow Section - Slider */
.blog-flow {
  background: #ffffff;
  padding: 0;
  margin-top: 56px;
  position: relative;
  overflow: hidden;
  width: 1108px;
}

.blog-flow-slider-container {
  width: 100%;
  height: 337px;
  position: relative;
  overflow: hidden;
}

.blog-flow-slider-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blog-flow-slides {
  display: flex;
  width: 700%; /* 7 slides × 100% */
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.blog-flow-slide {
  width: calc(100% / 7); /* 100% / 7 slides = 14.285714% */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 131px;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0;
}

.blog-flow-slide-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
  max-width: 1024px;
  width: 100%;
}

.blog-flow-slide-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0 0 32px 0;
  line-height: normal;
}

.blog-flow-slide:first-child .blog-flow-slide-title {
  color: #252525;
}

.blog-flow-slide-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 24px;
  color: #252525;
  text-align: center;
  margin: 0 0 32px 0;
  line-height: normal;
}

.blog-flow-slide-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-flow-slide-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
}

/* Navigation Buttons */
.blog-flow-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.blog-flow-nav-btn {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  pointer-events: all;
}

.blog-flow-nav-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.blog-flow-prev {
  left: 20px;
}

.blog-flow-next {
  right: 20px;
}

/* Slide Illustrations */
.blog-flow-slide-illustration {
  position: absolute;
  right: 131px;
  bottom: 56px;
  width: 93px;
  height: 93px;
}

.blog-flow-human-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Dots Navigation */
.blog-flow-dots {
  text-align: center;
  padding: 20px 0;
  background: #ffffff;
}

.blog-flow-dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.blog-flow-dot.active,
.blog-flow-dot:hover {
  background-color: #717171;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .blog-flow-slide {
    padding: 32px 20px;
  }

  .blog-flow-slide-title {
    font-size: 24px;
  }

  .blog-flow-slide-subtitle,
  .blog-flow-slide-description p {
    font-size: 18px;
  }

  .blog-flow-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .blog-flow-slide-illustration {
    right: 20px;
    bottom: 32px;
    width: 60px;
    height: 60px;
  }
}

/* Problems Section */
.blog-problems {
  background: #ffffff;
  padding: 0;
}

.blog-problems-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-problems-header {
  background: #f7f7f7;
  width: 100%;
  padding: 32px 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-problems-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-decoration: underline;
  margin: 0;
  line-height: normal;
}

.blog-problems-main {
  padding: 0 32px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  background: #f7f7f7;
}

.blog-problems-main-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-problems-list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #333333;
  text-align: center;
  line-height: 1.5;
  white-space: pre-line;
}

.blog-problems-grid {
  padding: 56px 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-problems-grid-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 24px;
  color: #333333;
  margin: 0;
  line-height: normal;
}

.blog-problems-row {
  display: flex;
  gap: 56px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.blog-problem-card {
  background: #f7f7f7;
  border-radius: 0;
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 200px;
}

.blog-problem-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  width: 100%;
}

.blog-problem-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #666666;
}

.blog-problem-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  width: 100%;
}

/* Solutions Section */
.blog-solutions {
  background: #ffffff;
  padding: 56px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-solutions-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-solutions-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-solutions-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.blog-video-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #252525;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-video-container {
  display: flex;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  border-radius: 0;
}

.blog-video-placeholder {
  background: #7e7e7e;
  width: 600.677px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17.327px;
  position: relative;
}

.blog-video-placeholder i {
  font-size: 104.685px;
  color: #ffffff;
}

/* Process Section */
.blog-process {
  background: #ffffff;
  padding: 32px 0 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
}

.blog-process-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.blog-process-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-process-steps {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.blog-process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.blog-step-header {
  background: #f7f7f7;
  border-radius: 0;
  padding: 4px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #333333;
  line-height: normal;
}

.blog-step-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  text-align: left;
  margin: 0;
  line-height: 1.3;
  width: 180px;
}

.blog-process-arrow {
  font-size: 24px;
  color: #333333;
  transform: rotate(270deg);
  height: 0;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-process-point {
  position: absolute;
  left: 722px;
  top: 1035.16px;
}

.blog-point-badge {
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  padding: 16px 0;
  border-radius: 0;
  width: 195px;
  line-height: normal;
}

/* Documentation Details Section */
.blog-documentation-details {
  background: #f7f7f7;
  padding: 56px 131px;
}

.blog-documentation-details-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.blog-documentation-details-header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-documentation-details-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-documentation-details-subtitle {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.blog-documentation-details-subtitle p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

.blog-documentation-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  text-align: center;
  line-height: normal;
  white-space: nowrap;
}

.blog-documentation-details-grid {
  background: #ffffff;
  border-radius: 0;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  border: 0.5px solid #ebebeb;
}

.blog-documentation-details-grid-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 24px;
  color: #333333;
  text-align: center;
  width: 195px;
  margin: 0;
  line-height: normal;
}

.blog-documentation-details-grid-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  white-space: normal;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.blog-documentation-details-items {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

.blog-documentation-detail-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  padding: 32px;
  border: 0.5px solid #ebebeb;
}

.blog-detail-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  width: 233px;
  margin: 0;
  line-height: normal;
}

.blog-detail-item-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.blog-detail-item-image {
  background: #ffffff;
  width: 118px;
  height: 101.233px;
  border-radius: 0;
  padding: 2.347px;
}

.blog-detail-item-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-detail-item-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 10px;
  color: #333333;
  text-align: left;
  line-height: 1.3;
  white-space: nowrap;
}

/* Pricing Section */
.blog-pricing {
  background: linear-gradient(to bottom, #fffefd, #ffffff);
  padding: 56px 131px;
  position: relative;
}

.blog-pricing-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.blog-pricing-plans {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  width: 100%;
  justify-content: center;
}

.blog-pricing-plan {
  background: #ffffff;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  flex: 1;
  max-width: 448px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 24px;
}

.blog-plan-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 16px 0;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
}

.blog-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.blog-price-amount {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #333333;
  line-height: 1.7;
}

.blog-price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  line-height: 1.7;
}

.blog-plan-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 1.7;
}

.blog-plan-features {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0;
}

.blog-plan-feature {
  background: #f5f5f5;
  padding: 8px;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  line-height: 22.4px;
}

.blog-feature-detail {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #333333;
  line-height: 19.6px;
}

.blog-plan-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  text-align: left;
  margin: 0;
  line-height: 1.5;
  width: 100%;
}

.blog-plan-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-plan-details-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  padding: 4px 0;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  width: 448px;
}

.blog-plan-detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-plan-detail-title {
  background: #f5f5f5;
  padding: 8px;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.blog-plan-detail-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 12px;
  color: #333333;
  text-align: left;
  line-height: 1.5;
}

.blog-plan-detail-content p {
  margin: 0 0 8px 0;
}

.blog-plan-detail-content strong {
  font-weight: normal;
}

.blog-plan-consultation {
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.blog-consultation-title {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.5;
  width: 448px;
}

.blog-support {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.blog-support-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: left;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-support-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-support-section-title {
  background: #f5f5f5;
  padding: 16px 0;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  border: 1px solid #f5f5f5;
}

.blog-support-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-support-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.blog-support-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.blog-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.blog-options-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: left;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-options-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-options-section-title {
  background: #f5f5f5;
  padding: 16px 0;
  border-radius: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
}

.blog-options-item {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-options-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

/* CTA Section */
.blog-cta {
  background: rgba(255, 240, 219, 0.12);
  padding: 56px 131px;
}

.blog-cta-content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 1216px;
  margin: 0 auto;
}

.blog-cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  flex: 1;
}

.blog-cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
}

.blog-cta-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  line-height: 1.3;
  width: 1694px;
}

.blog-cta-description p {
  margin: 0 0 8px 0;
}

.blog-cta-image {
  flex: 1;
  height: 387.829px;
  background: #7e7e7e;
  overflow: hidden;
}

/* FAQ Section */
.blog-faq {
  background: #ffffff;
  padding: 56px 131px 72px;
}

.blog-faq-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.blog-faq-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 1240px;
}

.blog-faq-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-faq-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
}

.blog-faq-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-faq-item {
  display: flex;
  flex-direction: column;
}

.blog-faq-question {
  background: #ffffff;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  height: 114.27px;
  width: 1240px;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
}

.blog-faq-q {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #7e7e7e;
  width: 30.774px;
  height: 36px;
  line-height: 36px;
}

.blog-faq-question-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: left;
  margin: 0;
  line-height: 34.28px;
  width: 718.034px;
  margin-left: 56px;
  margin-top: 2px;
}

.blog-faq-toggle {
  background: #333333;
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.blog-faq-toggle.active {
  transform: translateY(-50%) rotate(180deg);
}

/* FAQ Question Styles */
.blog-faq-question {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-faq-question:hover {
  background-color: #f9f9f9;
}

/* FAQ Answer Styles */
.blog-faq-answer {
  background: #f5f5f5;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 0 40px;
  display: flex;
  gap: 32px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.blog-faq-answer.active {
  max-height: 800px;
  padding: 40px;
  opacity: 1;
  margin-top: 8px;
}

.blog-faq-a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #7e7e7e;
  width: 30.774px;
  height: 36px;
  line-height: 36px;
}

.blog-faq-answer-text {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: left;
  line-height: 1.3;
}

.blog-faq-answer-text p {
  margin: 0 0 8px 0;
}

/* First Time Section */
.blog-first-time {
  background: rgb(250, 250, 250);
  border: 1px solid #efefef;
  padding: 56px 131px;
}

.blog-first-time-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
  align-items: center;
}

.blog-first-time-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-first-time-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 1024px;
}

.blog-first-time-text p {
  font-family: "YuGothic", sans-serif;
  font-style: normal;
  font-size: 16px;
  color: #333333;
  text-align: left;
  line-height: 2;
  margin: 0;
}

.blog-first-time-text strong {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

/* Contact Section */
.blog-contact {
  background: #ffffff;
  padding: 32px 0 0 0;
  width: 100vw;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  overflow-x: hidden;
  position: relative;
}

.blog-contact-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
}

.blog-phone-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.blog-phone-contact-background {
  background: #ffffff;
  width: 1024px;

  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.blog-phone-contact-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  width: 100%;
}

.blog-phone-contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 42px;
  white-space: nowrap;
}

.blog-phone-contact-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-phone-contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.blog-phone-contact-number {
  display: flex;
  gap: 16px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 205px;
}

.blog-phone-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-phone-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.blog-phone-number-large {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: #333333;
  text-align: center;
  line-height: 66px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-phone-contact-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 30.85px;
  white-space: nowrap;
}

.blog-phone-contact-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 27.42px;
  width: 541.548px;
}

.blog-email-contact {
  background: rgb(250, 250, 250);
  padding: 72px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.blog-email-contact-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.blog-email-contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 48px;
}

.blog-email-contact-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: 30px;
}

.blog-contact-form {
  width: 884px;
  border-top: 1px solid #d7d8db;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-form-row {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 18px 12px;
  border-bottom: 1px solid #d7d8db;
}

.blog-form-label {
  width: 220px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-form-label label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 16px;
  color: #333333;
  text-align: left;
  line-height: 24px;
  white-space: nowrap;
}

.blog-form-required {
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0 8px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 12px;
  color: #000000;
  line-height: 20px;
  white-space: nowrap;
}

.blog-form-optional {
  background: #ffffff;
  border: 1px solid #c9cbcf;
  border-radius: 0;
  padding: 0 8px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 12px;
  color: #797d86;
  line-height: 20px;
  white-space: nowrap;
}

.blog-form-input {
  flex: 1;
}

.blog-form-input select,
.blog-form-input input {
  background: #ffffff;
  border: 1px solid #d7d8db;
  border-radius: 0;
  height: 48px;
  width: 300px;
  padding: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: light;
  font-size: 14px;
  color: #bcbec2;
  line-height: 24px;
}

.blog-form-input textarea {
  background: #ffffff;
  border: 1px solid #d7d8db;
  border-radius: 0;
  height: 120px;
  width: 100%;
  padding: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: light;
  font-size: 14px;
  color: #bcbec2;
  line-height: 24px;
  resize: vertical;
}

.blog-form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}

.blog-form-checkbox-row {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.blog-form-checkbox-row input[type="checkbox"] {
  width: 24px;
  height: 24px;
  margin: 0;
}

.blog-form-checkbox-row label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #333333;
  text-align: left;
  line-height: 24px;
  flex: 1;
}

.blog-form-checkbox-row a {
  color: #1782cf;
  text-decoration: none;
}

.blog-form-submit-wrapper {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  width: 100%;
}

.blog-form-submit {
  background: #333333;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 18px 40px;
  width: 322px;
  height: 62px;
  line-height: 27px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.blog-form-submit:hover {
  background: #555555;
}

/* Footer */
.blog-footer {
  background: #333333;
  padding: 32px;
}

.blog-footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 32px 38px;
}

.blog-footer-main {
  display: flex;
  gap: 80px;
}

/* PC版専用スタイル（769px以上） */
@media (min-width: 769px) {
  .blog-footer-main {
    flex-direction: row;
    gap: 80px;
  }

  .blog-footer-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .blog-footer-company {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
  }

  .blog-footer-company-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }
}

.blog-footer-logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #ffffff;
  margin: 0;
  line-height: normal;
  white-space: nowrap;
}

.blog-footer-logo-svg {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.blog-footer-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.blog-footer-company {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.blog-footer-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  margin-top: 32px;
}

.blog-footer-company-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 400px;
}

.blog-footer-label {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  line-height: 24px;
  width: 120px;
}

.blog-footer-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 16px;
  color: #ffffff;
  text-align: left;
  line-height: 24px;
  flex: 1;
}

.blog-footer-value p {
  margin: 0 0 8px 0;
}

.blog-footer-cta-btn {
  border: 1px solid #ffffff;
  border-radius: 0;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: medium;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 18px;
  width: 380px;
  height: 63px;
  line-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.blog-footer-cta-btn:hover {
  background: #ffffff;
  color: #333333;
}

.blog-footer-copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: light;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 13.44px;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1440px) {
  .blog-hero-content {
    max-width: 900px;
    gap: 64px;
  }

  .blog-hero-main-title {
    font-size: 48px;
  }

  .blog-hero-final-text {
    font-size: 40px;
  }

  .blog-hero-final-highlight {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .blog-header-main {
    padding: 16px 20px;
  }

  .blog-header-contact {
    flex-direction: column;
    gap: 16px;
  }

  .blog-hero {
    padding: 80px 16px 40px;
  }

  .blog-hero-content {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .blog-hero-main-title {
    font-size: 36px;
  }

  .blog-hero-final {
    flex-direction: column;
    gap: 20px;
  }

  .blog-hero-final-text {
    font-size: 32px;
  }

  .blog-hero-final-highlight {
    font-size: 36px;
  }

  .blog-hero-description {
    width: 100%;
    max-width: 600px;
  }

  .blog-problems-grid {
    padding: 32px 20px !important;
  }

  .blog-problems-row {
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .blog-problem-card {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .blog-problem-title {
    width: 100% !important;
    text-align: center !important;
  }

  .blog-problem-text {
    width: 100% !important;
    text-align: center !important;
  }

  .blog-process-steps {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .blog-process-step {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .blog-step-header {
    width: 100%;
    text-align: center;
  }

  .blog-step-description {
    width: 100% !important;
    text-align: center !important;
    max-width: none !important;
  }

  .blog-process-arrow {
    transform: rotate(0deg);
    width: auto;
    height: auto;
  }

  .blog-process-arrow::after {
    content: "↓";
    font-size: 24px;
    color: #333333;
  }

  .blog-pricing-plans {
    flex-direction: column;
  }

  .blog-documentation-details-items {
    flex-direction: column;
  }

  .blog-faq-question {
    width: 100%;
    height: auto;
    min-height: 114.27px;
  }

  .blog-faq-question-text {
    width: auto;
    flex: 1;
  }
}

@media (max-width: 768px) {
  .blog-header-main {
    flex-direction: column;
    gap: 20px;
  }

  .blog-hero-main-title {
    font-size: 28px;
  }

  .blog-hero-final-text {
    font-size: 24px;
  }

  .blog-hero-final-highlight {
    font-size: 28px;
  }

  .blog-form-row {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .blog-form-label {
    width: 100%;
  }

  .blog-form-input select,
  .blog-form-input input {
    width: 100%;
  }

  .blog-footer {
    padding: 20px !important;
  }

  .blog-footer-content {
    padding: 20px !important;
    max-width: 100% !important;
  }

  .blog-footer-main {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .blog-footer-info {
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
  }

  .blog-footer-company {
    width: 100% !important;
  }

  .blog-footer-company-row {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .blog-footer-label {
    width: 100% !important;
    text-align: left !important;
  }

  .blog-footer-value {
    width: 100% !important;
  }

  .blog-footer-cta {
    width: 100% !important;
    margin-top: 20px !important;
  }

  .blog-footer-cta-btn {
    width: 100% !important;
    max-width: 300px !important;
    margin: 0 auto !important;
  }

  .blog-footer-logo-text {
    font-size: 32px !important;
  }
}

/* Contact Form 7 カスタムスタイル */
.cf7-form {
  max-width: 800px;
  margin: 0 auto;
}

.cf7-form .form-table {
  width: 100%;
  border-collapse: collapse;
}

.cf7-form .form-row {
  border-bottom: 1px solid #e0e0e0;
}

.cf7-form .form-label {
  width: 30%;
  padding: 1.5rem 1rem;
  vertical-align: top;
  background-color: #f8f9fa;
}

.cf7-form .form-label-inner {
  display: flex;
  gap: 0.5rem;
}

.cf7-form .form-label-text {
  font-weight: 600;
  margin: 0;
  font-size: 0.9rem;
}

.cf7-form .form-required {
  background-color: #dc3545;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  font-size: 0.7rem;
  align-self: flex-start;
}

.cf7-form .form-optional {
  background-color: #6c757d;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  font-size: 0.7rem;
  align-self: flex-start;
}

.cf7-form .form-input-cell {
  width: 70%;
  padding: 1.5rem 1rem;
  vertical-align: top;
  background-color: #fafafa;
}

.cf7-form .form-input,
.cf7-form .form-select,
.cf7-form .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.cf7-form .form-input:focus,
.cf7-form .form-select:focus,
.cf7-form .form-textarea:focus {
  outline: none;
  border-color: #007cba;
  box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
}

.cf7-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}

.cf7-form .form-notes {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 0;
}

.cf7-form .form-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cf7-form .form-note:last-child {
  margin-bottom: 0;
}

.cf7-form .form-checkbox {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.cf7-form .form-note-text {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.cf7-form .form-note-link {
  color: #007cba;
  text-decoration: underline;
}

.cf7-form .form-note-link:hover {
  text-decoration: none;
}

.cf7-form .form-submit-wrapper {
  text-align: center;
}

.cf7-form .form-submit {
  background-color: #333333;
  color: white;
  border: none;
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 200px;
}

.cf7-form .form-submit:hover {
  background-color: #555555;
}

.cf7-form .form-submit:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

/* Contact Form 7 デフォルトスタイルの上書き */
.wpcf7-form {
  margin: 0;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.wpcf7-form .wpcf7-validation-error {
  border-color: #dc3545 !important;
}

.wpcf7-response-output {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 0;
}

.wpcf7-mail-sent-ok {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .cf7-form .form-table,
  .cf7-form .form-row,
  .cf7-form .form-label,
  .cf7-form .form-input-cell {
    display: block;
    width: 100%;
  }

  .cf7-form .form-label {
    padding: 1rem 0 0.5rem 0;
    background-color: transparent;
    border-bottom: none;
  }

  .cf7-form .form-input-cell {
    padding: 0;
    background-color: #fafafa;
  }

  .cf7-form .form-row {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cf7-form .form-submit {
    width: 100%;
    min-width: auto;
  }
}

/* Contact Form 7の角丸を強制的に削除 */
.wpcf7 .wpcf7-form span.wpcf7-form-control-wrap .form-required,
.wpcf7 span.form-required,
span.form-required,
.form-required,
.wpcf7-form .form-required {
  border-radius: 0 !important;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select {
  border-radius: 0 !important;
}

/* Contact Form 7 submit buttons */
.wpcf7 input[type="submit"] {
  background-color: #333333 !important;
  color: white !important;
  border: none;
  padding: 1rem 3rem;
  font-size: 1rem;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-width: 200px;
}

.wpcf7 input[type="submit"]:hover {
  background-color: #555555 !important;
}

/* === Web Maintenance Section === */
.blog-web-maintenance {
  position: relative;
  background: linear-gradient(to bottom, #fffefd 0%, #ffffff 100%);
  padding: 0;
  overflow: hidden;
}

.blog-web-maintenance-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.blog-web-maintenance-bg-left {
  position: absolute;
  left: -166px;
  top: 3.76px;
  width: 1077.73px;
  height: 1819px;
  transform: rotate(180deg);
}

.blog-web-maintenance-bg-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-web-maintenance-bg-right {
  position: absolute;
  left: 1008px;
  top: 3.76px;
  width: 1077.73px;
  height: 1819px;
  transform: scaleY(-1);
}

.blog-web-maintenance-bg-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-web-maintenance-divider {
  width: 100%;
  height: 107px;
  margin-bottom: 56px;
}

.blog-web-maintenance-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-web-maintenance-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 131px;
}

.blog-web-maintenance-container {
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.blog-web-maintenance-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  width: 100%;
}

.blog-web-maintenance-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  margin: 0;
  white-space: nowrap;
}

.blog-web-maintenance-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  text-align: center;
}

.blog-web-maintenance-arrow {
  width: 270px;
  height: 46px;
}

.blog-web-maintenance-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scaleY(-1);
}

.blog-web-maintenance-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.blog-web-maintenance-step-header {
  background-color: #333333;
  padding: 16px 0;
  border-radius: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-web-maintenance-step-header--solution {
  background-color: #9a9a9a;
}

.blog-web-maintenance-step-header--issue {
  background-color: #f7f7f7;
}

.blog-web-maintenance-step-header h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.blog-web-maintenance-step-header--issue h3 {
  color: #333333;
}

.blog-web-maintenance-step-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.blog-web-maintenance-step-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  text-align: left;
  margin: 0;
  width: 100%;
}

.blog-web-maintenance-solution {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid #ebebeb;
  width: 100%;
  padding: 24px 60px;
  position: relative;
  background-image: url(./assets/svg/webLP-fvleft.svg),
    url(./assets/svg/webLP-fvright.svg);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

.blog-web-maintenance-solution-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-web-maintenance-solution-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-web-maintenance-content {
    padding: 0 20px;
  }

  .blog-web-maintenance-title {
    font-size: 24px;
    white-space: normal;
  }

  .blog-web-maintenance-solution-text {
    font-size: 18px;
    white-space: normal;
  }
}

/* === Customer Image After Production Section === */
.blog-customer-image {
  background-color: #ffffff;
  padding: 56px 0;
}

.blog-customer-image-content {
  padding: 0 131px;
}

.blog-customer-image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.blog-customer-image-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.blog-customer-image-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}

.blog-customer-image-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  max-width: 1282px;
}

.blog-customer-image-card {
  background-color: #ffffff;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 40px 32px 48px;
  max-width: 1024px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-customer-image-grid {
  display: flex;
  gap: 32px;
  width: 100%;
}

.blog-customer-image-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  min-height: 255px;
}

.blog-customer-image-item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  width: 233px;
}

.blog-customer-image-item-title--bold {
  font-weight: 700;
  font-size: 18px;
}

.blog-customer-image-item-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
}

.blog-customer-image-item-visual {
  background-color: #ffffff;
  padding: 2.347px;
  border-radius: 0;
  width: 118px;
  height: 101px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-customer-image-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-customer-image-item-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
  color: #333333;
  text-align: left;
  margin: 0;
  white-space: nowrap;
}

.blog-customer-image-summary {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.blog-customer-image-summary-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  text-align: center;
  margin: 0;
  width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-customer-image-content {
    padding: 0 20px;
  }

  .blog-customer-image-title {
    font-size: 24px;
    white-space: normal;
  }

  .blog-customer-image-grid {
    flex-direction: column;
    gap: 24px;
  }

  .blog-customer-image-item {
    min-height: auto;
    padding: 16px;
  }

  .blog-customer-image-item-title {
    width: 100%;
  }

  .blog-customer-image-card {
    padding: 24px 16px;
  }
}

/* === Benefits and Loss Prevention Section === */
.blog-benefits-losses {
  padding: 56px 0;
  background-color: #ffffff;
}

.blog-benefits-losses-content {
  padding: 0 32px;
  max-width: 1920px;
  margin: 0 auto;
}

.blog-benefits-losses-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.blog-benefits-losses-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.blog-benefits-losses-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  white-space: nowrap;
}

.blog-benefits-losses-title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
}

.blog-benefits-losses-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1024px;
  width: 100%;
}

.blog-benefits-losses-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.blog-benefits-losses-card {
  background-color: #ffffff;
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 24px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-benefits-losses-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.blog-benefits-losses-card-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  text-align: left;
  margin: 0;
}

.blog-benefits-losses-conclusion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.blog-benefits-losses-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -1px;
  transform: scaleY(-1);
}

.blog-benefits-losses-arrow img {
  width: 89.985px;
  height: 44.947px;
  transform: scaleY(-1);
}

.blog-benefits-losses-solution {
  background-color: #f5f5f5;
  border: 0.5px solid #ffffff;
  border-radius: 0;
  padding: 24px 0;
  width: 100%;
  text-align: center;
}

.blog-benefits-losses-solution p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #333333;
  margin: 0;
  max-width: 674px;
  margin-left: auto;
  margin-right: auto;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-benefits-losses-content {
    padding: 0 20px;
  }

  .blog-benefits-losses-subtitle {
    font-size: 18px;
    white-space: normal;
  }

  .blog-benefits-losses-title {
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
    white-space: normal;
    text-align: center;
  }

  .blog-benefits-losses-card {
    padding: 20px;
  }

  .blog-benefits-losses-card-title {
    white-space: normal;
  }
  .blog-benefits-losses-solution {
    padding: 16px;
  }

  .blog-benefits-losses-solution p {
    font-size: 18px;
  }
}

/* === CEO Message Section === */
.blog-ceo-message {
  padding: 0 0 64px 0;
  background-color: #ffffff;
  background-image: url(./assets/svg/repBG.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.blog-ceo-message-content {
  padding: 0 128px;
  max-width: 1920px;
  margin: 0 auto;
}

.blog-ceo-message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  max-width: 1024px;
  margin: 0 auto;
}

.blog-ceo-message-header {
  background-color: #ffffff;
  border-radius: 0;
  padding: 16px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.blog-ceo-message-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  margin: 0;
  white-space: nowrap;
}

.blog-ceo-message-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin: 0;
  white-space: nowrap;
}

.blog-ceo-message-main {
  display: flex;
  gap: 64px;
  width: 100%;
  align-items: flex-start;
}

.blog-ceo-message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.blog-ceo-message-text-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
  text-align: left;
  margin: 0;
}

.blog-ceo-message-text-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  text-align: left;
}

.blog-ceo-message-text-content p {
  margin: 0 0 8px 0;
}

.blog-ceo-message-text-content p:last-child {
  margin-bottom: 0;
}

.blog-ceo-message-cta {
  align-self: flex-start;
}

.blog-ceo-message-button {
  background: #d25800;
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 0;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  min-width: 139px;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.blog-ceo-message-button:hover {
  background: #b04a00;
}

.blog-ceo-message-button svg {
  width: 24px;
  height: 24px;
}

.blog-ceo-message-button span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
}

.blog-ceo-message-image {
  width: 343px;
  flex-shrink: 0;
}

.blog-ceo-message-image-wrapper {
  width: 343.948px;
  position: relative;
}

.blog-ceo-message-image-frame {
  width: 100%;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.blog-ceo-message-image-content {
  width: 100%;
  height: 367.473px;
  position: relative;
}

.blog-ceo-message-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #7e7e7e;
  transform: rotate(180deg) scaleY(-1);
  object-position: top center;
}

.blog-ceo-message-image-caption {
  position: absolute;
  bottom: 30px;
  left: 78px;
  text-shadow: rgba(0, 0, 0, 0.32) 0px 4px 16.9px;
  white-space: nowrap;
  z-index: 2;
}

.blog-ceo-message-company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}

.blog-ceo-message-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-ceo-message-content {
    padding: 0 20px;
  }

  .blog-ceo-message-container {
    gap: 16px;
  }

  .blog-ceo-message-title {
    font-size: 18px;
    white-space: normal;
  }

  .blog-ceo-message-subtitle {
    white-space: normal;
  }

  .blog-ceo-message-main {
    flex-direction: column;
    gap: 32px;
  }

  .blog-ceo-message-image {
    width: 100%;
    align-self: center;
  }

  .blog-ceo-message-image-wrapper {
    width: 100%;
    max-width: 343.948px;
    margin: 0 auto;
  }

  .blog-ceo-message-button {
    width: 100%;
    max-width: 194.6px;
  }
}

/* === Learning Pricing Section === */
.blog-learning-pricing {
  padding: 56px 0;
  background-color: #ffffff;
}

.blog-learning-pricing-content {
  padding: 0 131px;
}

.blog-learning-pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.blog-learning-pricing-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.blog-learning-pricing-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  white-space: nowrap;
}

.blog-learning-pricing-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  margin: 0;
  white-space: nowrap;
}

.blog-learning-pricing-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  margin: 0;
  max-width: 772px;
}

/* Blog Learning Pricing Card */
.blog-learning-pricing-card {
  background-color: #ffffff;
  padding: 32px;
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin: 0 auto;
}

/* Two Column Layout */
.blog-learning-pricing-plans {
  display: flex;
  gap: 32px;
  width: 100%;
}

.blog-learning-pricing-plan {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

/* Plan Header */
.blog-learning-pricing-plan-header {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 16px 0;
  text-align: center;
  background-color: #ffffff;
}

.blog-learning-pricing-plan-price {
  margin-bottom: 8px;
}

.blog-learning-price-amount {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #333333;
}

.blog-learning-price-unit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #333333;
}

.blog-learning-pricing-plan-hours {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 1.7;
}

/* Plan Content */
.blog-learning-pricing-plan-content {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #ffffff;
  flex: 1;
}

/* Features List */
.blog-learning-pricing-plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-learning-pricing-feature-item {
  background-color: #f5f5f5;
  border-radius: 0;
  padding: 8px 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
}

.blog-learning-pricing-feature-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  line-height: 1.4;
}

.blog-learning-pricing-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
  margin: 8px 0 0 0;
  text-align: left;
}

/* Details Section */
.blog-learning-pricing-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-learning-pricing-details-header {
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 8px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}

.blog-learning-pricing-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-learning-pricing-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-learning-pricing-detail-category {
  background-color: #f5f5f5;
  border-radius: 0;
  padding: 8px 16px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
}

.blog-learning-pricing-detail-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #333333;
  line-height: 1.5;
  text-align: left;
}

.blog-learning-pricing-detail-content p {
  margin: 0 0 8px 0;
}

.blog-learning-pricing-detail-content p:last-child {
  margin-bottom: 0;
}

/* Estimate Message */
.blog-learning-pricing-estimate {
  border: none;
  border-radius: 0;
  padding: 48px 60px;
  text-align: center;
  background-color: #ffffff;
  position: relative;
  background-image: url(./assets/svg/webLP-fvleft.svg),
    url(./assets/svg/webLP-fvright.svg);
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
}

.blog-learning-pricing-estimate p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 1.5;
  margin: 0;
}

/* Support Section */
.blog-learning-pricing-support-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.blog-learning-pricing-support-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
}

.blog-learning-pricing-support-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.blog-learning-pricing-support-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-learning-pricing-support-header {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 0;
  padding: 16px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 1.3;
}

.blog-learning-pricing-support-content {
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.blog-learning-pricing-support-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
}

.blog-learning-pricing-support-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
}

/* Options Section */
.blog-learning-pricing-options-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.blog-learning-pricing-options-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  margin: 0;
  line-height: normal;
}

.blog-learning-pricing-options-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.blog-learning-pricing-option-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.blog-learning-pricing-option-header {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 0;
  padding: 16px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #333333;
  line-height: 1.3;
}

.blog-learning-pricing-option-content {
  border-left: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.blog-learning-pricing-option-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333333;
  line-height: 1.4;
}

.blog-learning-pricing-plan-content {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-learning-pricing-plan-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-learning-pricing-feature {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}

.blog-learning-pricing-feature-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.blog-learning-pricing-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #333333;
  margin: 8px 0 0 0;
}

.blog-learning-pricing-details-header {
  border: 0.5px solid #ebebeb;
  border-radius: 0;
  padding: 8px 0;
  text-align: center;
}

.blog-learning-pricing-details-header h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.blog-learning-pricing-detail-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-learning-pricing-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-learning-pricing-detail-category {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
}

.blog-learning-pricing-detail-content {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #333333;
}

.blog-learning-pricing-detail-content p {
  margin: 0 0 8px 0;
}

.blog-learning-pricing-detail-content p:last-child {
  margin-bottom: 0;
}

.blog-learning-pricing-estimate {
  border: none;
  border-radius: 0;
  padding: 48px 24px;
  text-align: center;
}

.blog-learning-pricing-estimate p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.blog-learning-pricing-support,
.blog-learning-pricing-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-learning-pricing-support-title,
.blog-learning-pricing-options-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  color: #333333;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}

.blog-learning-pricing-support-items,
.blog-learning-pricing-options-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blog-learning-pricing-support-item,
.blog-learning-pricing-option-item {
  display: flex;
  flex-direction: column;
}

.blog-learning-pricing-support-category,
.blog-learning-pricing-option-category {
  background-color: #f5f5f5;
  border: 1px solid #f5f5f5;
  border-radius: 0;
  padding: 16px 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #333333;
}

.blog-learning-pricing-support-content,
.blog-learning-pricing-option-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-learning-pricing-support-price {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  text-align: center;
}

.blog-learning-pricing-support-desc,
.blog-learning-pricing-option-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #333333;
  text-align: center;
}

/* === Consultation Section === */
.blog-consultation {
  background-color: rgba(255, 240, 219, 0.12);
  padding: 56px 0;
}

.blog-consultation-content {
  padding: 0 131px;
}

.blog-consultation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  width: 100%;
}

.blog-consultation-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.blog-consultation-title {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: normal;
  color: #333333;
  margin: 0;
}

.blog-consultation-description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #333333;
  margin: 0;
  max-width: 1694px;
}

.blog-consultation-image {
  border-radius: 0;
  overflow: hidden;
  max-width: 1216px;
  width: 100%;
  height: 388px;
  background-color: #7e7e7e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-learning-pricing-content,
  .blog-consultation-content {
    padding: 0 20px;
  }

  .blog-learning-pricing-container {
    gap: 24px;
  }

  .blog-learning-pricing-title,
  .blog-consultation-title {
    font-size: 24px;
    white-space: normal;
  }

  .blog-learning-pricing-subtitle {
    font-size: 18px;
    white-space: normal;
  }

  .blog-learning-pricing-plans {
    flex-direction: column;
    gap: 24px;
  }

  .blog-learning-pricing-card {
    padding: 16px;
    gap: 32px;
  }

  .blog-learning-pricing-plan-content {
    padding: 16px;
    gap: 24px;
  }

  .blog-learning-pricing-support-title,
  .blog-learning-pricing-options-title {
    font-size: 24px;
  }

  .blog-learning-pricing-support-header,
  .blog-learning-pricing-option-header {
    font-size: 20px;
    padding: 12px 0;
  }

  .blog-learning-pricing-support-content,
  .blog-learning-pricing-option-content {
    padding: 24px 16px;
  }

  .blog-learning-pricing-estimate {
    padding: 32px 16px;
  }

  .blog-learning-pricing-estimate p {
    font-size: 20px;
  }

  .blog-consultation-image {
    height: 250px;
  }

  .blog-footer-cta-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    height: auto;
    min-height: 55px;
  }

  .blog-footer-company-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .blog-footer-company {
    gap: 32px;
  }
}

/* Web Movie 角丸強制適用 - 最高優先度 */
.phone video.web-movie,
video.web-movie {
  border-radius: 16px !important;
  overflow: hidden !important;
  -webkit-border-radius: 16px !important;
  -moz-border-radius: 16px !important;
}

.phone video.web-movie {
  border-radius: 16px !important;
  overflow: hidden !important;
}

div.phone video.web-movie {
  border-radius: 16px !important;
  overflow: hidden !important;
}

/* sec-mar-wrap モバイル対応 - Figmaデザイン正確再現 */
@media (max-width: 768px) {
  .sec-mar-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 80px 16px 72px 16px;
    margin: 0;
    gap: 32px;
    width: 100%;
    max-width: 375px;
    margin: 0 auto;

    .sec-mar-text {
      width: 343px; /* Figmaの正確な幅 */

      .catch-wrap {
        gap: 16px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 48px; /* 重なりを防ぐために増加 */
        width: 343px;
        height: auto; /* 高さを自動調整に変更 */

        p:nth-child(1) {
          font-family: "Noto Serif JP", serif;
          font-weight: 500;
          font-size: 26px;
          line-height: 1;
          width: 260px;
          height: 26px;
          margin: 0;
          white-space: nowrap;
        }

        p:nth-child(2) {
          font-family: "Noto Serif JP", serif;
          font-weight: 500;
          font-size: 26px;
          line-height: 1;
          width: 338px;
          height: 26px;
          margin: 16px 0 0 0;
          white-space: nowrap;
        }

        p:nth-child(3) {
          font-family: "Noto Serif JP", serif;
          font-weight: 500;
          font-size: 26px;
          line-height: normal;
          width: 78px;
          height: 31px;
          margin: 16px 0 0 0;
        }
      }

      .strong {
        font-family: "Noto Serif JP", serif;
        font-weight: 500;
        font-size: 24px;
        line-height: normal;
        width: 240px;
        height: 29px;
        margin: 0 0 24px 0; /* 下マージンを増やして重なりを防ぐ */
        color: #333333;
      }

      .web-wrap {
        width: 343px;
        margin-bottom: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;

        p.serif {
          font-family: "Noto Serif JP", serif;
          font-weight: 500;
          font-size: 24px;
          line-height: normal;
          margin: 0;
          color: #333333;
        }
      }

      .line {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 500;
        font-size: 24px;
        line-height: normal;
        height: 34px;
        width: 343px;
        padding: 0 6px;
        margin: 0;
        text-align: center;
        background-color: #333333;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .detail {
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 1.5;
        width: 343px;
        height: 48px;
        margin: 16px 0 0 0;
        text-align: left;
        color: #333333;
      }
    }

    .sec-mar-icon-list {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 16px;
      margin-top: 32px;

      .sec-mar-icon-hp {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 8px 0;
        background-image: url(./assets/svg/hp-icon.svg);
        cursor: pointer;
        transition: transform 0.3s ease;
      }

      .sec-mar-icon-hp:hover {
        transform: scale(1.05);
      }

      .hp-icon-link {
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: inherit;
      }

      /* 他のアイコンを完全に非表示 */
      .sec-mar-icon-sns,
      .sec-mar-icon-pop {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
      }
    }
  }
}

/*
スクロール制御付きハンバーガーメニュー用JavaScript:
HTMLに以下を追加してください：

<script>
document.addEventListener('DOMContentLoaded', function() {
    const hamburgerMenu = document.querySelector('.hamburger-menu');
    const mobileNav = document.querySelector('.mobile-nav');
    const overlay = document.querySelector('.mobile-nav-overlay');
    const body = document.body;
    
    // ハンバーガーメニューのクリック
    if (hamburgerMenu && mobileNav) {
        hamburgerMenu.addEventListener('click', function() {
            const isActive = mobileNav.classList.contains('active');
            
            // メニューの開閉
            this.classList.toggle('active');
            mobileNav.classList.toggle('active');
            if (overlay) overlay.classList.toggle('active');
            
            // bodyのスクロール制御
            if (!isActive) {
                // メニューを開く時：スクロール無効
                body.classList.add('mobile-nav-open');
            } else {
                // メニューを閉じる時：スクロール有効
                body.classList.remove('mobile-nav-open');
            }
        });
    }
    
    // オーバーレイのクリックでメニューを閉じる
    if (overlay) {
        overlay.addEventListener('click', function() {
            hamburgerMenu.classList.remove('active');
            mobileNav.classList.remove('active');
            this.classList.remove('active');
            body.classList.remove('mobile-nav-open');
        });
    }
    
    // ESCキーでメニューを閉じる
    document.addEventListener('keydown', function(e) {
        if (e.key === 'Escape' && mobileNav.classList.contains('active')) {
            hamburgerMenu.classList.remove('active');
            mobileNav.classList.remove('active');
            if (overlay) overlay.classList.remove('active');
            body.classList.remove('mobile-nav-open');
        }
    });
});
</script>

HTMLの構造例:
<body>
  <div class="mobile-nav-overlay"></div>
  <nav class="mobile-nav">
    <a href="#" class="mobile-nav-link">ホーム</a>
    <a href="#" class="mobile-nav-link">サービス</a>
    <a href="#" class="mobile-nav-link">会社概要</a>
    <a href="#" class="mobile-nav-link">お問い合わせ</a>
  </nav>
  <div class="hamburger-menu">
    <span class="hamburger-line"></span>
    <span class="hamburger-line"></span>
    <span class="hamburger-line"></span>
  </div>
</body>
*/

/* sec-marpic モバイル対応 */
@media (max-width: 768px) {
  .sec-marpic {
    padding: 40px 16px;
    gap: 24px;
    max-width: 100%;

    .marpic-1,
    .marpic-2,
    .marpic-3,
    .marpic-4 {
      flex-direction: column;
      width: 100%;
      gap: 16px;
    }

    .marpic-1 {
      .philosophy {
        width: 100%;
        padding: 24px 16px;
        order: 1;
      }

      .card {
        width: 100%;
        order: 2;

        .card-wrap {
          width: 100%;
          height: 200px;
        }
      }
    }

    .marpic-2 {
      justify-content: center;

      .card {
        width: 100%;

        .card-wrap {
          width: 100%;
          height: 200px;
        }
      }
    }

    .marpic-3 {
      .card {
        width: 100%;

        .card-wrap {
          width: 100%;
          height: 200px;
        }
      }
    }

    .marpic-4 {
      .card-merit {
        width: 100%;

        .card-wrap {
          width: 100%;
          height: 200px;
        }
      }
    }

    /* 背景GIFのサイズ調整 */
    .kick-motion {
      background-size: 100px;
    }

    .telep-motion,
    .muscle-motion,
    .medit-motion {
      background-size: 120px;
    }
  }
}

/* sec-blog モバイル対応 */
@media (max-width: 768px) {
  .sec-blog {
    padding: 40px 16px;
    height: auto;
    min-height: 600px;

    .sec-blog-wrap {
      width: 100%;
      margin: 0;
    }

    .sec-blog-title {
      text-align: center;
      margin-bottom: 32px;

      p {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.5;
      }

      button {
        font-size: 14px;
        padding: 12px 16px;
        width: 100%;
        max-width: 300px;
      }
    }

    .blog-card-container {
      max-width: 100%;
      width: 100%;
      padding: 24px 16px;
      overflow: hidden;
      position: relative;
    }

    .blog-card-slider {
      display: flex;
      gap: 32px; /* PC版と同じギャップにする */
      transition: transform 0.3s ease;
      width: calc(
        360px * 9 + 32px * 8
      ); /* PC版と同じ計算: 360px × 9 + 32px × 8 = 3496px */
      height: auto;
    }

    .blog-card-item {
      flex: 0 0 360px; /* PC版と同じ幅にしてJavaScriptと合わせる */
      width: 360px;
      max-width: 360px;
    }

    .blog-card-inner {
      height: 180px;
    }

    .blog-card-content {
      padding: 12px;
    }

    .blog-card-title {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .blog-card-date {
      font-size: 12px;
    }

    .blog-pagination-controls {
      margin-top: 24px;
      gap: 12px;
    }

    .blog-prev-btn,
    .blog-next-btn {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    .blog-dot {
      width: 10px;
      height: 10px;
    }
  }
}

/* モバイル改行制御 */
@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

@media (min-width: 769px) {
  .mobile-break {
    display: none;
  }
}

/* sec-service モバイル対応 */
@media (max-width: 768px) {
  .sec-service {
    padding: 40px 16px;
    gap: 24px;

    .sec-service-title {
      p {
        font-size: 24px;
        margin-bottom: 24px;
        text-align: center;
        line-height: 1.4;
      }
    }

    /* モバイル版では改行を表示 */
    .mobile-br {
      display: block;
    }

    .service-card {
      .card-wrap {
        flex-direction: column;
        padding: 24px 16px;
        gap: 24px;
        height: auto;
        min-height: 400px;

        .card {
          order: 1;
          width: 100%;

          .card-body {
            margin-bottom: 16px;

            p {
              font-size: 18px;
              margin-bottom: 8px;
              text-align: center;
            }

            .strong {
              font-size: 32px;
            }
          }

          .web-wrap {
            margin-bottom: 16px;
            flex-direction: column;
            align-items: center;
            gap: 8px;

            p.serif {
              font-size: 20px;
              text-align: center;
            }

            .line {
              font-size: 32px;
              padding: 8px 16px;
              display: block;
              width: fit-content;
            }
          }

          .detail {
            font-size: 14px;
            text-align: center;
            max-width: 100%;
            line-height: 1.5;
          }
        }

        .phone {
          order: 2;
          width: 200px;
          height: 370px;
          margin: 0 auto;
          position: relative;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            width: 200px;
            height: 370px;
            margin-top: 24px;
          }

          video:not(.web-movie) {
            position: absolute;
            top: 79px;
            left: 30px;
            width: 140px;
            height: 269px;
            object-fit: cover;
            z-index: 1;
            border-radius: 0 !important;
          }

          video.web-movie {
            position: absolute;
            top: 43px;
            left: 30px;
            width: 140px;
            height: 269px;
            object-fit: cover;
            z-index: 1;
            border-radius: 12px !important;
            overflow: hidden !important;
            pointer-events: auto;
          }
        }
      }
    }
  }

  /* sec-recruit モバイル対応 */
  .sec-recruit {
    padding: 40px 16px;

    .sec-recruit-content {
      max-width: 100%;
    }

    .sec-recruit-header {
      margin-bottom: 24px;
    }

    .sec-recruit-title {
      font-size: 24px;
      line-height: 36px;
      text-align: center;
    }

    .sec-recruit-cards {
      flex-direction: column;
      gap: 16px;
      height: auto;
    }

    .recruit-card {
      padding: 20px;
    }

    .recruit-card-content {
      gap: 16px;
    }

    .recruit-title-en {
      font-size: 20px;
      line-height: 30px;
    }

    .recruit-title-jp {
      font-size: 12px;
      line-height: 18px;
    }

    .recruit-description p {
      font-size: 14px;
      line-height: 1.4;
      letter-spacing: 1.4px;
    }
  }

  /* sec-greeting モバイル対応 */
  .sec-greeting {
    padding: 40px 16px;
    gap: 24px;

    .sec-greeting-title {
      font-size: 24px;
      line-height: 36px;
      text-align: center;
    }

    .greeting-wrap {
      flex-direction: column;
      gap: 24px;

      .greeting-text {
        gap: 20px;
        order: 2;

        p {
          font-size: 14px;
          line-height: 1.5;
          letter-spacing: 1.4px;
        }
      }

      .greeting-photo {
        width: 100%;
        height: 240px;
        order: 1;

        img {
          width: 100%;
          height: 240px;
          object-fit: cover;
        }
      }
    }
  }

  /* sec-contact モバイル対応 */
  .sec-contact {
    padding: 40px 16px;

    .contact-wrap {
      width: 100%;
      max-width: 100%;
      gap: 32px;
      padding: 0;
    }

    .contact-header {
      gap: 12px;
    }

    .contact-title {
      font-size: 24px;
      line-height: 36px;
    }

    .contact-description {
      font-size: 14px;
      line-height: 21px;
    }

    .contact-form {
      gap: 0;
    }

    .form-table {
      display: block;
      border: none;
    }

    .form-row {
      display: block;
      border: none;
      border-bottom: 1px solid #d7d8db;

      &:last-child {
        border-bottom: none;
      }
    }

    .form-label,
    .form-input-cell {
      display: block;
      width: 100%;
      padding: 16px 0;
      background-color: #fafafa;
      border: none;
    }

    .form-label {
      border-bottom: none;
      padding-bottom: 8px;
    }

    .form-input-cell {
      padding-top: 0;
      padding-bottom: 16px;
    }

    .form-input,
    .form-select {
      width: 100%;
      box-sizing: border-box;
    }

    .form-textarea {
      width: 100%;
      box-sizing: border-box;
    }

    .form-notes {
      padding-bottom: 16px;
      gap: 12px;
    }

    .form-note-text {
      font-size: 14px;
      line-height: 20px;
    }

    .form-submit-wrapper {
      margin-top: 16px;
    }

    .form-submit {
      width: 100%;
      max-width: 300px;
      font-size: 16px;
      padding: 16px 32px;
      height: auto;
    }
  }
}
