/* base.css */

/* spacer
-----------------------------------------------    */
.mt0 {
    margin-top: 0 !important;
}
.mt5 {
    margin-top: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt40 {
    margin-top: 40px !important;
}

.mb0 {
    margin-bottom: 0 !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}

@media (width <= 767px) {
    .mt0-sp {
        margin-top: 0 !important;
    }
    .mt5-sp {
        margin-top: 5px !important;
    }
    .mt10-sp {
        margin-top: 10px !important;
    }
    .mt15-sp {
        margin-top: 15px !important;
    }
    .mt20-sp {
        margin-top: 20px !important;
    }
}

/* :root
-----------------------------------------------    */
:root {
    /* font weight variable */
    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-regular: var(--font-weight-normal);
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-demibold: var(--font-weight-semibold);
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-ultrabold: var(--font-weight-extrabold);
    --font-weight-black: 900;
    --font-weight-heavy: var(--font-weight-black);
    /* font family variable */
    --font-family-ZenKakuGothicNew: "Zen Kaku Gothic New", sans-serif;
    --font-family-TenMincho: "ten-mincho", serif;
    --font-family-AbBabywalk: "ab-babywalk", sans-serif;
    /* view width multiplication variable */
    --px-to-sp-vw : 0.3125vw; /* 100vw / 320(px) */
    --px-to-tb-vw : 0.130208vw; /* 100vw / 768(px) */
    --px-to-pc-vw : 0.083333vw; /* 100vw / 1200(px) */
    --px-to-lpc-vw : 0.01225vw; /* 100vw / 1404(px) */
    --px-to-lpc-px : 117px / 100; /* 1.17±¶ */

    --second-color: #0d539b;
    --hover-scale: 1.02;
    --hover-duration: 50ms;
}

/* visible/hidden element
-----------------------------------------------    */
.visible-sp {
    display: none;
    @media (width <= 767px) {
        display: block;
    }
}
.visible-sp-inline {
    display: none;
    @media (width <= 767px) {
        display: inline;
    }
}
.hidden-sp {
    @media (width <= 767px) {
        display: none;
    }
}
.hidden-sp-inline {
    @media (width <= 767px) {
        display: none;
    }
}

html {
    scroll-behavior: smooth;
}

a.link {
    font-weight: bold;
    color: #1a6cc1;
    text-decoration: underline;
    text-decoration-color: #6e98d1;
    text-underline-offset: 3px;
    @media (width >= 768px) {
        &:hover {
            color: #0badf0;
            text-decoration: none;
        }
    }
}

a.link-chevron {
    font-weight: bold;
    color: #1a6cc1;
    text-decoration: none;
    @media (width >= 768px) {
        &:hover {
            color: #0badf0;
            text-decoration: none;
        }
    }
    i {
        font-size: 15px;
        margin-right: 5px;
        @media (width <= 767px) {
            font-size: 11px;
        }
    }
}

a.link-icon {
    font-weight: bold;
    color: #1a6cc1;
    text-decoration: underline;
    text-decoration-color: #6e98d1;
    text-underline-offset: 3px;
    @media (width >= 768px) {
        &:hover {
            color: #0badf0;
            text-decoration: none;
        }
    }
    i {
        margin-right: 3px;
        font-size: 15px;
    }

    &.--inline {
        margin-left: 9px;
        i {
            margin-right: 3px;
        }
    }
    @media (width <= 767px) {
        &.--indent-sp {
            display: block;
            text-indent: -0.6em;
            padding-left: 1em;
        }
    }
}

a.--script {
    pointer-events: auto;
    cursor: pointer;
}
a.--append-media-icon {
    i:last-child {
        margin-left: 2px;
        font-size: 0.7647em;
    }
}

.tel-link {} /* common.js¤ÇÀûÓÃ */

body {
    color: #000;
    background-color: #fff;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-family-ZenKakuGothicNew);
    padding-top: 60px;
    @media (width <= 767px) {
        padding-top: 55px;
    }
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    z-index: 1000;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.08);
    @media (width <= 767px) {
        height: 55px;
        padding: 0 16px;
    }
    .kit-link {
        text-decoration: none;
        display: block;
        width: fit-content;
        .kit-logo {
            width: 194px;
            height: auto;
            @media (width <= 767px) {
                width: 148px;
            }
        }
    }
    .message {
        font-size: 14px;
        font-weight: var(--font-weight-medium);
        line-height: 1.5;
        text-align: right;
        @media (width <= 767px) {
            font-size: 9px;
        }
        .plan {
            color: #f39c9c;
        }
    }
}
body.site-index .header {
    position: fixed;
    @media (width <= 767px) {
        position: absolute;
    }
    @media print {
        position: absolute;
    }
}

.footer {
    border-top: 2px solid #ebeff1;
    padding: 59px 30px 60px;
    position: relative;
    @media (width <= 767px) {
        padding: 59px 0 60px;
        text-align: center;
        @media (width <= 767px) {
            padding-top: 48px;
            padding-bottom: 45px;
        }
    }
    .contact {
        font-weight: bold;
        font-size: 20px;
        @media (width <= 767px) {
            font-size: 19px;
        }
    }
    .address {
        font-weight: var(--font-weight-medium);
        font-size: 15px;
        line-height: 1.8;
        padding-top: 20px;
        @media (width <= 767px) {
            font-size: 14px;
            padding-top: 21px;
        }
    }
    .kit-link {
        display: block;
        width: fit-content;
        text-decoration: none;
        padding-top: 51px;
        @media (width <= 767px) {
            margin: 0 auto;
            padding-top: 38px;
        }
        img {
            width: 249px;
            height: auto;
            @media (width <= 767px) {
                width: 221px;
            }
        }
    }
    .copyright {
        position: absolute;
        right: 30px;
        bottom: 57px;
        font-size: 11px;
        font-weight: var(--font-weight-medium);
        line-height: 1.8;
        text-align: right;
        @media (width <= 767px) {
            position: relative;
            right: 0;
            bottom: 0;
            font-size: 10px;
            text-align: center;
            margin-top: 36px;
        }
    }
}
.go-page-top {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 30px;
    height: 90px;
    cursor: pointer;
    right: 30px;
    bottom: 30px;
    @media (width <= 767px) {
        width: 23px;
        height: 63px;
        right: 10px;
        bottom: 10px;
    }
    img {
        width: 30px;
        height: auto;
        position: absolute;
        left: 0;
        bottom: 0;
        @media (width <= 767px) {
            width: 100%;
        }
        &.on-img {
            display: none;
        }
    }
    @media (width >= 768px) {
        &:hover {
            img.off-img {
                display: none;
            }
            img.on-img {
                display: block;
            }
        }
    }
    &.bond-footer {
        position: absolute;
        bottom: 145px;
        @media (width <= 767px) {
            bottom: 274px;
        }
    }
}

.design-block {
    &.--single-design-block {
        background-color: #dff2fb;
    }
    &.--light-design-block {
        background-color: #dff2fb;
        padding-bottom: 100px;
        @media (width <= 767px) {
            padding-bottom: 67px;
        }
    }
    &.--gray-design-block {
        background-color: #cae3f6;
    }
}

.main {
    position: relative;
}
.menu-container {
    position: absolute;
    left: calc(50% + 365px + 40px);
    width: 155px;
    bottom: 0;
    top: 130px;
    @media (width <= 1140px) {
        display: none;
    }
    .menu {
        position: sticky;
        top: 100px;
        a {
            display: flex;
            width: 100%;
            text-decoration: none;
            position: relative;
            padding-bottom: 18px;
            color: #000;
            font-size: 14px;
            line-height: 1.5;
            font-weight: var(--font-weight-medium);
            @media (width >= 768px) {
                &:hover {
                    color: #0d539b;
                    font-weight: bold;
                }
            }

            .text {
                flex: 1;
                &.indent {
                    text-indent: -1em;
                    padding-left: 1em;
                }
            }
        }
        a::before {
            display: block;
            content: "";
            width: 13px;
            height: 13px;
            background-color: #aab6c3;
            border: 2px solid #dff2fb;
            border-radius: 12px;
            margin-right: 10px;
            margin-top: 4px;
            z-index: 2;
        }
        a::after {
            position: absolute;
            display: block;
            content: "";
            width: 2px;
            background-color: #aab6c3;
            top: 5px;
            bottom: -10px;
            left: 5px;
            z-index: 1;
        }
        a:last-child::after {
            display: none;
        }
        a.active::before {
            background-color: #0d539b;
        }
    }
}

.general-section {
    position: relative;
    max-width: 730px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.9;
    font-weight: var(--font-weight-medium);
    @media (width <= 767px) {
        font-size: 14px;
        padding: 0 16px;
    }
    .general-text {
        font-size: 17px;
        line-height: 1.9;
    }
    p {
        font-weight: inherit;
    }

    a.link-external {
        font-weight: bold;
        color: #1a6cc1;
        text-decoration: underline;
        text-decoration-color: #6e98d1;
        text-underline-offset: 3px;
        @media (width >= 768px) {
            &:hover {
                color: #0badf0;
                text-decoration: none;
            }
        }
        i {
            font-size: 15px;
        }
    }
    a.link-button-blue {
        display: block;
        text-decoration: none;
        line-height: 60px;
        width: fit-content;
        text-align: center;
        background-color: #1a6cc1;
        font-size: 17px;
        font-weight: bold;
        color: #fff;
        border-radius: 30px;
        padding: 0 30px;
        @media (width <= 767px) {
            font-size: 15px;
            line-height: 55px;
            min-width: 250px;
        }
        @media (width >= 768px) {
            &:hover {
                scale: var(--hover-scale);
                background-color: #0badf0;
            }
        }
        &.--narrow-padding-x {
            padding: 0 25px;
        }
        &.--center {
            margin-left: auto;
            margin-right: auto;
        }
        &.--multi-line {
            @media (width <= 767px) {
                line-height: 1.5;
                padding-top: 16px;
                padding-bottom: 16px;
                border-radius: 9999px;
            }
        }
    }
    .external-link-button {
        display: block;
        margin: 0 auto;
        text-decoration: none;
        color: #fff;
        font-size: 17px;
        font-weight: bold;
        background-color: #1a6cc1;
        line-height: 60px;
        padding: 0 25px 0 28px;
        width: fit-content;
        border-radius: 30px;
        min-width: 200px;
        @media (width <= 767px) {
            font-size: 15px;
            line-height: 55px;
        }
        i {
            font-size: 15px;
            font-weight: bold;
            margin-right: 5px;
        }
        &:hover {
            scale: var(--hover-scale);
            background-color: #0badf0;
        }
        &.--center {
            text-align: center;
        }
    }
    .bordered-link {
        display: block;
        text-decoration: none;
        font-weight: bold;
        line-height: 1.5;
        background-color: #fff;
        color: #1a6cc1;
        border: 2px solid #7cafde;
        border-radius: 10px;
        padding: 15px 19px;
        @media (width <= 767px) {
            display: flex;
            align-items: center;
            padding: 8px 10px 6px 11px;
            min-height: 55px;
            .inner {
                text-indent: -0.65em;
                padding-left: calc(0.65em + 11px);
            }
        }
        i {
            margin-right: 5px;
            font-size: 15px;
            @media (width <= 767px) {
                font-size: inherit;
            }
        }
        .media-type {
            font-size: 10px;
            margin-left: 0.3em;
        }
        @media (width >= 768px) {
            &:not(.--unlink):hover {
                color: #fff;
                border-color: #5594d2;
                background-color: #5594d2;
            }
        }
        &.--unlink {
            opacity: 0.6;
        }
    }
    .bordered-link-list {
        li:not(:last-child) {
            margin-bottom: 5px;
        }
        &.disabled {
            position: relative;
            li {
                opacity: 0.4;
            }
            .over-msg {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                text-align: center;
                font-family: var(--font-family-AbBabywalk);
                letter-spacing: -0.05em;
                color: #074381;
                font-size: 65px;
                @media (width <= 767px) {
                    font-size: calc(30 * var(--px-to-sp-vw));
                    line-height: 0.9;
                    top: 0
                }
            }
        }
    }
    .bordered-link-list + .decorate-h3 {
        margin-top: 50px;
    }

    p + .external-link-button {
        margin-top: 30px;
    }
    .external-link-button + .box {
        margin-top: 36px;
        @media (width <= 767px) {
            margin-top: 30px;
        }
    }

    strong {
        font-weight: bold;
        color: #ff5a19;
    }
    .zoom-h2 {
        font-size: 30px;
        font-weight: var(--font-weight-black);
        line-height: 1.5;
        @media (width <= 767px) {
            font-size: 23px;
        }
    }
    .note-h2 {
        background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/h2_note.png);
        background-size: 74px 42px;
        background-repeat: no-repeat;
        background-position: 0 7px;
        font-size: 35px;
        font-weight: var(--font-weight-black);
        line-height: 1.5;
        text-indent: 2.4em;
        @media (width <= 767px) {
            font-size: 23px;
            text-indent: 2.6em;
            background-size: 57px auto;
            background-position: 0 3px;
        }
    }
    .rocket-h2 {
        background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/h2_rocket.png);
        background-size: 49px 50px;
        background-repeat: no-repeat;
        background-position: 0 5px;
        font-size: 35px;
        font-weight: var(--font-weight-black);
        line-height: 1.5;
        text-indent: 1.5em;
        @media (width <= 767px) {
            font-size: 23px;
            text-indent: 1.55em;
            background-size: 36px auto;
            background-position: 0 0;
        }
    }
    .decorate-h3 {
        position: relative;
        font-size: 26px;
        font-weight: bold;
        border-bottom: 3px solid #aab6c3;
        padding-left: 30px;
        margin: 0;
        padding-bottom: 8px;
        line-height: 1.5;
        @media (width <= 767px) {
            font-size: 18px;
            padding-top: 6px;
            padding-bottom: 9px;
            padding-left: 19px;
            line-height: 1.35;
        }
        &::before {
            display: block;
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: -3px;
            width: 10px;
            background-color: #0d539b;
            border-radius: 2px 2px 0 0;
        }
        @media (width <= 767px) {
            &::before {
                width: 8px
            }
        }
        .decorate-h3-note {
            display: block;
            font-size: 19px;
            margin-top: 4px;
            margin-bottom: 5px;
            @media (width <= 767px) {
                font-size: 13px;
                line-height: 1.5;
                margin-top: 10px;
                margin-bottom: 1px;
            }
        }
    }
    .note-h2 + .decorate-h3 {
        margin-top: 40px;
        @media (width <= 767px) {
            margin-top: 36px;
        }
    }
    .note-h2 + p {
        margin-top: 34px;
        @media (width <= 767px) {
            margin-top: 20px;
        }
    }
    .note-h2 + .split-doc-img-block {
        margin-top: 32px;
        @media (width <= 767px) {
            margin-top: 26px;
        }
    }
    .rocket-h2 + .box {
        margin-top: 40px;
        @media (width <= 767px) {
            margin-top: 27px;
        }
    }
    .rocket-h2 + .enquiry-block {
        margin-top: 35px;
        margin-bottom: 70px;
        @media (width <= 767px) {
            margin-top: 20px;
            margin-bottom: 60px;
        }
    }
    .zoom-h2 + p {
        margin-top: 32px;
        @media (width <= 767px) {
            margin-top: 21px;
        }
    }
    .decorate-h3 + p {
        margin-top: 27px;
        @media (width <= 767px) {
            margin-top: 21px;
        }
    }
    .decorate-h3 + .split-doc-img-block {
        margin-top: 32px;
        @media (width <= 767px) {
            margin-top: 30px;
        }
    }
    p + .decorate-h3 {
        margin-top: 42px;
        @media (width <= 767px) {
            margin-top: 36px;
        }
    }
    .split-doc-img-block + .decorate-h3 {
        margin-top: 75px;
        @media (width <= 767px) {
            margin-top: 40px;
        }
    }
    .box + .note-h2 {
        margin-top: 93px;
        @media (width <= 767px) {
            margin-top: 65px;
        }
    }
    .box + .decorate-h3 {
        margin-top: 75px;
        @media (width <= 767px) {
            margin-top: 48px;
        }
    }
    .decorate-h3 + ul.general {
        margin-top: 27px;
        @media (width <= 767px) {
            margin-top: 21px;
        }
    }
    .box + .bordered-link-list {
        margin-top: 35px;
    }
    p + .tab-container {
        margin-top: 49px;
        @media (width <= 767px) {
            margin-top: 23px;
        }
    }
    h4 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
        @media (width <= 767px) {
            font-size: 17px;
        }
        i {
            color: #0d539b;
            margin-right: 6px;
        }
    }
    h4 + .h4-note {
        margin-top: -7px;
        line-height: 1.75;
        margin-bottom: 8px;
    }
    @media (width <= 767px) {
        h4 .h4-in-note {
            display: block;
            font-size: 15px;
        }
    }

    .box {
        position: relative;
        border: 2px solid #000;
        box-shadow: 5px 5px #fff;
        margin-right: 5px;
        @media (width <= 767px) {
            margin-right: 0;
        }
        &::before {
            z-index: 1;
            display: block;
            position: absolute;
            content: "";
            top: 3px;
            left: 3px;
            right: 0;
            bottom: 0;
            background-color: #fff;
        }
        .inner {
            position: relative;
            z-index: 2;
            padding: 25px 30px;
            @media (width <= 767px) {
                padding: 19px 16px 21px;
            }
            &::before {
                display: block;
                position: absolute;
                content: '';
                height: 3px;
                width: 10px;
                background-color: #dff2fb;
                top: -3px;
                left: 0;
            }
            &::after {
                display: block;
                position: absolute;
                content: '';
                height: 3px;
                width: 10px;
                background-color: #fff;
                bottom: -3px;
                right: 0;
            }
            h5 {
                margin: 0 0 4px;
                font-size: inherit;
                @media (width <= 767px) {
                    font-size: 15px;
                }
            }
            .ul-block {
                margin-left: 15px;
            }
            p + h5 {
                margin-top: 20px;
            }
        }
    }

    ul {
        > li {
            font-weight: var(--font-weight-medium);
        }
    }
    dl {
        dt {
            font-weight: var(--font-weight-medium);
        }
        dd {
            font-weight: var(--font-weight-medium);
        }
    }

    ul.general {
        li:not(:last-child) {
            margin-bottom: 20px;
        }
        &.--li-margin-low {
            li:not(:last-child) {
                margin-bottom: 10px;
            }
        }
        &.--li-char-indent {
            > li {
                text-indent: -1em;
                margin-left: 1em;
            }
        }
        &.--li-square-indent {
            > li {
                text-indent: -1.25em;
                margin-left: 1.25em;
            }
        }
        @media (width <= 767px) {
            &.--li-char-indent-sp > li {
                text-indent: -1em;
                margin-left: 1em;
            }
        }
    }

    ul.disc {
        list-style: disc;
        li:not(:last-child) {
            margin-bottom: 20px;
        }
        &.--disc-start-0 {
            margin-left: 21px;
        }
        &.--li-margin-low {
            li:not(:last-child) {
                margin-bottom: 10px;
            }
        }
        @media (width <= 767px) {
            &.--disc-start-0-sp {
                margin-left: -21px;
            }
        }
    }

    ul.check {
        > li:not(:last-child) {
            margin-bottom: 20px;
        }
        > li {
            margin-left: 1em;
            text-indent: -0.5em;
            @media (width <= 767px) {
                text-indent: -0.6em;
                margin-left: 1.15em;
            }
            i {
                color: #0d539b;
                font-size: 15px;
                margin-right: 4px;
                @media (width <= 767px) {
                    font-size: 12px;
                }
            }
        }
        @media (width >= 768px) {
            &.--li-column2-pc-tb {
                display: flex;
                flex-wrap: wrap;
                > li {
                    width: calc(50% -  1em);
                }
            }
        }
        &.--li-margin-low {
            li:not(:last-child) {
                margin-bottom: 10px;
            }
        }
    }

    ol.decimal {
        list-style: decimal;
        > li {
            @media (width <= 767px) {
                padding-left: 5px;
            }
        }
        li:not(:last-child) {
            margin-bottom: 20px;
        }
        &.--decimal-start-0 {
            margin-left: 21px;
        }
        &.--li-margin-low {
            > li:not(:last-child) {
                margin-bottom: 10px;
            }
        }
    }

    .box + .box {
        margin-top: 45px;
        @media (width <= 767px) {
            margin-top: 35px;
        }
    }
    p + .box {
        margin-top: 32px;
        @media (width <= 767px) {
            margin-top: 26px;
        }
    }
    .box + ul.general {
        margin-top: 27px;
    }

    .circle-char {
        display: inline-block;
        line-height: 8px;
        font-size: 8px;
        vertical-align: middle;
        margin-right: 0.8em;
    }
    .link-data-define {
        > dt {
            border-bottom: 2px solid #e3e3e3;
            padding-bottom: 14px;
            margin-bottom: 15px;
            @media (width <= 767px) {
                margin-top: 2px;
                padding-bottom: 16px;
            }
        }
        > dd {
            @media (width <= 767px) {
                margin-bottom: 4px;
            }
            > .dd-title {
                font-weight: bold;
                margin-bottom: 10px;
            }
            > hr {
                border:none;
                border-top: 2px solid #e3e3e3;
                margin-top: 15px;
                margin-bottom: 15px;
            }
            > .link-button-blue:first-child {
                margin-top: 25px;
                @media (width <= 767px) {
                    margin-top: 23px;
                }
            }
        }
    }

    .inline-link-list {
        display: flex;
        border-top: 2px solid #e3e3e3;
        border-bottom: 2px solid #e3e3e3;
        padding-top: 23px;
        padding-bottom: 25px;
        margin-top: 17px;
        margin-bottom: 16px;
        @media (width <= 767px) {
            display: block;
            margin-top: 15px;
            padding-top: 15px;
            padding-bottom: 15px;
        }
        > li {
            line-height: 1;
            @media (width <= 767px) {
                display: block;
                line-height: 1.9;
            }
            .media-type {
                font-size: 10px;
                vertical-align: 0;
            }
            &:not(:first-child) {
                margin-left: 25px;
                border-left: 1px solid #000;
                padding-left: 25px;
                @media (width <= 767px) {
                    border-left: none;
                    margin-left: 0;
                    padding-left: 0;
                }
            }
        }
    }
}
.general-section + .general-section {
    padding-top: 73px;
    @media (width <= 767px) {
        padding-top: 53px;
    }
}
.back-top-page {
    padding: 50px 0;
    @media (width <= 767px) {
        padding: 65px 0 35px;
    }
    .link-button {
        display: block;
        text-decoration: none;
        line-height: 56px;
        width: 294px;
        border: 2px solid #0d539b;
        text-align: center;
        background-color: #fff;
        font-size: 16px;
        font-weight: bold;
        color: #1a6cc1;
        border-radius: 32px;
        margin: 0 auto;
        position: relative;
        @media (width <= 767px) {
            font-size: 15px;
            @media (width <= 767px) {
                width: fit-content;
                padding: 0 18px;
            }
        }
        &::after {
            display: block;
            content: "";
            background-color: #fff;
            height: 2px;
            width: 10px;
            position: absolute;
            top: -2px;
            right: 30px;
        }

        @media (width >= 768px) {
            &:hover {
                color: #fff;
                background-color: #1a6cc1;
                border-color: #1a6cc1;
                &::after {
                    display: none;
                }
            }
        }
    }
}

.general-table-block {
    position: relative;
    .general-table {
        width: 100%;
        border-collapse: collapse;
        border-radius: 10px;
        overflow: hidden;
        thead {
            tr {
                th {
                    position: relative;
                    border: 2px solid #fff;
                    border-top-color: #0d539b;
                    border-bottom: none;
                    background-color: #0d539b;
                    font-size: 15px;
                    font-weight: bold;
                    line-height: 1.4;
                    color: #fff;
                    padding: 12px 5px 16px;
                    @media (width <= 767px) {
                        font-size: 12px;
                    }
                    &:first-child {
                        border-left-color: #0d539b;
                    }
                    &:last-child {
                        border-right-color: #0d539b;
                    }
                    .step {
                        display: inline-block;
                        font-size: 14px;
                        color: #0d539b;
                        background-color: #fff;
                        line-height: 19px;
                        border-radius: 10px;
                        padding: 0 13px;
                        margin-bottom: 3px;
                        @media (width <= 767px) {
                            font-size: 12px;
                            padding: 0 6px;
                            line-height: 15px;
                        }
                    }
                }
            }
        }
        tbody {
            tr {
                th, td {
                    border: 2px solid #aab6c3;
                    font-size: 16px;
                    padding: 8px 15px;
                    @media (width <= 767px) {
                        font-size: 13px;
                        padding: 6px 7px;
                    }
                }
                th {
                    text-align: left;
                    background-color: #ebeff1;
                    font-weight: inherit;
                }
                td {
                    text-align: center;
                    background-color: #fff;
                }
                &:first-child {
                    th, td {
                        border-top: none;
                    }
                }
            }
            &.general-weight-th {
                th {
                    line-height: 1.6;
                    font-weight: var(--font-weight-medium);
                }
            }
        }
        .nowrap {
            white-space: nowrap;
        }
    }
    &::before {
        display: block;
        content: "";
        width: 10px;
        height: 10px;
        border-left: 2px solid #aab6c3;
        border-bottom: 2px solid #aab6c3;
        border-radius: 0 0 0 10px;
        position: absolute;
        left: 0;
        bottom: 0;
    }
    &::after {
        display: block;
        content: "";
        width: 10px;
        height: 10px;
        border-right: 2px solid #aab6c3;
        border-bottom: 2px solid #aab6c3;
        border-radius: 0 0 10px 0;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}

.anchor {
    height: 0;
    position: relative;
    &.--down10 {
        top: 10px;
    }
}

.split-doc-img-block {
    .img {
        float: right;
        width: 365px;
        height: auto;
        margin-left: 35px;
        border-radius: 10px;
        @media (width <= 767px) {
            width: 100%;
            object-fit: cover;
            margin-left: 0;
            float: none;
        }
        &.--stakeholder-img {
            @media (width <= 767px) {
                height: 230px;
            }
        }
    }
    .doc {
        @media (width <= 767px) {
            margin-top: 21px;
        }
    }
    &::after {
        display: block;
        content: '';
        height: 0;
        clear: both;
    }
}

.page-h1 {
    padding-top: 16px;
    line-height: 1.6;
    font-weight: var(--font-weight-black);
    font-size: 35px;
    @media (width <= 767px) {
        font-size: 23px;
        line-height: 1.5;
        padding-top: 14px;
    }
}

.page-h1 + .page-h1-desc {
    margin-top: 40px;
}

.page-h1 + .box {
    margin-top: 46px;
}

.page-h1 + .decorate-h3 {
    margin-top: 46px;
    @media (width <= 767px) {
        margin-top: 24px;
    }
}


.schedule-page-h1 {
    margin-top: 16px;
    line-height: 1.6;
    @media (width <= 767px) {
        margin-top: 12px;
    }
    .date {
        display: block;
        font-weight: normal;
        font-size: 35px;
        @media (width <= 767px) {
            font-size: 23px;
        }
    }
    .title {
        display: block;
        font-size: 27px;
        font-weight: var(--font-weight-black);
        @media (width <= 767px) {
            font-size: 19px;
        }
    }
}

.schedule-page-h1 + .box {
    margin-top: 46px;
    @media (width <= 767px) {
        margin-top: 25px;
    }
}

.schedule-page-h1 + .decorate-h3 {
    margin-top: 46px;
    @media (width <= 767px) {
        margin-top: 23px;
    }
}

.schedule-page-h1 + .schedule-page-h1-desc {
    margin-top: 30px;
    @media (width <= 767px) {
        margin-top: 12px;
    }
}

.decorate-h3 + .box {
    margin-top: 40px;
    @media (width <= 767px) {
        margin-top: 30px;
    }
}

.schedule-page-h1-desc + .decorate-h3 {
    margin-top: 44px;
}

.schedule-page-h1-desc + .schedule-page-h1-desc {
    margin-top: 15px;
}

.box + p {
    margin-top: 27px;
}

.box + .box-to-box {
    margin-top: 36px;
    @media (width <= 767px) {
        margin-top: 28px;
    }
}

.box-to-box + .box {
    margin-top: 33px;
    @media (width <= 767px) {
        margin-top: 24px;
    }
}

.link-button-blue + ol.decimal {
    margin-top: 32px;
    @media (width <= 767px) {
        margin-top: 20px;
    }
}

.center {
    text-align: center;
}

@keyframes map-circle-blink {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.5;
    }
}
.map {
    display: none;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
    .map-bg {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
        background-color: rgba(0, 0, 0, 0.6);
    }
    .map-view {
        position: fixed;
        z-index: 2001;
        top: 75px;
        bottom: 75px;
        left: 75px;
        right: 75px;
        margin: auto;
        max-width: 730px;
        max-height: calc(730px + 75px);
        background-color: #fff;
        font-weight: bold;
        border-radius: 10px;
        @media (width <= 767px) {
            top: 30px;
            left: 16px;
            right: 16px;
            bottom: 60px;
        }
        .map-close {
            position: absolute;
            color: #fff;
            font-size: 15px;
            letter-spacing: 0.08em;

            .map-close-inner {
                cursor: pointer;
            }
            &.--top {
                top: -29px;
                right: 0;
            }
            &.--bottom {
                bottom: -55px;
                left: 0;
                right: 0;
                .map-close-inner {
                    display: block;
                    border: 2px solid #fff;
                    border-radius: 10000px;
                    line-height: 37px;
                    padding: 0 24px;
                    width: fit-content;
                    margin: 0 auto;
                }
            }
            i {
                font-size: 19px;
                vertical-align: -1px;
            }
        }
        .map-head {
            background-color: #f6f6f6;
            height: 75px;
            padding: 0 25px;
            border-radius: 10px 10px 0 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            @media (width <= 767px) {
                padding: 0 14px;
                height: 60px;
            }
            .map-h {
                margin: 0;
                font-size: 30px;
                @media (width <= 767px) {
                    font-size: 22px;
                }
            }
            .desc {
                font-size: 14px;
                line-height: 1.9;
                text-align: right;
                @media (width <= 767px) {
                    font-size: 11px;
                    line-height: 1.5;
                }
                i {
                    color: #e38a8b;
                }
            }
        }
        .map-viewport {
            position: absolute;
            top: 75px;
            left: 0;
            bottom: 0;
            right: 0;
            overflow: hidden;
            @media (width <= 767px) {
                top: 60px;
            }
            .map-body {
                position: absolute;
                left: calc(-340px + 50%);
                top: calc(-486px + 50%);
                width: 680px;
                height: 904px;
                @media (width <= 767px) {
                    zoom: 0.9226;
                }
                .map-img {
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 680px;
                    height: 904px;
                    z-index: 1;
                }
                .map-circle,
                .map-circle-multi {
                    position: absolute;
                    width: 44px;
                    height: 44px;
                    border: 20px solid #E48A8A;
                    border-radius: 10000px;
                    opacity: 0.5;
                    z-index: 2;
                    display: none;
                    box-sizing: content-box;
                    animation: map-circle-blink 1.5s infinite;
                }
                .map-balloon {
                    display: block;
                    text-decoration: none;
                    position: absolute;
                    background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon.png);
                    background-size: cover;
                    width: 54px;
                    height: 61px;
                    left: 0;
                    top: 0;
                    z-index: 3;
                    pointer-events: auto;
                    cursor: pointer;
                    text-align: center;
                    color: #fff;
                    padding-top: 18px;
                    font-family: 'Noto Sans JP', sans-serif;
                    font-weight: var(--font-weight-black);
                    transition-property: scale,color,background-image;
                    transition-delay: var(--hover-duration);
                    transform-origin: 50% 80.99%;

                    @media (width <= 767px) {
                        padding-top: 19px;
                    }
                    @media (width >= 768px) {
                        &:hover {
                            scale: 1.2;
                            color: #e48a8a;
                            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
                        }
                    }

                    --map-balloon-x: -14px;
                    --map-balloon-y: -27px;
                    &.--no1 {
                        left: calc(259px + var(--map-balloon-x));
                        top: calc(413px + var(--map-balloon-y));
                    }
                    &.--no5 {
                        left: calc(334px + var(--map-balloon-x));
                        top: calc(333px + var(--map-balloon-y));
                    }
                    &.--no7 {
                        left: calc(296px + var(--map-balloon-x));
                        top: calc(233px + var(--map-balloon-y));
                    }
                    &.--no8 {
                        left: calc(460px + var(--map-balloon-x));
                        top: calc(425px + var(--map-balloon-y));
                    }
                    &.--no20 {
                        left: calc(324px + var(--map-balloon-x));
                        top: calc(814px + var(--map-balloon-y));
                    }
                    &.--no21 {
                        left: calc(422px + var(--map-balloon-x));
                        top: calc(485px + var(--map-balloon-y));
                    }
                    &.--no23 {
                        left: calc(450px + var(--map-balloon-x));
                        top: calc(311px + var(--map-balloon-y));
                    }
                    &.--hall {
                        left: calc(142px + var(--map-balloon-x));
                        top: calc(341px + var(--map-balloon-y));
                    }
                    &.--gallery {
                        left: calc(152px + var(--map-balloon-x));
                        top: calc(288px + var(--map-balloon-y));
                    }
                }
            }

        }
    }
    &.--visible {
        display: block;
    }
    &.--fade {
        opacity: 1;

    }

    --map-circle-x: -28px;
    --map-circle-y: -19px;
    --map-body-x: -11px;
    --map-body-y: -24px;

    &.--no1 .map-view .map-viewport .map-body {
        left: calc(-259px + var(--map-body-x) + 50%);
        top: calc(-413px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(259px + var(--map-circle-x));
            top: calc(413px + var(--map-circle-y));
        }
        .map-balloon.--no1 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no5 .map-view .map-viewport .map-body {
        left: calc(-334px + var(--map-body-x) + 50%);
        top: calc(-333px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(334px + var(--map-circle-x));
            top: calc(333px + var(--map-circle-y));
        }
        .map-balloon.--no5 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no7 .map-view .map-viewport .map-body {
        left: calc(-296px + var(--map-body-x) + 50%);
        top: calc(-233px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(296px + var(--map-circle-x));
            top: calc(233px + var(--map-circle-y));
        }
        .map-balloon.--no7 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no8 .map-view .map-viewport .map-body {
        left: calc(-460px + var(--map-body-x) + 50%);
        top: calc(-425px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(460px + var(--map-circle-x));
            top: calc(425px + var(--map-circle-y));
        }
        .map-balloon.--no8 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no20 .map-view .map-viewport .map-body {
        left: calc(-324px + var(--map-body-x) + 50%);
        top: calc(-814px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(324px + var(--map-circle-x));
            top: calc(814px + var(--map-circle-y));
        }
        .map-balloon.--no20 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no21 .map-view .map-viewport .map-body {
        left: calc(-422px + var(--map-body-x) + 50%);
        top: calc(-485px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(422px + var(--map-circle-x));
            top: calc(485px + var(--map-circle-y));
        }
        .map-balloon.--no21 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--no23 .map-view .map-viewport .map-body {
        left: calc(-450px + var(--map-body-x) + 50%);
        top: calc(-311px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(450px + var(--map-circle-x));
            top: calc(311px + var(--map-circle-y));
        }
        .map-balloon.--no23 {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--hall .map-view .map-viewport .map-body {
        left: calc(-142px + var(--map-body-x) + 50%);
        top: calc(-341px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(142px + var(--map-circle-x));
            top: calc(341px + var(--map-circle-y));
        }
        .map-balloon.--hall {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--gallery .map-view .map-viewport .map-body {
        left: calc(-152px + var(--map-body-x) + 50%);
        top: calc(-288px + var(--map-body-y) + 50%);
        .map-circle {
            display: block;
            left: calc(152px + var(--map-circle-x));
            top: calc(288px + var(--map-circle-y));
        }
        .map-balloon.--gallery {
            color: #e48a8a;
            background-image: url(https://www.kanazawa-it.ac.jp/assets/img/freshers/common/balloon_on.png);
            scale: 1.2;
        }
    }
    &.--safe-spot .map-view .map-viewport {
        .map-body {
            left: calc(-340px + 50%);
            top: calc(-452px + 50%);
            .map-circle { /* 6ºÅð^ */
                display: block;
                left: calc(229px + var(--map-circle-x));
                top: calc(341px + var(--map-circle-y));
            }
            .map-circle-multi {
                display: block;
                &.--circle2 { /* 43ºÅð^ */
                    left: calc(625px + var(--map-circle-x));
                    top: calc(236px + var(--map-circle-y));
                }
                &.--circle3 { /* 24ºÅð^ */
                    left: calc(582px + var(--map-circle-x));
                    top: calc(290px + var(--map-circle-y));
                }
                &.--circle4 { /* ¥°¥é¥¦¥ó¥É */
                    left: calc(217px + var(--map-circle-x));
                    top: calc(830px + var(--map-circle-y));
                }
                &.--circle5 { /* 40ºÅð^ */
                    left: calc(12px + var(--map-circle-x));
                    top: calc(135px + var(--map-circle-y));
                }
                &.--circle6 { /* 47ºÅð^ */
                    left: calc(47px + var(--map-circle-x));
                    top: calc(211px + var(--map-circle-y));
                }
                &.--circle7 { /* 31ºÅð^ */
                    left: calc(457px + var(--map-circle-x));
                    top: calc(102px + var(--map-circle-y));
                }
                &.--circle8 { /* 28ºÅð^ */
                    left: calc(558px + var(--map-circle-x));
                    top: calc(460px + var(--map-circle-y));
                }
                &.--circle9 { /* 1ºÅð^ */
                    left: calc(292px + var(--map-circle-x));
                    top: calc(490px + var(--map-circle-y));
                }
            }
        }
    }
}
_::-webkit-full-page-media, _:future, :root .map .map-view .map-viewport .map-body .map-balloon { /* only ios Safari */
    @media (width <= 767px) {
        padding-top: 17px;
    }
}

.class {
    display: none;
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
    .class-bg {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2000;
        background-color: rgba(0, 0, 0, 0.6);
    }
    .class-view {
        position: absolute;
        z-index: 2001;
        margin: auto;
        max-width: 730px;
        background-color: #fff;
        font-weight: bold;
        border-radius: 10px;
        left: 0;
        right: 0;
        padding: 25px;
        @media (width <= 767px) {
            padding: 14px;
            left: 16px;
            right: 16px;
        }
        .class-close {
            position: absolute;
            color: #fff;
            font-size: 15px;
            letter-spacing: 0.08em;

            .class-close-inner {
                cursor: pointer;
            }
            &.--top {
                top: -29px;
                right: 0;
            }
            &.--bottom {
                bottom: -55px;
                left: 0;
                right: 0;
                .class-close-inner {
                    display: block;
                    border: 2px solid #fff;
                    border-radius: 10000px;
                    line-height: 37px;
                    padding: 0 24px;
                    width: fit-content;
                    margin: 0 auto;
                }
            }
            i {
                font-size: 19px;
                vertical-align: -1px;
            }
        }
        .class-body {
            &.disabled {
                position: relative;
                .general-table-block {
                    opacity: 0.4;
                }
                .over-msg {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    position: absolute;
                    top: 0;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    text-align: center;
                    font-family: var(--font-family-AbBabywalk);
                    letter-spacing: -0.05em;
                    color: #074381;
                    font-size: 65px;
                    @media (width <= 767px) {
                        font-size: calc(45 * var(--px-to-sp-vw));
                        line-height: 0.9;
                        top: calc(35 * var(--px-to-sp-vw))
                    }
                }
            }
        }
    }
    &.--visible {
        display: block;
    }
    &.--fade {
        opacity: 1;
    }
}

.nowrap {
    white-space: nowrap;
}

.colum2-pc-tb {
    @media (width >= 768px) {
        display: flex;
        column-gap: 20px;
        justify-content: space-between;
        flex-wrap: wrap;
        > .cell {
            width: calc(50% - 10px);
        }
    }
}

video {
    width: 100%;
}