/* 共通 */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "LINE Seed JP_OTF";
}

.space {
    padding-top: 4rem;
}

.hero-ca {
    position: relative;
    height: 680px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.catchcopy {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bold {
    font-weight: 700;
    /* 太字 */
    color: #36d6f3;
    /* お好みで色指定（例：濃紺） */
    font-size: 2rem;
    /* 少し大きくする場合 */
    letter-spacing: 0.5px;
    /* 字間調整 */
}

.sp-only {
    display: none;
}

.pc-only {
    display: inline;
}


.logo-area img {
    max-width: 760px;
    margin: 1rem 0;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    width: 180px;
    height: 180px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 1rem;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.4);
}

.feature_bold {
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.5;
    display: block;
    position: relative;
    z-index: 1;
}

.feature_text {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-light {
    background-color: #e5f7ff;
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .hero-ca {
        position: relative;
        height: 70vh;
        /* ← 背景画像に対してぴったりの高さを確保 */
        padding: 0;
        overflow: hidden;
        margin-top: 50px;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* ← 背景画像にぴったりかぶる */
        background: rgba(0, 0, 0, 0.4);
        padding: 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-content,
    .hero-buttons {
        position: relative;
        z-index: 2;
    }

    .catchcopy {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .bold {
        font-weight: 700;
        color: #36d6f3;
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }

    .sp-only {
        display: inline;
    }

    .pc-only {
        display: none;
    }

    .logo-area img {
        max-width: 80vw;
        margin: 0 0 2.2rem 0;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .features {
        align-items: center;
        gap: 0.5rem;
    }

    .feature {
        width: 29vw;
        /* ビューポート幅の1/3 */
        height: 29vw;
        /* 同じく1/3にして円形維持 */
        padding: 0.5rem;
    }

    .feature_bold {
        font-size: 1rem;
    }

    .feature_text {
        font-size: 0.7rem;
    }

    .hero-buttons {
        position: static;
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/*お悩みセクション*/
.problem-section {
    background-color: #f8f8f8;
    padding: 4rem 1rem;
}

.problem-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #2b2973;
}

.problem-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.problem-wrapper .highlight {
    color: #2b2973;
    font-weight: bold;
}

.problem-arrow {
    display: block;
    width: 30px;
    height: auto;
    margin: 0 auto;
    padding: 20px 0 30px;
}

.solution-header {
    background-color: #00b7cc;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.8rem;
    /* margin-bottom: 1rem; */
    text-align: center;
}

.problem-solution-pairs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.pair {
    width: calc(33.333% - 1.5rem);
    /* gapぶん引く */
    display: flex;
    flex-direction: column;
    /* background: #fff; */
    /* padding: 1rem; */
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
    border-radius: 8px;
    box-sizing: border-box;
}

.problem-card {
    margin-bottom: 1rem;
    border: 1px solid #f5f5f5;
    background-color: white;
    padding: 1rem;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ← 上下中央 */
    align-items: center;
}

.solution-card {
    margin-bottom: 1rem;
    border: 2px solid #00b7cc;
    background-color: white;
}

.solution-text {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* ← 上下中央 */
    align-items: center;
    /* ← 横中央（必要であれば） */
    text-align: center;
    /* ← テキストも中央寄せしたい場合 */
    box-sizing: border-box;
    height: 300px;
}

.problem-card img {
    width: 40%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.solution-card img {
    width: 75%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 0.9rem;
}

.solution-card p {
    font-size: 0.9rem;
}


@media screen and (max-width: 768px) {
    .problem-section {
        background-color: #f8f8f8;

    }

    .problem-wrapper h2 {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }

    .problem-solution-pairs {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .pair {
        width: 100%;
    }
}


/*転職者の声*/
.voice-section {
    background-color: #e6f5fc;
    padding: 4rem 1rem;
}

.voice-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.voice-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #002b5e;
    font-weight: bold;
}

.voice-title .en {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
    letter-spacing: 1px;
}

.voice-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    margin: 0 1rem 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.voice-icon {
    text-align: center;
    width: 100px;
    flex-shrink: 0;
}

.voice-icon img {
    width: 80px;
    height: auto;
    margin-bottom: 0.5rem;
}

.voice-age {
    font-size: 0.9rem;
    background-color: #e0f7ff;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    display: inline-block;
}

.voice-content h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #002b5e;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.voice-content p {
    font-size: 0.8rem;
    color: #000;
}

.voice-income {
    font-weight: bold;
    color: #002b5e;
    margin-bottom: 0.8rem;
    font-size: 1rem !important;
}

.voice-income .before {
    /* text-decoration: line-through; */
    color: #666;
    margin-right: 10px;
}

.voice-income .after {
    color: #00a2e8;
    font-weight: bold;
    margin-left: 0.5rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .voice-box {
        flex-direction: column;
        align-items: center;
        text-align: left;
        padding: 1.5rem;
        margin: 0 0.5rem 1.5rem;
    }

    .voice-icon {
        width: 100%;
        flex-direction: column;
        align-items: center;
        display: flex;
    }

    .voice-income {
        font-weight: bold;
        color: #002b5e;
        margin-bottom: 0.8rem;
        font-size: 1rem;
        text-align: center;
    }

    .voice-content h3 {
        font-size: 1.1rem;
    }

    .voice-content p {
        font-size: 0.9rem;
    }

    .voice-income {
        font-size: 0.95rem;
    }
}

/*CVエリア*/
.cta-area {
    background: repeating-linear-gradient(135deg,
            #b8efff,
            #b8efff 4px,
            #a0e8f8 4px,
            #a0e8f8 8px);
    padding: 2rem 1rem;
}

.cta-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s ease;
    width: 100%;
    max-width: 420px;
}

.cta-light {
    background: #fff;
    color: #00b7cc;
    border: 2px solid #00b7cc;
}

.cta-light:hover {
    background: #e6fcff;
}

.cta-blue {
    background: linear-gradient(to right, #3583f8, #1c60b3);
    color: #fff;
    position: relative;
}

.cta-blue:hover {
    opacity: 0.9;
}

.cta-label {
    display: inline-block;
    font-size: 0.8rem;
    background: #f15a29;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.3rem;
}

.icon-svg {
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    /* margin-right: 0.5em; */
    margin-bottom: 0.1rem;
}


/* レスポンシブ */
@media screen and (max-width: 768px) {
    .cta-btn {
        font-size: 1rem;
        padding: 1rem;
    }

    .cta-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/*コンサルタント紹介*/
.consultant-section {
    padding: 4rem 1rem;
    background-color: #fff;
}

.consultant-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-ca {
    text-align: center;
    font-size: 2rem;
    color: #002b5e;
    margin-bottom: 3rem;
    font-weight: bold;
}

.section-title-ca .en {
    font-size: 0.85rem;
    font-weight: bold;
    color: #007bff;
    letter-spacing: 1px;
}

.consultant-box {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    /* 横方向の中央 */
    align-items: center;
    /* 縦方向の中央 */
    height: 100%;
    /* 必要に応じて高さ指定 */
}

.consultant-photo img {
    width: 2oopx;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.consultant-detail {
    flex: 1;
    font-size: 1rem;
}

.consultant-name {
    font-size: 1rem;
    margin: 1rem 0;
    color: #002b5e;
    text-align: center;
}

.consultant-name span {
    font-size: 0.85rem;
    color: #888;
}

.consultant-name strong {
    font-size: 1.2rem;
    font-weight: bold;
}

.consultant-support {
    margin-top: 1rem;
    background-color: #ccf5ff;
    padding: 1rem;
    border-radius: 6px;
}

.support-title {
    font-weight: bold;
    color: #00a2c6;
    margin-bottom: 0.5rem;

}

.consultant-support ul {
    padding: 0 0.3rem;
    margin: 0;
}

.support-list {
    list-style: none;
    padding-left: 0;
}

.support-list li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.support-list li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #000;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .consultant-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0;
    }

    .consultant-detail {
        text-align: left;
    }

    .consultant-photo img {
        width: 200px;
        height: 200px;
    }
}

/*強み*/
.strength-section {
    background-color: #e6f5fc;
    padding: 4rem 1rem;
}

.strength-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title-ca {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: #002b5e;
}

.section-title-ca .en {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
}

.strength-item {
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
    flex-wrap: wrap;
}

.strength-img {
    flex: 1 1 300px;
    min-width: 300px;
}

.strength-img img {
    width: 100%;
    height: auto;
    display: block;
}

.strength-text {
    flex: 2;
    padding: 1.5rem 2rem;
    box-sizing: border-box;
}

.strength-text .highlight {
    color: #00a2e8;
    font-weight: bold;
    font-size: 2rem;
}

.point-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.point-icon img {
    width: 80px;
    height: auto;
}

.point-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.point-title {
    font-weight: bold;
    font-size: 1.3rem;
    margin: 0;
}

.point-sub {
    font-size: 1.7rem;
    color: #1eb4ce;
    font-weight: bold;
    margin: 0;
}

.point-highlight {
    color: #1eb4ce;
}

.point_detail {
    font-size: 0.9rem;
}

.quote {
    color: #ccc;
}


/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .strength-item {
        flex-direction: column;
        margin: 1rem 0.9rem;
        height: auto;
    }

    .strength-img {
        width: 100%;
        flex: none;
    }

    .strength-text {
        padding: 2rem 0.7rem;
    }

    .point-box {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: nowrap;
        /* 必要ならwrapでもOK */
    }

    .point-icon img {
        width: 55px;
    }

    .point-text {
        align-items: flex-start;
    }

    .point-title {
        font-weight: bold;
        font-size: 1rem;
        margin: 0;
    }

    .point-sub {
        font-size: 1.18rem;
    }
}

/*FAQ*/
.faq-section {
    padding: 4rem 1rem 6rem;
    background-color: #fff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-ca {
    text-align: center;
    font-size: 1.8rem;
    color: #002b5e;
    margin-bottom: 3rem;
}

.section-title-ca .en {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
    letter-spacing: 1px;
}

.faq-item {
    border-top: 1px dotted #ccc;
    padding: 1.5rem 0;
}

/* 最初の要素だけ線を消す */
.faq-item:first-of-type {
    border-top: none;
}

.faq-q {
    font-weight: bold;
    font-size: 1rem;
    color: #002b5e;
    margin-bottom: 0.5rem;
}

.faq-q span {
    color: #00a2c6;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.faq-a {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    text-indent: -1.8em;
    /* ←マイナスで戻す */
    padding-left: 1.8em;
    /* ←その分右に下げる */
}

.faq-a span {
    font-weight: bold;
    color: #002b5e;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .section-title-ca {
        font-size: 1.5rem;
    }

    .faq-wrapper {
        max-width: 900px;
        margin: 0 1.3rem;
    }


    .faq-q {
        font-size: 0.95rem;
    }

    .faq-a {
        font-size: 0.9rem;
    }

}

/*会社概要*/
.company-section {
    background-color: #fff;
    padding: 4rem 1rem 8rem;
}

.company-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.section-title-ca {
    text-align: center;
    font-size: 1.8rem;
    color: #002b5e;
    margin-bottom: 3rem;
}

.section-title-ca .en {
    font-size: 0.9rem;
    color: #007bff;
    font-weight: bold;
    letter-spacing: 1px;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.company-table th,
.company-table td {
    padding: 1rem 0.5rem;
    border-top: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 25%;
    font-weight: bold;
    color: #002b5e;
}

.company-table tr:first-child th,
.company-table tr:first-child td {
    border-top: none;
}

.external-icon {
    font-size: 0.8rem;
    margin-left: 0.3rem;
}

.company-table a {
    color: inherit;
    text-decoration: none;
}

.company-table img {
    width: 17px;
    margin-bottom: 5px;
    margin-left: 3px;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
    .company-wrapper {
        max-width: 800px;
        margin: 0 1.5rem;
    }

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }

    .company-table tr {
        margin: 15px 0;
    }

    .company-table th,
    .company-table td {
        padding: 0.5rem 0.5rem;
        border-top: none;
    }

    .company-table td {
        margin-bottom: 10px;
    }

    .company-table tr {
        display: block;
        /* margin-bottom: 1rem; */
        border-bottom: 1px solid #ddd;
    }
}

/*フッター*/
.site-footer {
    background-color: #008dc5;
    padding: 2rem 1rem;
    font-size: 0.85rem;
    color: white;
}

.footer-inner {
    max-width: 1100px;
    padding: 2rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-center {
    flex: 1 1 300px;
    text-align: center;
    margin-top: 50px;
}

.footer-socials {
    list-style: none;
    padding: 0;
    margin-bottom: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-socials li a {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
}

.note-icon {
    width: 20px;
    height: auto;
    vertical-align: middle;
}

.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-right,
    .footer-center {
        text-align: center;
        flex: none;
    }
}

/*FLOW SECTION*/
.flow-pc {
    display: block;
}

.flow-sp {
    display: none;
}

.flow-container {
    max-width: 1040px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .flow-pc {
        display: none !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .flow-sp {
        display: block;
    }

    .step-timeline {
        display: none !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .step-item {
        flex: none !important;
        width: auto !important;
    }
}

.section-flow {
    position: relative;
    padding: 128px 20px;
    background-color: #F2F7F8;
}

@media screen and (max-width: 768px) {
    .section-flow {
        padding: 72px 20px;
    }
}

@media screen and (max-width: 768px) {
    .background-text-flow {
        display: none;
    }
}

.step-timeline {
    display: flex;
    flex-direction: row;
    /* 横並び */
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* 折り返しを防ぐ */
    overflow-x: auto;
    /* スマホ用に横スクロールもあり得る */
    padding-top: 40px;
}

.step-item {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
    cursor: pointer;
}

.step-top {
    color: var(--Volve_Darkblue_secondary, #070791);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    margin-bottom: 4px;
}

.step-circle {
    width: 14px;
    height: 14px;
    background-color: white;
    border: 2px solid #070791;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 199;
}

.step-item.active .step-circle {
    background-color: white;
    border-color: #00b8f1;
}

.mySwiper-flow {
    padding: 20px 20px;
    margin: 0 auto;
    /* ← これ追加！ */
}

.swiper-wrapper {
    display: flex !important;
    margin: 0 auto;
}

/* 元のstep-lineは削除 or 無効化 */
.step-line {
    display: none;
}

/* 各stepに線を描く */
.step-item::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    height: 2px;
    background: #070791;
    z-index: -100;
}

/* 左端の線を右半分だけにする */
.step-item:first-child::before {
    left: 50%;
}

/* 右端の線を左半分だけにする */
.step-item:last-child::before {
    right: 50%;
}

.swiper-button-prev-flow,
.swiper-button-next-flow {
    position: absolute;
    top: 45%;
    transform: translateY(-45%);
    z-index: 10;
    width: 48px;
    /* 画像サイズに合わせて調整 */
    height: 48px;
    cursor: pointer;
}

.swiper-button-prev-flow {
    left: 0px;
}

.swiper-button-next-flow {
    right: 0px;
}

.swiper-button-prev-flow img,
.swiper-button-next-flow img {
    width: 100%;
    height: auto;
    display: block;
}


.step-card {
    position: relative;
}

.step-label {
    color: var(--text-Lightblue, #070791);
    text-align: center;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: clamp(14px, 1vw, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 17.6px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;

}

.step-label.oneline {
    bottom: 25%;
}

.step-label.twolines {
    bottom: 20%;
}

.step-item.active .step-card .step-label {
    color: #018DC5;
}

.step-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    /* ← これを忘れずに！ */
    z-index: 0;
}

.step-img2 {
    width: 30%;
    height: auto;
    position: absolute;
    z-index: 100;
    pointer-events: none;
    top: 25%;
    left: 35%;
}

.swiper-slide.flow {
    color: #1a2b59;
    /* 全体のテキストカラー（濃い青） */
    font-family: "LINE Seed JP_OTF", sans-serif;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 10px;
    padding: 32px 42px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* text-align: center; */

    height: auto;
    max-width: 100%;
    box-sizing: border-box;
    display: block;
    /* margin: 20px; */

}

.swiper-slide.flow h3 {
    color: var(--text-Dark-blue, #183783);
    font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 150%;
    letter-spacing: 0.72px;
}

.swiper-slide.flow p {
    color: var(--text-Dark-gray, #3B5266);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    /* 32.4px */
}


.swiper-slide.flow .step-title {
    color: var(--text-Dark-blue, #183783);
    font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: 0.72px;
    border-bottom: 4px solid #183783;
    display: inline-block;
    margin-bottom: 24px;
}

/* FLOW SP */

.sp-timeline {
    position: relative;
    padding: 0px 12px;
    background: #f2f7f8;
}

.sp-step {
    position: relative;
    padding-left: 40px;
    margin-bottom: 0;
    /* 下マージン削除 */
    padding-bottom: 30px;
}

.sp-step-line {
    position: absolute;
    left: 20px;
    width: 2px;
    background-color: #070791;
    z-index: 0;
}

.sp-step-circle {
    position: absolute;
    left: 14px;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 2px solid #070791;
    border-radius: 50%;
    z-index: 1;
    top: 0;
    /* 初期値 */
}

.sp-step.active .sp-step-circle {
    background-color: #00b8f1;
    /* 好きな色に */
    border-color: #00b8f1;
}

.sp-step-card {
    background: #fff;
    border-radius: 8px;
    padding: 10px 10px;
    margin-left: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    border-radius: 4px;
    border: 1px solid #183783;
    background: #FFF;
    box-shadow: 0px 4px 0px 0px #1E00A0;
    max-width: 80%;
}

.sp-step-top {
    color: #3B5266;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 13.2px;
    /* 13.2px */
    margin-bottom: 8px;
}

.sp-step-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #183783;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 17.6px;
    /* 17.6px */
}

.sp-icon {
    width: 24px;
    height: 24px;
}

.sp-step:first-child .sp-step-line {
    top: 50%;
    height: 50%;
    transform: none;
}

.sp-step:last-child .sp-step-line {
    top: 0;
    height: 50%;
}

.support-card {
    margin-left: 10px;
}

.support-card.expanded .support-summary {
    max-height: 500em;
}

.support-card.expanded {
    height: auto;
}

.toggle-btn {
    display: block;
    margin: 5px auto 5px;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.support-card.expanded .toggle-btn {
    transform: rotate(180deg);
}


.toggle-btn img {
    transition: transform 0.5s ease;
}

.support-summary-hidden {
    max-height: 140px;
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-height: 0em;
    /* 例えば3行分くらい。1行 = 約1.6em × 3行分 */
    position: relative;
    transition: max-height 0.7s ease, opacity 0.7s ease;
    opacity: 0;
    color: #3B5266;
    text-align: justify;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 23.8px;
    /* 23.8px */
    margin: 20px 20px 0 18px;
}

.support-summary-hidden-close {
    color: #008DC5;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "LINE Seed JP_OTF";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    /* 17.5px */
    text-align: right;
}


@media screen and (max-width: 768px) {
    .support-summary-hidden {
        margin: 10px 0 0 0;
    }
}

.support-card.expanded .support-summary-hidden {
    max-height: 500em;
    /* 十分に大きくすることで全文表示に */
    opacity: 1;
}

.support-card.expanded {
    height: auto;
    /* 開いたら高さを自由に */
}

/*コンタクト*/
.contact-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact_wrap p {
    font-size: 0.9rem !important;
    margin-bottom: 2rem !important;
}

.section-title-form {
    text-align: center;
    font-size: 2rem;
    color: #002b5e;
    margin-bottom: 1rem;
    font-weight: bold;
}

/*イベントアーカイブページ*/
.seminar-section {
    background-color: #f8f8f8;
    padding: 10rem 1rem;
}

.seminar-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #2b2973;
}

.archive-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
    margin-top: 3rem;
}

.archive-detail {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.event-button {
    display: inline-block;
    background-color: #008dc5;
    /* 明るい水色 */
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    /* 丸ボタン */
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* 下にうっすら影 */
    transition: background-color 0.3s, transform 0.2s;
    margin-bottom: 4rem;
}

.event-button:hover {
    background-color: #87d9f9;
    transform: translateY(-2px);
    /* 浮く演出 */
}


.webinar-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webinar-card {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
    align-items: center;
    height: 250px;
}

.webinar-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.webinar-card-img img {
    width: auto;
    height: 250px;
    object-fit: cover;
}

.webinar-card-content {
    padding: 1rem;
    flex: 1;
    text-align: left;
}

.badge {
    background-color: #ff4c4c;
    color: white;
    padding: 0.5em 0.9em;
    border-radius: 5px;
    font-size: 1.1em;
    display: inline-block;
    margin-bottom: 0.5em;
}

.webinar-card-content h3 {
    font-size: 1.2em;
    color: #000;
    margin: 0.6em 0;
}

.webinar-card-content p {
    font-size: 1.3em;
    color: #000;
}

@media (max-width: 768px) {
    .seminar-section {
        background-color: #f8f8f8;
        padding: 5rem 1rem;
    }

    .archive-title {
        font-size: 1.5rem;
    }

    .archive-detail {
        margin-bottom: 1rem;
    }

    .webinar-card {
        flex-direction: column;
        height: auto;
display: grid;
    }

    .badge {
        background-color: #ff4c4c;
        color: white;
        padding: 0.5em 0.9em;
        border-radius: 5px;
        font-size: 0.9em;
        display: inline-block;
        margin-bottom: 0.5em;
    }

    .webinar-card-content h3 {
        font-size: 1.1em;
        color: #000;
        margin: 0.6em 0;
    }

    .webinar-card-content p {
        font-size: 1.1em;
        color: #000;
    }

    .webinar-card-img img {
        height: auto;
    }
}

/*イベントシングルページ*/
#webinarModal {
    display: none;
}

.webinar-detail .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.webinar-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.webinar-thumb img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.webinar-section {
    margin-bottom: 2rem;
}

.webinar-section h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* ← これが重要 */
    overflow-y: auto;
    /* ← モーダル全体をスクロール可能に */
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


.modal-content {
    background: #fff;
    margin: 5% auto;
    padding: 3rem 2rem 2rem;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    overflow: visible !important;
    /* ← これが最重要 */
    overflow-y: auto;
    max-height: none;
    /* 高さ制限を解除 */

}


@media (max-width: 768px) {
    .modal-content {
        background: #fff;
        margin: 5% auto;
        padding: 3rem 0.5rem 2rem;
        width: 100%;
        max-width: none;
    }

    .step label {
        display: block;
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem;
        color: #333;
    }

    .step {
        padding: 0.5rem !important;
    }
}


.modal-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
    font-size: 2rem;
    background-color: #585959;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    font-size: 1.2rem;
    padding: 1rem 0;
    color: #008dc5;
    font-weight: bold;
}

.modal-section h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    border-left: 4px solid #008dc5;
    border-bottom: 1px solid #008dc5;
    padding-left: 0.3em;
    color: #008dc5;
    font-weight: bold;
}

.modal-section p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    /* border-radius: 8px; */
    border-left: 0.25rem solid #008dc5;
    /* ステップの左端にライン */
}

.step label {
    display: block;
    /* font-weight: bold; */
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #333;
}

#webinar-date.date-input {
    width: auto;
    padding: 0.2rem;
    font-size: 1rem;
    /* border: 1px solid #ccc; */
    /* border-radius: 6px; */
    box-sizing: border-box;
    border: none;
    background-color: #f9f9f9;
}

#webinar-times {
    margin-top: 1rem;
    font-size: 1rem;
    color: #555;
}

.time-button {
    background-color: #008dc5 !important;
}

input.user-input,
select.user-input,
textarea.user-input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}


#confirm-btn {
    background-color: #008dc5;
    color: white;
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    /* 必要に応じて調整 */
}

#confirm-btn:hover {
    background-color: #006fa1;
}

/* 確認エリアのレイアウト */
#confirmation-area {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 1rem;
    line-height: 1.6;
}

#confirmation-area p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

/* チェックボックスとラベル */
#agree {
    margin-right: 0.5rem;
}

.step-4 label {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* ボタン共通スタイル */
#back-btn,
#submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 1rem;
    transition: background-color 0.3s ease;
}

/* ボタン色分け */
#back-btn {
    background-color: #ccc;
    color: #333;
}

#back-btn:hover {
    background-color: #bbb;
}

#submit-btn {
    background-color: #008dc5;
    color: #fff;
}

#submit-btn:hover:enabled {
    background-color: #006fa1;
}

#submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.flatpickr-calendar {
    z-index: 999999 !important;
}


@media (max-width: 768px) {
    #back-btn {
        margin-bottom: 1rem;
    }


    .flatpickr-calendar {
        z-index: 999999 !important;
        transform: scale(0.98);
        transform-origin: top left;
    }
}

/*ヘッダー*/
a.webinar-entry {
    padding: 6px 14px;
    font-size: 1rem !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #00b7cc !important;
    border: 2px solid #00b7cc;
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 0.8rem 1rem;
    box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s ease;
    width: 100%;
    max-width: 420px;
}

a.ca-entry {
    padding: 6px 14px;
    font-size: 1rem !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #3583f8, #1c60b3);
    color: #fff !important;
    /* position: relative; */
    display: inline-block;
    text-align: center;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 0.8rem 1rem;
    box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s ease;
    width: 100%;
    max-width: 420px;
}

/*thanks*/
.seminar-section-thanks {
    background-color: #f8f8f8;
    padding: 10rem 1rem;
    height: 80vh;
}

.thanks-inner h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.thanks-inner p {
    font-size: 1.3rem;
    color: #2b2973;
    margin-bottom: 2rem;
}

.highlight-line {
    display: inline-block;
    background-color: #ffecec;
    color: #DB4437;
    font-weight: bold;
    padding: 0.4em 0.8em;
    border-radius: 6px;
    margin: 1rem;
}

.all_button {
    display: inline-block;
    padding: 0.8em 1.6em;
    background-color: #008dc5;
    /* Googleレッド */
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 2em;
}

.all_button:hover {
    background-color: #48c3f3;
    /* 少し濃い赤でホバー時の効果 */
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .thanks-inner h2 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 2rem;
    }

    .thanks-inner p {
        font-size: 1rem;
        color: #2b2973;
        margin-bottom: 2rem;
    }

    .seminar-section-thanks {
    height: auto;
    }
}

/*ウェビナー視聴ページ*/
.controls-wrap {
    background-color: #f0efef;
    padding: 1.5rem;
}

.controls-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #002b5e;
}

.vimeo-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.vimeo-btn {
    background-color: #002b5e;
    border: 2px solid #002b5e;
    color: white;
    font-size: 1rem;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

.vimeo-btn:hover {
    background-color: white;
    color: #002b5e;
}

@media screen and (max-width: 768px) {
    .vimeo-btn {
        font-size: 0.9rem;
        padding: 6px 10px;
        min-width: auto;
    }

    .controls-title {
        font-size: 1rem;
    }
}


.volume_attenton {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

.viewer-actions {
    margin-top: 40px;
    padding: 30px 20px 42px;
    /* background-color: #f0efef; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* フォーム全体 */
#embedded-form {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.455);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: sans-serif;
}

#embedded-form h3 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.action-card h3 {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.star-rating {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2em;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating label {
    font-size: 2rem !important;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.ca-attention{
    font-size: 0.8rem;
    font-weight: normal;
    color: #000;
}



/* ラベルと入力 */
#embedded-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 1rem;
    text-align: left;
}

#embedded-form input[type="radio"] {
    margin-right: 5px;
}

/* テキストエリア */
#embedded-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
}

/* ボタン */
#embedded-form button[type="submit"] {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #008dc5;
    /* VOLVEのカラー */
    /* color: #fff; */
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    /* transition: background 0.3s; */
    font-size: 1rem;
    color: white;
}

#embedded-form button[type="submit"]:hover {
    background-color: #008dc5;
}

/* 送信完了メッセージ */
#thank-you {
    text-align: center;
    color: rgb(176, 0, 0);
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
}

.action-card {
    text-align: center;
}

.action-card p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 12px;
}

.action-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background-color: #008dc5;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.action-btn:hover {
    background-color: #c8ebf9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

@media screen and (max-width: 600px) {
    .viewer-actions {
        padding: 20px 15px;
    }

    .action-btn {
        width: 100%;
        font-size: 1rem;
    }
}


.timeout {
    font-size: 1.5rem;
    color: rgb(176, 0, 0);
    font-weight: bold;
}

/*ウェビナー視聴ページのエラー*/
.error-message {
    background: #fff5f5;
    border: 1px solid #f5c2c7;
    padding: 2em;
    text-align: center;
    margin: 3em auto;
    max-width: 600px;
    border-radius: 8px;
    font-size: 16px;
    color: #a94442;
}

.error-message h2 {
    font-size: 24px;
    margin-bottom: 1em;
    color: #c53030;
}

.error-message .action-btn {
    display: inline-block;
    margin-top: 1.5em;
    background: #0073aa;
    color: #fff;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 4px;
}

.error-message .action-btn:hover {
    background: #005177;
}

.error-form {
    display: inline-block;
    margin-top: 1em;
    color: #0073aa;
    text-decoration: underline;
    /* font-weight: bold; */
}

.error-form:hover {
    color: #005177;
    text-decoration: none;
}

/*プラポリと利用規約*/
.terms-inner {
    margin-top: 100px;
}

@media screen and (max-width: 780px) {
    .terms-inner {
        margin-top: 0;
    }
}

/*お問い合わせ*/
.contact{
    padding: 100px;
}

.page_h1_title_archive{
    font-size: 2rem;
    color: #005177;
    padding: 2rem 0;
    font-weight: bold;
}

.thanks-message {
  padding: 30px;
  background: #f0f9f9;
  text-align: center;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 780px) {
.contact{
    padding: 60px 10px;
}
}

/*CA申込フォームを埋め込む場合はここ*/
.iframe-container {
  margin-top: 20px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.iframe-container iframe {
  border: none !important;
  box-shadow: none !important;
}
