@charset "UTF-8";

/** -------- break points -------- */
/** pc : >= 1080  */
/** tab: <= 1079 */
/** sp : <= 799 */

body {
    display: flex;
    font-family: 'Noto Sans JP', sans-serif;
}

body.modal-open {
    overflow: hidden;
}

/** -------- p -------- */
p {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    text-align: justify;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0;
}
@media (max-width: 799px) {
    p {
        font-size: 14px;
        line-height: 150%;
        letter-spacing: 0;
    }
}

/** -------- p color -------- */
.white {
    color: #fff;
}
.purple {
    color: #7E92DB;
}
.blue {
    color: #344A92;
}
.black {
    color: #2F3039;
}
.dark-black {
    color: #2B1A1A;
}
.gray {
    color: #BDBDBD;
}

/** -------- p size -------- */
.x5l {
    font-size: 40px;
}
.x4l {
    font-size: 32px;
}
.x3l {
    font-size: 24px;
}
.x2l {
    font-size: 22px;
}
.xl {
    font-size: 20px;
}
.l {
    font-size: 18px;
}
.m {
    font-size: 16px;
}
.s {
    font-size: 14px;
}
.xs {
    font-size: 12px;
}
.x2s {
    font-size: 10px;
}

@media (max-width: 799px) {
    .x5l {
        font-size: 24px;
    }
    .x4l {
        font-size: 21px;
    }
    .x3l {
        font-size: 18px;
    }
    .x2l {
        font-size: 16px;
    }
    .xl {
        font-size: 16px;
    }
    .l {
        font-size: 14px;
    }
    .m {
        font-size: 14px;
    }
    .s {
        font-size: 11px;
    }
    .xs {
        font-size: 10px;
    }
    .x2s {
        font-size: 8px;
    }
}

/** -------- p line-height -------- */
.low {
    line-height: 150%;
}
.high {
    line-height: 220%;
}

/** -------- p letter-spacing -------- */
.narrow {
    letter-spacing: 0;
}
.wide {
    letter-spacing: 0;
}

/** -------- p bold -------- */
.b {
    font-weight: 700!important;
}

/** -------- p underline -------- */
.ul-black {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #2F3039;
}
.ul-gray {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #BDBDBD;
}
.ul-purple {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #7E92DB;
}
.ul-purple-l {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #7E92DB;
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}
.ul-white {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #fff;
}
.ul-white-l {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #fff;
    text-underline-offset: 6px;
}

/** -------- margin -------- */
.mb-s {
    margin-bottom: 8px;
}
.mb-m {
    margin-bottom: 16px;
}
.mb-l {
    margin-bottom: 24px;
}

/** -------- br -------- */
.br-sp {
    display: none;
}

@media (max-width: 799px) {
    .br-sp {
        display: block;
    }
}

/** -------- hr -------- */
.hr-gray {
    border: none;
    border-top: 1px solid #F5F5F5;
    color: #F5F5F5;
    background-color: #F5F5F5;
    height: 1px;
    margin: 0;
}
.hr-white {
    border: none;
    border-top: 1px solid #fff;
    color: #fff;
    background-color: #fff;
    height: 1px;
    margin: 0;
}

/** -------- compornent -------- */
.mark-round-purple {
    border-radius: 100px;
    background: #F5F5F5;
    color: #7E92DB;
    font-size: 14px;
    font-weight: 700;
    padding: 2px 12px;
    margin-bottom: 12px;
    text-align: center;
}
.mark-bright {
    display: flex;
    justify-content: flex-start;
}
.mark-bright p {
    border-radius: 100px;
    background: linear-gradient(90deg, #7490E9 0%, #69D6C2 100%);
    padding: 2px 14px;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 799px) {
    .mark-round-purple {
        font-size: 12px;
    }
}

/** -------- table -------- */
.table-purple {
    width: 720px;
}
.table-purple thead tr th {
    width: 100%;
    border-radius: 16px 16px 0px 0px;
    background: #7E92DB;
    padding: 16px 0;
    text-align: center;
}
.table-purple tbody tr {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}
.table-purple tbody tr .left {
    border-radius: 0px 0px 0px 16px;
}
.table-purple tbody tr .right {
    border-radius: 0px 0px 16px 0px;
}
.table-purple tbody tr .col2 {
    width: 50%;
}
.table-purple tbody tr .col3 {
    width: 33.3%;
}
.table-purple tbody tr .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.table-purple tbody tr .no-pad {
    padding: 0px;
}
.table-purple tbody tr .bg-white {
    background: #fff;
    padding: 24px 32px;
}
.table-purple tbody tr td {
    background: #F5F5F5;
    padding: 12px;
    width: 100%;
}

.table-gradation-bright {
    max-width: 720px;
}
.table-gradation-bright thead tr th {
    width: 100%;
    border-radius: 100px 100px 0px 0px;
    background: linear-gradient(90deg, #7490E9 0%, #69D6C2 100%);
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    padding: 16px 0;
    text-align: center;
}
.table-gradation-bright tbody tr {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
}
.table-gradation-bright tbody tr td {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    padding: 24px;
    width: 100%;
}
.table-gradation-bright tbody tr .td-bottom {
    border-radius: 0px 0px 16px 16px;
}

.table-gradation-dark {
    max-width: 720px;
}
.table-gradation-dark thead tr th {
    width: 100%;
    border-radius: 100px 100px 0px 0px;
    background: linear-gradient(90deg, #344A92 0%, #31AF98 100%);
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    padding: 16px 0;
    text-align: center;
}
.table-gradation-dark tbody tr {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
}
.table-gradation-dark tbody tr td {
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    padding: 24px;
    width: 100%;
}
.table-gradation-dark tbody tr .td-bottom {
    border-radius: 0px 0px 16px 16px;
}


@media (max-width: 1079px) {
    .table-purple {
        width: 560px;
    }
}
@media (max-width: 799px) {
    .table-purple {
        width: 100%;
        max-width: 560px;
    }
}

/** -------- layout, logo -------- */
main {
    flex: 1;
    height: 100vh;
    overflow-y: auto;
}
.header-pc {
    width: 320px;
    flex-shrink: 0;
    height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 0;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    background-color: #fff;
}
.header-pc .logo-pc {
    padding: 32px 40px;
}
.header-pc .logo-pc .logo-img-pc {
    display: block;
    width: 210px;
    height: 40px;
    margin-bottom: 8px;
}
.header-sp {
    display: none;
    margin: 16px 16px 16px 24px;
}
.header-sp .logo-img-sp {
    width: 160px;
    height: 32px;
}
.hidden {
    display: none;
}

@media (max-width: 1079px) {
    .header-pc {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1000;
        transform: translateX(-100%);
        visibility: hidden;
        transition: transform 0.20s ease-in-out;
    }
    .header-pc.active {
        transform: translateX(0);
        visibility: visible;
    }
    .header-sp {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
    }
    .hidden {
        display: none;
    }
}

@media (max-width: 799px) {
    .header-pc.active {
        width: 100%;
    }
    .hidden {
        display: none;
    }
}

/** -------- nav, etc -------- */
.nav {
    padding: 32px 40px;
}
.nav .menus {
    margin-bottom: 24px;
}
.nav .menus .menu-item {}
.nav .menus .menu-item .link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8px;
}
.nav .menus .menu-item .link .link-icon {
    margin-left: 8px;
    width: 16px;
    height: 16px;
}

.nav .nav-recruit-button {
    margin: 24px 0;
    display: none;
}

.nav .nav-recruit-button .button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #FE0 0%, #64FBE0 100%);
    border-radius: 100px;
    padding: 16px;
    text-decoration: none;
}
.nav .nav-recruit-button .button .link-icon {
    width: 18px;
    height: 18px;
}

.menu-buttons {
    display: none;
    margin: 16px;
    z-index: 2000;
}
.menu-buttons .button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/icon-menu-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
}
.menu-buttons .inner {
    display: block;
    width: 16px;
    height: 1px;
    position: relative;
}
.menu-buttons .inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: -4px;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}
.menu-buttons .inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 4px;
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}
.menu-buttons.is-active .inner::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-buttons.is-active .inner::after {
  top: 0;
  transform: rotate(-45deg);
}

.scroll-marker {
    display: none;
    margin: 16px;
}

@media (max-width: 1079px) {
    .menu-buttons {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 0;
        right: 0;
    }
    .scroll-marker {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .nav .nav-recruit-button {
        display: block;
    }
}

/** -------- main -------- */
/** -------- sec, title -------- */
.sec {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec .main-col {
    max-width: 800px;
    margin: 0 24px;
}
.sec .titles {
    margin-bottom: 24px;
}
.sec .titles .sub-title {
    margin-bottom: 8px;
}
.sec .titles .title {
    margin-bottom: 24px;
}

/** -------- main visual -------- */
.main-visual {
    background-image: url('../images/image-main-visual.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: 240px -120px; */
    border-bottom-left-radius: 7rem;
    margin-left: 0px;
    height: 630px;
}
.main-visual .titles {
    padding: 360px 80px 80px 20px;
}
.main-visual .titles .title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 5rem;
    letter-spacing: 0.5rem;
    margin-bottom: 24px;
}
.main-visual .titles .title .highlight {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 5rem;
    letter-spacing: 0.2rem;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-color: #fff;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.8rem;
}
.main-visual .titles .title .revoke {
    font-size: 2.5rem;
}

.main-visual .titles .sub-title {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.1rem;
}
.main-visual .titles .br {
    display: none;
}

@media (max-width: 1299px) {
    .main-visual {
        /* background-position: 80px -120px; */
    }
}
@media (max-width: 1079px) {
    .main-visual {
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        /* background-position: 0 -120px; */
        height: 652px;
        border-bottom-left-radius: 5.5rem;
        margin-left: 8px;
    }
    .main-visual .titles {
        padding: 270px 60px 80px 0;
    }
    .main-visual .titles .title {
        font-size: 2rem;
        font-weight: 5500;
        line-height: 5rem;
        letter-spacing: 0.5rem;
        margin-bottom: 24px;
    }
    .main-visual .titles .title .highlight {
        font-size: 2.4rem;
        font-weight: 550;
        line-height: 5rem;
        letter-spacing: 0.2rem;
        text-underline-offset: 0.75rem;
    }
    .main-visual .titles .title .revoke {
        font-size: 2.5rem;
    }
    .main-visual .titles .sub-title {
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 0.1rem;
    }
    .main-visual .titles .br {
        display: block;
    }
}
@media (max-width: 799px) {
    .main-visual {
        background-image: url('../images/image-main-visual-sp.png');
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-size: cover;
        /* background-position: 0 -120px; */
        height: 722px;
        margin-left: 8px;
    }
    .main-visual .titles {
        padding: 320px 18px 40px 0;
    }
}
@media (max-width: 413px) {
    .main-visual {
        height: 540px;
    }
    .main-visual .titles {
        padding: 120px 18px 0 0;
    }
}

/** -------- about -------- */
.about {
    background-image: url('../images/image-bg-about.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 12%;
    background-position: right top;
    margin: 96px 0 100px 0;
}
.about .features {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 64px;
}
.about .features .image-1 {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 520px;
    width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 0 16px 16px 0px;
    object-fit: cover;
}
.about .features .image-2 {
    position: absolute;
    top: 240px;
    right: 40%;
    width: 384px;
    height: 216px;
    border: 5px solid #fff;
    border-radius: 16px;
    object-fit: cover;
}
.about .features .image-3 {
    position: absolute;
    top: 10%;
    left: 60%;
    width: 320px;
    height: 320px;
    border: 5px solid #fff;
    border-radius: 16px;
    object-fit: cover;
}
.about .performance {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 64px;
}
.about .performance .spacer {
    margin: 0 24px;
}

.about .media {
    width: 100%;
    margin: 0 24px 24px 24px;
}
.about .media .media-title {
    text-align: center;
}
.about .media .images {
    width: 100%;
    flex-shrink: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.about .media .images::-webkit-scrollbar {
    display: none;
}
.about .media .images .image-medias {
    margin: 24px;
    width: 2144px;
    height: 242px;
    animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1079px) {
    .about .features .image-1 {

    }
    .about .features .image-2 {
        right: 8%;
    }
    .about .features .image-3 {
        display: none;
    }
}
@media (max-width: 799px) {
    .about {
        background-size: 18%;
    }
    .about .features {
        height: 340px;
    }
    .about .features .image-1 {
        width: 355px;
        height: 200px;
    }
    .about .features .image-2 {
        top: 180px;
        right: 5%;
        width: 304px;
        height: 171px;

    }
    .about .features .image-3 {
        display: none;
    }
    .about .media .images .image-medias {
        margin: 16px;
        width: 1076px;
        height: 126px;
    }
}

/** -------- lesson -------- */
.lesson {
    background-color: #F5F5F5;
    background-image: url('../images/image-bg-lesson.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 55%;
    background-position: 16px 64px;
    border-top-right-radius: 7rem;
    padding-top: 100px;
}
.lesson .descriptions {
    margin-bottom: 64px;
}
.lesson .descriptions .description {
    color: #2F3039;
    font-size: 20px;
    font-weight: 700;
    line-height: 180%
}
.lesson .descriptions .image-lesson {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    max-width: 680px;
    margin: 24px auto 32px;
}
.lesson .movie {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lesson .movie .youtube {
    background-color: black;
    overflow: hidden;
}
.lesson .movie .youtube iframe {
    width: 680px;
    height: 380px;
}
@media (max-width: 799px) {
    .lesson {
        background-size: 65%;
    }
    .lesson .movie .youtube iframe {
        width: 500px;
        height: 280px;
    }
}
@media (max-width: 519px) {
    .lesson .movie .youtube iframe {
        width: 382px;
        height: 220px;
    }
}
@media (max-width: 413px) {
    .lesson .movie .youtube iframe {
        width: 343px;
        height: 200px;
    }
}

/** -------- recruit -------- */
.recruit {
    background-image: url('../images/image-recruit.png');
    max-height: 646px;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.recruit-radius {
    border-radius: 96px 96px 0 0;
}
.recruit .spacer-top {
    position: relative;
    top: -2px;
    left: 0;
    width: 100%;
    height: 98px;
    background-color: #F5F5F5;
    border-radius: 0 0 0 96px;
    border: none;
}
.recruit .spacer-bottom {
    position: relative;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 98px;
    background-color: #FFF;
    border-radius: 0 96px 0 0;
    border: none;
}
.recruit .contents {
    padding: 96px 0;
}
.recruit .description {
    margin-bottom: 32px;
}
.recruit .buttons {
    display: flex;
    justify-content: center;
}
.recruit .buttons .button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    gap: 10px;
    border-radius: 100px;
    background: linear-gradient(90deg, #FE0 0%, #64FBE0 100%);
}
.recruit .buttons .link-icon {
    width: 18px;
    height: 18px;
}

/** -------- guidance -------- */
.guidance {
    background-image: url('../images/image-bg-guidance.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 12%;
    background-position: right top;
    margin: 0 0 112px 0;
}
.guidance .features {
    display: flex;
    gap: 48px;
    margin-bottom: 64px;
}
.guidance .features .col2 {
    width: 50%;
}
.guidance .game-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 72px;
}
.guidance .game-titles .bubble {
    position: relative;
    display: inline-block;
    padding: 6px 64px;
    background-color: #EEF1FF;
    border-radius: 64px;
    margin-bottom: 32px;
    max-width: 300px;
}
.guidance .game-titles .bubble::after {
    content: '';
    position: absolute;

    bottom: -10px;
    left: 184px;

    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #EEF1FF;
    border-bottom-width: 0;
}
.guidance .game-titles .one-point {
    border-radius: 100px;
    background: #EEF1FF;
}
.guidance .points .point {
    margin: 24px 0;
}
.guidance .points .point .point-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
}
.guidance .points .point .point-title .icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}
.guidance .points .point .point-title .label {
    color: #2F3039;
    font-size: 20px;
    font-weight: 700;
}
@media (max-width: 799px) {
    .guidance {
        background-size: 18%;
    }
    .guidance .features {
        display: flex;
        flex-direction: column;
    }
    .guidance .features .col2 {
        width: 100%;
    }
}

/** -------- work-style -------- */
.work-style {
    background-color: #F5F5F5;
    background-image: url('../images/image-bg-work-style.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: 16px 64px;
    border-top-right-radius: 7rem;
    padding-top: 100px;
}
.work-style .point-header {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin-bottom: 40px;
}
.work-style .point-header .background {
    border-radius: 100px;
    background: linear-gradient(90deg, #7490E9 0%, #69D6C2 100%);
    padding: 8px 40px 10px 40px;
    z-index: 100;
}
.work-style .point-header .border {
    position: absolute;
    top: 24px;
    left: 0px;
    background: linear-gradient(90deg, #7490E9 0%, #69D6C2 100%);
    width: 100%;
    height: 3px;
}
.work-style .points {
    margin-bottom: 64px;
}
.work-style .points .point-12 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 48px;
}
.work-style .points .point-12 .point-12-col {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.work-style .points .point-12 .point-12-col .bg-white {
    border-radius: 16px;
    background: #FFF;
    padding: 0 24px;
}
.work-style .points .point-12 .point-12-col .box {
    width: 100%;
    margin: 24px 0;
}
.work-style .points .point-12 .point-12-col .bg-description {
    border-radius: 8px;
    background: #EEF1FF;
    padding: 8px 10px;
    margin-top: 12px;
}
.work-style .points .point-12 .point-12-col .point-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    margin-top: 24px;
}
.work-style .points .point-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}
.work-style .points .point-3-titles {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.work-style .points .point-3-cols {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 24px;
}
.work-style .points .point-3-cols .col-left {
    width: 40%;
}
.work-style .points .point-3-cols .col-left .arrow-pc {
    display: flex;
    justify-content: flex-end;
    padding: 24px 16px 0 0;
}
.work-style .points .point-3-cols .col-left .arrow-pc .arrow-img-pc {
    width: 50%;
    height: 190px;
}
.work-style .points .point-3-cols .arrow-sp {
    display: none;
}
.work-style .points .point-3-cols .col-left .arrow-sp .arrow-img-sp {
    display: none;
}
.work-style .points .point-3-cols .col-right {
    width: 60%;
}
.work-style .points .point-3-cols .col-right td {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.work-style .points .point-3-cols .col-right .list-text {
    list-style-type: disc;
    padding-left: 16px;
    margin-top: 8px;
    line-height: 180%;
}
.work-style .recommend {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}
.work-style .recommend .layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.work-style .recommend ul {
    width: 50%;
}
.work-style .recommend ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.work-style .recommend .marker {
    width: 12px;
    height: 12px;
    margin-right: 8px;
}
.work-style .processes .process .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 42px 16px;
}
.work-style .processes .process .header .round {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    border-radius: 100px;
    background: #FFF;
    color: #7E92DB;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
}
.work-style .processes .process .header .interval {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    margin: 0 8px;
    transform: rotate(-90deg);
}
.work-style .processes .process .header .interval-img {
    width: 24px;
    height: 12px;
}
.work-style .processes .process .header .round-goal {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 76px;
    height: 76px;
    border-radius: 100px;
    background: linear-gradient(90deg, #7490E9 0%, #69D6C2 100%);
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight: 700;
}
.work-style .processes .process .label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.work-style .processes .process .label .col {
    flex-basis: 20%;
    text-align: center;
    align-items: center;
}

@media (max-width: 799px) {
    .work-style {
        background-size: 75%;
    }
    .work-style .points .point-12 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .work-style .points .point-12 .point-12-col {
        width: 100%;
    }
    .work-style .points .point-3-titles {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }
    .work-style .points .point-3-cols {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .work-style .points .point-3-cols .col-left {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    .work-style .points .point-3-cols .col-left .arrow-pc {
        display: flex;
        justify-content: center;
        padding: 16px 0 0 0;
    }
    .work-style .points .point-3-cols .col-left .arrow-pc .arrow-img-pc {
        display: none;
    }
    .work-style .points .point-3-cols .arrow-sp {
        display: flex;
        justify-content: center;
        padding: 16px;
    }
    .work-style .points .point-3-cols .arrow-sp .arrow-img-sp {
        display: block;
        width: 32px;
        height: 16px;

    }
    .work-style .points .point-3-cols .col-right {
        width: 100%;
    }
    .work-style .recommend .layout {
        display: flex;
        flex-direction: column;
    }
    .work-style .recommend ul {
        width: 100%;
    }
    .work-style .processes .process {
        display: flex;
        flex-direction: row;
    }
    .work-style .processes .process .header {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0 12px 12px 0;
    }
    .work-style .processes .process .header .interval {
        transform: rotate(0deg);
    }
    .work-style .processes .process .header .round {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .work-style .processes .process .header .round-goal {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    .work-style .processes .process .header .interval {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 24px;
        margin: 0 8px;
    }
    .work-style .processes .process .header .interval hr {
        width: 25%;
        margin-right: 32px;
        transform: rotate(90deg);
    }
    .work-style .processes .process .label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
    }
    .work-style .processes .process .label .col {
        padding-top: 18px;
    }
}


/** -------- interview -------- */
.interview {
    background-image: url('../images/image-bg-interview.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 12%;
    background-position: right top;
    margin: 0 0 112px 0;
}
.interview .interview-faq {
    margin-bottom: 64px;
}
.interview .interview-faq .question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}
.interview .interview-faq .question .icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #344A92;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 0;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-right: 12px;
}
.interview .interview-faq .answers {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}
.interview .interview-faq .answers .answer {
    width: 50%;
    border-radius: 16px;
    border: 1px solid #F5F5F5;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    padding: 24px;
}
.interview .interview-faq .answers .answer .names {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.interview .interview-faq .answers .answer .names .icon {
    width: 64px;
    height: 64px;
    border-radius: 100%;
}
.interview .interview-long-area {
    width: 100%;
    flex-shrink: 0;
}
.interview .interview-long {
    width: 100%;
    flex-shrink: 0;
}
.interview .interview-long .coach-icons {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 24px;
    width: auto;
    flex-shrink: 0;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-left: 24px;
}
.interview .interview-long .coach-icons::-webkit-scrollbar {
    display: none;
}
.interview .interview-long .coach-icons .coach-icon {
    width: 240px;
    height: 240px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.interview .interview-long .coach-icons .coach-icon img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
}
.interview .interview-long .coach-icons .coach-icon .icon-img::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(
    to top,
    rgba(128, 128, 128, 0.8),
    rgba(128, 128, 128, 0.0)
  );
  pointer-events: none;
  border-radius: 16px;
}
.interview .interview-long .coach-icons .coach-icon .profiles {
    position: absolute;
    bottom: 24px;
    left: 24px;
}

.interview .interview-long-details {
}
.interview .interview-long-details .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.interview .interview-long-details .modal-overlay.is-open {
    display: flex;
    opacity: 1;
}
.interview .interview-long-details .modal-overlay.is-open .modal {
    transform: translateY(0);
    opacity: 1;
}
.interview .interview-long-details .modal {
    background-color: #fff;
    border-radius: 48px;
    position: relative;
    max-width: 960px;
    width: calc(100% - 40px);
    max-height: calc(100% - 100px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    opacity: 0;
    display: flex;
    justify-content: space-between;
}
.interview .interview-long-details .modal .col-left {
    width: 400px;
}
.interview .interview-long-details .modal .coach-hero {
    height: 400px;
}
.interview .interview-long-details .modal .coach-hero .coach-hero-img {
    border-radius: 48px 0 0 0;
    width: 400px;
    height: 400px;
    object-fit: cover;
}
.interview .interview-long-details .modal .coach-hero .profile {
    position: relative;
    bottom: 90px;
    left: 24px;
    width: 90%;
}
.interview .interview-long-details .modal .coach-hero .profile .profile-detail {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
}
.interview .interview-long-details .modal .coach-hero .profile .profile-detail .separator {
    border-right: 1px solid #BDBDBD;
}
.interview .interview-long-details .modal .coach-details {
    padding: 24px 0 24px 24px;
}
.interview .interview-long-details .modal .col-right {
    padding: 48px 96px 48px 40px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.interview .interview-long-details .modal .col-right::-webkit-scrollbar {
    display: none;
}
.interview .interview-long-details .modal .col-right .sentence {
    margin-bottom: 48px;
}
.interview .interview-long-details .modal .col-right .question {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 24px;
}
.interview .interview-long-details .modal .col-right .question .icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #344A92;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-grow: 0;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-right: 12px;
}
.interview .interview-long-details .modal .button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('../images/icon-menu-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 56px;
    height: 56px;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    top: 24px;
    right: 24px;
}

.interview .interview-long-details .modal .button .inner {
    display: block;
    width: 20px;
    height: 1px;
    position: relative;
}
.interview .interview-long-details .modal .button .inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
}
.interview .interview-long-details .modal .button .inner::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-45deg);
}

@media (max-width: 1079px) {
    .interview .interview-long-details .modal .col-left {
        width: 360px;
    }
    .interview .interview-long-details .modal .coach-hero {
        height: 360px;
    }
    .interview .interview-long-details .modal .coach-hero .coach-hero-img {
        width: 360px;
        height: 360px;
    }
    .interview .interview-long-details .modal .col-right {
        padding: 48px 96px 48px 32px;
    }
}

@media (max-width: 799px) {
    .interview .interview-faq .answers {
        flex-direction: column;
    }
    .interview .interview-faq .answers .answer {
        width: auto;
    }
    .interview .interview-long-details .modal {
        border-radius: 32px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .interview .interview-long-details .modal::-webkit-scrollbar {
        display: none;
    }
    .interview .interview-long-details .modal .col-left {
        width: 100%;
    }
    .interview .interview-long-details .modal .coach-hero {
        height: 250px;
    }
    .interview .interview-long-details .modal .coach-hero .coach-hero-img {
        border-radius: 32px 0 0 0;
        width: 100%;
        height: 250px;
    }
    .interview .interview-long-details .modal .coach-hero .profile {
        bottom: 64px;
    }
    .interview .interview-long-details .modal .coach-details {
        background-color: #F5F5F5;
        padding: 16px 24px;
    }
    .interview .interview-long-details .modal .col-right {
        padding: 32px 24px;
        overflow-y: visible;
    }
    .interview .interview-long-details .modal .col-right .sentence {
        margin-bottom: 32px;
    }
    .interview .interview-long-details .modal .button {
        width: 40px;
        height: 40px;
    }
}


/** -------- support -------- */
.support {
    background-color: #F5F5F5;
    background-image: url('../images/image-bg-support.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 58%;
    background-position: 16px 64px;
    border-bottom-left-radius: 7rem;
    border-top-right-radius: 7rem;
    padding-top: 100px;
    padding-bottom: 104px;
}
.support .description {
    margin-bottom: 24px;
}
.support .title-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 8px;
}
.support .arrow-down {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
.support .arrow-down .arrow-down-icon {
    width: 48px;
    height: 26px;
}
.support .coach-types {
    max-width: 720px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 0 20px 0;
}
.support .coach-types .coach-normal {
    width: 50%;
    border-radius: 100px;
    background: #7E92DB;
    text-align: center;
    padding: 8px 0;
}
.support .coach-types .coach-pro {
    width: 50%;
    border-radius: 100px;
    background: #344A92;
    text-align: center;
    padding: 8px 0;
}
.support .coach-training {
    max-width: 720px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.support .coach-training .bg-white {
    width: 50%;
    border-radius: 16px;
    background: #FFF;
    padding: 24px;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
}
.support .coach-onboarding {
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    border-radius: 16px;
    padding: 24px;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #7490E9 0%, #69D6C2 100%) border-box;
    margin-bottom: 40px;
}
.support .features {
    margin-bottom: 64px;
}
.support .points .point {
    margin: 24px 0;
}
.support .points .point .point-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;
}
.support .points .point .point-title .icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}
.support .points .point .point-title .label {
    color: #2F3039;
    font-size: 20px;
    font-weight: 700;
}
.support .points .point-tables {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.support .points .point-tables .flex {
    display: flex;
}
.support .points .point-tables .user {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 4px;
}
.support .points .point-tables .user .user-name {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.support .features {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 64px;
}
.support .features .image-1 {
    position: absolute;
    top: 0px;
    left: -20px;
    width: 480px;
    height: 320px;
    border: 5px solid #F5F5F5;
    border-radius: 0 16px 16px 0px;
    object-fit: cover;
}
.support .features .image-2 {
    position: absolute;
    top: 200px;
    right: 40%;
    width: 380px;
    height: 240px;
    border: 5px solid #F5F5F5;
    border-radius: 16px;
    object-fit: cover;
}
.support .features .image-3 {
    position: absolute;
    top: 10%;
    left: 70%;
    width: 300px;
    height: 300px;
    border: 5px solid #F5F5F5;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 1079px) {
    .support .features .image-1 {
    }
    .support .features .image-2 {
        left: 50%;
    }
    .support .features .image-3 {
        display: none;
    }
}

@media (max-width: 799px) {
    .support {
        background-size: 70%;
    }
    .support .coach-types {
        gap: 16px;
    }
    .support .coach-training {
        gap: 16px;
    }
    .support .coach-training .bg-white {
        padding: 16px;
    }
    .support .points .point-tables .flex {
        display: flex;
        flex-direction: column;
    }
    .support .points .point-tables .flex .col2 {
        width: auto;
    }
    .support .points .point-tables .flex .left {
        border-radius: 0;
    }
    .support .points .point-tables .flex .right {
        border-radius: 0px 0px 16px 16px;
    }
    .support .features {
        height: 340px;
    }
    .support .features .image-1 {
        width: 80%;
        height: 70%;
    }
    .support .features .image-2 {
        border-top: 5px solid #F5F5F5;
        border-right: none;
        border-bottom: 5px solid #F5F5F5;
        border-left: 5px solid #F5F5F5;
        border-radius: 16px 0 0 16px;
        width: 50%;
        height: 50%;
        top: 150px;
        left: auto;
        right: 0;
        z-index: 1;
    }
    .support .features .image-3 {
        width: 80%;
        height: 70%;
        right: -1%;
        left: auto;
    }
}

/** -------- faq -------- */
.faq {
    background-image: url('../images/image-bg-faq.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 12%;
    background-position: right 20px;
    margin: 0 0 124px 0;
    padding-top: 96px;
}
.faq .faqs .faq-item {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    border-radius: 16px;
    margin-bottom: 24px;
}
.faq .faqs .faq-item .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}
.faq .faqs .faq-item .question .text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
}
.faq .faqs .faq-item .question .text .icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #344A92;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.faq .faqs .faq-item .question .text p {
    flex: 1;
}
.faq .faqs .faq-item .question .expand-icon {
    width: 16px;
    height: 8px;
    padding-left: 16px;
}
.faq .faqs .faq-item .answer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
}
.faq .faqs .faq-item .answer .text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
}
.faq .faqs .faq-item .answer .text .icon {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: #7E92DB;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
}
.faq .faqs .faq-item .answer .text p {
    flex: 1;
}

@media (max-width: 799px) {
    .faq {
        background-size: 18%;
    }
    .faq .faqs .faq-item .question .text .icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    .faq .faqs .faq-item .answer .text .icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

/** -------- requirements -------- */
.requirements {
    background-color: #F5F5F5;
    background-image: url('../images/image-bg-requirements.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: 16px 64px;
    border-bottom-left-radius: 7rem;
    border-top-right-radius: 7rem;
    padding-top: 144px;
    padding-bottom: 104px;
}
.requirements .requirement {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(47, 48, 57, 0.10);
    border-radius: 16px;
    padding: 0 24px;
}
.requirements .requirement .requirement-item {
    padding: 24px 0;
}
.requirements .requirement .requirement-item ul {
    list-style-type: disc;
    padding-left: 16px;
    margin: 10px 0;
    line-height: 180%;
}

@media (max-width: 799px) {
    .requirements {
        background-size: 78%;
        padding-top: 100px;
    }
}

/** -------- gecipe -------- */
.gecipe {
    background-image: url('../images/image-bg-gecipe︎.png');
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: 12%;
    background-position: right 40px;
    margin: 40px 0 0 0;
    padding: 56px 0;
}
.gecipe .content {
    margin-bottom: 40px;
}
.gecipe .values {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.gecipe .values .value {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
}

.gecipe .features {
    position: relative;
    width: 100%;
    height: 500px;
    margin-bottom: 64px;
}
.gecipe .features .image-1 {
    position: absolute;
    top: 0px;
    left: -120px;
    width: 480px;
    height: 320px;
    border-radius: 0 16px 16px 0px;
    object-fit: cover;
}
.gecipe .features .image-2 {
    position: absolute;
    top: 240px;
    right: 47%;
    width: 360px;
    height: 220px;
    border: 5px solid #fff;
    border-radius: 16px;
    object-fit: cover;
}
.gecipe .features .image-3 {
    position: absolute;
    top: 10%;
    left: 45%;
    width: 480px;
    height: 300px;
    border: 5px solid #fff;
    border-radius: 16px;
    object-fit: cover;
}

@media (max-width: 1079px) {
    .gecipe .features .image-1 {
        display: none;
    }
    .gecipe .features .image-2 {
        right: 60%;
    }
    .gecipe .features .image-3 {
        
    }
}

@media (max-width: 799px) {
    .gecipe {
        background-size: 18%;
    }
    .gecipe .values .value {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
    }
    .gecipe .features {
        height: 340px;
    }
    .gecipe .features .image-1 {
    }
    .gecipe .features .image-2 {
        width: 60%;
        height: 50%;
        top: 180px;
        left: 5%;
        z-index: 1;
    }
    .gecipe .features .image-3 {
        width: 80%;
        height: 70%;
        right: 0%;
        left: auto;
    }
}

/** -------- footer -------- */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    background: #2F3039;
    padding: 24px 32px;
}

/** -------- fixed recruit button -------- */
.fixed-recruit-button {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, 0.85);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 500;
    box-sizing: border-box;
    border-top: 1px solid #eee;
    /* アニメーションのための初期設定 */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.fixed-recruit-button.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fixed-recruit-button .button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 400px;
    margin: 0 auto;
    background: linear-gradient(90deg, #FE0 0%, #64FBE0 100%);
    border-radius: 100px;
    padding: 16px;
    text-decoration: none;
}
.fixed-recruit-button .button .link-icon {
    width: 18px;
    height: 18px;
}

/* 画面幅が768px以下の場合にボタンを表示します */
@media (max-width: 799px) {
    .fixed-recruit-button {
        display: block;
    }
}