@charset "UTF-8";

/* =========================================
   共通変数 & ベース設定
   ========================================= */
:root {
    --bg-color: #FFFFFF;
    --text-color: #333333;
    --accent-main: #2F4F4F;
    /* Dark Slate Gray */
    --accent-gold: #B89E68;
    /* Muted Gold */
    --accent-darkgold: #8A6F42;
    /* Muted Gold */
    --accent-sub: #E0E0E0;
    /* Light Gray */
    --font-mincho: 'Shippori Mincho', serif;
    --font-gothic: 'Zen Kaku Gothic New', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-gothic);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 2;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.4s ease;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* =========================================
   共通共通ユーティリティ & レイアウト
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.section-padding {
    padding: 150px 0;
}

/* SP・PC出し分け */
.pcOnly {
    display: block;
}

.spOnly {
    display: none;
}

br.sp-br {
    display: none;
}

.pcOnlyInline {
    display: inline;
}

.spOnlyInline {
    display: none;
}

@media (max-width: 768px) {
    .pcOnly {
        display: none;
    }

    .spOnly {
        display: block;
    }

    br.sp-br {
        display: block;
    }

    .pcOnlyInline {
        display: none;
    }

    .spOnlyInline {
        display: inline;
    }

    .section-padding {
        padding: 100px 0;
    }
}

/* 共通フェードインアニメーション */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

body.js-enabled .fade-in {
    opacity: 0;
    transform: translateY(40px);
}

body.js-enabled .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 募集要項・フロー用（旧アニメーション互換） */
.guidelines-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

.guidelines-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   共通コンポーネント (画像枠・ヘッダー)
   ========================================= */
/* 装飾付き画像枠 */
.img-placeholder {
    position: relative;
    background: #fff;
    z-index: 1;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 8px;
    transition: transform 0.6s ease;
}

.img-placeholder::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-main);
    z-index: -1;
    transition: 0.4s ease;
    pointer-events: none;
}

.img-placeholder:hover {
    transform: translateY(-2px);
}

.img-placeholder:hover::after {
    top: -8px;
    right: -8px;
}

/* インタビュー用画像フレーム */
.img-frame {
    position: relative;
    z-index: 1;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-main);
    z-index: -1;
    transition: 0.4s ease;
}

/* セクションタイトル */
.section-header {
    margin-bottom: 40px;
    position: relative;
}

.en-label {
    display: block;
    font-family: var(--font-mincho);
    font-size: 3.5rem;
    color: var(--accent-main);
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    line-height: 1;
    text-transform: uppercase;
}

.jp-title {
    font-family: var(--font-gothic);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-left: 5px;
    color: #666;
}

@media (max-width: 768px) {
    .en-label {
        font-size: 2.5rem;
    }

    .section-header {
        margin-bottom: 40px;
    }
}

/* =========================================
   共通グローバルナビゲーション (Header)
   ========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    width: 45%;
    max-width: 285px;
}

.nav-btn {
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 3px;
    position: relative;
    line-height: 1;
    margin-top: 5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.nav-btn::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 0%;
    height: 1px;
    background: var(--text-color);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

@media (max-width: 768px) {
    header {
        padding: 20px 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-btn {
        font-size: 0.9rem;
        margin-top: 3px;
    }
}

/* =========================================
   共通全画面メニュー (Full Menu)
   ========================================= */
.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 100px 0 80px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease;
}

.full-menu.is-active {
    opacity: 1;
    visibility: visible;
}

.menu-inner {
    width: 100%;
    max-width: 800px;
    padding: 0 5%;
    position: relative;
    margin: auto 0;
}

.menu-close {
    position: fixed;
    top: 35px;
    right: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-bottom: 1px solid #111;
    padding-bottom: 5px;
    z-index: 2001;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-list {
    list-style: none;
}

.menu-list>li {
    margin-bottom: 45px;
}

.menu-list>li>a,
.menu-cat {
    font-family: var(--font-mincho);
    font-size: 1.8rem;
    color: var(--accent-main);
    display: block;
    margin-bottom: 10px;
}

.menu-list>li>a:hover {
    color: var(--accent-gold);
}

.sub-menu {
    padding-left: 20px;
    list-style: none;
}

.sub-menu li {
    margin-bottom: 8px;
}

.sub-menu a {
    font-family: var(--font-gothic);
    font-size: 0.95rem;
    color: #555;
    transition: 0.3s;
}

.sub-menu a:hover {
    color: var(--accent-gold);
}

.menu-btn-wrap {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5em;
}

@media (max-width: 768px) {
    .menu-btn-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    }
}

.menu-entry-btn {
    display: inline-block !important;
    background: var(--accent-main);
    color: #fff !important;
    padding: 15px 60px;
    font-family: var(--font-gothic) !important;
    font-size: 1.2rem !important;
    letter-spacing: 0.2em;
    border: 1px solid var(--accent-main);
    transition: 0.3s;
}

.menu-entry-btn:hover {
    background: #fff;
    color: var(--accent-main) !important;
}

.menu-entry-btn:nth-child(2) {
    background: var(--accent-darkgold);
    border: 1px solid var(--accent-darkgold);
}

.menu-entry-btn:nth-child(2):hover {
    background: #fff;
    color: var(--accent-darkgold) !important;
}

@media (max-width: 768px) {
    .menu-list>li {
        margin-bottom: 30px;
    }

    .menu-list>li>a,
    .menu-cat {
        font-size: 1.5rem;
    }

    .sub-menu a {
        font-size: 0.9rem;
    }

    .menu-close {
        top: 25px;
        right: 20px;
        font-size: 0.9rem;
    }

    .menu-entry-btn {
        padding: 12px 40px;
        font-size: 1.1rem !important;
    }
}

/* =========================================
   共通フッター (Footer)
   ========================================= */
footer {
    background: #222;
    color: #fff;
    padding: 80px 0 30px;
    letter-spacing: 0.1em;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 60px;
}

.footer-main {
    width: 35%;
    text-align: left;
}

.footer-logo {
    display: inline-block;
    max-width: 260px;
    margin-bottom: 10px;
}

.footer-company-name {
    font-family: var(--font-mincho);
    font-size: 1.1rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
    font-family: var(--font-gothic);
}

.footer-corp-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-gold);
    margin-top: 15px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-corp-link:hover {
    color: #fff;
}

.footer-corp-link i {
    margin-left: 5px;
}

.footer-group {
    width: 60%;
    text-align: left;
}

.group-title {
    font-family: var(--font-mincho);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    display: block;
    letter-spacing: 0.15em;
}

.group-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.group-list li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.75rem;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
}

.group-list li a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.group-list li a:hover {
    color: var(--accent-gold);
}

.group-list li a:hover::before {
    transform: scale(1.5);
}

.footer-copy {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-main {
        width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }

    .footer-group {
        width: 100%;
        text-align: left;
    }

    .group-title {
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

    .group-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 1px;
        background: var(--accent-gold);
    }

    .group-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer-desc {
        text-align: center;
    }
}