/* 全体フォント設定と基本スタイル */
body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #111111;
    /* 黒に近いグレー */
    line-height: 1.8;
    letter-spacing: 0.05em;
    background-color: #f5f5f5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* 画像に関する共通ルール（角丸・シャドウ禁止） */
img {
    border-radius: 0 !important;
    box-shadow: none !important;
    vertical-align: bottom;
}

/* 固定背景マス目（方眼紙風） */
.bg-grid-fixed {
    background-color: #fdfdfd;
    background-image:
        linear-gradient(#e2e8f0 1px, transparent 1px),
        linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
    background-size: 20px 20px;
    background-attachment: fixed;
}

/* 募集要項用の少し濃いマス目固定背景 */
.bg-grid-dark-fixed {
    background-color: #f1f5f9;
    background-image:
        linear-gradient(#cbd5e1 1px, transparent 1px),
        linear-gradient(90deg, #cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    background-attachment: fixed;
}

/* 手紙風（便箋）のコンテンツラッパー */
.letter-paper {
    background-color: #ffffff;
    position: relative;
    z-index: 10;
}

/* 便箋の罫線風装飾 */
.letter-lines {
    background-image: repeating-linear-gradient(transparent, transparent 39px, #e5e7eb 39px, #e5e7eb 40px);
    background-attachment: local;
}

/* セクション見出し画像の設定 */
.section-title-img {
    max-width: 50%;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
}

/* アニメーション用（バッジの順次出現等） */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* スクロール連動セクションフェードイン */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    will-change: opacity, transform;
}

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

/* SP時ハンバーガーメニュー展開時 */
.menu-open {
    overflow: hidden;
}

/* FV Swiper カスタム */
.swiper-fv {
    width: 100%;
    height: auto;
}

/* やわらかい見出し（手紙風装飾） */
.soft-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.soft-heading h2 {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #334155;
    position: relative;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 2px dashed #94a3b8;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.soft-heading h2::before,
.soft-heading h2::after {
    content: "●";
    color: #1E3A8A;
    font-size: 0.6em;
    margin: 0 10px;
}

/* 余白設定（SP:80px, PC:120px以上） */
.section-mb {
    margin-bottom: 80px;
}

@media (min-width: 768px) {
    .soft-heading {
        margin-bottom: 4rem;
    }

    .soft-heading h2 {
        font-size: 2rem;
        padding: 1rem 3rem;
    }

    .section-mb {
        margin-bottom: 120px;
    }
}
