/* 基本設定 */
body {
    font-family: 'Noto Sans JP', 'Yu Gothic', 'Yu Gothic UI', Meiryo, -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'MS PGothic', system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* ▼▼▼ 見出しスタイルの修正・追加 ▼▼▼ */

/* h1, h2 (ページ・セクションのメインタイトル) */
.section-title {
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700; /* font-bold */
    text-align: center;
    color: #1f2937; /* text-gray-800 */
}
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem; /* md:text-4xl */
        line-height: 1;
    }
}

/* h2 (サブセクションのタイトル) */
.section-subtitle {
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
}

/* h3 (中見出し) */
h3.content-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700;   /* font-bold */
    padding-left: 1rem; /* pl-4 */
    border-left: 4px solid #3B82F6;
    
    /* メタリック効果 */
    background: linear-gradient(140deg, #1e3a8a 0%, #1d4ed8 30%, #2563eb 50%, #1d4ed8 70%, #1e3a8a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    
    /* アニメーション */
    background-size: 200% 100%;
    animation: metallic-shine 8s ease-in-out infinite;
}

/* ▲▲▲ ここまで見出しスタイルの修正・追加 ▲▲▲ */


/* メタリックブルー テキスト (汎用) */
.metallic-blue-text {
  background: linear-gradient(140deg, #1e3a8a 0%, #1d4ed8 30%, #2563eb 50%, #1d4ed8 70%, #1e3a8a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block; 
  font-weight: 900;
  background-size: 200% 100%;
  animation: metallic-shine 8s ease-in-out infinite;
}

/* メタリックブルー 背景 */
.metallic-blue-bg {
  background: linear-gradient(45deg, #0f172a, #1e3a8a, #1d4ed8, #1e3a8a, #0f172a);
  color: white; 
  background-size: 200% 100%;
  animation: metallic-shine 8s ease-in-out infinite;
}

/* メタリックシャインアニメーションの定義 */
@keyframes metallic-shine {
  0% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

/* ヒーローセクションの背景画像 */
.hero-bg {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/Top.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    min-height: 700px;
}

/* ナビゲーションリンクの下線 */
.nav-link { 
    position: relative; 
    padding-bottom: 6px; 
}
.nav-link::after {
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    height: 2px;
    background-color: #3B82F6; 
    transform: scaleX(0); 
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.nav-link:hover::after, 
.nav-link.active::after { 
    transform: scaleX(1); 
}

/* セクション区切りライン */
.animated-line {
    width: 80px; 
    height: 3px; 
    background-color: #3B82F6; 
    margin-left: auto; 
    margin-right: auto;
    transform: scaleX(0); 
    transform-origin: left center; 
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.animated-line.is-visible { 
    transform: scaleX(1); 
}

/* プライバシーポリシーページの左ボーダー */
.border-left-blue {
    border-left: 4px solid #3B82F6;
    padding-left: 1rem;
}