/* style.css */

/* Google Fonts - Noto Sans JP & Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/* 全体的なスタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333333; /* 濃いグレーの文字色 */
    background-color: #f8f9fa; /* 明るいグレーの背景色 */
    scroll-behavior: smooth; /* スムーズスクロール */
}

/* セクション共通のパディング */
section {
    padding: 100px 0; /* パディングを増やす */
    position: relative;
    overflow: hidden; /* はみ出しを隠す */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* 見出しにMontserratを適用 */
    font-weight: 700;
    color: #333333; /* 濃いグレーの見出し色 */
}

p {
    font-weight: 300;
    color: #555555; /* やや薄いグレーの文字色 */
}

/* Hero Section */
.hero-section {
    position: relative; /* ::before の基準 */
    background-color: rgba(0, 0, 0, 0.6); /* オーバーレイの色を背景色として設定 */
    color: white; /* テキスト色を白に */
    padding: 150px 0; /* パディングをさらに増やす */
    display: flex;
    align-items: center;
    min-height: 100vh; /* 画面いっぱいに表示 */
    z-index: 0; /* コンテンツが背景の上に来るように */
}

.hero-section::before {
    content: '';
    position: fixed; /* ここで背景を固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Users/horiuchiyuki/kirishima-jin-homepage-html/スクリーンショット 2026-01-01 14.35.16.png'); /* 背景画像 */
    background-size: cover;
    background-position: center;
    z-index: -1; /* コンテンツの下に配置 */
}

.hero-section h1 {
    font-size: 4.8rem; /* フォントサイズを大きく */
    font-weight: 900; /* 極太 */
    margin-bottom: 25px;
    color: #ff8c00; /* オレンジ */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8); /* テキストシャドウを強調 */
}

.hero-section p.lead {
    font-size: 1.8rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.5;
    color: #e0e0e0; /* 明るいグレー */
}

/* 各セクションの背景色 */
.profile-section {
    background-color: #f0f2f5; /* 明るいグレー */
    color: #333333;
}

.lecture-section {
    background-color: #ffffff; /* 白 */
    color: #333333;
}

.youtube-section {
    background-color: #f0f2f5; /* 明るいグレー */
    color: #333333;
}

.book-section {
    background-color: #ffffff; /* 白 */
    color: #333333;
}

.consulting-section {
    background-color: #333333; /* 濃いグレー */
    color: white;
}
.consulting-section h2, .consulting-section h5 {
    color: #ff8c00; /* オレンジ */
}
.consulting-section p, .consulting-section ul li {
    color: #e0e0e0; /* 明るいグレー */
}
.consulting-section .card {
    background-color: #444444; /* カードの背景色 */
    border: 1px solid rgba(255, 140, 0, 0.5); /* オレンジのボーダー */
}


/* カードのスタイル */
.card {
    border: 1px solid rgba(0, 0, 0, 0.1); /* 薄いグレーのボーダー */
    border-radius: 1rem; /* 角をさらに丸く */
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.1); /* シャドウを強調 */
    background-color: #ffffff; /* カードの背景色 */
    color: #333333;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* ホバーアニメーション */
}

.card:hover {
    transform: translateY(-5px); /* 少し浮き上がる */
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.card-title {
    font-family: 'Montserrat', sans-serif; /* カードタイトルにもMontserrat */
    font-weight: 700;
    color: #ff8c00; /* オレンジ */
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card-text {
    font-family: 'Noto Sans JP', sans-serif; /* Noto Sans JPを維持 */
    color: #555555; /* 明るいグレー */
    font-weight: 300;
    line-height: 1.8;
}

/* ボタンのスタイル */
.btn {
    font-family: 'Montserrat', sans-serif; /* ボタンにもMontserrat */
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase; /* 大文字 */
    letter-spacing: 1px; /* 文字間隔 */
    position: relative; /* キラッと光るエフェクト用 */
    overflow: hidden; /* キラッと光るエフェクト用 */
    z-index: 1;
}

.btn::before { /* キラッと光るエフェクト */
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255, .3), transparent);
    transition: all 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #ff8c00; /* オレンジ */
    border-color: #ff8c00;
    color: #ffffff; /* 白文字 */
}
.btn-primary:hover {
    background-color: #e07b00; /* オレンジの濃い色 */
    border-color: #e07b00;
    color: white;
}
.btn-light {
    color: #ff8c00; /* オレンジ */
    background-color: #ffffff;
    border-color: #ff8c00; /* オレンジのボーダー */
}
.btn-light:hover {
    color: white;
    background-color: #ff8c00;
    border-color: #ff8c00;
}
.btn-danger { /* YouTubeボタン */
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}
.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}
.btn-success { /* 書籍ボタン */
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}
.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}
.btn-warning { /* 相談ボタン */
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333333; /* 濃いグレー文字 */
}
.btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
    color: #333333;
}

/* ナビゲーションバー */
.navbar {
    background-color: #ffffff !important; /* 白 */
    border-bottom: 2px solid #ff8c00; /* オレンジのボーダーを強調 */
    padding: 1rem 0;
}
.navbar-brand {
    font-family: 'Montserrat', sans-serif; /* ブランド名にもMontserrat */
    color: #ff8c00 !important; /* オレンジ */
    font-weight: 800; /* 太字 */
    font-size: 2rem; /* 大きく */
    letter-spacing: 1px;
}
.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif; /* ナビリンクにもMontserrat */
    color: #333333 !important; /* 濃いグレーの文字色 */
    font-size: 1.15rem;
    margin-left: 25px; /* 間隔を広げる */
    font-weight: 600; /* 少し太く */
    position: relative;
}
.navbar-nav .nav-link::after { /* ホバーアンダーライン */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff8c00;
    transition: width 0.3s ease-out;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
}
.navbar-toggler {
    border-color: #ff8c00;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 140, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* リストアイテムのスタイル */
ul {
    list-style-type: none; /* デフォルトの点を削除 */
    padding-left: 0;
    margin-left: 0;
}
ul li {
    position: relative;
    padding-left: 25px; /* アイコン分のスペース */
    margin-bottom: 10px;
    color: #555555; /* やや薄いグレーの文字色 */
    font-weight: 300;
}
ul li::before { /* カスタムリストアイコン */
    content: '▶'; /* オレンジの矢印 */
    color: #ff8c00;
    position: absolute;
    left: 0;
    font-size: 0.9em;
    top: 2px;
}
ul li strong {
    color: #ff8c00; /* オレンジ */
    font-weight: 500;
}

/* フッター */
footer {
    background-color: #333333; /* 濃いグレー */
    color: white;
    padding: 40px 0;
    border-top: 2px solid #ff8c00; /* オレンジのボーダーを強調 */
    font-size: 0.9rem;
}

footer a {
    color: #ff8c00; /* オレンジ */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    color: white;
}

/* プロフィールセクション */
.profile-section {
    background-color: #f0f2f5; /* 明るいグレー */
    color: #333333;
    padding: 100px 0;
}

.profile-section h2 {
    color: #333333;
    margin-bottom: 40px;
}

.profile-section .profile-image {
    width: 250px; /* 画像サイズを少し大きく */
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ff8c00;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
}

.profile-section .profile-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #555555;
}

.profile-section .profile-text strong {
    color: #ff8c00;
}

/* 書籍画像調整 */
.book-section .book-cover {
    max-width: 250px; /* 画像の最大幅を調整 */
    height: auto;
    display: block; /* 中央寄せのため */
    margin: 0 auto; /* 中央寄せ */
    border-radius: 0.5rem; /* 角を丸く */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* YouTube埋め込みのレスポンシブ対応 */
.ratio {
    margin-bottom: 20px;
}

/* 公式LINE導線 */
.line-cta {
    background-color: #ff8c00; /* オレンジ */
    color: #333333; /* 濃いグレー文字 */
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}

.line-cta h3 {
    color: #333333;
    font-weight: 700;
    margin-bottom: 20px;
}

.line-cta .btn-line {
    background-color: #00c300; /* LINEカラー */
    border-color: #00c300;
    color: white;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.line-cta .btn-line:hover {
    background-color: #00a800;
    border-color: #00a800;
}

/* スクロールアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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