@charset "utf-8";

:root {
    --color-default: #000;
    --container-width: auto;
    --container-padding: 6.98vw;
    --font-size-base: 3.26vw;
    --font-gothic: "Noto Sans JP", "Yu Gothic", "Meiryo", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Arial", sans-serif;
    --font-en: "Times New Roman", serif;
    --transition-speed: .3s;
    --leading-trim: calc((1em - 1lh) / 2);
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100svh;
    color: var(--color-default);
    font-family: var(--font-gothic);
    font-size: var(--font-size-base);
    font-optical-sizing: auto;
    font-weight: 500;
    background: #fff;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    -webkit-text-size-adjust: 100%;

    /* - 初期状態 */
    opacity: 0;
    visibility: hidden;
    /* - ロードが3秒以上かかる場合は強制的に表示 */
    animation: fadeInBody 0s 3s forwards;

    /* - ロード完了 */
    &.is-loaded {
        opacity: 1;
        visibility: visible;
        transition: opacity 1s ease;
        /* JavaScriptが有効な場合はフォールバックアニメーションを無効化 */
        animation: none;
    }
}

a {
    color: var(--color-default);
}

@keyframes fadeInBody {
    to {
        opacity: 1;
        visibility: visible;
    }
}

input,
textarea,
select,
button {
    font-family: var(--font-gothic);
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

img[src$=".svg"] {
    width: 100%;
}

a[href^="tel:"]:hover {
    opacity: 1;
}

@media (min-width:1024px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media print,
screen and (max-width: 1023px) {
    img {
        width: 100%;
    }
}


@media (hover: hover) {

    a:any-link {
        transition: opacity .3s;
    }

    & a:any-link:hover,
    & button:enabled:hover {
        opacity: .6;
    }
}

.font-wdxl {
    font-family: "WDXL Lubrifont JP N", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.pc-only-block,
.pc-only-inline {
    display: none;
}

.sp-only-block {
    display: block;
}

.sp-only-inline {
    display: inline;
}


/* SP ※430pxベース グローバルヘッダー
--------------------------------------------------------------- */

#g-header {
    position: relative;
    z-index: 3;

    /* - メニュー展開時 オーバーレイ */
    /*
    &::after {
        content: "";
        box-sizing: border-box;
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        background: rgb(0 0 0 / .6);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        transition: opacity var(--transition-speed), visibility 0s var(--transition-speed);
        z-index: 2;

        scrollbar-width: none;

        &::-webkit-scrollbar {
            display: none;
        }
    }
        */
}

.g-logo-wrapper {
    position: absolute;
    top: 4.88vw;
    left: 5.81vw;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.3em;
}

.g-logo {
    font-weight: 900;
    width: 39.53vw;
}

.g-catchphrase {
    font-size: 2.90vw;
    font-weight: 500;
    line-height: 1.4;
}


/* SP グローバルメニューボタン ※画像版
--------------------------------------------------------------- */

.g-menu-button-2 {
    position: fixed;
    top: 3.95vw;
    right: 4.65vw;
    min-width: 0;
    width: 8.6vw;
    aspect-ratio: 1/1;
    padding: 0;
    border: 0;
    margin: 0;
    background: none;
    box-shadow: none;
    cursor: pointer;
    line-height: 1;
    z-index: 3;

    & img {
        width: 100%;
    }

    &:hover {
        opacity: 1 !important;
    }

    &.is-close {
        position: absolute;
    }

}


/* SP グローバルメニューボタン
--------------------------------------------------------------- */

/* - ボタン本体 */
.g-menu-button {
    --menu-button-size: 8.6vw;
    --menu-border-width: 3.72vw;
    --menu-border-height: .47vw;
    --menu-border-margin: 2.33vw;
    touch-action: manipulation;
    position: fixed;
    top: 3.95vw;
    right: 4.65vw;
    display: grid;
    place-content: center;
    width: var(--menu-button-size);
    min-width: 0;
    aspect-ratio: 1/1;
    padding: 0;
    border: 0;
    margin: 0;
    background: #fff;
    box-shadow: none;
    border-radius: 100vmax;
    line-height: 1;
    overflow: hidden;
    cursor: pointer;
    z-index: 3;

    /* - SP 三本線 */
    .c-lines {
        position: relative;
        display: block;
        width: var(--menu-border-width);
        min-width: 0;
        height: calc((var(--menu-border-height) + var(--menu-border-margin)) * 2);
        margin: 0;

        &>span,
        &::before,
        &::after {
            content: "";
            position: absolute;
            inset: 0;
            display: block;
            height: var(--menu-border-height);
            margin: auto;
            background: #000;
            border-radius: 1px;
            transition: var(--transition-speed);
            will-change: transform, opacity;
            /* ※transformとopacityのGPUレンダリングの事前準備 */
            backface-visibility: hidden;
        }

        &::before {
            transform: translate(0, -1.86vw);
        }

        &::after {
            transform: translate(0, 1.86vw);
        }
    }
}

/* - SP ボタン本体 ※アクティブ時 */
.menu-active {
    .g-menu-button {
        .c-lines>span {
            opacity: 0;
        }

        .c-lines::before {
            transform: rotate(45deg);
        }

        .c-lines::after {
            transform: rotate(-45deg);
        }
    }
}

@media (hover: hover) {
    .g-menu-button:hover {
        opacity: 1 !important;
    }
}

/* SP Micromodal
--------------------------------------------------------------- */

/* - メニューオーバーレイ用のアニメーション */
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}


/* - メニュースライドイン用のアニメーション */
@keyframes mmslideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes mmslideOutRight {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.js-menu-wrapper[aria-hidden="false"] .js-menu-overlay {
    animation: mmfadeIn .3s cubic-bezier(.0, .0, .2, 1) forwards;
}

.js-menu-wrapper[aria-hidden="false"] .js-menu-container {
    animation: mmslideInRight .3s cubic-bezier(.0, .0, .2, 1) forwards;
}

.js-menu-wrapper[aria-hidden="true"] .js-menu-overlay {
    animation: mmfadeOut .3s cubic-bezier(.4, .0, 1, 1) forwards;
}

.js-menu-wrapper[aria-hidden="true"] .js-menu-container {
    animation: mmslideOutRight .3s cubic-bezier(.4, .0, 1, 1) forwards;
}


/* - メニュー全体ラッパー - 初期値 / 表示時 */
.js-menu-wrapper {
    display: none;
}

.js-menu-wrapper.is-open {
    display: block;
}

/* - メニューオーバーレイ */
.js-menu-overlay {
    position: fixed;
    inset: 0;
    /*
    background: rgb(0 0 0 / .5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    */
    overscroll-behavior: contain;
    overflow-y: scroll;
    scrollbar-width: none;
    z-index: 3;
}

/* - メニュー - 表示するコンテナ部分 */
.js-menu-container {
    position: relative;
    width: 68vw;
    height: calc(100% + 1px);
    overflow-y: auto;
    scrollbar-width: none;
    margin-left: auto;
}

.js-menu-container::-webkit-scrollbar {
    display: none;
}


/* SP グローバルナビ
--------------------------------------------------------------- */

/* - SP メニューコンテナ */
#g-nav {
    container-type: size;
    container-name: g-nav;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(118, 175, 255, 0.95) 0%, #4894ff 58.13%, rgba(51, 136, 255, 0.9) 100%);
    transition: var(--transition-speed);
    overflow: hidden;
    /*overscroll-behavior-y: contain;*/
    z-index: 3;
}

/* - SP メニュー内包コンテナ */
#g-nav-inner {
    box-sizing: border-box;
    /*display: grid;*/
    place-content: center start;
    height: 100%;
    padding: 16.28vw 6.28vw;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;

    &::-webkit-scrollbar {
        display: none;
    }
}

/*
@container g-nav (height <=114.88vw) {
    #g-nav-inner {
        display: block;
    }
}
*/
/* - SP メニュー展開時 */
.menu-active {
    #g-header::after {
        visibility: visible;
        opacity: 1;
        transition: opacity var(--transition-speed);
    }

    #g-nav {
        right: 0;
        visibility: visible;
    }
}



/* SP グローバルメニュー
--------------------------------------------------------------- */

#g-menu {
    display: grid;
    gap: 7.67vw;

    &>li>a {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 1em;
        color: #fff;
        font-size: 3.72vw;
        font-weight: 500;
        letter-spacing: .05em;
        text-decoration: none;
        line-height: 1;

        &::after {
            content: "";
            display: block;
            width: 2.33vw;
            min-width: 0;
            aspect-ratio: 1/1.3;
            background: url(../img/arrow_ico_right.svg) center center / contain no-repeat;
        }
    }
}

.banner-button-portalsite.is-menu-style {
    border: 0;
    border-radius: 4.19vw;
    margin-top: 7.91vw;

    .c-banner-text {
        font-size: 3.26vw;
        font-weight: 600;
    }

    & a {
        &::after {
            top: 2.33vw;
            bottom: auto;
            width: 4.65vw;
        }
    }
}

.sns-list.is-menu-style {
    margin-top: 6.98vw;

    & img {
        border: 0;
    }
}


/* SP メインコンテナー
--------------------------------------------------------------- */

.main-wrapper {
    position: relative;
    z-index: 1;
}


/* SP メインビジュアル - スライダー
--------------------------------------------------------------- */

.slick-slide>div {
    line-height: 0;
}

.main-visual-wrapper {
    position: relative;
    margin-bottom: -1px;
    overflow: hidden;
    z-index: 1;

    &::before,
    &::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        min-width: 0;
        margin: auto;
        z-index: 2;
    }

    &::before {
        top: 0;
        aspect-ratio: 1/.247;
        background: url(../img/mv_top.svg) center top / 100% auto no-repeat;
    }


    &::after {
        bottom: -1px;

        height: 32.00vw;
        background: linear-gradient(to bottom, rgba(255, 255, 255, .5) 0%, rgba(65, 166, 246, 1) 100%);
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
    }

}

.main-visual-title {
    position: absolute;
    top: 40.47vw;
    left: 5.35vw;
    width: 44.65vw;
    z-index: 3;
}

.main-visual-logo {
    position: absolute;
    right: 1.87vw;
    bottom: 0;
    width: 39.47vw;
    margin: auto;
    z-index: 3;
}

.slider-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 1;

    /*
    &::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        height: 77.67vw;
        margin: auto;
        background: linear-gradient(to bottom, rgba(63, 169, 245, 0) 0%, rgba(63, 169, 245, 1) 50%, rgba(63, 169, 245, 1) 100%);
    }
        */

    .slick-slide img {
        width: 100%;
    }
}


/* SP 運命の仕事は、ここにある！
--------------------------------------------------------------- */

/* - SP限定 */
.sp-destiny-title-wrapper {
    color: #fff;
    font-size: 4.19vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.94;

    padding-top: 6.74vw;
    background: #42a8f5;
}


.destiny-section {
    position: relative;
    /*padding: 6.74vw var(--container-padding) 0;*/
    padding: 12.79vw var(--container-padding) 0;
    background: linear-gradient(#42a8f5 0%, #38f 55.17%, #a2d6fd 100%);
    z-index: 1;
}

/* ※スライダー内表示に仕様変更 */
.destiny-title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 4.19vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.94;
    margin: auto;
    z-index: 3;
}

.banner-button-portalsite {
    box-sizing: border-box;
    background: #fff;
    border: .93vw solid #000;
    border-radius: 4.65vw;
    margin-top: 7.44vw;

    & a {
        position: relative;
        display: block;
        text-decoration: none;
        padding: 2.33vw 0 3.95vw;

        &::after {
            position: absolute;
            right: 2.33vw;
            bottom: 2.33vw;
            content: "";
            display: block;
            width: 6.28vw;
            min-width: 0;
            aspect-ratio: 1/1;
            background: url(../img/arrow_ico_circle_right.svg) center center / contain no-repeat;
        }
    }

    .c-banner-image {
        display: block;
        width: 70.70%;
        margin: 0 auto 0;
    }

    .c-banner-text {
        display: block;
        font-size: 4.42vw;
        font-weight: 700;
        /*font-feature-settings: "palt";*/
        letter-spacing: -.02em;
        line-height: 1.57;
        text-align: center;
        margin-top: 2.33vw;
    }
}


/* SP ポータルサイトでできること
--------------------------------------------------------------- */

.feature-section {
    background: #fff;
    border-radius: 4.65vw;
    padding: 5.58vw 5.58vw 11.63vw;

    .banner-button-portalsite {
        margin-top: 0;

        .c-banner-image {
            filter: drop-shadow(0px 0px 1.4vw rgba(0, 0, 0, .17));
        }

    }

}

.feature-title {
    position: relative;
    display: grid;
    place-content: center;
    height: 11.63vw;
    font-size: 5.12vw;
    font-weight: 700;
    text-align: center;
    background: #FEDC0D;
    border-radius: 2.33vw;
    padding: 0;
    margin-top: calc(-5.58vw - 5.815vw);
    margin-bottom: 5.35vw;

    &::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        display: block;
        width: 3.95vw;
        aspect-ratio: 1/.647;
        background: #FEDC0D;
        margin: auto;
        transform: translateY(calc(100% - 1px));
        clip-path: polygon(0 0, 50% 100%, 100% 0);
    }

}

.feature-figure {
    width: 48.84vw;
    margin-inline: auto;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 18px;
    width: 90.27%;
    font-size: 3.72vw;
    text-align: center;
    margin: 6.05vw auto 8.14vw;

    & a {
        display: block;
        text-decoration: none;
    }

    & figure+p {
        margin-top: .31em;
    }
}


/* SP こんなお悩み解決できます！
--------------------------------------------------------------- */

.worry-section {
    position: relative;
    padding: 0 5.58vw 24.65vw;
    margin-top: 11.16vw;
}

.worry-title {
    color: #fff;
    text-align: center;
    font-size: 6.51vw;
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: .82em;
}

.worry-list {
    display: grid;
    gap: 5.35vw;
    color: #fff;
}

.worry-list-figure {
    text-align: center;
    margin-bottom: 5.35vw;

    & img {
        width: 55.9%;
    }
}

.worry-list-title {
    font-size: 4.19vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.94;
    padding-bottom: .5em;
    border-bottom: .7vw solid #D8E8FF;
    line-height: 1.3;
    margin-bottom: .5em;
}

.worry-list-text {
    font-size: 3.72vw;
    line-height: 1.75;
}



/* SP よくあるご質問
--------------------------------------------------------------- */

.faq-section {
    padding-top: 15.81vw;
    background: linear-gradient(to bottom, #e2ffe9 0%, #76afff 100%);
}

.faq-title {
    color: #3388FF;
    text-align: center;
    font-size: 6.51vw;
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: 1.2em;
}

.faq-list-wrapper {
    --box-height: 19.58vw;
    --box-height-half: calc(var(--box-height) / 2);
    padding-inline: var(--container-padding);

    /* ※ 初期行数が3行以上の不規則パターンの場合はこちらを適用 */
    /*
    .faq-block {
        position: relative;
        min-height: var(--box-height);
        z-index: 1;

        &+.faq-block {
            margin-top: 4.65vw;
        }

        &::before,
        &::after {
            position: absolute;
            content: "";
            display: block;
            width: 100%;
            background: #fff;
            border-radius: var(--box-height-half) var(--box-height-half) 0 0;
            height: var(--box-height-half);
            z-index: -1;
        }

        &::before {
            top: 0;
        }

        &::after {
            bottom: 0;
            transform: rotate(180deg)
        }
    }
        */

    .faq-block+.faq-block {
        margin-top: 4.65vw;
    }

    .faq-dl {
        position: relative;
        font-size: 3.26vw;
        padding-inline: 7.67vw 5.58vw;
        background: #fff;
        border-radius: 9.77vw;

        &::before {
            content: "";
            position: absolute;
            top: var(--box-height-half);
            left: 0;
            right: 0;
            bottom: var(--box-height-half);
            margin: auto;
            background: #fff;
            z-index: -1;
        }

        /* －(※マイナス) */
        &.on dt::after {
            content: "";
            display: block;
            min-width: 0;
            width: 4.19vw;
            aspect-ratio: 1/1;
            background-image: url(../img/faq_close.svg);
        }

        & dt {
            box-sizing: border-box;
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 1.28em;
            min-height: var(--box-height);
            padding-block: .8em;
            line-height: 2;
            touch-action: manipulation;
            cursor: pointer;

            /* Q */
            &::before {
                content: "Q";
                color: #76AFFF;
                font-size: 5.58vw;
                font-weight: 500;
            }

            /* + */
            &::after {
                content: "";
                display: block;
                min-width: 0;
                width: 4.19vw;
                aspect-ratio: 1/1;
                background: url(../img/faq_open.svg) center center / contain no-repeat;
            }
        }

        & dd {
            display: none;
            color: #3D6EB3;
            padding-bottom: var(--box-height-half);
        }
    }
}

@keyframes horizontal-animation {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.support-loop-block {
    display: flex;
    overflow: hidden;
    margin-top: 7.44vw;

    & ul {
        display: flex;
        animation: horizontal-animation 40s linear infinite both;
    }

    & li {
        width: 55.81vw;
        padding-right: 2.09vw;
    }
}


/* SP SpecialMovie
--------------------------------------------------------------- */

.movie-section {
    padding: 12.33vw 12.56vw 19.3vw;
    background: #fff;
}

.movie-title {
    color: #3388FF;
    text-align: center;
    font-size: 6.51vw;
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: 1.2em;
}

.movie-block {
    line-height: 1;

    & iframe {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 1/.563;
        line-height: 1;
    }
}


/* SP ふくしまでの就職活動をもっと身軽に
--------------------------------------------------------------- */

.start-section {
    padding: 11.16vw 5.58vw;
    margin-inline: var(--container-padding);
    background: #F8F7F3;
}

.start-title {
    font-size: 4.19vw;
    font-weight: 600;
    text-align: center;
    margin-block: var(--leading-trim);
    line-height: 1.94;
}

.start-introduction {
    font-size: 3.72vw;
    font-weight: 500;
    text-align: center;
    line-height: 1.75;
    margin-block: 1.93em 2.56em;
}

.start-figure-device {
    text-align: center;
    margin-bottom: 7.91vw;

    & img {
        width: 71.63vw;
    }
}

.start-link-block {
    display: grid;
    gap: 5.81vw;
}

.start-banner-fukushima {
    & figcaption {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 6.98vw;
        justify-content: center;
        align-items: center;
        font-size: 3.72vw;
        line-height: 1.6;
        text-align: center;
        margin-bottom: .937em;

        &::before,
        &::after {
            content: "";
            display: block;
            width: .47vw;
            height: 9.07vw;
            background: #000;
            border-radius: .23vw;
            transform: skewX(15deg);
        }

        &::after {
            transform: skewX(-15deg);
        }
    }
}


/* SP グローバルフッター
--------------------------------------------------------------- */

#g-footer {
    position: relative;
    padding-block: 3.49vw 20.93vw;
    z-index: 1;
}

/* -- SP フッターロゴ */
.footer-logo {
    width: 49.3vw;
    margin: 0 auto;
}

/* -- SP フッターSNSボタン */
.sns-list {
    display: grid;
    grid-template-columns: repeat(2, 13.95vw);
    justify-content: center;
    align-items: center;
    gap: 3.72vw;
    margin-top: 1.16vw;

    & a {
        display: block;
    }

    & img {
        box-sizing: border-box;
        border: .23vw solid #000;
        border-radius: 100vmax;
        overflow: hidden;
    }

}

/* -- SP コピーライト */
.footer-copyright {
    display: block;
    font-size: 2.33vw;
    text-align: center;
    margin-top: 4.42vw;
    line-height: 1;
}

/* -- SP LINE登録ボタン */
.fixed-line-banner {
    display: none;
}

.fixed-line-banner a {
    --color: #4cc764;
    box-sizing: border-box;
    position: fixed;
    right: 2.79vw;
    bottom: 2.79vw;
    display: grid;
    grid-template-columns: 9.3vw 1fr;
    gap: .41em;
    align-items: center;
    width: 44.19vw;
    height: 14.88vw;
    color: var(--color);
    font-size: 3.95vw;
    font-weight: 600;
    text-decoration: none;
    background: #fff;
    border: .93vw solid var(--color);
    border-radius: 100vmax;
    padding-inline: 1.86vw;
}



/* SP アンカー位置調整
--------------------------------------------------------------- */
/*
.anchor-block {
    scroll-margin-top: var(--header-height);
}
*/
#About {
    scroll-margin-top: 6.74vw;
}

#Solution {
    scroll-margin-top: 11.16vw;
}


/* 以下、TAB微調整(中間サイズ対応)
--------------------------------------------------------------- */
/*
@media screen and (max-width: 1023px) and (min-width: 431px) and (orientation: portrait) and (min-aspect-ratio: 860/1400) {
    .main-visual-logo {
        bottom: 30.23vw;
    }
}
*/


/* 以下、PC
--------------------------------------------------------------- */

@media print,
screen and (min-width: 1024px) {

    :root {
        --container-width: 1006px;
        --container-padding: 30px;
        --font-size-base: 16px;
    }

    .pc-only-block {
        display: block;
    }

    .pc-only-inline {
        display: inline;
    }

    .sp-only-block,
    .sp-only-inline {
        display: none;
    }


    /* PC グローバルヘッダー
    --------------------------------------------------------------- */

    .g-logo-wrapper {
        top: min(2.49vw, 34px);
        left: min(2.93vw, 40px);
    }

    .g-logo {
        /*width: 270px;*/
        width: min(19.77vw, 270px);
    }

    .g-catchphrase {
        font-size: min(1.32vw, 18px);
        letter-spacing: .05em;
    }


    /* PC グローバルメニューボタン ※画像版
    --------------------------------------------------------------- */

    .g-menu-button-2 {
        top: 17px;
        right: 24px;
        width: 37px;
    }



    /* PC グローバルメニューボタン
    --------------------------------------------------------------- */

    /* - PC ボタン本体 */
    .g-menu-button {
        --menu-button-size: 37px;
        --menu-border-width: 16px;
        --menu-border-height: 2px;
        --menu-border-margin: 8px;
        top: 17px;
        right: 24px;

        /* - PC 三本線 */
        .c-lines {

            &::before {
                transform: translate(0, -8px);
            }

            &::after {
                transform: translate(0, 8px);
            }
        }
    }


    /* PC グローバルナビ
    --------------------------------------------------------------- */

    /* - PC メニュー - 表示するコンテナ部分 */
    .js-menu-container {
        width: 294px;
    }

    /* - PC メニュー内包コンテナ */
    #g-nav-inner {
        padding: 70px 27px;
    }

    /*
    @container g-nav (height <=490px) {
        #g-nav-inner {
            display: block;
        }
    }
*/

    /* PC グローバルメニュー
    --------------------------------------------------------------- */

    #g-menu {
        gap: 33px;

        &>li>a {
            box-sizing: border-box;
            font-size: 16px;
            letter-spacing: .05em;
            padding-inline: .5em;

            &::after {
                width: 9px;
            }
        }
    }

    .banner-button-portalsite.is-menu-style {
        border-radius: 18px;
        margin-top: 35px;

        .c-banner-text {
            font-size: 14px;
            margin-top: 0;
        }

        & a {

            padding-bottom: 10px;

            &::after {
                top: 10px;
                right: 10px;
                width: 19px;
            }
        }
    }

    .sns-list.is-menu-style {
        justify-content: center;
        margin-top: 65px;
    }


    /* PC限定　コンテナインナー
    --------------------------------------------------------------- */

    .pc-container {
        max-width: var(--container-width);
        padding-inline: var(--container-padding);
        margin-inline: auto;
    }


    /* PC メインビジュアル - スライダー
    --------------------------------------------------------------- */

    .pc-main-visual {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2.62vw;
        display: block;
        width: 53.75vw;
        height: auto;
        max-width: 100%;
        margin: auto;
    }

    .main-visual-wrapper {
        min-width: 0;
        height: auto;
        aspect-ratio: 1/.562;
        margin-bottom: -1px;
        background: url(../img/bg.jpg) center center / cover no-repeat;

        &::before {
            aspect-ratio: 1/.097;
            background-image: url(../img/mv_top_pc.svg);
        }

        /*
        &::after {
            bottom: 0;
            aspect-ratio: 1/.186;
            height: auto;
            background: url(../img/mv_bottom_pc.svg) center bottom / contain no-repeat;
            clip-path: none;
        }
            */

        &::after {
            bottom: 0;
            height: min(16.84vw, 230px);
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(65, 166, 246, 1) 50%);
            clip-path: none;
        }

        .destiny-title {
            display: block;
        }
    }

    .main-visual-title {
        top: 13.03vw;
        left: auto;
        right: 6.58vw;
        width: 14.05vw;
    }

    .main-visual-logo {
        top: 10.50vw;
        left: 1.26vw;
        right: auto;
        bottom: auto;
        width: 14.70vw;
    }

    .slider-wrapper {
        &::after {
            content: normal;
        }
    }


    /* PC 運命の仕事は、ここにある！
    --------------------------------------------------------------- */

    .destiny-section {
        padding: 30px var(--container-padding) 38px;
        background: linear-gradient(#42a8f5 0%, #38f 78%, #a2d6fd 100%);

        &::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 1px;
            display: block;
            aspect-ratio: 1/.101;
            background: #a2d6fd;
            border-top: 1px solid #a2d6fd;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
            transform: translateY(100%);
        }

    }

    /* ※スライダー内表示に仕様変更 */
    .destiny-title {
        left: 8.05vw;
        bottom: 3.66vw;
        right: auto;
        font-size: 2.19vw;
        text-align: left;
        line-height: 1.5;
        margin: 0;
        z-index: 3;
    }

    .banner-button-portalsite {
        border-width: 4px;
        border-radius: 20px;
        margin: 0;

        & a {
            padding: 10px 0 20px;

            &::after {
                right: 9px;
                bottom: 9px;
                width: 27px;
            }
        }

        .c-banner-image {
            width: 70.70%;
        }

        .c-banner-text {
            display: block;
            font-size: 19px;
            font-weight: 700;
            /*font-feature-settings: "palt";*/
            letter-spacing: -.02em;
            line-height: 1.73;
            margin-top: .26em;
        }
    }


    /* PC ポータルサイトでできること
    --------------------------------------------------------------- */

    .feature-section {
        box-sizing: border-box;
        position: relative;
        max-width: var(--container-width);
        margin-inline: auto;
        border-radius: 20px;
        padding: 76px var(--container-padding) 90px;
        background: #fff url(../img/howto_image_pc.svg) left 156px bottom 0 / 266px auto no-repeat;
        z-index: 1;

        .banner-button-portalsite {
            margin-top: 0;

            .c-banner-image {
                filter: drop-shadow(0px 0px 1.4vw rgba(0, 0, 0, .17));
            }
        }
    }

    .feature-title {
        --height: 63px;
        position: absolute;
        top: calc(-1 * (var(--height) / 2));
        left: 0;
        right: 0;
        width: fit-content;
        height: var(--height);
        font-size: 25px;
        border-radius: 10px;
        padding-inline: 1.2em;
        margin: 0 auto;

        &::after {
            width: 22px;
        }
    }

    .feature-figure {
        display: none;
    }

    .feature-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 5.86%;
        width: 100%;
        font-size: 16px;
        margin: 0 auto;

        & figure+p {
            margin-top: .31em;
        }
    }

    .pc-feature-wrapper {
        display: grid;
        grid-template-columns: 1fr 322px;
        align-items: start;
        gap: 0 10.07%;
        max-width: 814px;
        margin-inline: auto;

        .start-link-block {
            gap: 24px;
            padding-top: 13px;
        }

        .banner-button-portalsite {
            & a {
                padding: 10px 0 15px;
            }

            .c-banner-image {
                filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, .14));
            }
        }
    }


    /* PC こんなお悩み解決できます！
    --------------------------------------------------------------- */

    .worry-section {
        max-width: var(--container-width);
        padding: 0;
        margin-inline: auto;
        margin-top: 64px;
    }

    .worry-title {
        font-size: 40px;
        letter-spacing: .1em;
        margin-bottom: 1em;
    }

    .worry-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .worry-list-figure {
        margin-bottom: 23px;

        & img {
            width: 180px;
        }
    }

    .worry-list-title {
        font-size: 18px;
        border-width: 3px;
    }

    .worry-list-text {
        font-size: 16px;
    }


    /* PC よくあるご質問
    --------------------------------------------------------------- */

    .faq-section {
        padding-top: 7.32vw;
        background: linear-gradient(to bottom, #D6F6EC 0%, #76afff 100%);
    }

    .faq-title {
        font-size: 40px;
        letter-spacing: .1em;
        margin-bottom: .7em;
    }

    .faq-list-wrapper {
        --box-height: 84px;
        padding-inline: 0;

        .faq-block {

            &+.faq-block {
                margin-top: 20px;
            }
        }

        .faq-dl {
            font-size: 14px;
            padding-inline: 30px;
            border-radius: 42px;

            /* －(※マイナス) */
            &.on dt::after {
                width: 18px;
            }

            & dt {
                gap: 1.28em;
                padding-block: .8em;
                line-height: 2;

                /* Q */
                &::before {
                    font-size: 24px;
                }

                /* + */
                &::after {
                    width: 18px;
                }
            }
        }
    }

    .support-loop-block {
        margin-top: 50px;

        & ul {
            display: flex;
            animation: horizontal-animation 40s linear infinite;
        }

        & li {
            width: 326px;
            padding-right: 10px;
        }
    }

    .pc-faq-wrapper {
        max-width: var(--container-width);
        padding-inline: var(--container-padding);
        margin-inline: auto;

        .pc-align-block {
            width: 600px;
            margin-right: auto;
        }
    }


    /* PC SpecialMovie
    --------------------------------------------------------------- */

    .movie-section {
        padding: 70px var(--container-padding);
    }

    .movie-title {
        font-size: 40px;
        letter-spacing: .1em;
        margin-bottom: .95em;
    }

    .movie-block {
        width: 620px;
        margin-inline: auto;
    }


    /* PC ふくしまでの就職活動をもっと身軽に
    --------------------------------------------------------------- */

    .start-section {
        padding: 40px 54px 78px;
        margin-inline: 0;
    }

    .start-title {
        font-size: 18px;
        text-align: center;
        margin-block: var(--leading-trim);
        line-height: 1.94;
    }

    .start-introduction {
        font-size: 16px;
        font-weight: 500;
        text-align: center;
        line-height: 1.75;
        margin-block: 2.5em 0;
    }

    .start-figure-device {
        text-align: center;
        margin-bottom: 0;

        & img {
            width: 100%;
        }
    }

    .start-link-block {
        gap: 40px;
    }

    .start-banner-fukushima {
        width: 520px;
        margin-inline: auto;

        & figcaption {
            gap: 17px;
            font-size: 20px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: .05em;
            margin-bottom: 1.1em;

            &::before,
            &::after {
                width: 3px;
                height: 37px;
                border-radius: 2px;
                transform: skewX(16deg);
            }

            &::after {
                transform: skewX(-16deg);
            }

        }
    }

    .start-banner-line {
        width: 322px;
        margin-inline: auto;
    }

    .pc-start-introduction-wrapper {
        display: grid;
        grid-template-columns: 1fr 308px;
        align-items: center;
        gap: 30px;
        margin-bottom: 50px;
    }


    /* PC グローバルフッター
    --------------------------------------------------------------- */

    #g-footer {
        max-width: var(--container-width);
        padding-inline: var(--container-padding);
        padding-block: 50px 94px;
        margin-inline: auto;
    }

    /* -- PC フッターロゴ */
    .footer-logo {
        width: 180px;
        margin: 0 auto;
    }

    /* -- PC フッターSNSボタン */
    .sns-list {
        grid-template-columns: repeat(2, 37px);
        justify-content: end;
        gap: 14px;
        margin-top: -43px;

        & img {
            border-width: 1px;
        }

    }

    /* -- PC コピーライト */
    .footer-copyright {
        font-size: 10px;
        text-align: right;
        margin-top: 20px;
    }

    /* -- PC LINE登録ボタン */
    .fixed-line-banner a {
        right: 10px;
        bottom: 10px;
        grid-template-columns: 40px 1fr;
        gap: .41em;
        width: 190px;
        height: 64px;
        font-size: 17px;
        border-width: 4px;
        padding-inline: 8px;
    }


    /* PC アンカー位置調整
	--------------------------------------------------------------- */
    /*
    .anchor-block { 
        scroll-margin-top: 130px;
    }
        */

    #About {
        scroll-margin-top: 50px;
    }

    #Solution {
        scroll-margin-top: 64px;
    }

}


/* 以下、プリント
--------------------------------------------------------------- */

@media print {

    body {
        min-width: 1366px;
    }

    .slick-track,
    .slick-slide {
        width: 100% !important;
        height: auto !important;
    }

    .slick-initialized .slick-slide {
        display: none !important;
    }

    .slick-initialized .slick-slide:first-child {
        display: block !important;
        left: 0 !important;
        opacity: 1 !important;
    }

    .g-menu-button {
        position: absolute;
    }

    .fixed-line-banner {
        display: none !important;
    }
}