@charset "UTF-8";

/* =========================================
   ベース設定 (Vision専用)
   ========================================= */
body { color: #111111; }
header { background: transparent; border-bottom: none; }
.section-padding { padding: 180px 0; }

.vision-img-placeholder {
    position: relative;
    background: #eee;
    overflow: hidden;
    padding: 0;
    border: none;
}
.vision-img-placeholder::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.05);
    border: none;
    pointer-events: none;
}
.vision-img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================================
   Hero Section
   ========================================= */
.hero-section { height: 85vh; width: 100%; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.15; background-image: url('../images/vision/vision_main.webp'); background-size: cover; background-position: center; filter: grayscale(100%); }
.hero-content { z-index: 2; text-align: center; position: relative; }
.hero-en { display: block; font-family: var(--font-gothic); font-size: 0.9rem; letter-spacing: 0.4em; color: var(--accent-main); margin-bottom: 30px; text-transform: uppercase; opacity: 0; animation: fadeIn 1s 0.5s forwards; }
.hero-jp { font-family: var(--font-mincho); font-size: 4rem; line-height: 1.6; font-weight: 500; color: #111; opacity: 0; animation: fadeInUp 1s 0.8s forwards; }
.hero-jp span { display: inline-block; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }

/* =========================================
   Philosophy: Magazine Layout
   ========================================= */
.philosophy-section { position: relative; background: #fff; overflow: hidden; }
.bg-big-text { position: absolute; font-family: sans-serif; font-weight: 900; font-size: 15vw; color: #f4f4f4; line-height: 1; z-index: 0; pointer-events: none; }
.bg-text-1 { top: 50px; left: -20px; }
.bg-text-2 { bottom: 100px; right: -20px; text-align: right; }
.mag-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-bottom: 150px; position: relative; }
.mag-layout.reverse { grid-template-columns: 1.2fr 1fr; }
.mag-layout.reverse .mag-text { order: 1; padding-left: 0; padding-right: 0; }
.mag-layout.reverse .mag-visual { order: 2; }

/* 独自の画像枠サイズ指定 */
.mag-visual .vision-img-placeholder { width: 100%; aspect-ratio: 4/3; box-shadow: 20px 20px 0 var(--accent-gold); }

.mag-text { position: relative; padding-left: 40px; }
.mag-catch { font-family: var(--font-mincho); font-size: 2.4rem; line-height: 1.5; margin-bottom: 30px; font-feature-settings: "palt"; }
.mag-body { font-size: 0.95rem; color: #444; line-height: 2.2; }
.decoration-line { width: 60px; height: 1px; background: #111; margin-bottom: 20px; }

/* =========================================
   Business Mindset
   ========================================= */
.business-section { position: relative; padding: 180px 0; color: #fff; background-image: url('../images/top/top01.webp'); background-attachment: fixed; background-size: cover; background-position: center; }
.business-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(20,30,30,0.95) 0%, rgba(47,79,79,0.85) 100%); z-index: 1; }
.biz-container { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.biz-header { margin-bottom: 80px; border-left: 10px solid var(--accent-gold); padding-left: 30px; }
.biz-title { font-family: var(--font-mincho); font-size: 3rem; line-height: 1.3; margin-bottom: 20px; }
.biz-sub { font-family: var(--font-gothic); font-size: 1rem; letter-spacing: 0.1em; color: var(--accent-gold); font-weight: 700; }
.biz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; }
.biz-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); padding: 40px; backdrop-filter: blur(10px); transition: 0.4s; height: 100%; display: flex; flex-direction: column; }
.biz-card:hover { background: rgba(255,255,255,0.1); border-color: var(--accent-gold); }
.biz-copy-head { font-size: 1.4rem; font-family: var(--font-mincho); margin-bottom: 20px; color: #fff; }
.biz-body { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin-bottom: 30px; word-break: break-all; text-align: justify; }

.pioneer-ticket { grid-column: 1 / -1; margin-top: 60px; background: #fff; color: #333; padding: 60px; position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.pioneer-ticket::before, .pioneer-ticket::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background-color: var(--accent-main); border-radius: 50%; }
.pioneer-ticket::before { left: -15px; }
.pioneer-ticket::after { right: -15px; }
.ticket-left { flex: 1; }
.ticket-right { width: 300px; display: flex; justify-content: center; align-items: center; border-left: 2px dashed #ddd; padding-left: 50px; }
.ticket-title { font-size: 2rem; font-family: var(--font-mincho); margin-bottom: 15px; color: var(--accent-main); }
.ticket-icon { font-size: 4rem; color: var(--accent-gold); }

/* =========================================
   Person Section
   ========================================= */
.person-section { padding-bottom: 150px; background: #FAFAFA; }
.person-intro { text-align: center; margin-bottom: 120px; padding-top: 60px; }
.sakai-wrapper { display: flex; align-items: flex-start; gap: 60px; background: #fff; padding: 80px 50px; box-shadow: 0 20px 50px rgba(0,0,0,0.03); margin-top: -60px; position: relative; z-index: 10; }
.sakai-img { width: 35%; flex-shrink: 0; }

/* 独自の画像枠サイズ指定 */
.sakai-img .vision-img-placeholder { aspect-ratio: 3/4; }

.sakai-content { flex: 1; position: relative; }
.sakai-header { display: flex; align-items: baseline; gap: 20px; margin-bottom: 30px; border-bottom: 1px solid #ddd; padding-bottom: 20px; }
.s-name { font-size: 1.6rem; font-family: var(--font-mincho); font-weight: 600; }
.s-role { font-size: 0.9rem; color: #666; }
.sakai-quote { font-size: 1.2rem; font-family: var(--font-mincho); color: var(--accent-main); margin-bottom: 30px; position: relative; padding-left: 20px; }
.sakai-quote::before { content: ''; position: absolute; left: 0; top: 5px; height: 1em; width: 4px; background: var(--accent-gold); }

.interview-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 15px 30px; background-color: var(--accent-main); color: #fff; font-family: var(--font-gothic); font-weight: 500; letter-spacing: 0.1em; transition: 0.4s; border: 1px solid var(--accent-main); }
.interview-link:hover { background-color: #fff; color: var(--accent-main); }
.interview-link i { font-size: 0.8em; }

/* =========================================
   レスポンシブ (SP)
   ========================================= */
@media (max-width: 768px) {
    .hero-jp { font-size: 2.5rem; }
    .mag-layout, .mag-layout.reverse { grid-template-columns: 1fr; gap: 30px; margin-bottom: 100px; }
    .mag-layout.reverse .mag-text { order: unset; }
    .mag-layout.reverse .mag-visual { order: unset; }
    .mag-text { padding-left: 0; }
    .bg-big-text { display: none; }
    .business-section { padding: 100px 0; }
    .biz-header { border-left: 5px solid var(--accent-gold); padding-left: 15px; }
    .biz-title { font-size: 1.6rem; }
    .biz-grid { grid-template-columns: 1fr; gap: 40px; }
    .pioneer-ticket { flex-direction: column; padding: 30px; text-align: center; gap: 30px; }
    .pioneer-ticket::before, .pioneer-ticket::after { display: none; }
    .ticket-right { width: 100%; border-left: none; border-top: 2px dashed #ddd; padding-left: 0; padding-top: 30px; }
    .person-intro { margin-bottom: 60px; }
    .sakai-wrapper { flex-direction: column; padding: 40px 20px; margin-top: 0; }
    .sakai-img { width: 100%; max-width: 300px; margin: 0 auto; }
    .interview-link { width: 100%; justify-content: center; }
    .sakai-header { display: block; }
}