@charset "UTF-8";

/* ==========================================================================
   Design Variables - ニュアンスカラーと洗練されたタイポ
   ========================================================================== */
:root {
    --base-font: 'Inter', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
    --serif-font: 'Cormorant Garamond', 'Shippori Mincho', serif;
    
    /* 2026年のトレンド：低彩度のニュアンスカラー */
    --color-bg: #fdfdfc;
    --color-main: #2a3d36;      /* 深いフォレストグリーン（落ち着き） */
    --color-accent: #b89c7d;    /* シャンパンゴールド（高級感） */
    --color-text: #333333;
    --color-light-gray: #f0f0ed;
    
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    font-family: var(--base-font);
    color: var(--color-text);
    line-height: 1.7;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Base - 背景に質感（ノイズテクスチャ）を加える
   ========================================================================== */
body {
    background: rgba(253, 253, 250, 0.8);
    line-height: 1.8;
    letter-spacing: 0.03em;
}

/* 画面の端々に「呼吸」を感じるぼかし背景を配置 */
body::before, body::after {
    content: '';
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
}
body::before {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(184,156,125,0.15) 0%, transparent 70%);
}
body::after {
    bottom: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(93,122,102,0.1) 0%, transparent 70%);
}

/* ==========================================================================
   Header - ガラスのような透明感
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    background: rgba(253, 253, 250, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* ==========================================================================
   Header - 浮遊感のあるミニマリズム
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

/* スクロール時に背景を出す（JS併用推奨） */
.header-active {
    background: rgba(253, 253, 252, 0.9);
    padding: 20px 0;
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-family: var(--serif-font);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-main);
    text-decoration: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

/* ==========================================================================
   Hero - 視線を惹きつける大胆なタイポグラフィ
   ========================================================================== */
/* ==========================================================================
   Hero - 背景画像とオーバーレイの最適化
   ========================================================================== */
.hero-lp {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    
    /* 画像の設定 */
    background-image: 
        linear-gradient(rgba(253, 253, 252, 0.7), rgba(253, 253, 252, 0.8)), /* 文字を読みやすくするための薄い膜 */
        url('hero.jpg'); 
    
    background-size: cover;      /* 画面いっぱいに広げる */
    background-position: center;  /* 画像の中央を表示 */
    background-attachment: fixed; /* スクロール時に背景を固定（パララックス効果：PCで洗練されて見えます） */
    
    position: relative;
    overflow: hidden;
}

.hero-h1 {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: block;
}

.hero-catch {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

/* モバイル対応：スマホではパララックスを解除（挙動が不安定になるのを防ぐため） */
@media (max-width: 768px) {
    .hero-lp {
        background-attachment: scroll;
        height: 80vh; /* スマホでは少し高さを抑える */
    }
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-lp::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,156,125,0.1) 0%, rgba(253,253,252,0) 70%);
    top: -100px;
    right: -100px;
}

.hero-content {
    z-index: 1;
}

.badge {
    font-family: var(--serif-font);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

.hero-lp h2 {
    font-family: var(--serif-font);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-lp p {
    font-size: 0.95rem;
    color: var(--color-main);
    letter-spacing: 0.1em;
    opacity: 0.8;
}




/* ==========================================================================
   Service Section - 余白で見せる美学
   ========================================================================== */
.section {
    padding: 160px 0;
}

.section-title-wrap {
    margin-bottom: 100px;
    text-align: center;
}

.section-title {
    font-family: var(--serif-font);
    font-size: 3rem;
    font-weight: 400;
	text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    padding-top: 40px;
    border-top: 1px solid var(--color-light-gray);
}

.feature-item small {
    font-family: var(--serif-font);
    font-size: 1.2rem;
    color: var(--color-accent);
    display: block;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}
/* ==========================================================================
   Pricing Section - 視認性と清潔感
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--color-light-gray);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

/* おすすめプラン（02）の特別仕様 */
.featured-plan {
    transform: scale(1.05); /* わずかに大きくして視覚的優先度を上げる */
    border-color: var(--color-accent); /* 枠線をシャンパンゴールドに */
    box-shadow: 0 40px 80px rgba(184,156,125,0.1); /* 柔らかい光の影 */
    z-index: 10;
}
/* 「Recommended」というラベルを、あえて控えめに、かつ美しく配置 */
.featured-plan::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 20px;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.plan-num {
    font-family: var(--serif-font);
    color: var(--color-accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-main);
}

.price {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-text);
}

.price span {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.price-detail {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.price-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-top: 40px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* スマホでは横並びを解除し、スケールも戻す */
@media (max-width: 900px) {
    .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .featured-plan {
        transform: scale(1);
    }
    .price-card {
        width: 100%;
        max-width: 450px;
    }
}
/* ==========================================================================
   EC Section - インダストリアルな洗練
   ========================================================================== */
/* Beyond the Studio (ECセクション) の幅を制限 */
#ec .ec-content {
    max-width: 900px;  /* ここも絞る */
    margin: 0 auto;    /* 中央寄せ */
    padding: 80px 60px;
    background: #fff;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 40px 100px rgba(0,0,0,0.03); /* 奥行きを出す */
    text-align: center;
}

.ec-text {
    flex: 1;
}

.ec-badge {
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
}

/* ECセクション内のテキスト幅をさらに絞って読みやすく */
.ec-description {
    max-width: 600px;  /* 文字が横に広がりすぎないように */
    margin: 0 auto;
	text-align: left;
}

/* セクション全体の背景：100%幅の「ベタ塗り」を避ける */
.bg-light {
    background-color: transparent; /* セクション全体の背景色を抜き、中身だけを浮かせる */
    position: relative;
}

/* ==========================================================================
   Works Section - 洗練された画像グリッド
   ========================================================================== */
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.work-item {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.work-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--color-light-gray);
    margin-bottom: 25px;
}

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-item:hover .work-img img {
    transform: scale(1.05); /* 控えめなズームで高級感を出す */
}

.work-category {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.work-info h3 {
    font-family: var(--serif-font);
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.work-info p {
    font-size: 0.85rem;
    color: var(--text-sub);
}

/* モバイル対応：縦並びに */
@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Pricing Section - 視認性と清潔感
   ========================================================================== */
/* Pricingセクション全体の幅を制限 */
#pricing .pricing-grid {
    max-width: 1000px; /* 100%ではなく、1000pxに制限 */
    margin: 0 auto;    /* 中央寄せ */
    background-color: transparent; /* 背景を透明にして、カードの独立感を出す */
    gap: 30px;         /* 1pxの線をやめ、隙間（余白）を作る */
}

/* Pricingカード：100%幅にならないよう自立させる */
.price-card {
    border: 1px solid var(--color-light-gray); /* 繊細な枠線を復活 */
    background: #fff;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); /* ごく薄い影 */
}

.price-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

/* おすすめ・人気プランの強調 */
.featured-plan {
    border-color: var(--color-main);
    background-color: #fdfdfd;
}

.plan-num {
    font-family: var(--serif-font);
    color: var(--color-accent);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.price-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-main);
}

.price {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--color-text);
}

.price span {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.price-detail {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.price-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-top: 40px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   Enquiry Form - 誠実さと使いやすさ
   ========================================================================== */

/* フォーム全体を中央に寄せ、幅を絞る */
.section-content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #fff;
    padding: 80px 60px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 40px 100px rgba(0,0,0,0.02);
}

.form-group {
    margin-bottom: 40px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-main);
    letter-spacing: 0.05em;
}

/* 入力欄の質感 */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--color-light-gray);
    background-color: #fafafa;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    border-radius: 0; /* シャープな印象を維持 */
}

/* フォーカス時に優しく光る */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(184,156,125,0.05);
}

/* チェックボックスのスタイリング */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-item input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--color-main); /* チェック時の色 */
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--color-text);
}

/* 送信ボタンまわり */
.form-submit {
    text-align: center;
    margin-top: 60px;
}

.form-submit .btn-main {
    width: 100%;
    max-width: 350px;
    cursor: pointer;
    border: 1px solid var(--color-main);
    background: var(--color-main);
    color: #fff;
}

.form-submit .btn-main:hover {
    background: transparent;
    color: var(--color-main);
}

.form-privacy {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--color-accent);
}

/* モバイル対応 */
@media (max-width: 768px) {
    .contact-form {
        padding: 50px 30px;
    }
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================================
   Footer - 完璧なセンタリングと繊細な文字
   ========================================================================== */
.footer {
    padding: 60px 0;
    background-color: var(--color-bg); /* 背景色に馴染ませる */
    border-top: 1px solid var(--color-light-gray); /* 繊細な境界線 */
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* 左右中央 */
    justify-content: center; /* 上下中央 */
    text-align: center;
}

.copyright {
    font-size: 0.7rem; /* 文字を小さくして上品に */
    letter-spacing: 0.2em; /* 字間を広げて「間」を作る */
    color: var(--color-accent); /* 少し色を薄くして主張を抑える */
    font-family: var(--base-font);
    text-transform: uppercase;
}

/* スマホでも確実にセンタリング */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }
}
/* ==========================================================================
   Button Design
   ========================================================================== */
.btn-main {
    display: inline-block;
    padding: 22px 60px;
    background: var(--color-main);
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 40px;
    transition: var(--transition);
    border: 1px solid var(--color-main);
}

.btn-main:hover {
    background: transparent;
    color: var(--color-main);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .features-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-lp h2 { font-size: 2.8rem; }
    .section { padding: 80px 0; }
    header .container { padding: 0 20px; }
    nav { display: none; } /* 本来はハンバーガーメニューへ */
}

@media (max-width: 768px) {
    .section {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 768px) {
    body::before, body::after {
        display: none;
    }
}

/* ==========================================================================
   Thanks Page - 完了後の余韻
   ========================================================================== */
:root {
    /* 欧文は繊細なCormorant、和文は信頼感のあるNoto Serif JP */
    --serif-font: 'Cormorant Garamond', "Noto Serif JP", serif;
}

/* ページ全体でフレックスボックスを使い、フッターを最下部に固定 */
.thanks-page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* 画面全体の高さを確保 */
    margin: 0;
}

.thanks-wrapper {
    /* 上に大きな余白、下に圧倒的な余白を作る */
    padding-top: 15vh;      /* 画面上部から少し下ろす */
    padding-bottom: 30vh;   /* ★重要：コンテンツの下に「画面半分分」の空地を作る */
    display: flex;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 80px 60px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 40px 100px rgba(0,0,0,0.02);
    text-align: center; /* 明示的にセンターへ */
}

.thanks-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	margin:0 auto;
}

.thanks-container {
    padding: 0 40px;
    width: 100%;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 80px 60px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 40px 100px rgba(0,0,0,0.02);
}

.thanks-title {
    font-family: var(--serif-font);
    font-weight: 600; /* 少し厚み（太さ）を持たせて「変な細さ」を解消 */
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    line-height: 1.6;
    color: var(--color-main);
    
    /* 文字詰めと平滑化（フォントを滑らかに見せる） */
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    letter-spacing: 0.02em; /* 詰めすぎず、わずかに空けるのが今のトレンド */
}

.thanks-message {
    margin-bottom: 50px;
}

.thanks-message p {
    font-size: 0.95rem;
    color: var(--text-sub);
    margin-bottom: 20px;
}

.thanks-message .sub-text {
    font-size: 0.8rem;
    color: var(--color-accent);
}

.thanks-footer {
    margin-top: 40px;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .thanks-content {
        padding: 60px 30px;
    }
}

/* ==========================================================================
   Sample Work - センター配置の美学
   ========================================================================== */

/* セクション全体のタイトルもセンターへ */
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.sample-center-layout {
    max-width: 900px; /* 視線が散らない最適な幅 */
    margin: 0 auto;
}

.sample-item-centered {
    display: flex;
    flex-direction: column;
    align-items: center;    /* ★子要素を水平中央に */
    justify-content: center;
    text-align: center;     /* ★テキストを中央寄せ */
    margin-bottom: 140px;
}

.sample-visual-wrap {
    width: 100%;
    max-width: 800px;       
    margin: 0 auto 50px;    
    cursor: zoom-in;
    background: #fff;
    padding: 12px;
    border: 1px solid var(--color-light-gray);
    box-shadow: 0 30px 80px rgba(0,0,0,0.05);
}

.sample-visual-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 50px 120px rgba(0,0,0,0.08);
}

.sample-visual-wrap img {
    width: 60%;           /* 親要素（wrap）の幅に合わせる */
    height: auto;
    display: block;        /* ★インラインからブロック要素に変えることでmarginが効くようになる */
    margin: 0 auto;        /* ★左右の余白を自動にして中央へ */
}

.sample-detail-centered {
    width: 100%;
    max-width: 650px;       /* テキストの読みやすさを考慮した幅 */
    margin: 0 auto 2%;         
}

.sample-name {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    margin: 15px 0 25px;
    display: block;         /* 中央寄せを確実にするため */
}

.sample-description {
    font-size: 0.95rem;
    line-height: 2;
    color: #555;
    margin: 0 auto 40px;    /* ★上下余白と中央配置 */
}

/* スペック表も左寄せを解除して中央へ */
.sample-specs-inline {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center; /* ★横並びを中央に */
    gap: 40px;
    border-top: 1px solid var(--color-light-gray);
    padding-top: 30px;
}

.sample-specs-inline li {
    font-size: 0.8rem;
    color: var(--color-accent);
}

.sample-specs-inline li span {
    font-weight: 600;
    margin-right: 5px;
    color: var(--color-main);
}


/* モーダル背景 */
.modal {
    display: none; /* 初期状態は隠す */
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9); /* 黒背景 */
    cursor: zoom-out;
    overflow-y: auto; /* 縦長画像なのでスクロール可能に */
}

/* 拡大される画像 */
.modal-content {
    margin: 40px auto;
    display: block;
    width: 90%;
    max-width: 1000px; /* あまり広がりすぎないように */
    animation: zoom 0.4s;
}

@keyframes zoom {
    from {transform: scale(0.9); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

/* 閉じるボタン */
.close {
    position: fixed;
    top: 20px; right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* クリックを促すアイコン（画像に乗せた時） */
.sample-visual-wrap {
    position: relative;
    cursor: zoom-in;
}
.zoom-icon {
    position: absolute;
    bottom: 20px; right: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    border-radius: 20px;
    opacity: 0;
    transition: 0.3s;
}
.sample-visual-wrap:hover .zoom-icon { opacity: 1; }


/* ==========================================================================
   Profile Section - 信頼を可視化する
   ========================================================================== */
.profile-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.profile-img {
    flex: 0 0 400px;
    position: relative;
}

.profile-img img {
    width: 100%;
    height: auto;
    filter: grayscale(20%); /* 少し彩度を落として洗練された印象に */
    border-radius: 2px;
}

/* 20年キャリアのバッジ */
.experience-year {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-main);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.experience-year .num {
    display: block;
    font-family: var(--serif-font);
    font-size: 2.5rem;
    line-height: 1;
}

.experience-year .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.profile-text {
    flex: 1;
}

.lead-text {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-main);
    margin-bottom: 25px;
    font-family: var(--serif-font);
}

.biography p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-sub);
}

/* スキルタグ：今風のミニマルなタグ表示 */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.skill-tags span {
    font-size: 0.75rem;
    padding: 6px 15px;
    border: 1px solid var(--color-light-gray);
    color: var(--color-accent);
    letter-spacing: 0.05em;
}

/* モバイル対応 */
@media (max-width: 900px) {
    .profile-layout {
        flex-direction: column;
        gap: 60px;
    }
    .profile-img {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }
}
/* ==========================================================================
   Journal Section - 知識を蓄積し、信頼を育む
   ========================================================================== */
#journal .journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.journal-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-light-gray);
    transition: var(--transition);
}

.journal-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
}

.journal-date {
    font-size: 0.8rem;
    color: var(--color-accent);
    font-family: var(--base-font);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.journal-item h3 {
    font-family: var(--serif-font);
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--color-main);
}

.journal-item p {
    font-size: 0.9rem;
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.link-more {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-main);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: auto;
    display: flex;
    align-items: center;
}

.link-more::after {
    content: '→';
    margin-left: 8px;
    transition: var(--transition);
}

.journal-item:hover .link-more::after {
    transform: translateX(5px);
}

/* センタリング用の微調整 */
.center-text {
    text-align: center;
}

/* モバイル対応 */
@media (max-width: 768px) {
    #journal .journal-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-lp h2 {
        font-size: 1.8rem;
        line-height: 1.4;
        letter-spacing: 0.05em;
    }
}