@charset "UTF-8";

/* Header Transparent Override for SP */
.header-transparent {
    position: sticky !important; /* 標準的なSPヘッダーの挙動 */
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: #FFF !important; /* 白背景 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
}

/* .header-transparent override if needed */
.header-transparent .logo-img {
    /* Use white logo if needed, but img src is handled in HTML */
}

/* Main Background */
main {
    background-color: #FFF;
}

/* ヒーローセクション */
.hero-flow {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #004981 0%, #0068B7 60%, #004981 100%);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    margin-bottom: 0;
}

.hero-bg-overlay {
    display: none;
}

.hero-flow-inner {
    width: 100%;
    padding: 32px 20px;
    margin-top: 0; /* ヘッダー分オフセット解除 */
    box-sizing: border-box;
}

.hero-flow-content {
    max-width: 100%;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1;
}

.hero-line {
    width: 61px;
    height: 1px;
    background-color: #FFF;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-desc {
    font-size: 12px;
    line-height: 1.7;
    opacity: 0.9;
}

/* PC用フロー図を非表示 */
.section-flow-overview {
    display: none;
}

/* SP用フロー図 (拡大機能付き) */
.section-flow-overview-sp {
    display: block;
    padding: 20px 0;
    background-color: #FFF;
}

.section-flow-overview-sp .container {
    padding: 0 20px;
}

.flow-chart-image-wrapper-sp {
    position: relative;
    width: 100%;
    overflow: visible;
    border-radius: 8px;
    /* タップ可能であることを示す */
    cursor: pointer;
    margin-bottom: 30px;
}

.flow-chart-image-sp {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-button {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 24px;
    height: 24px;
    /* 背景・枠なし */
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    pointer-events: auto;
    cursor: pointer;
}

.zoom-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000; /* 背景黒 */
    align-items: center;
    justify-content: center;
}

.zoom-modal.active {
    display: flex;
}

.zoom-modal-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto; /* スクロール可能に */
    padding: 60px 20px 20px;
    box-sizing: border-box;
}

.zoomed-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 80px);
    object-fit: contain;
    background-color: #FFF;
    padding: 20px;
    box-sizing: border-box;
}

.close-zoom {
    position: fixed;
    top: 20px;
    right: 30px;
    font-size: 40px;
    font-weight: 100; /* 細く */
    cursor: pointer;
    z-index: 1001;
    font-family: "Helvetica Neue", Arial, sans-serif; /* 細めのフォント指定 */
    line-height: 1;
    color: #FFF;
}

/* フロー詳細リスト (SP用レイアウト) */
.section-flow-details {
    padding: 40px 0;
    background-color: #E1F0FA;
}

.section-flow-details .container {
    padding: 0 20px;
}

.flow-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* 矢印との間隔 */
}

/* カードスタイル */
.flow-detail-card {
    background-color: #FFF;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}

/* ヘッダー部分 */
.detail-left {
    background-color: #0068B7;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-num {
    font-family: 'SF Pro', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #3D9DE4;
    display: block;
    line-height: 1;
}

.detail-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
    margin: 0;
    line-height: 1;
}

.detail-title-small {
    font-size: 12px;
    font-weight: 400;
    color: #FFF;
    margin: 0;
    line-height: 1;
    opacity: 0.9;
}

/* ボディ部分 */
.detail-right {
    padding: 16px;
}

.detail-text {
    font-size: 12px;
    line-height: 1.7;
    color: #002D6F;
    margin-bottom: 0;
}

.detail-list {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 12px;
    line-height: 1.5;
    color: #002D6F;
}

.detail-list li {
    margin-bottom: 8px;
}

.detail-note, .detail-note-inline {
    font-size: 12px;
    color: #002D6F;
    margin-top: 8px;
    display: block;
}

/* 矢印スタイル */
.detail-arrow-down {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    padding: 5px 0;
}

.detail-arrow-down img {
    width: 25px;
    height: auto;
}

/* 注意書き */
.flow-attention {
    margin-top: 32px;
}

.flow-attention ul {
    padding-left: 18px;
    margin: 0;
}

.flow-attention li {
    font-size: 12px;
    line-height: 1.5;
    color: #002D6F;
    margin-bottom: 8px;
}

/* コンタクトCTA (Recruit CTA) */
.section-recruit-cta {
    background-color: #002D6F;
    padding: 32px 20px;
    text-align: center;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-content {
    color: #FFF;
    opacity: 0.9;
    font-size: 12px;
    line-height: 1.4;
}

.cta-copy, .cta-sub {
    margin: 0;
}

.btn-cta {
    background-color: #FFF;
    color: #002D6F;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    line-height: 28px;
}

.icon-placeholder-sm {
    /* 簡易矢印 */
    display: none; 
}
.icon-arrow-circle {
    width: 16px;
    height: 16px;
    background: url('../../../images/arrow_right_blue.svg') no-repeat center center / contain;
    display: block;
}


