html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", "YuGothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
    background: linear-gradient(135deg, #7fe1f7 0%, #2faee2 20%, #004da0 55%, #1f6fc6 75%, #4ac8d7 100%);
    background-size: 250% 250%;
    animation: gradientMove 10s ease infinite;
    line-height: 1.7;
    letter-spacing: 0.075em;
    height: 100%;
}

img {
    width: 100%;
    display: block;
}

p {
    margin: 0;
    padding: 0;
}

.hamburger {
    display: none;
}

@media (max-width: 980px) {
    .navigation {
        position: fixed;
        top: 0;
        right: -90%;
        width: 80%;
        height: 100vh;
        background: #fff;
        transition: 0.5s;
        z-index: 9998;
    }

    .navigation.open {
        right: -5%;
    }

    .navigation .inner {
        height: 100%;
        display: flex;
        justify-content: left;
        align-items: center;
    }

    .navigation ul {
        flex-direction: column;
        gap: 32px;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 23px;
        flex-direction: column;
        justify-content: space-between;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #1f6fc6;
        border-radius: 999px;
        transition: 0.3s;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

header {
    background: rgba(255, 255, 255, 1);
    border-radius: 60px;
    width: 94%;
    padding: 15px;
    position: fixed;
    box-sizing: border-box;
    z-index: 9999;
    top: 2vw;
    left: 50%;
    transform: translateX(-50%);
}
header .logo {
    width: 218px;
    height: auto;
}

@media (max-width: 980px) {
    header {
        background: rgba(255, 255, 255, 1);
        border-radius: 60px;
        width: 96%;
        padding: 15px;
        position: fixed;
        box-sizing: border-box;
        z-index: 9999;
        top: 2vw;
        left: 50%;
        transform: translateX(-50%);
    }

    header .logo {
        width: 150px;
    }
}

header li {
    background: none;
    padding: 0;
}
header li a {
    text-decoration: none;
    color: #000;
}
section {
    padding: 5vw 0;
    scroll-margin-top: 5vw;
}

@media (max-width: 980px) {
    section {
        padding: 5vw 0;
        scroll-margin-top: 9vw;
    }

    header li {
        text-align: left;
        width: 100%;
        padding-left: 20px;
        box-sizing: border-box;
    }
}

#loading {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: 0.8s ease;
}

.loading-inner {
    text-align: center;
}

.loading-inner h1 {
    font-size: 80px;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: titleFade 3s forwards;
}

#loading.hide {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 980px) {
    .loading-inner h1 img {
        width: 60%;
        margin: 0 auto;
    }
    .loading-inner h1 {
        text-align: center;
    }
}

@keyframes titleFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lineGrow {
    to {
        width: 240px;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 20%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 20% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.loading-progress {
    position: fixed;
    left: 50%;
    bottom: 20px;
    width: 100%;
    transform: translateX(-50%);
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.loading-bar {
    width: 0;
    height: 100%;

    background: linear-gradient(90deg, #5bd7ff, #1f6fc6);

    transition: width 0.2s linear;
}

.bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, #2fc4e5, #4488df, #49c8d8);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.blob1 {
    width: 500px;
    height: 500px;
    background: #74e7ff;
    animation: move1 20s ease-in-out infinite alternate;
}

.blob2 {
    width: 650px;
    height: 650px;
    background: #337bff;
    right: -100px;
    top: 30%;
    animation: move2 28s ease-in-out infinite alternate;
}

.blob3 {
    width: 450px;
    height: 450px;
    background: #42d5f5;
    bottom: -80px;
    left: 20%;
    animation: move3 24s ease-in-out infinite alternate;
}

@keyframes move1 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(150px, 250px);
    }
}

@keyframes move2 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-180px, -120px);
    }
}

@keyframes move3 {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(180px, -180px);
    }
}

#mv {
    position: relative;
    overflow: hidden;
    padding: 0;
}

#mv .photo01 {
    width: 90%;
}

#mv .photo01 img {
    width: 100%;
}

#mv .photo02 {
    position: absolute;
    width: 30vw;
    top: 38vw;
    right: -2vw;
    z-index: 99;
}

#mv .photo02 img {
    width: 100%;
}

#mv .grade01 {
    width: 90%;
    position: absolute;
    top: 11vw;
    mix-blend-mode: multiply;
}

#mv .grade01 img {
    width: 100%;
}

#mv .mv-title {
    position: absolute;
    width: 60%;
    left: 2vw;
    top: 22vw;
    z-index: 2;
}

@media (max-width: 768px) {
    #mv .photo01 {
        width: 100%;
        margin-top: 5vw;
    }

    #mv .photo02 {
        width: 30vw;
        top: 48vw;
        right: -4vw;
    }

    #mv .grade01 {
        width: 90%;
        top: 10vw;
        z-index: 98;
    }

    #mv .mv-title {
        width: 80%;
        left: 2vw;
        top: 25vw;
        z-index: 99;
    }
}

.flow-wrap {
    position: fixed;
    right: 5px;
    top: 0;
    width: 20vw;
    height: 100%;
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease;
    overflow: hidden;
}
.flow-wrap.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.flow-inner {
    display: flex;
    flex-direction: column;
    gap: 110vw;
    animation: flowUp 18s linear infinite;
    overflow: hidden;
}

.flow-inner span {
    display: inline-block;
    font-size: 20vw;
    font-weight: 900;
    color: #38a2df;
    transform: rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
}

.pd-s {
    padding: 4vw;
}

.pd-lr {
    padding: 0 4vw;
}

h2 {
    position: relative;
    color: #fff;
    margin: 0;
    padding: 0;
    z-index: 99;
    font-size: 3.5vw;
    padding: 0 4vw;
    line-height: 1.5;
}

h3 {
    position: relative;
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
}

h3 span {
    display: inline-block;
    background: #1f6fc6;
    height: 3px;
    width: 150px;
}

.bg-white {
    background: #fff;
}

h4 {
    position: relative;
    text-align: center;
    font-size: 30px;
    line-height: 1.5;
}

h5 {
    font-size: 18px;
    line-height: 1.4;
    margin: 1vw 0;
}

h5 span {
    display: inline-block;
    background: #1f6fc6;
    height: 3px;
    width: 80px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    h3 {
        font-size: 20px;
        line-height: 1.5;
    }

    h4 {
        font-size: 18px;
        line-height: 1.5;
    }

    h5 {
        font-size: 16px;
        line-height: 1.4;
        margin: 1vw 0;
    }

    h5 span {
        display: inline-block;
        background: #1f6fc6;
        height: 3px;
        width: 80px;
    }
}

.cl1 {
    color: #fff;
}
.cl2 {
    color: #1f6fc6;
}

.taC {
    text-align: center;
}

.taL {
    text-align: left;
}

#company {
    position: relative;
}

.label {
    background: #1f6fc6;
    color: #fff;
    display: inline-block;
    padding: 1vw 2vw 1vw 4vw;
    margin-bottom: 4vw;
}

.label span {
    border-left: 5px solid #fff;
    display: inline-block;
    padding-left: 1vw;
}

.text01 {
    font-size: 18px;
}

@media (max-width: 768px) {
    .label {
        padding: 3vw 4vw 3vw 6vw;
        margin-bottom: 4vw;
    }
    .label span {
        padding-left: 2vw;
    }
    .text01 {
        font-size: 16px;
    }

    .text02 {
        font-size: 14px;
    }
}

#mv .photo03 {
    position: relative;
    width: 45%;
    z-index: 99;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-box {
    width: 50%;
    z-index: 99;
}

@media (max-width: 768px) {
    #mv .photo03 {
        width: 80vw;
    }

    .text-box {
        width: 100%;
        z-index: 99;
    }
}

.gallery {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
    padding: 0;
    margin: -3vw 0 0;
    z-index: 999;
}
.grade02 {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    mix-blend-mode: multiply;
}
.mv-copy2 {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

@media (max-width: 768px) {
    .grade02 {
        width: 100%;
    }
    .mv-copy2 {
        width: 100%;
        background: rgba(31, 111, 198, 0.6);
    }
}

.gallery {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: loop 25s linear infinite;
}

.gallery-track img {
    width: 100vw;
    height: auto;
    flex-shrink: 0;
}
@media (max-width: 768px) {
    .gallery {
        height: 90vw;
    }

    .gallery-track img {
        width: auto;
        height: 90vw;
    }
}

@keyframes loop {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    top: 0;
}

.gradient-bg::before,
.gradient-bg::after {
    content: "";
    position: absolute;
    inset: -20%;
    filter: blur(180px);
    opacity: 0.9;
}

.gradient-bg::before {
    background: radial-gradient(circle at 20% 35%, #b1f4ff 0%, transparent 35%), radial-gradient(circle at 40% 80%, #d4fff4 0%, transparent 30%), radial-gradient(circle at 75% 30%, #fff 0%, transparent 30%);
    animation: float1 18s ease-in-out infinite alternate;
}

.gradient-bg::after {
    background: radial-gradient(circle at 80% 70%, #b1f4ffF 0%, transparent 35%), radial-gradient(circle at 60% 45%, #fff 0%, transparent 30%), radial-gradient(circle at 30% 15%, #f7f1ff 0%, transparent 20%);
    animation: float2 24s ease-in-out infinite alternate;
}

@keyframes float1 {
    from {
        transform: translate(-5%, -3%) rotate(0deg);
    }
    to {
        transform: translate(5%, 4%) rotate(12deg);
    }
}

@keyframes float2 {
    from {
        transform: translate(4%, -2%) rotate(0deg);
    }
    to {
        transform: translate(-4%, 5%) rotate(-10deg);
    }
}

.front {
    z-index: 999;
    position: relative;
}

.text02 {
}

ul {
    margin: 0;
    padding: 0 4vw;
    list-style: none;
    gap: 15px;
    box-sizing: border-box;
    align-items: stretch;
}

li {
    padding: 0 2vw 2vw 2vw;
    background: #fff;
    border-radius: 10px;
    box-sizing: border-box;
    flex-direction: column;
}

li img {
    max-width: 150px;
    margin: 0 auto;
    display: block;
}

#company li a {
    display: block;
    color: #fff;
    background: url(/assets/images/recruit2028/icon-new-window-01.svg) 90% 50% no-repeat, #1f6fc6;
    background-size: 16px;
    border-radius: 40px;
    text-decoration: none;
    padding: 10px 20px;
    margin-top: 2vw;
}

.service {
    align-items: stretch;
}

.service li {
    width: 24%;
    flex-direction: column;
}

@media (max-width: 980px) {
    .service {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .service li {
        width: 49%;
        padding: 0 5vw 5vw;
        margin-bottom: 20w;
    }

    #company li a {
        padding: 10px 20px;
        margin-top: 3vw;
    }
}

@media (max-width: 768px) {
    .service {
        display: block;
    }

    .service li {
        width: 100%;
        padding: 0 5vw 5vw;
        margin-bottom: 5vw;
    }

    #company li a {
        padding: 10px 20px;
        margin-top: 5vw;
    }
}

.left {
    width: 60%;
}

.img-02 {
    width: 40%;
}

.img03 {
    width: 50vw;
    margin: 0 auto;
    position: relative;
}
.img03 img {
    z-index: 1;
    position: relative;
}
.img03::before {
    content: "";
    display: block;
    width: 40vw;
    height: 40vw;
    top: 3.8vw;
    left: 6vw;
    position: absolute;
    background: url(/assets/images/recruit2028/arrow.png) no-repeat center;
    background-size: contain;
    animation: rotateLoop 45s linear infinite;
    transform-origin: center;
    z-index: 0;
}

@keyframes rotateLoop {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .left {
        width: 100%;
    }

    .img-02 {
        width: 100%;
        text-align: left;
        padding-left: 15vw;
        box-sizing: border-box;
    }

    .img03 {
        width: 90vw;
        margin: 0px auto;
        position: relative;
        padding: 50px 0;
    }

    .img03::before {
        content: "";
        display: block;
        width: 73.25vw;
        height: 73.25vw;
        top: 6.5vw;
        left: 10vw;
        position: absolute;
        background: url(/assets/images/recruit2028/arrow.png) no-repeat center;
        background-size: contain;
        animation: rotateLoop 45s linear infinite;
        transform-origin: center;
        z-index: 0;
        padding: 50px 0;
    }
}

#work {
    background: url(/assets/images/recruit2028/bg-work.png) no-repeat top center;
    background-size: 100%;
    position: relative;
}

#work-list {
    align-items: stretch;
}

#work-list li {
    position: relative;
    width: 33%;
    flex-direction: column;
}

#work-list li img {
    max-width: 100%;
    width: auto;
    height: 120px;
    margin-bottom: 2vw;
}
.number {
    position: absolute;
    top: 0vw;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #1f6fc6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 900;
}

@media (max-width: 768px) {
    #work {
        background: url(/assets/images/recruit2028/bg-work.png) no-repeat top center;
        background-size: 120%;
    }
    #work-list {
        display: block;
        margin-top: 15vw;
    }

    #work-list li {
        width: 100%;
        margin-bottom: 15vw;
        padding: 10vw 5vw 5vw 5vw;
    }

    .number {
        position: absolute;
        top: 0vw;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        background: #1f6fc6;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        font-size: 30px;
        margin-bottom: 10vw;
    }
}

.member {
    padding: 2vw 0 0;
}

.embla {
    overflow: hidden;
    padding: 0 5vw;
}

.embla__container {
    display: flex;
}

.embla__slide {
    flex: 0 0 32%;
    background: url(/assets/images/recruit2028/sns.png) 50% 95% no-repeat, #e0edf4;
    background-size: 80%;
    border-radius: 10px;
    border: 1px solid #000;
    margin-right: 24px;
    padding: 2vw 2vw 6vw 2vw;
    box-sizing: border-box;
}

.embla__slide img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.loop-text-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-top: -1vw;
    margin-bottom: -3vw;
}

.loop-text-track {
    display: inline-flex;
    animation: loopText 20s linear infinite;
}

.loop-text-track span {
    font-size: 180px;
    line-height: 1;
    font-weight: 900;
    flex-shrink: 0;
    mix-blend-mode: overlay;
    opacity: 0.1;
}

@keyframes loopText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .loop-text-track span {
        font-size: 20vw;
    }
}

.time {
    font-size: 48px;
    text-align: center;
    font-weight: 900;
    color: #1f6fc6;
}

.icon-schedule01 {
    position: absolute;
    bottom: -2vw;
    right: 5vw;
    z-index: 999;
    height: 250px;
}

.icon-schedule02 {
    position: absolute;
    bottom: -2vw;
    right: 17vw;
    z-index: 999;
    height: 210px;
}

.icon-schedule03 {
    position: absolute;
    bottom: -2vw;
    right: 35vw;
    z-index: 999;
    height: 220px;
}

.icon-schedule04 {
    position: absolute;
    bottom: -2vw;
    right: 50vw;
    z-index: 999;
    height: 210px;
}

.icon-schedule01 img,
.icon-schedule02 img,
.icon-schedule03 img,
.icon-schedule04 img {
    width: auto;
    height: 100%;
}

@media (max-width: 980px) {
    .embla__slide {
        flex: 0 0 40%;
        background: url(/assets/images/recruit2028/sns.png) 50% 95% no-repeat, #e0edf4;
        background-size: 80%;
        border-radius: 10px;
        border: 1px solid #000;
        margin-right: 24px;
        padding: 5vw 5vw 15vw 5vw;
        box-sizing: border-box;
    }

    .text-schedule {
        padding: 5vw 0 0 0;
    }
    .icon-schedule01 {
        bottom: -2vw;
        right: 5vw;
        height: 200px;
    }

    .icon-schedule02 {
        bottom: -2vw;
        right: 20vw;
        z-index: 999;
        height: 160px;
    }

    .icon-schedule03 {
        bottom: -2vw;
        right: 45vw;
        z-index: 999;
        height: 170px;
    }

    .icon-schedule04 {
        bottom: -2vw;
        right: 68vw;
        z-index: 999;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .embla__slide {
        flex: 0 0 90%;
        background: url(/assets/images/recruit2028/sns.png) 50% 95% no-repeat, #e0edf4;
        background-size: 80%;
        border-radius: 10px;
        border: 1px solid #000;
        margin-right: 24px;
        padding: 5vw 5vw 15vw 5vw;
        box-sizing: border-box;
    }

    .text-schedule {
        padding: 5vw 0 0 0;
    }
    .icon-schedule01 {
        bottom: -2vw;
        right: 5vw;
        height: 150px;
    }

    .icon-schedule02 {
        bottom: -2vw;
        right: 20vw;
        z-index: 999;
        height: 110px;
    }

    .icon-schedule03 {
        bottom: -2vw;
        right: 45vw;
        z-index: 999;
        height: 120px;
    }

    .icon-schedule04 {
        bottom: -2vw;
        right: 68vw;
        z-index: 999;
        height: 110px;
    }
}
.bg-03 {
    background: #e2f0f7;
}

ul.human {
    flex-wrap: wrap;
    gap: 2%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.human-01 {
    position: absolute;
    top: 7vw;
    right: 2vw;
    width: 20%;
}

.human li {
    margin-bottom: 1vw;
    padding: 2vw;
}

.human li:nth-child(even) {
    --offset: 7vw;
}

@media (max-width: 768px) {
    ul.human {
        display: block;
        margin-bottom: -10vw;
    }

    .human li {
        width: 100%;
        margin-bottom: 5vw;
    }

    .human li:nth-child(even) {
        --offset: 0vw;
    }
}

ul.point {
    gap: 2%;
    align-items: stretch;
    margin-bottom: -3vw;
    position: relative;
    z-index: 99;
}

.point li {
    width: 33%;
    position: relative;
}

.point li img {
    max-width: 100%;
    width: auto;
    height: 120px;
    margin-bottom: 2vw;
}

@media (max-width: 768px) {
    ul.point {
        display: block;
        margin-top: 15vw;
        margin-bottom: -20vw;
        position: relative;
        z-index: 99;
    }

    .point li {
        width: 100%;
        margin-bottom: 15vw;
        padding: 10vw 5vw 5vw 5vw;
    }

    .point li img {
        margin: 4vw auto;
    }
}

.counter-box {
    display: flex;
    align-items: flex-end;
}

.counter {
    font-size: 6.5vw;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.counter-box span {
    font-size: 2.5vw;
    margin-left: 8px;
    display: inline-block;
}

.title {
    font-size: 24px;
    font-weight: 900;
}

.title i {
    margin-right: 10px;
    font-size: 30px;
}

.text03 {
    font-weight: 600;
}

.comment {
    border-radius: 10px;
    padding: 1vw;
}

.comment img {
    max-width: 80px;
}
.comment p {
    padding: 1vw 1vw 1vw 1.5vw;
    font-size: 14px;
}

@media (max-width: 768px) {
    .counter {
        font-size: 16vw;
        font-weight: 700;
        line-height: 1;
        font-variant-numeric: tabular-nums;
    }

    .counter-box span {
        font-size: 10.5vw;
        margin-left: 8px;
        display: inline-block;
    }
    .title {
        font-size: 16px;
        font-weight: 900;
        padding: 2vw 2vw 0;
    }

    .title i {
        margin-right: 5px;
        font-size: 20px;
    }

    .comment img {
        max-width: 60px;
    }
    .comment p {
        padding: 2vw 2vw 2vw 2.5vw;
        font-size: 12px;
    }
}
.about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.about li {
    position: relative;
    z-index: 1;
    padding: 20px;
    background: none;
    color: #fff;
    text-align: center;
}
.about li img.s {
    max-width: 100%;
    height: 80px;
    width: auto;
}
.about li img.m {
    max-width: 100%;
    width: 130px;
}
.about li .flex {
    justify-content: center;
    align-items: end;
    gap: 0.8vw;
}

.about li span {
    font-size: 30px;
}

.about li span.fs18 {
    font-size: 2vw;
    font-weight: 600;
    line-height: 1.4;
    display: inline-block;
}

.about li::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #1f6fc6;
    mix-blend-mode: multiply;
    opacity: 0.3;
    z-index: -1;
}

.about li:nth-child(3) {
    grid-column: span 2;
}
.box {
    padding: 0 1vw;
}

.section {
    background: #fff;
    border-radius: 20px;
    padding: 5px 15px;
    color: #1f6fc6;
    font-size: 1vw;
    font-weight: 600;
}
.about li .jender {
    width: 30px;
    max-width: 30px;
}

@media (max-width: 768px) {
    .about li span.fs18 {
        font-size: 4vw;
    }
    .about {
        display: block;
    }

    .about li {
        width: 100%;
        padding: 5vw;
        margin-bottom: 5vw;
    }

    .section {
        padding: 3px 10px;
        font-size: 2vw;
    }
}

.support {
    flex-wrap: wrap;
    gap: 1%;
    align-items: stretch;
}
.support li {
    width: 49%;
    margin-bottom: 2vw;
    padding: 2vw;
    gap: 2vw;
}

.support li img {
    max-width: 25%;
    margin-right: 2vw;
}

.support li h5 {
    margin: 0 0 1vw;
}

@media (max-width: 768px) {
    .support {
        display: block;
    }
    .support li {
        width: 100%;
        padding: 5vw;
        margin-bottom: 5vw;
        text-align: center;
    }

    .support li img {
        max-width: 50%;
        margin: 5vw auto;
    }
}
.step {
    position: absolute;
    top: 0vw;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: #1f6fc6;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
}

#flow {
    position: relative;
}
.flow {
    align-items: stretch;
    margin-bottom: -5vw;
    position: relative;
    z-index: 99;
}

.flow li {
    width: 20%;
    position: relative;
    flex-direction: column;
    font-size: 14px;
}

.flow li h5 {
    font-size: 16px;
    letter-spacing: -0.025em;
}

@media (max-width: 768px) {
    .step {
        width: 80px;
        height: 80px;
        font-size: 16px;
    }
    .flow {
        display: block;
        margin-top: 15vw;
        margin-bottom: -20vw;
    }

    .flow li {
        width: 100%;
        padding: 10vw 5vw 5vw 5vw;
        margin-bottom: 15vw;
    }

    .flow li img.step05 {
        height: 180px;
        width: auto;
    }
}

.flow-02 {
    position: absolute;
    bottom: -15vw;
    right: 2vw;
    width: 10%;
    z-index: 999;
}

.flow-01 {
    position: absolute;
    left: -5vw;
    width: 120%;
    height: auto;
    z-index: 999;
}

.flow-01 img {
    max-width: 100%;
}

.faq-list {
    list-style: none;
    margin: 0 auto -7vw;
    padding: 0;
    max-width: 1050px;
    position: relative;
    z-index: 99;
}

.faq-item {
    margin-bottom: 2vw;
}

.faq-question {
    width: 100%;
    padding: 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-align: left;
    font-weight: 600;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 30px 0 30px;
    margin-top: 20px;
    line-height: 1.8;
    border-top: 1px dashed #1f6fc6;
}
.faq-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #1f6fc6;
    transition: 0.3s;
}

.faq-icon::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

@media (max-width: 1051px) {
    .faq-list {
        padding: 20px 5vw 0px;
    }
}

@media (max-width: 768px) {
    .faq-list {
        margin: 0 auto -7vw;
        padding: 0 5vw;
    }

    .faq-question {
        padding: 20px 20px 10px;
        font-size: 16px;
    }

    .faq-answer-inner {
        padding: 20px 20px 20px;
        margin-top: 10px;
        line-height: 1.8;
        font-size: 14px;
        border-top: 1px dashed #1f6fc6;
    }

    .faq-icon {
        position: relative;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
}

.fade-up {
    --offset: 0px;

    opacity: 0;
    transform: translateY(calc(var(--offset) + 50px));
    transition: 0.8s;
}

.fade-up.is-show {
    transform: translateY(var(--offset));
    opacity: 1;
}

.fade-up-blur {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(12px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.9s ease;
    will-change: transform, opacity, filter;
}

.fade-up-blur.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.line {
    position: absolute;
    top: clamp(420px, 68vw, 980px);
    left: 22vw;

    width: 60vw;
    aspect-ratio: 1053 / 1285;
}
.path-section {
    position: relative;
    z-index: 9;
    width: 100%;
    height: 100%;
}

.scroll-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.line-path {
    opacity: 0.2;
}
.line-dot {
    fill: #fff;
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 20px #38a2df);
    animation: dotGlow 1.8s ease-in-out infinite;
}

@keyframes dotGlow {
    0% {
        r: 8;
        filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #38a2df);
    }

    50% {
        r: 11;
        filter: drop-shadow(0 0 10px #fff) drop-shadow(0 0 24px #38a2df) drop-shadow(0 0 40px #38a2df);
    }

    100% {
        r: 8;
        filter: drop-shadow(0 0 4px #fff) drop-shadow(0 0 8px #38a2df);
    }
}

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

#company .line {
    position: absolute;
    top: 5vw;
    left: 10vw;

    width: 72vw;
    aspect-ratio: 1559 / 3640;
}

#company .path-section {
    width: 100%;
    height: 100%;
    position: relative;
}

#company .scroll-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

#company .line-path {
}
#company .line-dot {
    fill: #1f6fc6;
    filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 10px #38a2df);
    z-index: 99999;
}

.table table {
    max-width: 1050px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 2px;
    width: 100%;
}

.table th {
    background: #1f6fc6;
    color: #fff;
    padding: 1vw;
    width: 30%;
}
.table td {
    background: #fff;
    padding: 1vw;
    width: 70%;
}
.page-top {
    position: fixed;
    right: 2vw;
    bottom: 2vw;
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #1f6fc6;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
    z-index: 9999;
}

@media (max-width: 768px) {
    .table {
        margin-bottom: 20vw;
    }

    .copyright {
        z-index: 999;
    }
}

.page-top.is-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-top:hover {
    transform: translateY(-4px);
    opacity: 0.7;
}

.page-top i {
    transition: 0.3s;
}

.page-top:hover i {
    transform: translateY(-2px);
}

.footer-bottom {
    background: #1f6fc6;
    padding: 2vw;
    height: 50px;
    position: relative;
    z-index: 999;
}
.small {
    font-size: 70%;
}

.mb1 {
    margin-bottom: 1vw;
}

.mb2 {
    margin-bottom: 2vw;
}

.mb5 {
    margin-bottom: 5vw;
}

.mb7 {
    margin-bottom: 7vw;
}

.mb10 {
    margin-bottom: 10vw;
}

.mt2 {
    margin-top: 2vw;
}

.mt4 {
    margin-top: 4vw;
}

.sp {
    display: none;
}

@media (max-width: 768px) {
    .mt6 {
        margin-top: 6vw;
    }

    .mb1 {
        margin-bottom: 2vw;
    }

    .mb2 {
        margin-bottom: 4vw;
    }
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .flex-sp {
        display: block;
    }
}
