/*
Theme Name: Astra Child
Theme URI: http://astra.io
Template: astra
Author: Brainstorm Force
Author URI: http://www.brainstormforce.com
Description: Astra Child Theme
Version: 1.0.0
Text Domain: astra-child
*/

/* -----------------------------------------------------
   FONT
----------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Noto+Sans+JP:wght@400;500;700&display=swap");

/* -----------------------------------------------------
   COLOR SYSTEM (Preserved)
----------------------------------------------------- */
:root {
    --bg: #f8edd1;
    --main: #264051;
    --accent: #7c9580;
    --card: #faf0e6;
    --white: #ffffff;
    --bg-light: #fffbf0;
    /* New lighter shade for gradients */

    /* New Utility Variables derived from palette */
    --shadow-color: rgba(38, 64, 81, 0.1);
    --shadow-hover: rgba(38, 64, 81, 0.2);
    --text-muted: rgba(38, 64, 81, 0.7);

    /* Border Radius - シャープなデザイン */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
}

/* -----------------------------------------------------
   RESET & BASE
----------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Michroma", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--main);
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -----------------------------------------------------
   LAYOUT UTILITIES
----------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 48px 0;
    /* セクション間の余白を削減 */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: "Michroma", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* -----------------------------------------------------
   HEADER
----------------------------------------------------- */
.header {
    background: rgba(248, 237, 209, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 20px 0;
    border-bottom: 1px solid rgba(38, 64, 81, 0.05);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Michroma", sans-serif;
    font-size: 1.8rem;
    color: var(--main);
    letter-spacing: 0.1em;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    font-weight: 500;
    color: var(--main);
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--accent);
}

.nav a:hover::after {
    width: 100%;
}

/* -----------------------------------------------------
   HERO SECTION - 新デザイン
----------------------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Added background gradient matching the design theme */
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg) 100%);
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* 新しいヒーローコンテンツ */
.hero-content-new {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-logo {
    width: 180px;
    height: auto;
}

.hero-title-new {
    font-family: "Michroma", sans-serif;
    font-size: 3.75rem;
    font-weight: 900;
    margin-bottom: 0;
    letter-spacing: -0.02em;
    color: var(--main);
}

.hero-subtitle-new {
    font-family: "Michroma", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    color: var(--main);
}

.highlight {
    background: linear-gradient(135deg, var(--accent), var(--main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 既存のヒーロースタイル（互換性のため保持） */
.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-label {
    font-family: "Michroma", sans-serif;
    color: var(--main);
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title {
    font-family: "Michroma", sans-serif;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 400;
    margin-top: 0;
}

/* -----------------------------------------------------
   VISION SECTION - ダイナミックレイアウト
----------------------------------------------------- */
.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-block {
    position: relative;
    margin-bottom: 6rem;
    padding: 3rem;
}

.vision-block:last-child {
    margin-bottom: 0;
}

.vision-block-left {
    padding-left: 4rem;
    text-align: left;
}

.vision-block-right {
    padding-right: 4rem;
    text-align: right;
    margin-left: auto;
    max-width: 85%;
}

.vision-accent {
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--main), var(--accent));
    top: 0;
}

.vision-block-left .vision-accent {
    left: 0;
}

.vision-block-right .vision-accent {
    right: 0;
}

.vision-title {
    font-family: "Michroma", sans-serif;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.vision-motto {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 2rem;
    line-height: 1.6;
}

.vision-signature {
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* -----------------------------------------------------
   PHILOSOPHY & GREETING & SECTIONS (Alternating Gradients)
----------------------------------------------------- */
#philosophy {
    background: linear-gradient(to bottom, var(--bg), var(--bg-light));
}

#greeting {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

#business {
    background: linear-gradient(to bottom, var(--bg), var(--bg-light));
}

#reports {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

#lp {
    background: linear-gradient(to bottom, var(--bg), var(--bg-light));
}

#contact {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

.philosophy-content,
.greeting-body {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 2.2;
}

.inline-keyword {
    font-family: "Michroma";
    color: var(--accent);
    font-weight: bold;
}

.greeting-sign {
    margin-top: 40px;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: right;
}

/* -----------------------------------------------------
   BUSINESS CARDS - シャープなデザイン
----------------------------------------------------- */
.business-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.business-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    /* シャープな角丸 */
    text-decoration: none;
    color: var(--main);
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.business-card h3 {
    font-family: "Michroma";
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--main);
}

.business-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-arrow {
    align-self: flex-end;
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.business-card:hover .card-arrow {
    transform: translateX(8px);
}

/* -----------------------------------------------------
   REPORTS
----------------------------------------------------- */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.report-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow-color);
    transition: all 0.3s ease;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.report-thumb {
    height: 220px;
    overflow: hidden;
}

.report-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.report-card:hover .report-thumb img {
    transform: scale(1.05);
}

.report-content {
    padding: 24px;
}

.report-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.5;
    font-weight: 700;
}

.report-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.report-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--accent);
    font-family: "Michroma";
}

.report-link {
    text-decoration: none;
    color: inherit;
}

/* -----------------------------------------------------
   LP OFFER
----------------------------------------------------- */
.lp-offer {
    background: var(--white);
    border-radius: 40px;
    margin: 80px 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.lp-offer-inner {
    max-width: 800px;
    margin: 0 auto;
}

.btn-primary {
    display: inline-block;
    background: var(--main);
    color: var(--bg);
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(38, 64, 81, 0.2);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(124, 149, 128, 0.3);
}

/* -----------------------------------------------------
   CONTACT
----------------------------------------------------- */
.contact-cta {
    background: transparent;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    padding-top: 40px;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-card {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-family: "Michroma";
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.4rem;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.footer {
    background: var(--main);
    color: var(--bg);
    padding: 40px 0;
    text-align: center;
    font-family: "Michroma";
}

/* -----------------------------------------------------
   MOBILE & RESPONSIVE
----------------------------------------------------- */
.hamburger {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 2px;
    background: var(--main);
    border-radius: 2px;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu a {
    font-family: "Michroma";
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--main);
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-label {
        font-size: 3rem;
    }

    .contact-layout {
        flex-direction: column;
    }

    .lp-offer {
        margin: 40px 16px;
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .hero-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-logo {
        width: 120px;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .vision-block-left,
    .vision-block-right {
        padding-left: 2rem;
        padding-right: 2rem;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
    }

    .vision-block-right .vision-accent {
        left: 0;
        right: auto;
    }
}

/* -----------------------------------------------------
   ANIMATIONS
----------------------------------------------------- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* -----------------------------------------------------
   TRAVEL PAGE SPECIFIC STYLES
----------------------------------------------------- */
.travel-page-body {
    background: var(--bg);
}

.travel-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--bg), var(--bg-light));
}

.travel-main-title {
    font-family: "Michroma", sans-serif;
    font-size: 4rem;
    color: var(--main);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.travel-sub-title {
    font-family: "Michroma", sans-serif;
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.travel-intro {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

.travel-text-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.travel-text {
    font-size: 1.1rem;
    line-height: 2.2;
    text-align: center;
}

.travel-places {
    background: linear-gradient(to bottom, var(--bg), var(--bg-light));
}

.travel-places-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.place-tag {
    background: var(--white);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    color: var(--main);
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
}

.place-tag:hover {
    transform: translateY(-3px);
}

.travel-reports {
    background: linear-gradient(to bottom, var(--bg-light), var(--bg));
}

/* Responsive adjustments for Travel Page */


/* ===================================
   LP Page Specific Styles (High Impact Ver.)
   =================================== */
/* 背景をLP専用の特別なものに変更 */
.lp-page {
    /* 高級感のあるダーク×ゴールドの雰囲気も少し取り入れつつ、ベースは信頼感のある白〜グレー */
    background: #f4f4f4;
}

.lp-page main {
    background: transparent;
    /* サイト設定を上書き */
}

/* ヒーローセクション：インパクト重視 */
.lp-hero {
    padding: 100px 0;
    /* インパクトのあるグラデーション背景 */
    background: radial-gradient(circle at center, #ffffff 0%, #f0f0f0 100%);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e60012' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    text-align: center;
    border-bottom: 5px solid #e60012;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* 集中線のような効果（疑似要素） */
.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
}

.lp-hero-vertical {
    writing-mode: vertical-rl;
    text-orientation: upright;
    margin: 0 20px 0 0;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 2px 2px 0 #fff;
}

.lp-hero-big {
    font-size: 3.5rem;
    /* サイズアップ */
    font-weight: 900;
    letter-spacing: 0.15em;
    margin: 0;
    line-height: 1;
    font-family: "Noto Sans JP", sans-serif;
}

.lp-hero-title {
    font-size: 6.5rem;
    /* 超巨大化 */
    font-weight: 900;
    line-height: 1;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    /* 勢いをつけるために少し傾ける */
}

.lp-hero-sub {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 10px 0 20px;
    background: linear-gradient(to right, #e60012, #ff4b1f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.lp-hero-catch {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #000, #333);
    color: #fff !important;
    display: inline-block;
    padding: 15px 60px;
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid #fff;
}

/* 価格セクション：ゴールドで特別感 */
.lp-price {
    background: #fff;
    padding: 80px 0;
}

.lp-price-circle {
    /* 円形の価格表示を追加する場合のクラス */
    background: #e60012;
    color: #fff;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(230, 0, 18, 0.4);
}

.lp-price-main {
    font-size: 5.5rem;
    font-weight: 900;
    font-family: "Michroma", sans-serif;
    color: #e60012;
    margin: 30px 0;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to bottom, #e60012, #a00000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

/* 限界突破セクション：黒背景で引き締める */
.lp-limits {
    background: #1a1a1a;
    color: #fff;
    position: relative;
}

.lp-limits .section-title strong {
    color: #fff;
    border-bottom: 3px solid #e60012;
}

.lp-limits .lp-text {
    color: #f0f0f0;
}

.lp-limits .red {
    color: #ff4b4b !important;
    /* 黒背景用に明るい赤 */
}

.lp-limit-item {
    background: rgba(255, 255, 255, 0.05);
    /* ガラス風 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 5px solid #e60012;
    padding: 25px;
    margin: 25px auto;
    max-width: 600px;
    border-radius: 5px;
    font-size: 1.1rem;
    text-align: left;
    box-shadow: none;
    color: #fff;
}

/* 理由セクション：信頼感のある青系またはグレー */
.lp-reason {
    background: #f0f4f8;
    border-top: 5px solid #0066cc;
}

.lp-reason .section-title strong {
    color: #0066cc;
}

/* コンタクトエリア：最強調 */
.lp-contact {
    background: linear-gradient(135deg, #fff7e6, #fff);
    border: 5px solid gold;
    padding: 80px 0;
}



/* ユーティリティ */
.red {
    color: #e60012 !important;
    font-weight: bold;
}

.red2 {
    color: #b30009 !important;
}

.big {
    font-size: 1.8rem !important;
}

/* 見出し装飾 */
.lp-page .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* FAQ */
.faq-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 60px auto;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .lp-hero-title {
        font-size: 4rem;
        transform: none;
    }

    .lp-hero-sub {
        font-size: 2.2rem;
    }

    .lp-price-main {
        font-size: 3.5rem;
    }

    .lp-hero-vertical {
        writing-mode: horizontal-tb;
        display: block;
        text-align: center;
        margin: 0 0 15px 0;
    }

    .lp-hero-big {
        font-size: 2.5rem;
    }
}



/* ===================================
   VR Avatar Page Specific Styles
   =================================== */
.vr-page {
    background-color: var(--bg);
    padding-bottom: 80px;
}

.vr-title {
    padding: 80px 0 40px;
    text-align: center;
}

.vr-section {
    padding: 40px 0;
}

.two-col {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.vr-col {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.vr-col:hover {
    transform: translateY(-5px);
}

.vr-heading {
    font-family: "Michroma", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    color: var(--main);
}

.vr-heading.green {
    border-color: #4CAF50;
    color: #2E7D32;
}

.vr-img-wrapper {
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #f0f0f0;
}

.vr-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vr-img-wrapper:hover img {
    transform: scale(1.05);
}

.vr-gallery {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.vr-gallery a {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.vr-gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.vr-gallery a:hover img {
    opacity: 0.8;
}

.vr-date {
    font-family: "Michroma", sans-serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 10px;
}

.vr-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--main);
}

.vr-coming {
    font-family: "Michroma", sans-serif;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.vr-contact {
    margin-top: 60px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: 60px 0;
}

/* ===================================
   TCG Page Specific Styles (Wakuwaku Edition)
   =================================== */
.tcg-page {
    background-color: var(--bg);
}

.tcg-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.tcg-main-title {
    font-size: 5rem;
    font-weight: 900;
    font-family: "Michroma", sans-serif;
    color: #333;
    text-shadow: 4px 4px 0px #FFD700;
    transform: rotate(-3deg);
    display: inline-block;
    margin-bottom: 10px;
    animation: bounceIn 1s ease;
}

.tcg-subtitle {
    font-size: 1.5rem;
    color: var(--main);
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 40px;
}

/* プレイヤー情報カード（BOX廃止・シンプル化） */
.tcg-player,
.tcg-since {
    background: transparent;
    /* 背景なし */
    display: inline-block;
    padding: 10px 30px;
    margin: 0 20px;
    border: none;
    /* 枠線なし */
    box-shadow: none;
    /* 影なし */
    position: relative;
    vertical-align: middle;
}

/* ホログラム風エフェクト（文字自体にかけるなど控えめに、あるいは削除） */
.tcg-player::before,
.tcg-since::before {
    content: none;
    /* BOXのエフェクトは削除 */
}

.tcg-player-label,
.tcg-since-label {
    font-size: 0.9rem;
    color: #888;
    display: block;
    margin-bottom: 5px;
    font-family: "Michroma", sans-serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tcg-player-name {
    font-size: 3rem;
    /* サイズアップして存在感調整 */
    font-weight: 900;
    color: #e60012;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    font-family: "Michroma", sans-serif;
}

.tcg-since-date {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    font-family: "Michroma", sans-serif;
}

.tcg-records {
    padding: 60px 0;
}

.tcg-center {
    text-align: center;
}

.tcg-heading {
    font-size: 2rem;
    margin-bottom: 30px;
    display: inline-block;
    border-bottom: 4px solid #333;
    padding: 0 20px;
    transform: skewX(-10deg);
    font-family: "Michroma", sans-serif;
}

.tcg-season-title {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.tcg-record-grid {
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.tcg-record-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 2px solid #333;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.2);
    font-weight: 900;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.tcg-record-row::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    animation: holo-shine 4s infinite linear;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.tcg-record-row:hover::before {
    opacity: 1;
}

.tcg-record-row:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 10px 10px 0px rgba(255, 215, 0, 0.5);
    border-color: #e60012;
}

.tcg-extra {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(135deg, #ff0000, #ffcc00);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
    margin-top: 40px;
    animation: pulse 2s infinite;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes holo-shine {
    0% {
        transform: translate(-150%, -150%) rotate(30deg);
    }

    100% {
        transform: translate(150%, 150%) rotate(30deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@media (max-width: 768px) {
    .two-col {
        flex-direction: column;
    }

    .tcg-main-title {
        font-size: 3rem;
    }
}

/* ===================================
   AI Business Page (Stylish & Bold)
   "Digital Intelligence Flow"
   =================================== */
.ai-page {
    background-color: var(--bg);
    overflow-x: hidden;
}

/* --- AI Hero Section --- */
.ai-hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    /* 縦並びにして安定させる */
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 20px;
    /* 横にはみ出さないためのパディング */
}

/* "AI" Big Title */
.ai-hero-title {
    font-family: "Michroma", sans-serif;
    /* サイズを調整: スマホでもはみ出さないように vw を控えめに */
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1.2;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(51, 51, 51, 0.8);
    /* 線を少し細く */
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
    /* 字間を少し空けて読みやすく */
    animation: strokeAnim 2s ease forwards;
    white-space: normal;
    /* 折り返し許可 */
    word-break: break-word;
    /* 長い単語も折り返す */
    max-width: 100%;
}

.ai-hero-title::before {
    /* タイピングエフェクトは複雑なため、シンプルなフェードインに変更してズレを防ぐ */
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #333;
    opacity: 0;
    animation: fadeInLiteral 2s ease 0.5s forwards;
}

@keyframes fadeInLiteral {
    to {
        opacity: 1;
    }
}

.ai-hero-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    margin-top: 30px;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

/* --- Philosophy / Message --- */
.ai-message-section {
    padding: 100px 20px;
    /* パディング調整 */
    text-align: center;
    overflow: hidden;
    /* はみ出し防止 */
}

.ai-message-text {
    font-size: clamp(1rem, 4vw, 1.5rem);
    /* 文字サイズもレスポンシブに */
    line-height: 2;
    font-weight: 500;
    background: linear-gradient(90deg, #333 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ai-keyword {
    font-family: "Michroma", sans-serif;
    font-size: clamp(3rem, 10vw, 6rem);
    /* キーワードも画面内に収める */
    display: block;
    margin: 40px 0;
    color: var(--accent);
    opacity: 0.1;
    /* より薄く */
    transform: none;
    /* スケール拡大をやめてズレを防止 */
    filter: blur(1px);
}

/* --- Service Flow (Vertical List) --- */
.ai-service-section {
    padding: 0 20px 150px;
    /* 横パディング追加 */
}

.ai-service-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
    /* ラインのためのスペース確保 */
}

/* 左側の細いライン（フローを表す） */
.ai-service-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}

.ai-service-item {
    padding: 60px 0 60px 60px;
    /* 左側にスペース */
    position: relative;
    transition: all 0.5s ease;
}

.ai-service-item::before {
    content: "";
    /* ポイント */
    position: absolute;
    left: -5px;
    top: 80px;
    width: 11px;
    height: 11px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    transition: background 0.3s;
}

.ai-service-item:hover::before {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.ai-num {
    font-family: "Michroma", sans-serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    opacity: 0.7;
}

.ai-service-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    background: linear-gradient(90deg, #111, #555);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-service-desc {
    font-size: 1.1rem;
    line-height: 2;
    color: #666;
}

/* --- Contact Area (Minimal) --- */
.ai-contact {
    text-align: center;
    padding: 100px 0;
}

.ai-contact-btn {
    font-family: "Michroma", sans-serif;
    font-size: 1.2rem;
    border: 1px solid #333;
    padding: 20px 60px;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
}

.ai-contact-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #333;
    transition: width 0.3s ease;
    z-index: -1;
}

.ai-contact-btn:hover {
    color: #fff;
    border-color: #333;
}

.ai-contact-btn:hover::before {
    width: 100%;
}

/* アニメーション定義 */
@keyframes fillText {
    to {
        width: 100%;
    }
}

@keyframes strokeAnim {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* スマホ対応 */
@media (max-width: 768px) {
    .ai-hero-title {
        font-size: 15vw;
    }

    .ai-service-title {
        font-size: 1.8rem;
    }

    .ai-service-item {
        padding-left: 30px;
    }

    .ai-service-list::before {
        left: 0;
    }

    .ai-service-item::before {
        left: -5px;
    }
}

/* ===================================
   AI Page Visual Effects (Cyber & Glitch)
   =================================== */

/* 背景キャンバスが見えるように背景色を透明に */
.ai-page {
    background-color: transparent !important;
}

/* タイトルホバー時のグリッチエフェクト */
.ai-hero-title:hover {
    animation: glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
    color: #333;
    /* ホバー時は実体化 */
}

.ai-hero-title:hover::before {
    display: none;
    /* グリッチ中はタイピング文字を隠す */
}

@keyframes glitch {
    0% {
        transform: translate(0)
    }

    20% {
        transform: translate(-2px, 2px)
    }

    40% {
        transform: translate(-2px, -2px)
    }

    60% {
        transform: translate(2px, 2px)
    }

    80% {
        transform: translate(2px, -2px)
    }

    100% {
        transform: translate(0)
    }
}

/* キーワードのデジタル呼吸（明滅） */
.ai-keyword {
    animation: digitalPulse 3s infinite ease-in-out;
}

@keyframes digitalPulse {
    0% {
        opacity: 0.1;
        filter: blur(1px);
    }

    50% {
        opacity: 0.3;
        filter: blur(0px);
        text-shadow: 0 0 10px var(--accent);
    }

    100% {
        opacity: 0.1;
        filter: blur(1px);
    }
}

/* サービス項目の番号にスキャンライン演出 */
.ai-num {
    position: relative;
    overflow: hidden;
}

.ai-num::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 0, 0, 0.5), transparent);
    animation: scanline 2s linear infinite;
}

@keyframes scanline {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}