/* ========================================
   NOBU CORPORATE WEBSITE STYLES
   ========================================
   
   Table of Contents:
   1. RESET & BASE STYLES
   2. LAYOUT & CONTAINERS
   3. TYPOGRAPHY
   4. HEADER & NAVIGATION
   5. HERO SECTIONS
   6. COMMON SECTIONS
   7. PAGE SPECIFIC STYLES
   8. COMPONENTS
   9. RESPONSIVE DESIGN
   10. UTILITIES
   ======================================== */

/* ========================================
   1. RESET & BASE STYLES
   ======================================== */

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本設定 */
body {
  font-family: 'Noto Serif JP', serif;
  line-height: 1.5;
  color: #ffffff;
  background-color: #001626;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
}

html {
  overflow-x: hidden;
}

/* ページ読み込みオーバーレイ */
.page-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001626;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out;
}

.page-loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.page-loading-overlay.hidden {
  display: none;
}

.page-loading-image {
  width: 200px;
  height: 200px;
  object-fit: contain;
  transition: all 2.2s ease-in-out;
  transform: scale(1) translate(0, 0);
}

.page-loading-image.zoom-full {
  transform: scale(15) translate(0, -10%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 32px;
  background: rgba(0, 22, 38, 0.8);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
  justify-content: flex-end;
}

.nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.216px;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #8CC0E6;
}

.nav-list a.active {
  color: #0070c0;
  position: relative;
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0070c0;
}

/* ハンバーガーメニュー内では下線を非表示 */
@media (max-width: 768px) {
  .nav-list a.active::after {
    display: none;
  }
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
  cursor: pointer;
  z-index: 1001;
  margin-left: auto;
}

.hamburger-icon {
  width: 24px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ハンバーガーメニューがアクティブ時のアニメーション */
.hamburger-menu.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* ========================================
   5. HERO SECTIONS
   ======================================== */

/* メインビジュアル */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

/* スライド行の基本スタイル */
.slide-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

/* 1つ目のスライド行（アニメーション付き） */
.slide-row-1 {
  margin-top: -300px;
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
  display: flex;
  gap: 24px;
  align-items: center;
  width: max-content;
  position: relative;
}

/* 2つ目のスライドセクション */
.slide-section-2 {
  width: 100%;
  padding: 64px 0 0 0;
  background: #001626;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

/* 2つ目のスライドコンテナ */
.slide-container-2 {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* 2つ目のスライド行 */
.slide-row-2 {
  animation: infinity-scroll-left 60s infinite linear 0.5s both;
  display: flex;
  gap: 0px;
  align-items: center;
  width: max-content;
  position: relative;
  left: 0;
  padding: 0 20px;
}

.slide-item {
  width: 400px;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 22, 38, 0.15);
  margin: 0 8px;
  transition: transform 0.3s ease;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.slide-row-1 .slide-item:hover {
  transform: scale(1.05);
}

.slide-row-1 .slide-item:hover img {
  transform: scale(1.1);
}

.slide-item:nth-child(odd) {
  margin-top: 40px;
}

/* 1つ目のスライドセットの画像にのみブラー効果を適用 */
.slide-row-1 .slide-item img {
  filter: blur(10px);
}

/* スライドアニメーション */
@keyframes infinity-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  overflow: visible;
  width: 100%;
  max-width: 1200px;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
}

.hero-text {
  padding-top: 18%;
  width: 100%;
  max-width: 1200px;
  text-align: left;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-shadow: 0px 4px 34px rgba(25, 25, 25, 0.3);
}

.hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  max-width: 1090px;
  margin: 0 auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 443px;
}

.contact-btn {
  width: 100%;
  max-width: 443px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Spacing/XS */
  background: linear-gradient(to right, #ffffff, #999999);
  color: #001626;
  text-decoration: none;
  padding: 16px 24px; /* Spacing/L */
  border-radius: 8px; /* Round/Round */
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px; /* 18_Bold_150L */
  line-height: 1.5;
  letter-spacing: 0.216px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(153, 153, 153, 0.2);
}



.contact-btn:hover {
  background: linear-gradient(to right, #ffffff, #cccccc);
  box-shadow: 0 6px 16px rgba(153, 153, 153, 0.3);
}

.contact-btn img {
  width: 24px;
  height: 24px;
  filter: none; /* 黒いアイコン */
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

/* セクションタイトル */
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.title-icon {
  width: 54px;
  height: 40px;
  transform: rotate(150deg);
  transition: transform 0.3s ease;
}

.title-icon:hover {
  transform: rotate(105deg);
}

.title-icon img {
  width: 100%;
  height: 100%;
}

.concept .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}

.section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #ffffff;
}

/* ========================================
   6. COMMON SECTIONS
   ======================================== */

/* CONCEPTセクション */
.concept {
  padding: 120px 0 160px;
  background-color: #001626;
  position: relative;
  overflow: hidden;
}

.concept-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.concept-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.concept-text-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.concept-title {
  position: relative;
  margin-bottom: 0;
}

.concept-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #ffffff;
}

.concept-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.concept-main-text {
  font-size: 18px;
  letter-spacing: 0.336px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

.concept-sub-text {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.24px;
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
}

.concept-visual-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.concept-diagram {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  position: relative;
}

.concept-diagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.8s ease-in-out;
  opacity: 0;
}

.concept-diagram img.fade-in {
  opacity: 1;
}



.concept-main-text,
.concept-sub-text {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.8s ease forwards;
}

.concept-sub-text {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CONCEPTセクションの斜め境界 */
.concept::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

/* index.html以外のページではconcept::afterを非表示 */
/* service.htmlのconcept::afterを非表示 */
.service-hero + .concept::after {
  display: none;
}

/* boardmember.htmlのconcept::afterを非表示 */
.boardmember-hero + .concept::after {
  display: none;
}

/* news.htmlのconcept::afterを非表示 */
.news-hero + .concept::after {
  display: none;
}

/* privacypolicy.htmlのconcept::afterを非表示 */
.privacy-hero + .concept::after {
  display: none;
}

/* SERVICEセクション */
.service {
  position: relative;
  padding: 100px 0 120px;
  background-color: #f4f4f4;
  overflow: hidden;
}

.service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 100vw;
  border-color: transparent transparent #001626 transparent;
  z-index: 1;
  transform: scale(-1, 1);
}

/* index.html以外のページではservice::afterを非表示 */
/* service.htmlのservice::afterを非表示 */
.service-hero + .service::after {
  display: none;
}

/* boardmember.htmlのservice::afterを非表示 */
.boardmember-hero + .service::after {
  display: none;
}

/* news.htmlのservice::afterを非表示 */
.news-hero + .service::after {
  display: none;
}

/* privacypolicy.htmlのservice::afterを非表示 */
.privacy-hero + .service::after {
  display: none;
}

.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #F4F4F4 transparent transparent transparent;
  z-index: 1;
}

/* service.html専用のスタイル */
.service .service-header {
  margin-bottom: 0 !important;
}

.service .service-title {
  margin-bottom: 0 !important;
}

/* service.html専用の背景画像スタイル */
.service .service-background {
  background-size: cover;
}

/* index.html専用の背景画像スタイル */
#service .service-background {
  background-image: url('../images/service-bg.png') !important;
  background-size: 120% !important;
  background-position: center 30% !important;
  background-repeat: no-repeat !important;
  opacity: 1 !important;
  background-color: transparent !important; /* デバッグ用の赤を削除 */
  min-height: 400px !important; /* 最小高さを設定 */
}

/* index.html専用のレスポンシブ対応 */
@media (max-width: 1200px) {
  #service .service-background {
    background-size: 140% !important;
    background-position: center 25% !important;
    opacity: 1 !important;
    background-color: transparent !important; /* デバッグ用の赤を削除 */
  }
}

/* index.html専用のオーバーレイ設定 */
#service .service-bg-overlay {
  background: transparent !important;
}

/* index.html専用のservice-wrapper gap削除 */
#service .service-wrapper {
  gap: 0 !important;
}

/* index.html専用のservice padding調整 */
#service.service {
  padding: 80px 0 120px !important;
}

#service .service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

#service .service-visual {
  width: 100%;
  max-width: 800px;
}

#service .service-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

#service .view-more-button {
  display: flex;
  justify-content: flex-end;
}

#service .view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0070c0;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  transition: all 0.3s ease;
}

#service .view-more-link:hover {
  color: #8CC0E6;
}

#service .view-more-link .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

#service .view-more-link:hover .arrow-icon {
  transform: translateX(4px);
  color: #8CC0E6;
}

/* ========================================
   BOARDMEMBER PAGE STYLES
   ======================================== */

/* ボードメンバーページ メインビジュアル */
.boardmember-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.boardmember-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.boardmember-hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

/* ボードメンバーページ タイトルセクション */
.boardmember-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  justify-content: start;
  padding: 120px 0 40px;
  width: 1200px;
  max-width: 100%;
}



/* 会社情報セクション */
.company {
  position: relative;
  padding: 80px 0 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top-page .company {
  background-image: url('../images/company-bg.png');
}

.company-wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.company-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.company-title {
  position: relative;
  margin-bottom: 0;
}

.company-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

/* 会社情報テーブル */
.company-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: start;
  justify-content: start;
  max-width: 1200px;
  width: 100%;
  background-color: transparent;
}

.company-info-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: start;
  padding: 16px 8px;
  border-bottom: 1px solid #999999;
  position: relative;
  width: 100%;
  min-height: 60px;
}

.company-info-label {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.168px;
  color: #001626;
  width: 120px;
  flex-shrink: 0;
  padding-top: 2px;
}

.company-info-value {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  flex: 1;
}

.company-logo {
  width: 33px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.boardmember-main-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin: 0;
}

.boardmember-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  text-align: left;
  margin: 0;
  width: 1090px;
  max-width: 100%;
}

/* ボードメンバーセクション */
.boardmember-section {
  background-color: #f4f4f4;
  padding: 120px 24px;
  position: relative;
}

.boardmember-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: 1;
}

.boardmember-wrapper {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* ボードメンバーセクションタイトル */
.boardmember-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}

/* 375px以下ではboardmember-headerにpadding 0 16 */
@media (max-width: 768px) {
  .boardmember-header {
    padding: 0 16px;
  }
}

.boardmember-title {
  position: relative;
  margin-bottom: 0;
}

.boardmember-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

.boardmember .title-icon,
.boardmember-header .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
  width: 54px;
  height: 40px;
  transition: transform 0.3s ease;
}

.boardmember .title-icon:hover,
.boardmember-header .title-icon:hover {
  transform: rotate(105deg) !important;
}



/* ボードメンバーカード */
.boardmember-card {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: start;
  justify-content: start;
  width: 100%;
  max-width: 1244px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 24px;
  box-shadow: 0 4px 34px rgba(105, 150, 182, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 画像と取締役の横並びコンテナ */
.boardmember-visual-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: start;
  justify-content: start;
  width: 100%;
  position: relative;
}

.boardmember-card:hover {
  box-shadow: 0 8px 30px rgba(0, 22, 38, 0.15);
}

/* ボードメンバービジュアル */
.boardmember-visual {
  position: relative;
  width: 100%;
  max-width: 568px;
}

.boardmember-image-large {
  width: 100%;
  height: 753px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* メンバーページでクリック不可のときは通常カーソル */
.boardmember-image-large.no-hover {
  cursor: default;
}

/* 768px以下ではカーソルを通常に戻す */
@media (max-width: 768px) {
  .boardmember-image-large {
    cursor: default;
  }
}

.boardmember-image-large img {
  width: 50%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.6s ease-in-out;
}

.boardmember-image-large .member-image-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 1;
}

.boardmember-image-large .member-image {
  opacity: 1;
  z-index: 0;
}

/* 画像のz-indexを調整してオーバーレイが確実に表示されるようにする */
.boardmember-image-large img {
  z-index: 0;
}

/* PC・タブレット（768px以上）でのみホバー効果を有効 */
@media (min-width: 769px) {
  .boardmember-image-large .member-image {
    opacity: 1;
  }
  
  .boardmember-image-large .member-image-hover {
    opacity: 0;
  }
  
  .boardmember-image-large:hover .member-image {
    opacity: 0 !important;
    transition: opacity 0.6s ease-in-out;
  }
  
  .boardmember-image-large:hover .member-image-hover {
    opacity: 1 !important;
    transition: opacity 0.6s ease-in-out;
  }

  /* ホバー無効化クラス */
  .boardmember-image-large.no-hover:hover .member-image,
  .boardmember-image-large.no-hover:hover .member-image-hover {
    opacity: 1 !important;
    transition: none !important;
  }

  .boardmember-image-large.no-hover .member-image-hover {
    display: none !important; /* 繰り返し防止（ホバー用画像を非表示） */
  }
}

/* TOPのメンバー画像（no-hover時）はロゴを中央・60%で表示し、ホバー画像を非表示 */
.member-image.no-hover img {
  width: 55%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  position: absolute;
  top: 30%;
  left: 50%;
  /* 基礎配置用transformをCSS変数として保持（モバイル時に合成用） */
  --base-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.member-image.no-hover .member-image-hover {
  display: none !important; /* 繰り返し防止 */
}
.member-image.no-hover::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  border-radius: 8px;
  transition: background 0.2s ease;
  z-index: 30; /* member-info(z-index:20) より上に */
  pointer-events: none;
}
.member-image.no-hover:hover::after {
  background: rgba(255, 255, 255, 0.25);
}

.boardmember-image-large.overlay {
  background-color: #d2e9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boardmember-name-overlay {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  padding: 15px 30px;
  background: linear-gradient(to top left, rgba(0, 67, 115, 0.8) 20%, rgba(105, 150, 182, 0.8) 70%, rgba(210, 233, 249, 0.8) 100%);
  color: #ffffff;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.boardmember-name-large {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  color: #fff;
  margin: 0;
}

.boardmember-name-en-large {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #fff;
  margin: 0;
}

/* ボードメンバー詳細 */
.boardmember-details {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.boardmember-position-info {
  position: absolute;
  top: 30px;
  left: 464px;
  right: 24px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}

.boardmember-position-info .boardmember-position {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  margin: 0;
  flex-shrink: 0;
}

/* 経歴セクション */
.boardmember-career {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.career-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.career-title {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.career-title span {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  white-space: nowrap;
}

.career-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #0070c0, transparent);
}

.career-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.career-column {
  flex: 1;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.168px;
  color: #001626;
}

.career-column p {
  margin: 0;
}

.career-column-full {
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.168px;
  color: #001626;
}

.career-column-full p {
  margin: 0;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .boardmember-hero-content {
    padding: 40px 20px;
    gap: 40px;
  }
  
  .boardmember-title-section {
    padding: 120px 0 40px;
    gap: 12px;
  }
  
  .boardmember-main-title {
    font-size: 32px !important;
  }
  
  .boardmember-subtitle {
    font-size: 16px !important;
  }
  
  .boardmember-section {
    padding: 60px 16px;
  }
  
  .boardmember-wrapper {
    gap: 60px;
  }
  

  
  .boardmember-card {
    padding: 24px;
    gap: 48px;
  }
  
  .boardmember-hero::after {
    border-width: 0 0 60px 100vw;
  }
  
  .boardmember-section::before {
    border-width: 60px 100vw 0 0;
  }
  
  .boardmember-visual-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .boardmember-visual {
    width: 100%;
  }
  
  .boardmember-image-large {
    height: 700px;
    overflow: hidden;
    position: relative;
  }
  
  /* 375px以下ではboardmember-image-largeの最大高さを500pxに */
  @media (max-width: 375px) {
    .boardmember-image-large {
      max-height: 500px;
    }
  }
  
  /* 768px以下での横スクロール機能 */
  .boardmember-image-large .member-image,
  .boardmember-image-large .member-image-hover {
    transition: transform 0.3s ease;
    /* 基礎配置transformとスライドtransformを合成 */
    transform: var(--base-transform, translate(-50%, -50%)) var(--slide-transform, none);
  }
  
  /* 768px以下でのみopacityを1に設定 */
  .boardmember-image-large .member-image {
    opacity: 1;
  }
  
  .boardmember-image-large .member-image-hover {
    opacity: 1;
  }
  
  /* デフォルトのスライド位置 */
  .boardmember-image-large .member-image {
    --slide-transform: translateX(0);
  }
  .boardmember-image-large .member-image-hover {
    --slide-transform: translateX(100%);
  }
  
  /* スクロール（またはスワイプ）後のスライド位置 */
  .boardmember-image-large.scrolled .member-image {
    --slide-transform: translateX(-100%);
  }
  
  .boardmember-image-large.scrolled .member-image-hover {
    --slide-transform: translateX(0);
  }
  
  /* no-hoverクラスがある場合、ホバー用画像を非表示 */
  .boardmember-image-large.no-hover .member-image-hover {
    display: none !important;
  }
  
  /* 768px以下でもオーバーレイが確実に表示されるようにする */
  .boardmember-name-overlay {
    z-index: 10 !important;
  }
  
  .boardmember-name-large {
    font-size: 18px;
  }
  
  .boardmember-name-en-large {
    font-size: 14px;
  }
  
  .boardmember-position-info .boardmember-position {
    font-size: 14px;
  }
  
  /* index.htmlのmemberセクションの768px以下でのフォントサイズ */
  .member-name {
    font-size: 40px;
  }
  
  .member-name-en {
    font-size: 18px;
  }
  
  .career-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .boardmember-position-info {
    position: absolute !important;
    top: 5% !important;
    left: 5% !important;
    z-index: 10 !important;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
  .boardmember-card {
    padding: 16px;
  }
}

@media (min-width: 501px) {
  .contact:not(.contact-page .contact) .contact-content {
    padding: 24px 16px;
  }
  
  .boardmember-card {
    padding: 24px 16px;
  }
}

/* PC用のheroタイトルフォントサイズ */
.hero-title,
.service-hero-title,
.boardmember-main-title,
.news-main-title,
.contact-main-title,
.contact-complete-main-title {
  font-size: 48px;
}

.hero-subtitle,
.service-hero-subtitle,
.boardmember-subtitle,
.news-subtitle,
.contact-subtitle,
.contact-complete-subtitle {
  font-size: 18px;
}

/* 768px以下用のheroタイトルフォントサイズ */
@media (max-width: 768px) {
  .hero-title,
  .service-hero-title,
  .service-main-title,
  .boardmember-main-title,
  .news-main-title,
  .contact-main-title,
  .contact-complete-main-title {
    font-size: 32px !important;
  }
  
  .hero-subtitle,
  .service-hero-subtitle,
  .service-subtitle,
  .boardmember-subtitle,
  .news-subtitle,
  .contact-subtitle,
  .contact-complete-subtitle {
    font-size: 16px !important;
  }
}

.service-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background-image: url('../images/service-bg.png');
  background-size: 120%;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 1;
}

/* service.html専用のネットワークアニメーション設定 */
.service-page .service {
  position: relative;
  overflow: hidden;
}

#network-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

#network-canvas canvas {
  width: 100% !important;
  height: auto !important;
}

.service-page .service-background {
  background-image: none !important;
  position: relative;
  z-index: 1;
}

.service-page .service-wrapper {
  position: relative;
  z-index: 2;
}

.service-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.service-header {
  text-align: left;
  margin-bottom: 60px;
}

.service-title {
  position: relative;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.service .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
  transition: transform 0.3s ease;
}

.service .title-icon:hover {
  transform: rotate(105deg) !important;
}

.service-title h2 {
  color: #001626;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.288px;
}

.service-description {
  text-align: left;
  margin-bottom: 60px;
}

.service-description p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.service-visual {
  width: 100%;
  max-width: 900px;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1000px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(1) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.6s;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0070c0 0%, #005a9e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 112, 192, 0.3);
}

.feature-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.feature-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #001626;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.service-diagram-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/1100.19;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 0.3s ease, opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  opacity: 0;
  transform: translateY(30px);
}

.service-diagram-container.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-diagram-container:hover {
  transform: translateY(-10px);
}

.service-diagram {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -40px;
  object-fit: contain;
  filter: none;
}

.service-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}

.view-more-button {
  position: relative;
}

.view-more-link {
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.8s;
}

.view-more-link:hover {
  color: #8CC0E6;
}

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.view-more-link:hover .arrow-icon {
  transform: translateX(4px);
  color: #8CC0E6;
}

.service-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.polygon-decoration {
  position: absolute;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.polygon1 {
  top: -452px;
  left: calc(50% + 25.339px);
  transform: translateX(-50%);
}

.polygon1 img {
  transform: rotate(341.536deg) scaleY(-1);
  width: 1433.27px;
  height: 458.445px;
}

.polygon2 {
  top: -453px;
  left: calc(50% - 25.659px);
  transform: translateX(-50%);
}

.polygon2 img {
  transform: rotate(198.464deg);
  width: 1433.27px;
  height: 458.445px;
}

/* 課題リストセクション */
.issues {
  position: relative;
  padding: 80px 16px 80px;
  background: linear-gradient(180deg, #001626 15%, #004B80 45%, #0070C0 70%);
}

.issues::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 100vw 0 0;
  border-color: #001626 transparent transparent transparent;
  z-index: 1;
}



.issues-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.issues-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 727px;
}

.issue-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.issue-item img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.issue-item span {
  font-size: 18px;
  letter-spacing: 0.216px;
  color: #ffffff;
}

.chevron-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chevron-icon img {
  width: 46px;
  height: 46px;
  transform: scaleY(-1);
}

.issues-message {
  text-align: center;
}

.issues-message p {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.288px;
  color: #ffffff;
}

@media (max-width: 916px) {
  .service-diagram {
    left: 0;
  }
}

/* 768px以下でのissueセクションのスタイル調整 */
@media (max-width: 768px) {
  .issue-item span {
    font-size: 14px;
  }
  
  .issue-item img {
    width: 18px;
    height: 18px;
  }
  
  .chevron-icon img {
    width: 24px;
    height: 24px;
  }
  
  .issues-message p {
    font-size: 18px;
  }
}

/* 767px以下でのissues-contentのgap調整 */
@media (max-width: 767px) {
  .issues-content {
    gap: 16px;
  }
}

/* BOARD MEMBERセクション */
.board-member {
  padding: 80px 0;
  background-color: #f6f6f6;
  position: relative;
  overflow: hidden;
}

.board-member .section-title {
  position: relative;
}

.board-member .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}



.board-member .section-title h2 {
  color: #001626;
}

.member-grid {
  display: flex;
  gap: 64px;
  justify-content: center;
}

.member-card {
  width: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  max-width: 420px;
  aspect-ratio: 568 / 753;
}

.member-image {
  width: 100%;
  height: 100%;
  position: relative;
  display: block; /* aタグでもサイズを持たせる */
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.6s ease-in-out;
}

.member-image .member-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.member-image .member-image-normal {
  opacity: 1;
  z-index: 1;
}

/* 画像のz-indexを調整してオーバーレイが確実に表示されるようにする */
.member-image img {
  z-index: 1;
}

/* PC・タブレット（768px以上）でのみホバー効果を有効 */
@media (min-width: 769px) {
  .member-image .member-image-normal {
    opacity: 1;
  }
  
  .member-image .member-image-hover {
    opacity: 0;
  }
  
  .member-image:hover .member-image-normal {
    opacity: 0 !important;
    transition: opacity 0.6s ease-in-out;
  }
  
  .member-image:hover .member-image-hover {
    opacity: 1 !important;
    transition: opacity 0.6s ease-in-out;
  }
  
  /* ホバー時のカーソル変更 */
  .member-image {
    cursor: pointer;
  }

  /* ホバー無効化クラス（トップ用） */
  .member-image.no-hover {
    cursor: pointer; /* クリック可能な手の形を維持 */
  }
  .member-image.no-hover:hover .member-image-normal,
  .member-image.no-hover:hover .member-image-hover {
    opacity: 1 !important; /* 切替させない */
    transition: none !important;
  }
}

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.74);
  border-radius: 8px;
}

.member-info {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  padding: 15px 30px;
  background: linear-gradient(to top right, rgba(0, 67, 115, 0.8) 20%, rgba(105, 150, 182, 0.8) 70%, rgba(210, 233, 249, 0.8) 100%);
  color: #ffffff;
  z-index: 20;
  backdrop-filter: blur(2px);
}

.member-title {
  font-size: 24px;
  letter-spacing: 0.288px;
  color: #ffffff;
  margin-bottom: 8px;
}

.member-name {
  font-weight: 700;
  font-size: 60px;
  letter-spacing: 0.723px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.5;
}

  .member-name-en {
    font-size: 24px;
    letter-spacing: 0.288px;
    color: #ffffff;
  }
  
  /* 768px以下でのmember-imageの横スクロール機能 */
  .member-image .member-image-normal,
  .member-image .member-image-hover {
    transition: transform 0.3s ease;
    opacity: 1;
    /* 基礎配置transformとスライドtransformを合成 */
    transform: var(--base-transform, none) var(--slide-transform, none);
  }
  
  /* デフォルトのスライド位置 */
  .member-image .member-image-normal {
    --slide-transform: translateX(0);
  }
  .member-image .member-image-hover {
    --slide-transform: translateX(100%);
  }
  
  /* スクロール（またはスワイプ）後のスライド位置 */
  .member-image.scrolled .member-image-normal {
    --slide-transform: translateX(-100%);
  }
  
  .member-image.scrolled .member-image-hover {
    --slide-transform: translateX(0);
  }
  
  /* 768px以下ではカーソルを通常に戻す */
  .member-image {
    cursor: default;
  }
  
  /* 768px以下でもオーバーレイが確実に表示されるようにする */
  .member-info {
    z-index: 20 !important;
  }

/* NEWSセクション */
.news {
  padding: 80px 0; /* Spacing/XXXL */
  background-color: #001626;
  position: relative;
  overflow: hidden;
}

.news .section-title {
  position: relative;
}

.news .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}

.news .section-title {
  color: #ffffff; /* Color/White */
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px; /* 24_Bold_150L */
  line-height: 1.5;
  letter-spacing: 0.288px;
  margin-bottom: 0 !important;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 40px; /* Spacing/L */
  align-items: flex-start;
}

.news-list {
  width: 100%;
}

.news-item {
  display: flex;
  gap: 24px; /* Spacing/M */
  padding: 16px 8px; /* Spacing/S, Spacing/XS */
  border-bottom: 1px solid #999999; /* Color/Gray */
  position: relative;
}

.news-date {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px; /* 14_Regular_150L */
  line-height: 1.5;
  letter-spacing: 0.168px;
  color: #ffffff; /* Color/White */
  flex-shrink: 0;
  width: 80px;
}

.news-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px; /* 16_Regular_150L */
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #ffffff; /* Color/White */
}

/* NEWSページ専用スタイル */
.news-page .news {
  background-color: #f4f4f4;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.news-page .news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: 1;
}

.news-page .news .news-content {
  gap: 40px;
  padding: 0 24px;
}

.news-page .news .section-title h2 {
  color: #001626;
}

.news-page .news .news-date {
  color: #001626;
}

.news-page .news .news-title {
  color: #001626;
}

/* COMPANYセクション */
.company {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* TOPページ専用 - 背景画像を表示 */
.top-page .company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.company-page .company {
  background-color: #f4f4f4;
}

/* company.html専用 - 背景画像を削除 */
.company-page .company::before {
  background-image: none;
}

/* company.html専用 - service-heroとcompanyセクション間の装飾 */
.company-page .service-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.company-page .company::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #F4F4F4 transparent transparent transparent;
  z-index: 1;
}

.company-bg {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 22, 38, 0.1);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform-origin: center;
}

.company-bg.fade-in {
  opacity: 0.9;
  transform: scaleX(1);
}

.company .section-title {
  position: relative;
}

.company .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}



.company .section-title h2 {
  color: #001626;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  width: 100%;
  display: flex;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #999999;
  position: relative;
}

.info-label {
  font-size: 14px;
  letter-spacing: 0.168px;
  color: #001626;
  flex-shrink: 0;
  width: 120px;
  font-weight: 400;
}

.info-value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  letter-spacing: 0.192px;
  color: #001626;
  font-weight: 400;
}

.info-value img {
  width: 40px;
  height: 22px;
}

.info-value p {
  margin: 0;
  line-height: 1.5;
}

/* CONTACTセクション */
.contact {
  padding: 80px 0;
  background-color: #001626;
}

/* 他のページのCONTACTセクション用（contact.html以外） */
.contact:not(.contact-page .contact) .contact-content {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 22, 38, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact .section-title {
  position: relative;
}

.contact .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}



.contact .section-title h2 {
  color: #001626;
}

.contact-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
}

.contact-text p {
  margin-bottom: 16px;
  font-weight: 400;
}

.contact-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

/* CONTACTセクションのボタン専用スタイル */
.contact .contact-btn.phone {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: transparent;
  color: transparent;
  text-decoration: none;
  padding: 0;
  border-radius: 8px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 443px;
}

.contact .contact-btn.mail {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: transparent;
  color: transparent;
  text-decoration: none;
  padding: 0;
  border-radius: 8px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  transition: all 0.3s ease;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 443px;
}

.contact .contact-btn.phone:hover {
  background: none;
  background-color: transparent;
  box-shadow: none;
}

.contact .contact-btn.mail:hover {
  background: none;
  box-shadow: none;
}

.contact-btn.phone img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.contact-btn img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

/* CONTACTセクションのボタンアイコン専用スタイル */
.contact .contact-btn.phone img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.contact .contact-btn.mail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact .contact-btn.mail:hover img {
  opacity: 0.8;
}

/* btn-mail画像のhover置換 */
.contact-btn.mail img[src*="btn-mail.png"] {
  transition: all 0.3s ease;
}

/* btn-tell画像のhover置換 */
.contact-btn.phone img[src*="btn-tell.png"] {
  transition: all 0.3s ease;
}

/* PRIVACY POLICYセクション */
.privacy {
  padding: 80px 0;
  background-color: #001626;
}

.privacy .section-title {
  position: relative;
}

.privacy .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}

.privacy .container {
  padding: 0 40px;
}



.privacy-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid #ffffff !important;
  position: relative;
  cursor: pointer;
}

.privacy-title {
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.192px !important;
  color: #ffffff !important;
}

.privacy-item img {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.privacy-content {
  max-height: 0;
  overflow: hidden;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 16px 1.5em;
  color: #001626;
  transition: transform 0.5s ease, opacity 0.5s ease, max-height 0.5s ease;
  background-color: #f4f4f4;
  border: 1px solid #ccc;
}

.privacy-item.expanded + .privacy-content {
  max-height: 2000px;
  transform: none;
  opacity: 1;
}

.privacy-item.expanded img {
  transform: rotate(180deg);
}

/* フッター */
.footer {
  padding: 40px 0 24px;
  background-color: #001626;
  text-align: center;
}

.copyright {
  font-size: 12px;
  letter-spacing: 0.144px;
  color: #ffffff;
}

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

/* サービスページ メインビジュアル */
.service-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.service-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.service-hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

/* サービスページ ヘッダー - TOP.htmlと同じスタイルを使用 */

/* サービスページ タイトルセクション */
.service-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 40px;
  width: 1200px;
  max-width: 100%;
}

.service-main-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  color: #ffffff;
  text-align: left;
  margin: 0;
}

.service-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  text-align: left;
  margin: 0;
  width: 1090px;
  max-width: 100%;
}

.service-hero-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 48px; /* 24_Bold_150L * 2 */
  line-height: 1.5;
  letter-spacing: 0.576px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px; /* Spacing/S */
}

.service-hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px; /* 18_Regular_150L */
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff; /* Color/White */
}

/* サービス概要セクション */
.service-overview {
  padding: 80px 0; /* Spacing/XXXL */
  background-color: #ffffff; /* Color/White */
}

.service-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; /* Spacing/XXL */
  align-items: center;
}

.service-overview-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 32px; /* 24_Bold_150L + 8 */
  line-height: 1.5;
  letter-spacing: 0.384px;
  color: #001626; /* Color/Black */
  margin-bottom: 24px; /* Spacing/M */
}

.service-overview-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px; /* 16_Regular_150L */
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626; /* Color/Black */
  margin-bottom: 16px; /* Spacing/S */
}

.service-overview-visual img {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Round/Round */
}

/* サービス詳細セクション */
.service-details {
  padding: 80px 0; /* Spacing/XXXL */
  background-color: #f8f9fa;
}

.service-details-content {
  display: flex;
  flex-direction: column;
  gap: 64px; /* Spacing/XXL */
}

.service-category-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px; /* 24_Bold_150L */
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626; /* Color/Black */
  margin-bottom: 32px; /* Spacing/L */
  text-align: center;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px; /* Spacing/L */
}

.service-item {
  background-color: #ffffff; /* Color/White */
  padding: 32px; /* Spacing/L */
  border-radius: 8px; /* Round/Round */
  box-shadow: 0 4px 20px rgba(0, 22, 38, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 22, 38, 0.15);
}

.service-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px; /* Spacing/S */
}

.service-item-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(182deg) brightness(104%) contrast(97%);
}

.service-item-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px; /* 18_Bold_150L */
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #001626; /* Color/Black */
  margin-bottom: 12px; /* Spacing/XS + 4 */
}

.service-item-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px; /* 12_Regular_150L + 2 */
  line-height: 1.6;
  letter-spacing: 0.168px;
  color: #999999; /* Color/Gray */
}

/* アプローチセクション */
.service-approach {
  padding: 80px 0; /* Spacing/XXXL */
  background-color: #ffffff; /* Color/White */
}

.service-approach-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 32px; /* 24_Bold_150L + 8 */
  line-height: 1.5;
  letter-spacing: 0.384px;
  color: #001626; /* Color/Black */
  text-align: center;
  margin-bottom: 64px; /* Spacing/XXL */
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px; /* Spacing/L */
}

.approach-step {
  text-align: center;
  padding: 32px 24px; /* Spacing/L, Spacing/M */
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: #0070c0; /* Color/Blue/Main */
  color: #ffffff; /* Color/White */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px; /* 24_Bold_150L */
  line-height: 1;
  margin: 0 auto 24px; /* Spacing/M */
}

.step-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px; /* 18_Bold_150L */
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #001626; /* Color/Black */
  margin-bottom: 16px; /* Spacing/S */
}

.step-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px; /* 12_Regular_150L + 2 */
  line-height: 1.6;
  letter-spacing: 0.168px;
  color: #999999; /* Color/Gray */
}

/* サービスページ お問い合わせセクション */
.service-contact {
  padding: 80px 0; /* Spacing/XXXL */
  background-color: #f8f9fa;
  text-align: center;
}

.service-contact-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 32px; /* 24_Bold_150L + 8 */
  line-height: 1.5;
  letter-spacing: 0.384px;
  color: #001626; /* Color/Black */
  margin-bottom: 24px; /* Spacing/M */
}

.service-contact-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px; /* 16_Regular_150L */
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #999999; /* Color/Gray */
  margin-bottom: 40px; /* Spacing/XL */
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-contact-buttons {
  display: flex;
  gap: 16px; /* Spacing/S */
  justify-content: center;
  flex-wrap: wrap;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .service-hero-title {
    font-size: 36px;
  }
  
  .service-overview-content {
    grid-template-columns: 1fr;
    gap: 40px; /* Spacing/XL */
  }
  
  .service-overview-title {
    font-size: 28px;
  }
  
  .service-items {
    grid-template-columns: 1fr;
  }
  
  .approach-steps {
    grid-template-columns: 1fr;
  }
  
  .service-contact-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .service-contact-buttons .contact-btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   SERVICE PAGE STYLES (Figma準拠)
   ======================================== */

/* サービスセクション */
.service-section {
  background-color: #f4f4f4;
  padding: 80px 24px;
  position: relative;
}

.service-section-content {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: center;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
}

/* サービスセクションタイトル */
.service-section-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.service-section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

/* サービスアイテムグループ */
.service-item-group {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: start;
  justify-content: center;
  width: 100%;
  position: relative;
}

.service-item-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: start;
  width: 1200px;
  max-width: 100%;
}

.service-item-visual {
  width: 345px;
  height: 364px;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(180px);
  transition: all 0.8s ease-out;
}

.service-item-visual.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: end;
  justify-content: start;
  min-width: 0;
}

/* サービスカード */
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  position: relative;
  width: 100%;
  border: 2px solid #0070c0;
  opacity: 0;
  transform: translateY(180px);
  transition: all 0.8s ease-out;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: start;
  padding: 24px 40px;
  width: 100%;
}

.service-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card-title-row {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.service-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.service-card-icon img {
  width: 100%;
  height: 100%;
}

.service-card-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #004373;
  margin: 0;
}

.service-card-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  margin: 0;
  width: 100%;
}

.service-card-description p {
  margin: 0;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: start;
  justify-content: start;
  width: 100%;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
}

.service-card-list p {
  margin: 0;
}

/* 経営戦略カード専用スタイル */
.service-item-group:first-child .service-card {
  padding: 24px 40px;
}

.service-item-group:first-child .service-card-icon {
  width: 28px;
  height: 28px;
}

.service-item-group:first-child .service-card-description {
  margin-top: 16px;
}

.service-item-group:first-child .service-card-list {
  margin-top: 16px;
}

/* サービス装飾要素 */
.service-decoration {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.service-decoration img {
  width: 300px;
  height: 100px;
  transform: rotate(341.536deg) scaleY(-1);
  opacity: 0.3;
}

/* サービスお問い合わせセクション */
.service-contact-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: start;
  padding: 80px 32px;
  width: 100%;
}

.service-contact-content {
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  justify-content: start;
  padding: 40px 24px;
  border-radius: 8px;
  width: 1200px;
  max-width: 100%;
}

.service-contact-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.service-contact-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

.service-contact-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  width: 100%;
}

.service-contact-description p {
  margin: 0 0 8px 0;
}

.service-contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.service-contact-btn {
  flex: 1;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #004373;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  transition: all 0.3s ease;
}

.service-contact-btn:hover {
  background-color: #005a9e;
  transform: translateY(-1px);
}

.service-contact-btn img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* サービスプライバシーセクション */
.service-privacy-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  justify-content: start;
  padding: 80px 0;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}

.service-privacy-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.service-privacy-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.service-privacy-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #ffffff;
  margin: 0;
}

.service-privacy-item {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #999999;
  width: 100%;
  position: relative;
}

.privacy-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #ffffff;
}

.service-privacy-item img {
  width: 28px;
  height: 28px;
}

/* サービスフッター */
.service-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 40px 0 24px;
  width: 100%;
}

.service-footer .copyright {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.144px;
  color: #ffffff;
  margin: 0;
}

/* 装飾要素 */
.decorative {
  position: absolute;
  z-index: 9999;
  opacity: 0.7;
}

.decorative1 {
  top: 20px;
  left: 20px;
  width: 148px;
  height: 179px;
}

.decorative2 {
  top: 80px;
  left: 80px;
  width: 130px;
  height: 200px;
}

.decorative3 {
  top: 0px;
  left: 20px;
  width: 150px;
  height: 68px;
}

.decorative4 {
  top: 100px;
  right: 130px;
  width: 200px;
  height: 230px;
}

.decorative5 {
  top: 0;
  right: 0;
  width: 368px;
  height: 394px;
}

.decorative img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }
  
  /* decorative要素のサイズ調整 */
  .decorative1 {
    width: 120px;
    height: 145px;
  }
  
  .decorative2 {
    width: 150px;
    height: 232px;
  }
  
  .decorative3 {
    width: 190px;
    height: 100px;
  }
  
  .decorative4 {
    width: 210px;
    height: 236px;
  }
  
  .decorative5 {
    width: 295px;
    height: 315px;
  }
  

  
  .section-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .member-grid {
    align-items: center;
  }
  
  .news-content {
    flex-direction: column;
    gap: 40px;
  }
  

  
  /* index.html専用のserviceセクション */
#service.service {
  padding: 40px 0 64px;
  position: relative;
}

#service.service::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 100vw;
  border-color: transparent transparent #001626 transparent;
  z-index: 1;
}
  
  .service-background {
    background-size: 140%;
    background-position: center 25%;
    opacity: 0.04;
  }
  
  .service-bg-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.99) 100%);
  }
  
  .service-wrapper {
    padding: 0 20px;
  }
  
  .service-diagram-container {
    padding: 35px;
  }
  
  .service-title h2 {
    font-size: 30px;
  }
  
  .service-item-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {

  .top-page .container {
    padding: 0 16px;
  }

  .container {
    padding: 0;
  }
  
  /* ハンバーガーメニュー表示 */
  .hamburger-menu {
    display: block;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
  }
  
  /* ハンバーガーメニューがアクティブ時の閉じるボタン */
  .hamburger-menu.active .hamburger-icon {
    position: relative;
  }
  
  /* ハンバーガーメニューがアクティブ時の閉じるアイコン */
  .hamburger-menu.active .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #001626;
  }
  
  .hamburger-menu.active .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #001626;
  }
  
  /* ナビゲーションを非表示 */
  .nav-list {
    position: fixed;
    top: -100vh;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #f4f4f4;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    z-index: 1000;
    padding: 80px 16px 24px 16px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    visibility: hidden;
  }
  
  .nav-list.active {
    top: 0;
    right: 0;
    visibility: visible;
  }
  
  .nav-list li {
    list-style: none;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
  
  .nav-list.active li {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-list.active li:nth-child(1) { transition-delay: 0.2s; }
  .nav-list.active li:nth-child(2) { transition-delay: 0.3s; }
  .nav-list.active li:nth-child(3) { transition-delay: 0.4s; }
  .nav-list.active li:nth-child(4) { transition-delay: 0.5s; }
  .nav-list.active li:nth-child(5) { transition-delay: 0.6s; }
  .nav-list.active li:nth-child(6) { transition-delay: 0.7s; }
  .nav-list.active li:nth-child(7) { transition-delay: 0.8s; }
  
  .nav-list li a {
    font-size: 18px;
    font-weight: bold;
    color: #001626;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    text-shadow: 0px 12px 33px rgba(0, 0, 0, 0.37);
    min-height: 56px;
  }
  
  .nav-list li a:hover {
    color: #0070c0;
    transform: translateY(-2px);
  }
  
  /* decorative要素のサイズ調整（モバイル） */
  .decorative1 {
    width: 80px;
    height: 97px;
  }
  
  .decorative2 {
    width: 100px;
    height: 155px;
  }
  
  .decorative3 {
    width: 127px;
    height: 67px;
  }
  
  .decorative4 {
    width: 140px;
    height: 157px;
  }
  
  .decorative5 {
    width: 197px;
    height: 210px;
  }
  
  .slide-container {
    height: 200px;
  }
  
  .slide-item {
    width: 240px;
    height: 240px;
    border-radius: 16px;
  }
  
  .slide-item:nth-child(odd) {
    margin-top: 24px;
  }
  

  
  .slide-row-1 {
    animation: infinity-scroll-left 60s infinite linear 0.5s both;
    gap: 16px;
    margin-top: -150px;
  }
  
  .hero-title {
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .hero-text {
    margin-bottom: 40px;
    padding-top: 30%;
  }
  
  .contact-btn {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .hero-content {
    gap: 40px;
  }
  

  

  
  .nav-list {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  
  .nav-list a {
    font-size: 14px;
  }
  
  /* CONCEPTセクションの縦積み設定 */
  .concept-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .concept-main-text {
    font-size: 18px;
  }
  

  
  .service-hero::after {
    border-width: 0 0 60px 100vw;
  }
  
  .service::before {
    border-width: 60px 100vw 0 0;
  }
  

  
  .service-wrapper {
    padding: 0px;
  }
  
  .service-header {
    margin-bottom: 40px;
    text-align: left;
  }
  
  .service-content {
    gap: 40px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
  
  .feature-content h3 {
    font-size: 18px;
  }
  
  .feature-content p {
    font-size: 13px;
  }
  
  .service-diagram-container {
    padding: 0;
    border-radius: 0;
  }
  
  .service-title h2 {
    font-size: 20px;
  }
  
  .service-description p {
    font-size: 16px;
  }
  
  .view-more-link {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .issues {
    padding: 64px 0;
  }
  
  .issues-content {
    padding: 0 16px;
  }
  
  /* .service-diagram のモバイル切替はJSで処理（空定義削除） */
  

  
  .member-card {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 568 / 753;
  }
  
  .member-title {
    font-size: 14px;
  }
  
  .member-name {
    font-size: 18px;
  }
  
  .member-name-en {
    font-size: 14px;
  }
  

  

  
  .company::before {
    opacity: 0.03;
  }
  
  .company-bg {
    padding: 24px 16px;
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .info-label {
    width: 100px;
    font-size: 13px;
  }
  
  .info-value {
    font-size: 14px;
  }
  

  
  .contact-buttons {
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-btn.phone,
  .contact-btn.mail {
    padding: 14px 20px;
    font-size: 16px;
    max-width: none;
  }
  
  /* contact.html以外のcontactセクションのボタン */
  .contact:not(.contact-page .contact) .contact-btn.phone,
  .contact:not(.contact-page .contact) .contact-btn.mail {
    width: 100%;
    max-width: none;
  }
  

  
  .section-title h2 {
    font-size: 20px;
    line-height: 1.5;
  }
  
  .concept-title h2 {
    font-size: 20px;
    line-height: 1.5;
  }
  
  /* レスポンシブ対応でのtitle-icon位置調整 */
  .concept .title-icon,
  .service .title-icon,
  .board-member .title-icon,
  .news .title-icon,
  .company .title-icon,
  .contact .title-icon,
  .privacy .title-icon {
    top: -20px;
    left: -30px;
  }
}

/* index.htmlのnews list専用スタイル */
.news .news-list .news-item .news-date,
.news .news-list .news-item .news-title {
  color: #ffffff;
}

/* NEWSページ専用スタイル */
.news-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.news-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}



.news-hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

.news-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  padding: 120px 0 40px;
  width: 1200px;
  max-width: 100%;
}

.news-main-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin: 0;
}

.news-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  text-align: left;
  margin: 0;
  width: 1090px;
  max-width: 100%;
}





.news-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 8px;
  border-bottom: 1px solid #999999;
  position: relative;
}

.news-date {
  font-size: 14px;
  font-weight: 400;
  color: #001626;
  letter-spacing: 0.168px;
  white-space: nowrap;
  min-width: 100px;
}

.news-title {
  font-size: 16px;
  font-weight: 400;
  color: #001626;
  letter-spacing: 0.192px;
}

/* news.html専用のnews-titleの色設定 */
.news-page .news .news-title {
  color: #001626 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

/* news.html専用のnews-dateの色設定 */
.news-page .news .news-date {
  color: #001626 !important;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .news-main-title {
    font-size: 32px !important;
  }
  
  .news-subtitle {
    font-size: 16px !important;
  }
  
    .company {
    padding: 60px 16px;
  }
  
  .company-info-row {
    flex-direction: column;
    gap: 8px;
  }
  
  .company-info-label {
    width: 100%;
  }
  
  .news-section {
    padding: 60px 0 80px;
  }
  
  .news-section .container {
    padding: 0 40px;
  }
  
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .news-date {
    min-width: auto;
  }
}

/* より小さい画面サイズでも40px paddingを維持 */
@media (max-width: 480px) {
  .news-section .container {
    padding: 0 40px;
  }
}

/* CONTACTページ専用スタイル */
.contact-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.contact-hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 64px 20px;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

.contact-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 0;
  width: 1200px;
  max-width: 100%;
}

.contact-main-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin: 0;
}

.contact-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  text-align: left;
  margin: 0;
  width: 1090px;
  max-width: 100%;
}

/* お問い合わせセクション */
.contact-section {
  background-color: #f4f4f4;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: start;
  justify-content: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-section .section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
}

.contact-section .section-title h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

.contact-section .title-icon {
  position: absolute;
  top: -14px;
  left: -40px;
}

.contact-content {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-description p {
  font-size: 16px;
  font-weight: 400;
  color: #001626;
  letter-spacing: 0.192px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-phone-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-description {
  font-size: 16px;
  font-weight: 400;
  color: #001626;
  letter-spacing: 0.192px;
  line-height: 1.5;
  margin: 0;
}

.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  background-color: transparent;
  color: transparent;
  text-decoration: none;
  padding: 0;
  border-radius: 8px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  width: 100%;
  max-width: 419px;
  transition: all 0.3s ease;
}

.phone-btn:hover {
  background: none;
  background-color: transparent;
  box-shadow: none;
}

.phone-btn img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* .phone-btn:hover img のzoomアニメーションは未使用（空定義削除） */

.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* フォームスタイル */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
}

.required {
  color: #ff0000;
}

.form-input,
.form-textarea {
  padding: 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #cccccc;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #004373;
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

/* エラーメッセージスタイル */
.error-message {
  display: none;
  align-items: center;
  gap: 2px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.144px;
  color: #CB0000;
  margin-top: -6px;
}

.error-message svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.error-message.show {
  display: flex;
}

.form-group.has-error .form-input,
.form-group.has-error .form-textarea {
  border-color: #CB0000;
}

.privacy-text {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.144px;
  color: #666666;
  margin-bottom: 16px;
  padding: 16px;
  background-color: #f8f8f8;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  max-height: 160px;
  overflow-y: scroll;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.privacy-checkbox-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-checkbox-input {
  margin-top: 4px;
}

.form-checkbox-label {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.168px;
  color: #001626;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.privacy-checkbox.has-error .form-checkbox-label {
  color: #CB0000;
}

.form-alert {
  background-color: #FFE8E8;
  border: 1px solid #CB0000;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 24px;
  color: #CB0000;
  font-size: 14px;
  line-height: 1.6;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-btn {
  background-color: #999999;
  color: #ffffff;
  border: none;
  padding: 16px 40px;
  border-radius: 4px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 532px;
}

.submit-btn:hover {
  background-color: #777777;
}

.submit-btn:disabled {
  background-color: #999999;
  cursor: not-allowed;
}

.submit-btn:not(:disabled) {
  background-color: #004373;
}

.submit-btn:not(:disabled):hover {
  opacity: 0.8;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .contact-main-title {
    font-size: 32px !important;
  }
  
  .contact-subtitle {
    font-size: 16px !important;
  }
  
  .contact-wrapper {
    padding: 0 16px;
    gap: 60px;
  }
  
  .contact-content {
    flex-direction: column;
    gap: 24px;
  }
  
  .contact-left,
  .contact-right {
    width: 100%;
  }
  
  .phone-btn {
    width: 100%;
    justify-content: center;
  }
  
  .contact:not(.contact-page .contact) .contact-content {
    padding: 24px;
  }
  
  .contact-complete-main-title {
    font-size: 32px !important;
  }
  
  .contact-complete-subtitle {
    font-size: 16px !important;
  }
}

/* お問い合わせ完了ページ */
.contact-complete-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.contact-complete-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.contact-complete-hero-content {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  width: 1440px;
  max-width: 100%;
  margin: 0 auto;
}

.contact-complete-title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 0;
  width: 1200px;
  max-width: 100%;
}

.contact-complete-main-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.5;
  letter-spacing: 0.72px;
  background: linear-gradient(to right, #ffffff, #999999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  margin: 0;
}

.contact-complete-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.216px;
  color: #ffffff;
  text-align: left;
  margin: 0;
  width: 1090px;
  max-width: 100%;
}

.contact-complete-section {
  background-color: #f4f4f4;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
}

.contact-complete-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: 1;
}

.contact-complete-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.contact-complete-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  text-align: center;
  width: 100%;
}

.complete-message {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.complete-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.288px;
  color: #001626;
  margin: 0;
}

.complete-description {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  color: #001626;
  margin: 0;
}

.complete-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 800px;
}

.top-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0070c0;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.192px;
  transition: all 0.3s ease;
  padding: 16px 0;
}

.top-link-btn:hover {
  color: #005a9e;
  transform: translateY(-2px);
}

.top-link-btn .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.top-link-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* お問い合わせ完了ページのレスポンシブ対応 */
@media (max-width: 768px) {
  .contact-complete-main-title {
    font-size: 36px;
  }
  
  .contact-complete-subtitle {
    font-size: 16px;
  }
  
  .contact-complete-wrapper {
    padding: 0 16px;
  }
  
  .contact-complete-content {
    gap: 40px;
  }
  
  .complete-title {
    font-size: 20px;
  }
  
  .complete-description {
    font-size: 14px;
  }
  
  .top-link-btn {
    font-size: 16px;
    padding: 12px 0;
  }
  
  .complete-actions {
    justify-content: center;
  }
  
  .contact-complete-section {
    min-height: calc(100vh - 300px);
    padding: 60px 0;
  }
}

/* 500px以下のレスポンシブ対応 */
@media (max-width: 500px) {
  .member-grid {
    flex-direction: column;
  }
  
  .member-card {
    max-width: none;
  }
  
  .hero-text {
    padding-top: 45%;
  }
}

/* プライバシーポリシーページのスタイル */
.privacy-hero {
  background-color: #001626;
  padding: 0 0 60px 0;
  position: relative;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 100px 100vw;
  border-color: transparent transparent #f4f4f4 transparent;
  z-index: 1;
}

.privacy-section {
  background-color: #f4f4f4;
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 100vw 0 0;
  border-color: #f4f4f4 transparent transparent transparent;
  z-index: 1;
}

.privacy-text__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  line-height: 1.8;
  color: #001626;
}

.privacy .privacy-text__inner {
  padding: 40px !important;
  max-height: 70vh !important;
  overflow-y: auto !important;
}

.privacy-text__inner p {
  margin-bottom: 1.5rem;
}

.privacy-table01,
.privacy-table02 {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.privacy-table01 th,
.privacy-table01 td,
.privacy-table02 th,
.privacy-table02 td {
  border: 1px solid #333;
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

.privacy-table01 th,
.privacy-table02 th {
  background-color: #f8f8f8;
  font-weight: bold;
}

/* プライバシーポリシーページのレスポンシブ対応 */
@media (max-width: 768px) {
  .privacy-text__inner {
    padding: 0 16px;
  }
  
  .privacy .privacy-text__inner {
    padding: 0px !important;
  }
  
  .privacy-text__inner p {
    font-size: 14px;
  }
  
  .privacy-table01,
  .privacy-table02 {
    font-size: 12px;
  }
  
  .privacy-table01 th,
  .privacy-table01 td,
  .privacy-table02 th,
  .privacy-table02 td {
    padding: 8px;
  }
}

/* プライバシーポリシーのインラインスタイルをCSSクラスに変換 */
.privacy-title {
  font-size: 32px;
  text-align: center;
  color: #001626;
}

.privacy-page .privacy-title {
  font-size: 24px !important;
  color: #001626 !important;
}

.privacy-date {
  text-align: right;
}

.privacy-company {
  text-align: right;
}

.privacy-indent {
  margin-left: 2rem;
  text-indent: -1.2rem;
}

.privacy-indent {
  margin-left: 2rem;
  text-indent: -1.2rem;
  margin-bottom: 0;
}

.privacy-end {
  text-align: right;
}

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

.privacy-contact {
  margin-bottom: 50px;
}

.privacy-contact img {
  width: 100%;
}

.privacy-manager-info img {
  width: 100%;
}

.privacy-subtitle {
  font-size: 32px;
  text-align: center;
}

.privacy-spacing-sm {
  margin-bottom: 10px;
}

.privacy-spacing-none {
  margin-bottom: 0;
}

.privacy-table-spacing {
  margin-bottom: 30px;
}

/* テーブルの特殊スタイル */
.privacy-table01 .border-hidden {
  border-bottom: 1px dotted #333;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}

.privacy-table01 .border-hidden:last-child {
  border-bottom: 1px dotted #333;
}

.privacy-table01 td[colspan="4"] {
  border-bottom: none;
}

.privacy-table01 td[style*="border-top: none"] {
  border-top: none;
}

.privacy-table01 td[width="5%"] {
  width: 5%;
}

.privacy-table01 th[width="30%"] {
  width: 30%;
}

.privacy-table01 th[width="55%"] {
  width: 55%;
}

.privacy-table01 th[width="10%"] {
  width: 10%;
}

.privacy-table02 th[width="30%"] {
  width: 30%;
}

.privacy-table02 td[width="70%"] {
  width: 70%;
}

/* テーブルの幅指定クラス */
.privacy-width-5 {
  width: 5%;
}

.privacy-width-10 {
  width: 10%;
}

.privacy-width-30 {
  width: 30%;
}

.privacy-width-55 {
  width: 55%;
}

.privacy-width-70 {
  width: 70%;
}

.privacy-noborder {
  border-bottom: none;
  border-top: none;
}

/* ========================================
   10. UTILITIES
   ======================================== */

/* ユーティリティクラス */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 40px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.p-0 { padding: 0; }
.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 40px; }

/* ========================================
   CHEVRON DOWN
   ======================================== */

.chevron-down-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chevron-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 16px solid transparent;
  margin: 4px 0;
  opacity: 1;
  animation: fillChevron 3s ease-in-out infinite;
}

.chevron-down:nth-child(1) {
  animation-delay: 0s;
}

.chevron-down:nth-child(2) {
  animation-delay: 0.5s;
}

.chevron-down:nth-child(3) {
  animation-delay: 1s;
}

@keyframes fillChevron {
  0% {
    border-top-color: transparent;
  }
  50% {
    border-top-color: #ffffff;
  }
  100% {
    border-top-color: transparent;
  }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .chevron-down-container {
    margin: 30px 0;
    height: 50px;
  }

  .chevron-down {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #ffffff;
    margin: 10px 0;
  }
}
