@charset "UTF-8";

/* ====================================
   ABOUT Page Specific Styles
   ==================================== */

/* 0. Page Header (Adjusted Alignment)
   ==================================== */
.about-fv {
    position: relative;
    /* ヘッダーの高さ(80px)分を考慮して調整 */
    height: 50vh;
    min-height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center; /* 垂直方向中央寄せ */
    color: #fff;
    overflow: hidden;
    padding-top: 100px;
}

.about-fv-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.fv-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

/* ====================================
   1. Philosophy (Creative Modern)
   ==================================== */
.mvv-list {
    display: flex;
    flex-direction: column;
    gap: 150px; /* アイテム間の余白を大きく */
    padding-top: 20px;
}

.mvv-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景の巨大英字（data-en属性の内容を表示） */
.mvv-item::before {
    content: attr(data-en);
    position: absolute;
    top: -25%;
    left: -5%;
    font-family: var(--font-en);
    font-size: 8rem; /* 超巨大サイズ */
    font-weight: 700;
    color: var(--primary);
    opacity: 0.06; /* 薄く表示 */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* 偶数番目（逆配置） */
.mvv-item.reverse {
    flex-direction: row-reverse;
}

.mvv-item.reverse::before {
    left: auto;
    right: -5%;
}

/* --- 画像エリア --- */
.mvv-img-box {
    width: 60%;
    position: relative;
    z-index: 1;
}

/* 画像の装飾（後ろにずらした枠線） */
.mvv-img-box::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: -1;
    transition: 0.3s;
}

.mvv-item.reverse .mvv-img-box::after {
    left: auto;
    right: -20px;
}

.mvv-img {
    width: 100%;
    height: 450px;
    overflow: hidden;
    /* 角を少し落とす */
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.mvv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* ホバー時に画像ズーム＆枠線移動 */
.mvv-item:hover .mvv-img img {
    transform: scale(1.1);
}
.mvv-item:hover .mvv-img-box::after {
    transform: translate(10px, 10px);
}
.mvv-item.reverse:hover .mvv-img-box::after {
    transform: translate(-10px, 10px);
}

/* --- テキストカードエリア --- */
.mvv-content-card {
    width: 45%;
    background: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    position: relative;
    z-index: 2;
    /* 画像に重ねる */
    margin-left: -80px; 
    border-top: 4px solid var(--primary);
}

.mvv-item.reverse .mvv-content-card {
    margin-left: 0;
    margin-right: -80px;
}

/* 見出し部分 */
.mvv-head-creative {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mvv-head-creative .num {
    font-family: var(--font-en);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    /* border: 1px solid var(--primary); */
    padding: 2px 10px;
    /* border-radius: 50px; */
}

.mvv-head-creative h3 {
    font-family: var(--font-en); /* 英語も含むデザインフォントとしてOswald指定 */
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.1em;
}

/* リード文 */
.mvv-lead {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 25px;
    /* ティファニーブルーのグラデーション文字 */
    background: linear-gradient(45deg, var(--text-main) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

.mvv-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-main);
    text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
    .mvv-list { gap: 100px; }

    .mvv-item, .mvv-item.reverse {
        flex-direction: column;
        align-items: flex-start;
    }

    .mvv-item::before {
        font-size: 20vw;
        top: -10%;
        left: 0;
    }
    .mvv-item.reverse::before {
        right: 0;
        left: auto;
    }

    .mvv-img-box {
        width: 100%;
        margin-bottom: -40px; /* 重なりを維持 */
    }
    .mvv-img-box::after {
        display: none; /* スマホでは枠線を消してシンプルに */
    }
    
    .mvv-img {
        height: 250px;
    }

    .mvv-content-card,
    .mvv-item.reverse .mvv-content-card {
        width: 95%;
        margin: 0 auto; /* 中央寄せ */
        padding: 40px 30px;
    }

    .mvv-lead {
        font-size: 1.4rem;
    }
}

/* Employee Action Box (Creative Design) */
.action-box {
    position: relative;
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    margin-top: 80px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); /* ふんわり浮き上がらせる */
    overflow: hidden;
    text-align: center;
    border-top: 4px solid var(--primary); /* 上部にアクセントライン */
}

@media (max-width: 768px) {
    .mvv-lead {
        font-size: 6.5vw;
    }
}

/* 背景の透かし文字装飾 */
.action-box::before {
    content: 'ACTION';
    position: absolute;
    top: -20px;
    left: -20px;
    font-family: var(--font-en);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
    line-height: 1;
}

/* 右下の装飾 */
.action-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(10, 186, 181, 0.1) 50%);
    z-index: 0;
}

.action-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    z-index: 1;
    display: inline-block;
}

/* タイトルの装飾線 */
.action-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    margin: 15px auto 0;
}

.action-box p {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    line-height: 2.2;
    color: var(--text-main);
    font-weight: 500;
    z-index: 1;
}

@media (max-width: 768px) {
    .action-box {
        padding: 10%;
    }

    .action-box p {
        text-align: left;
    }

    .action-title {
        font-size: 6vw;
    }
}

/* ====================================
   2. Strength (Creative Magazine Layout)
   ==================================== */
.strength-creative-list {
    display: flex;
    flex-direction: column;
    gap: 120px; /* アイテム間の余白をたっぷりとる */
    position: relative;
}

.strength-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* 左右の配置バランス調整 */
    gap: 8%; 
}

/* 偶数番目は左右反転 */
.strength-row.reverse {
    flex-direction: row-reverse;
}

/* 背景の巨大数字（アウトライン） */
/* .strength-num-bg {
    position: absolute;
    top: -60px;
    left: 0;
    font-family: var(--font-en);
    font-size: 14rem;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(10, 186, 181, 0.4);
    z-index: 0;
    pointer-events: none;
    font-style: italic;
} */

.strength-row.reverse .strength-num-bg {
    left: auto;
    right: 0;
}

/* 画像エリア（縦長） */
.strength-img-box {
    width: 40%; /* 画面の4割 */
    position: relative;
    z-index: 1;
}

.strength-img-box img {
    width: 100%;
    /* 縦長比率（3:4）にしてスタイリッシュに */
    aspect-ratio: 4 / 3; 
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(10, 186, 181, 0.15); /* ずらした影 */
    transition: transform 0.6s ease;
}

.strength-row.reverse .strength-img-box img {
    box-shadow: -20px 20px 0px rgba(10, 186, 181, 0.15); /* 逆向きの影 */
}

.strength-row:hover .strength-img-box img {
    transform: scale(1.02);
}

/* テキストエリア */
.strength-info {
    width: 45%; /* 残りの幅 */
    position: relative;
    z-index: 2;
    padding-top: 40px; /* 数字との被りを考慮 */
}

/* 見出し（英語 + 日本語） */
.s-head {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.s-head .en {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 5px;
}

.s-head .jp {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

/* サブ見出し */
.s-sub {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(transparent 70%, #dcfcfb 70%); /* マーカー線 */
    display: inline-block;
    line-height: 1.6;
}

.s-desc {
    font-size: 1rem;
    line-height: 2;
    color: var(--text-main);
    text-align: justify;
}

/* Responsive */
@media (max-width: 900px) {
    .strength-creative-list {
        gap: 100px;
    }

    .strength-row, 
    .strength-row.reverse {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .strength-num-bg {
        font-size: 8rem;
        top: -40px;
        left: -10px;
    }
    .strength-row.reverse .strength-num-bg {
        left: auto;
        right: -10px;
    }

    .strength-img-box {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .strength-img-box img {
        aspect-ratio: 16 / 9; /* スマホでは少し横長の方が見やすい */
        box-shadow: 10px 10px 0px rgba(10, 186, 181, 0.15);
    }
    .strength-row.reverse .strength-img-box img {
        box-shadow: 10px 10px 0px rgba(10, 186, 181, 0.15);
    }

    .strength-info {
        width: 100%;
        padding-top: 0;
    }
}


/* ====================================
   3. CEO Message (Centered Layout)
   ==================================== */
.ceo-styled-wrapper {
    position: relative;
    padding-top: 20px;
    margin-bottom: 100px;
}

/* --- Visual Area (Image & Title) --- */
.ceo-visual-area {
    position: relative;
    width: 100%;
    margin-bottom: 60px; /* 本文との間隔 */
    height: 500px; /* 画像エリアの高さ確保 */
}

/* 画像ボックス */
.ceo-img-box {
    width: 65%; /* 画面の65%を使用 */
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 0px rgba(0, 111, 206, 0.1);
}

.ceo-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* タイトルグループ（Message / 代表メッセージ） */
.ceo-title-group {
    position: absolute;
    top: 50%; /* 縦中央 */
    right: 5%; /* 右側に配置 */
    transform: translateY(-50%); /* 完全に中央に補正 */
    z-index: 2;
    text-align: left;
}

/* 英語タイトル "Message" */
.ceo-bg-title {
    font-family: var(--font-en);
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
    text-shadow: 20px 20px 40px rgba(255,255,255,0.8); /* 画像に被っても読めるように */
}

/* 日本語 "代表メッセージ" */
.ceo-sub-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.2em;
    margin-left: 10px; /* Messageより少しずらす */
}


/* --- Content Area (Body & Copy) --- */
.ceo-content-area {
    width: 100%;
    max-width: 840px; /* 読みやすい幅に制限 */
    margin: 0 auto;   /* コンテナ中央配置 */
    position: relative;
    z-index: 2;
}

/* キャッチコピーの帯（白ボックス・青文字） */
.catch-copy-wrapper {
    text-align: center; /* 中央揃え */
    margin-bottom: 50px;
    margin-top: -60px; /* 画像に少し被せる */
}

.catch-box {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 25px 60px; /* 横長に */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.5;
    text-align: center;
    min-width: 60%; /* 最低でも60%の幅を持つ */
}

/* ====================================
   3. CEO Message (Center Layout)
   ==================================== */
.ceo-center-wrapper {
    margin-bottom: 40px; /* 修正：下の余白を詰める（100px -> 40px） */
}

/* --- 1. Header (Center) --- */
.ceo-header-center {
    text-align: center;
    margin-bottom: 40px; /* 修正：ここも少し詰める */
}

.ceo-header-center .head-en {
    font-family: var(--font-en);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.ceo-header-center .head-jp {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-main);
}

/* --- 2. Visual (Center & Aligned) --- */
.ceo-visual-center {
    max-width: 760px; /* 修正：下の本文幅（760px）に合わせる */
    width: 100%;
    margin: 0 auto 50px;
    position: relative;
}

.ceo-visual-center img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    object-position: top center;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* --- 3. Body Content (Center Column) --- */
.ceo-body-content {
    max-width: 760px;
    margin: 0 auto;
}

.msg-section {
    margin-bottom: 80px;
}

/* 各セクションの見出し */
.msg-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee; /* 下線ですっきり区切る */
    line-height: 1.4;
}

.msg-section p {
    margin-bottom: 30px;
    line-height: 2.2; /* 行間広めで読みやすく */
    text-align: justify; /* 両端揃え */
    color: var(--text-main);
    font-size: 1.05rem;
}

/* 強調ボックス */
.msg-box {
    background: #F4F9FD; /* 薄い青 */
    padding: 30px;
    margin: 30px 0;
    border-left: 5px solid var(--primary);
    font-weight: 700;
    line-height: 2;
    color: var(--text-main);
}

/* 署名（習字・手書き風） */
.ceo-signature-center,
.ceo-sign-box,
.ceo-signature {
    text-align: right;
    margin-top: 60px;
    font-family: "Yuji Syuku", serif; /* 筆文字フォントに変更 */
    color: var(--text-main);
}

.ceo-signature-center .post,
.ceo-sign-box .post,
.ceo-signature .post {
    font-size: 1.1rem;
    color: #555;
    letter-spacing: 0.1em;
}

.ceo-signature-center .name,
.ceo-sign-box .name,
.ceo-signature .name {
    font-size: 3rem; /* 少し大きくして力強く */
    font-weight: 400; /* 筆文字自体の太さを活かす */
    letter-spacing: 0.15em;
    margin-right: -5px;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .ceo-header-center .head-en {
        font-size: 3rem;
    }
    .msg-heading {
        font-size: 1.4rem;
    }
    .msg-section p {
        text-align: left; /* スマホでは左揃え */
    }
    .msg-box {
        padding: 20px;
        font-size: 0.95rem;
    }
    .msg-section {
        margin-bottom: 15%;
    }
    .ceo-signature-center {
        margin-top: 0;
    }
    .ceo-signature-center .name {
        font-size: 8vw;
        margin-right: 0;
    }
}




/* 5. Company Table
   ==================================== */
.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.company-table th, 
.company-table td {
    padding: 25px;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.company-table th {
    width: 30%;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
    border-bottom: none;
}

.company-box {
    max-width: 800px; margin: 0 auto; background: #fff; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
    .company-box {
        padding: 40px 8%;
    }
}


/* Responsive
   ==================================== */
@media (max-width: 900px) {
    /* Header */
    .about-fv { height: 40vh; }

    /* MVV */
    .mvv-item, .mvv-item.reverse {
        flex-direction: column;
        gap: 30px;
    }
    .mvv-img {
        width: 100%;
        height: 250px;
    }

    /* Strength */
    .strength-grid {
        grid-template-columns: 1fr;
    }

    /* CEO */
    .ceo-visual img {
        height: 300px;
    }
    .ceo-body h3 {
        font-size: 1.5rem;
        text-align: left;
    }
    
    /* Origin */
    .origin-section { padding: 60px 0; }
    .origin-desc { text-align: left; font-size: 1rem; }

    /* Company */
    .company-table th, .company-table td {
        display: block; width: 100%; padding: 15px 10px;
    }
    .company-table th { border-bottom: none; padding-bottom: 5px; }
}


.ceo-message {
    padding-bottom: 10px;
}




/* ====================================
   Name Origin (Light & Stylish)
   ==================================== */
.origin-section-stylish {
    position: relative;
    width: 100%;
    padding: 120px 0;
    color: var(--text-main);
    overflow: hidden;
    margin: 0;
}

.origin-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
}
.origin-bg-img img {
    width: 100%; height: 100%; object-fit: cover;
}

.origin-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 252, 252, 0.85));
    z-index: -1;
}

.origin-content-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--primary);
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.origin-en {
    font-family: var(--font-en);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    line-height: 1;
    color: var(--primary);
    text-shadow: none;
}

.origin-meaning {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.origin-separator {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 30px;
}

.origin-jp {
    font-size: 1.1rem;
    line-height: 2.2;
    font-weight: 500;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .origin-en { font-size: 2.5rem; }
    .origin-content-box { padding: 40px 20px; border: none; background: none; }
    .origin-section-stylish { padding: 10% 0; }
    .origin-jp { font-size: 3.6vw; }
}