@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Afacad:ital,wght@0,400..700;1,400..700&family=Bakbak+One&family=Noto+Sans+JP:wght@100..900&display=swap');

@media screen and (min-width: 897px) {
    .sp {
        display: none !important;
    }

    .pc {
        display: block;
    }
}

@media screen and (max-width: 896px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block;
    }
}

@media screen and (min-width: 601px) {
    .sp-600 {
        display: none !important;
    }

    .pc-600 {
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .pc-600 {
        display: none !important;
    }

    .sp-600 {
        display: block;
    }
}


:root {
    --title-font: "Bakbak One", sans-serif;
    --color-skyblue: #88CFFF;
    --color-black: #1E1C1C;
    --color-red: #E8053B;
    --color-yellow: #FFE786;
    --color-pink: #FF8DDD;
    --color-orangRed: #FF5B5B;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 1rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
}


.braah-one-regular {
    font-family: "Braah One", sans-serif;
    font-weight: 400;
    font-style: normal;
}

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

.back {
    position: fixed;
    top: 0;
    z-index: -3;
    width: 100%;
    height: 100dvh;
}

.back img {
    height: 100dvh;
    object-fit: cover;
    min-height: 800px;
}

.white-back {
    position: fixed;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.white-back.active {
    opacity: 1;
}

::selection {
    background-color: #E8053B;
    color: #FFFFFF;
}


.header {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Afacad", sans-serif;
    background: #FFFFFF;
    padding: 0 64px 0 32px;
    height: 64px;
    box-shadow: 0px 4px 11px -7px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 97;
}

.header-logo img {
    height: 40px;
    object-fit: contain;
}

.header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    min-width: 150px;
    font-size: 18px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.header-button:hover {
    letter-spacing: 0.08em;
}

.header-right {
    display: flex;
    height: 100%;
}


.header-mypage {
    background: var(--color-black);
}

.header-entry {
    background: var(--color-red);
}

.humberger {
    width: 64px;
    height: 64px;
    background: var(--color-black);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.humberger-button {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
}

.humberger span {
    position: absolute;
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
}

.humberger span:nth-child(1) {
    top: 22px;
}

.humberger span:nth-child(2) {
    top: 30px;
}

.humberger span:nth-child(3) {
    top: 38px;
}

/* 開いたときの X */
.humberger.active span:nth-child(1) {
    top: 30px;
    transform: rotate(45deg);
}

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

.humberger.active span:nth-child(3) {
    top: 30px;
    transform: rotate(-45deg);
}

/* メニュー本体（最初は非表示） */
.humberger-content {
    position: fixed;
    top: 0;
    right: -100%;
    /* ← 非表示 */
    z-index: 98;
    width: 100%;
    height: 100%;
    max-width: 300px;
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 120px 0 0;
    font-family: "Afacad", sans-serif;
    transition: 0.4s ease;
    border-left: 4px solid var(--color-black);
    box-shadow: -6px 0px 6px -7px rgba(0, 0, 0, 0.4);
    text-align: center;
    overflow-y: auto;
}

.humberger-content a {
    display: block;
    color: var(--color-black);
    text-shadow: 2px 2px 0 #d6d6d6;
    -webkit-text-stroke: 1px #1E1C1C;
    transition: all 0.2s ease;
}

.humberger-content a:hover {
    color: var(--color-red);
    transform: translateY(-2px);
}

.nav-li {
    border-bottom: 1px solid var(--color-black);
    padding: 0 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 24px;
}

.nav-li:last-child {
    margin-bottom: 0;
}

.nav-title {
    color: var(--color-red);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.nav-innerUl {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}


.chara-work {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    pointer-events: none;
}

.chara {
    position: absolute;
    bottom: 0;
    transition: transform 0.2s linear;
}

.chara img {
    object-fit: contain;
    animation: walk 0.4s steps(2) infinite;
}

/* 歩き風アニメ（2コマ切替）*/
@keyframes walk {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0);
    }
}


.kv {
    padding: 100px 0 40px;
}

@keyframes infinity-scroll {
    0% {
        transform: translateX(0);
    }

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

@keyframes infinity-scroll2 {
    0% {
        transform: translateX(-100%);
    }

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

.kv-slide {
    overflow: hidden;
}

.kv-slide-wrapper {
    display: flex;
    width: max-content;
}

.kv-slide-items {
    display: flex;
    animation: infinity-scroll 100s linear infinite both;
}

.kv-slide-items2 {
    display: flex;
    animation: infinity-scroll2 100s linear infinite both;
}

.kv-img {
    position: relative;
    margin-right: 56px;
    padding: 0 0 6px 0;
    pointer-events: none;
}

.kv-slide-items img {
    position: relative;
    height: 320px;
    /* ← 基準は高さ */
    width: auto;
    /* ← 比率維持 */
    border: 3px solid var(--color-black);
}

@media screen and (max-width: 896px) {
    .kv-slide-items img {
        height: 200px;
    }

    .kv-img {
        margin-right: 32px;
    }
}

@media screen and (max-width: 380px) {
    .kv-slide-items img {
        height: 140px;
    }
}

.kv-img::before {
    position: absolute;
    top: 8px;
    right: -8px;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-black);
}


.kv-title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-end;
    max-width: 500px;
    width: 90%;
    margin: 40px auto 56px;
}


.title-logo {
    position: relative;
    display: block;
}

.title-logo>div:not(:nth-child(1)) {
    position: absolute;
    top: 0;
}

/* -------- 最終位置指定（あなたの指定） -------- */
.title-logo>div:nth-child(1) {
    transform: translateX(-6px);
}

.title-logo>div:nth-child(2) {
    z-index: -1;
    transform: translateY(6px);
}

.title-logo>div:nth-child(3) {
    transform: translateY(12px) translateX(6px);
    z-index: -1;
}

/* -------- アニメーション基本設定 -------- */
.title-logo>div {
    opacity: 0;
}

/* 順番に遅延 */
.title-logo>div:nth-child(1) {
    animation: logo1 0.7s ease-out forwards;
    animation-delay: 0s;
}

.title-logo>div:nth-child(2) {
    animation: logo2 0.7s ease-out forwards;
    animation-delay: 0.15s;
}

.title-logo>div:nth-child(3) {
    animation: logo3 0.7s ease-out forwards;
    animation-delay: 0.3s;
}

/* -------- 個別 keyframes（重要） -------- */

/* 1つ目：translateX(-6px) が最終位置 */
@keyframes logo1 {
    0% {
        opacity: 0;
        transform: translateX(-6px) translateY(40px);
        /* 下から */
    }

    100% {
        opacity: 1;
        transform: translateX(-6px) translateY(0);
    }
}

/* 2つ目：translateY(6px) が最終位置 */
@keyframes logo2 {
    0% {
        opacity: 0;
        transform: translateY(6px) translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(6px) translateY(0);
    }
}

/* 3つ目：translateY(12px) translateX(6px) が最終位置 */
@keyframes logo3 {
    0% {
        opacity: 0;
        transform: translateY(12px) translateX(6px) translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(12px) translateX(6px) translateY(0);
    }
}

.kv-title-sub {
    display: block;
    max-width: 400px;
    margin: 32px 0 0;
}


/* 表示 */
.humberger-content.show {
    right: 0;
}

.section {
    padding: 80px 0 0;
}

.lower-section {
    padding: 0;
}

.content {
    width: 90%;
    margin: 0 auto;
}

.introductory-text {
    font-size: 24px;
    line-height: 150%;
    font-weight: 800;
    text-align: center;
}

.introductory-text span {
    position: relative;
    color: var(--color-red);
}

/* 下線（初期） */
.introductory-text span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--color-red);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

/* spanが表示されたら */
.introductory-text span.is-show::after {
    transform: scaleX(1);
}

.introductory-mainText {
    text-align: center;
    font-size: 56px;
    font-weight: 800;
    font-style: italic;
    margin-top: 40px;
}

/* 分割された1文字 */
.introductory-mainText .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

/* 表示状態 */
.introductory-mainText .char.is-show {
    opacity: 1;
    transform: translateY(0);
}

/* 色 */
.introductory-mainText .char {
    color: var(--color-red);
}


.top-h2Box {
    text-align: center;
    margin-bottom: 32px;
}

.top-h2Box h2 {
    font-family: var(--title-font);
    font-size: 48px;
    color: var(--color-skyblue);
    text-shadow: 3px 3px 0 #1E1C1C;
    -webkit-text-stroke: 0.2px #1E1C1C;
}

.top-h2Box p {
    font-size: 18px;
    font-weight: 600;
}

.title-yellow {
    color: var(--color-yellow) !important;
}

.title-blue {
    color: var(--color-skyblue) !important;
}

.title-pink {
    color: var(--color-pink) !important;
}

.title-orangeRed {
    color: var(--color-orangRed) !important;
}


.news-ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 0;
}

.news-ul li {
    background: #FFFFFF;
    border: 1px solid var(--color-black);
    padding: 6px 0;
    box-shadow: 0px 4px 0 var(--color-black);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

/* hover */
.news-ul li:hover {
    transform: translateY(4px);
    box-shadow: 0px 0px 0 var(--color-black);
}

.news-ul a {
    display: flex;
    align-items: center;
    gap: 24px;
}

.news-ul a div {
    border-right: 1px solid var(--color-black);
    font-family: var(--title-font);
    padding: 16px 24px 16px 24px;
    color: #FFFFFF;
    text-shadow:
        -1px -1px 0 var(--color-black),
        1px -1px 0 var(--color-black),
        -1px 1px 0 var(--color-black),
        1px 1px 0 var(--color-black);
}

.top-recruitContent {
    position: relative;
    max-width: 1200px;
    padding: 20px;
    margin: 0 auto;
}

.top-recruit {
    background: #D5F4FF;
    margin: 0 auto;
    border: 2px solid var(--color-black);
    padding: 24px 32px 40px;
}

.recruit-ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
}

.recruit-ul li {
    background: #FFFFFF;
    border: 1px solid var(--color-black);
    box-shadow: 0px 4px 0 var(--color-black);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.recruit-ul li a {
    position: relative;
    display: block;
    padding: 24px 10px;
    text-align: center;
}

.recruit-ul li a div:nth-child(1) {
    font-family: var(--title-font);
    font-size: 28px;
}

.recruit-ul li a div:nth-child(2) {
    font-size: 14px;
}

.recruit-ul li a div:nth-child(3) {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 32px;
}

.recruit-ul li:hover {
    transform: translateY(4px);
    box-shadow: 0px 0px 0 var(--color-black);
}

.top-recruit-border-vertical,
.top-recruit-border-beside {
    display: block;
    content: "";
    background: var(--color-black);
}

.top-recruit-border-vertical {
    position: absolute;
    width: 150px;
    height: 2px;
}

.top-recruit-border-beside {
    position: absolute;
    width: 2px;
    height: 150px;
}

.top-recruit-border-left {
    top: 0;
    left: 0;
}

.top-recruit-border-right {
    right: 0;
    bottom: 0;
}


.slide-content {
    position: relative;
}

.slider-box {
    margin-top: -20px;
}

.slider-box a {
    transition: all 0.2s ease;
}

.slider-box a img {
    transition: all 0.2s ease;
}

.slider-box a:hover img {
    filter: brightness(0.8);
}

.slider-box>div {
    position: relative;
}

.slider-box .slick-slide {
    position: relative;
    padding: 0 24px;
    /* ← スライド間の隙間 */
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.slider-box .slick-slide,
.slider-box .slick-center {
    transform: scale(0.9);
}


.slider-box img {
    border: 4px solid var(--color-black);
}

.slick-dots {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center;
}


.archive-content {
    position: absolute;
    left: 48px;
    bottom: 24px;
}

.archive-content h3 {
    color: #FFFFFF;
    font-size: 40px;
    font-family: var(--title-font);
    margin-bottom: 6px;
    text-shadow:
        /* 縁取り */
        -2px -2px 0 var(--color-black),
        2px -2px 0 var(--color-black),
        -2px 2px 0 var(--color-black),
        2px 2px 0 var(--color-black),

        /* 影（box-shadow っぽく） */
        5px 5px 0 var(--color-black);
}

.archive-content p {
    position: relative;
    font-size: 18px;
    font-weight: 800;
    border: 1px solid var(--color-black);
    box-shadow: 3px 3px 0 var(--color-black);
    background: #FFFFFF;
    padding: 4px 10px 4px 32px;
}

.archive-content p::before {
    position: absolute;
    top: 6px;
    left: 8px;
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 100px;
    border: 1px solid var(--color-black);
    background: var(--color-red);
}


.movie-ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}


.movie-ul iframe {
    aspect-ratio: 16/9;
    width: 100%;
    border: 2px solid var(--color-black);
}

.footer-top {
    margin-top: 120px;
}


/* 下層ページ */

.lower-content {
    padding: 120px 0;
    min-height: 800px;
}

.lower-title {
    text-align: center;
    margin-bottom: 48px;
}

.lower-title h1 {
    font-family: var(--title-font);
    font-size: 56px;
    color: var(--color-skyblue);
    text-shadow: 3px 3px 0 #1E1C1C;
    -webkit-text-stroke: 0.2px #1E1C1C;
}

.lower-title h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    animation: popIn 0.5s forwards;
}

/* 1文字ずつ順番に */
.lower-title h1 span:nth-child(n) {
    animation-delay: calc(0.05s * var(--i));
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }

    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lower-title p {
    font-size: 18px;
    font-weight: 600;
}

.guideline-content {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid #1E1C1C;
    box-shadow: 4px 4px 0 var(--color-black);
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 80px 48px;
}

.guideline-ul li {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
}

.guideline-ul li:last-child {
    margin-bottom: 0;
}

.guideline-ul li div:nth-child(1) {
    width: 300px;
    line-height: 150%;
    border-bottom: 1px solid var(--color-red);
    padding: 0 0 0 16px;
    color: var(--color-red);
    font-weight: 800;
}

.guideline-ul li div:nth-child(2) {
    font-weight: 700;
    line-height: 150%;
    width: 100%;
    padding: 0 0 24px 20px;
    border-bottom: 1px solid #A3A3A3;
}

.guideline-ul li:last-child div:nth-child(1) {
    border-bottom: none;
}

.guideline-ul li:last-child div:nth-child(2) {
    border-bottom: none;
    padding: 0 0 0 20px;
}

.guideline-notes {
    margin-top: 8px;
}

.guideline-notes li {
    display: flex;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 140%;
    font-weight: 400;
}

.guideline-system li {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.guideline-system li p:nth-child(1) {
    margin-left: -6px;
    margin-bottom: 4px;
}

.guideline-system li p:nth-child(2) {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

.lower-blur {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
}

.seminar-ul {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1300px;
    width: 90%;
    margin: 0 auto;
}

.seminar-ul>li {
    position: relative;
    border: 2px solid var(--color-black);
    background: #FFFFFF;
    box-shadow: 4px 4px 0 var(--color-black);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seminar-ul>li:hover {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--color-black);
}

.seminar-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.seminar-ul h3 {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    min-height: 80px;
    font-size: 20px;
    font-weight: 800;
    border-bottom: 1px solid var(--color-black);
}

.seminar-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 24px 20px 32px;
}

.seminar-info li p:nth-child(1) {
    font-size: 14px;
    font-family: var(--title-font);
    text-align: center;
    color: #FFFFFF;
    background: var(--color-skyblue);
    min-width: 100px;
    border: 1px solid var(--color-black);
    text-shadow:
        -1px -1px 0 var(--color-black),
        1px -1px 0 var(--color-black),
        -1px 1px 0 var(--color-black),
        1px 1px 0 var(--color-black);
    padding: 4px 0;
}

.seminar-info li p:nth-child(2) {
    font-weight: 800;
}

.seminar-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 32px;
}

.flow-content {
    background: #FFFFFF;
    border: 1px solid var(--color-black);
    box-shadow: 4px 4px 0 var(--color-black);
    max-width: 1000px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.flow-title-box {
    padding: 20px 20px;
    border-bottom: 1px solid var(--color-black);
}

.flow-date {
    font-size: 32px;
    font-weight: 800;
}

.flow-date span {
    font-size: 16px;
    margin-left: 2px;
    margin-right: 2px;
}

.flow-title {
    font-weight: 800;
    font-size: 20px;
}

.flow-info {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 500;
}

.flow-content-box {
    padding: 40px 20px;
}

.flow-content-box h3 {
    font-weight: 800;
    color: var(--color-red);
    margin-bottom: 32px;
}

.flow-content-ul li div {
    display: flex;
    border: 1px solid var(--color-black);
    box-shadow: 2px 2px 0 var(--color-black);
    max-width: 800px;
    margin: 14px auto 0;
}

.flow-content-ul li div p:nth-child(1) {
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid var(--color-black);
    width: 250px;
    background: var(--color-skyblue);
    color: #FFFFFF;
    font-family: var(--title-font);
    text-shadow:
        -1px -1px 0 var(--color-black),
        1px -1px 0 var(--color-black),
        -1px 1px 0 var(--color-black),
        1px 1px 0 var(--color-black);
    min-height: 56px;
}

.flow-content-ul li div p:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 8px 10px;
}

.flow-content-ul li div p:nth-child(2) small {
    display: block;
    line-height: 120% !important;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
}

.flow-arrow {
    pointer-events: none;
    max-width: 40px;
    margin: 20px auto 0;
}

.flow-miniText {
    font-size: 12px;
    margin-top: 40px;
}

.flow-centerArrow {
    pointer-events: none;
    max-width: 80px;
    margin: 32px auto;
}

.flow-text {
    font-size: 14px;
    margin-top: 18px;
    line-height: 150%;
}

.flow-content-ul-2 div {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-black);
    box-shadow: 2px 2px 0 var(--color-black);
    max-width: 800px;
    margin: 14px auto 0;
    min-height: 56px;
}

.faq-ul {
    display: flex;
    flex-direction: column;
    gap: 56px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-ul>li {
    background: #FFFFFF;
    border: 1px solid var(--color-black);
}

.faq-ul>li h2 {
    font-size: 18px;
    color: #FFFFFF;
    background: var(--color-black);
    text-align: center;
    padding: 16px 10px;
}

.faq-dl {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 95%;
    margin: 24px auto;
}

.faq-dl-2 {
    border-bottom: 1px dashed var(--color-black);
    padding-bottom: 24px;
}

.faq-dl dt,
.faq-dl dd {
    display: flex;
    gap: 16px;
    font-size: 16px;
    font-weight: 800;
    padding: 0 32px;
    line-height: 140%;
}

.faq-dl dt p,
.faq-dl dd p {
    margin-top: 4px;
}

.faq-dl dt div,
.faq-dl dd div {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--title-font);
    min-width: 32px;
    min-height: 32px;
    width: 32px;
    height: 32px;
    font-size: 20px;
    border-radius: 100px;
}

.faq-dl dt div {
    border: 1px solid var(--color-red);
}

.faq-dl dd div {
    border: 1px solid var(--color-black);
}

.faq-dl dt {
    color: var(--color-red);
}


.footer {
    background: rgba(3, 3, 3, 0.8);
    padding: 40px 0 16px;
}

.footer-logo {
    pointer-events: none;
    max-width: 64px;
    margin: 0 auto;
}

.footer-campany {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--color-red);
    color: #FFFFFF;
    max-width: 200px;
    padding: 6px 0;
    margin: 24px auto;
    transition: all 0.2s ease;
}

.footer-campany:hover {
    background: var(--color-black);
}

.footer-sns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-sns a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid #FFFFFF;
    border-radius: 100px;
    overflow: hidden;
    transition: background 0.2s ease;
}

.footer-sns a::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background: #fff;
    border-radius: 100%;
    transition: 0.35s ease;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    z-index: 0;
}

.footer-sns a:hover::before {
    width: 100%;
    height: 100%;
}

.footer-sns a img {
    height: 24px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
    filter: invert(0);
}

.footer-sns a:hover img {
    filter: invert(1);
}

.copy {
    text-align: center;
    color: #FFFFFF;
    font-weight: 400;
    margin-top: 40px;
}

.no-click {
    pointer-events: none;
}


@media screen and (max-width: 1000px) {
    .seminar-ul {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 896px) {


    .header {
        padding: 0 0 0 16px;
    }

    .header-button {
        display: none;
    }

    .humberger-content {
        padding: 80px 0 0;
    }

    .nav-li {
        font-size: 20px;
    }

    .nav-title {
        font-size: 16px;
    }

    .introductory-text {
        font-size: 20px;
    }

    .introductory-mainText {
        margin-top: 24px;
        font-size: 40px;
    }

    .slick-dots {
        bottom: -10px;
    }

    .top-recruitContent {
        padding: 14px;
    }

    .recruit-ul {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .movie-ul {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .lower-content {
        padding: 96px 0;
    }

    .lower-title {
        margin-bottom: 24px;
    }

    .lower-title h1 {
        font-size: 40px;
    }

    .lower-title p {
        font-size: 16px;
    }

    .guideline-content {
        padding: 40px 24px;
    }

    .guideline-ul>li {
        flex-direction: column;
        margin-bottom: 24px;
        padding: 0 10px 24px;
        border-bottom: 1px solid #A3A3A3;
    }

    .guideline-ul>li:last-child {
        border-bottom: none;
    }

    .guideline-ul li div:nth-child(1) {
        border-bottom: none;
        font-size: 14px;
        padding: 0;
        margin-bottom: 10px;
    }

    .guideline-ul li div:nth-child(2) {
        border-bottom: none;
        padding: 0;
        font-size: 14px;
    }

    .guideline-notes li {
        font-size: 12px;
    }

    .guideline-ul li:last-child div:nth-child(2) {
        padding: 0;
    }

    .seminar-ul {
        max-width: 400px;
        grid-template-columns: 1fr;
    }

    .seminar-ul h3 {
        min-height: 64px;
        font-size: 16px;
    }

    .seminar-info li p:nth-child(1) {
        font-size: 12px;
    }

    .seminar-info li p:nth-child(2) {
        font-size: 14px;
    }

    .flow-date {
        font-size: 24px;
    }

    .flow-date span {
        font-size: 14px;
    }

    .flow-title {
        font-size: 18px;
    }

    .flow-content-ul li div {
        flex-direction: column;
    }

    .flow-content-ul li div p:nth-child(1) {
        border-left: none;
        border-bottom: 1px solid var(--color-black);
        width: 100%;
        min-height: 40px;
        font-size: 14px;
    }

    .flow-content-ul li div p:nth-child(2) {
        padding: 32px 10px;
    }

    .faq-ul>li h2 {
        font-size: 16px;
    }

    .footer {
        padding: 24px 0 16px;
    }

    .footer-campany {
        font-size: 14px;
    }

    .slider-box img {
        border: 2px solid var(--color-black);
    }

    .chara img {
        width: 64px !important;
        /* 100% */
        height: auto;
        max-width: none;
    }

    .chara-2 img {
        width: 52.5px !important;
        /* 75% */
    }

    .chara-3 img {
        width: 35px !important;
        /* 57% */
    }

    .header{
        justify-content: flex-start;
    }

    .header-logo{
        display: block;
    }

    .header-logo img {
        max-width: 200px;
        height: auto;
    }
}

@media screen and (max-width: 700px) {

    .slider-box .slick-slide,
    .slider-box .slick-center {
        transform: scale(1);
    }

    .slider-box {
        margin-top: 0;
    }

    .slick-dots {
        bottom: -20px;
    }
}

@media screen and (max-width: 500px) {

    .section {
        padding: 64px 0 0;
    }

    .top-h2Box {
        margin-bottom: 20px;
    }

    .kv-img {
        padding: 0 0 4px 0;
    }

    .kv-img::before {
        top: 4px;
        right: -4px;
    }

    .kv-title-sub {
        max-width: 300px;
    }

    .top-h2Box h2 {
        font-size: 32px;
    }

    .top-h2Box p {
        font-size: 14px;
    }

    .introductory-text {
        font-size: 16px;
    }

    .introductory-mainText {
        font-size: 28px;
    }

    .news-ul {
        gap: 16px;
    }

    .news-ul a {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 10px 20px;
        font-size: 14px;
    }

    .news-ul a div {
        padding: 0;
        border-right: none;
    }

    .recruit-ul {
        grid-template-columns: 1fr;
    }

    .recruit-ul li a div:nth-child(1) {
        font-size: 20px;
    }

    .recruit-ul li a div:nth-child(2) {
        font-size: 14px;

    }

    .movie-ul {
        gap: 24px;
    }

    .archive-content {
        left: 40px;
        bottom: 14px;
    }

    .archive-content h3 {
        font-size: 24px;
        text-shadow: -1px -1px 0 var(--color-black),
            1px -1px 0 var(--color-black),
            -1px 1px 0 var(--color-black),
            1px 1px 0 var(--color-black),
            3px 3px 0 var(--color-black);
    }

    .archive-content p {
        font-size: 14px;
        font-weight: 600;
        padding: 4px 10px 4px 24px;
        box-shadow: 2px 2px 0 var(--color-black);
    }

    .archive-content p::before {
        top: 6px;
        left: 4px;
        width: 14px;
        height: 14px;
    }



    .faq-ul {
        gap: 40px;
    }

    .faq-dl dt,
    .faq-dl dd {
        gap: 8px;
        font-size: 14px;
        padding: 0 20px;
    }

    .faq-dl dt p,
    .faq-dl dd p {
        margin-top: 6px;
    }

    .faq-dl dt div,
    .faq-dl dd div {
        font-size: 16px;
    }
}