@charset "UTF-8";
/* 全ページ共通 */
/* リセット、基本設定、ヘッダー、フッター、ハンバーガー、固定お問い合わせボタンなど
 */
 

/* ========================================
   CSS変数
======================================== */

:root {
    --color-black: #07090d;
    --color-dark: #111722;
    --color-white: #ffffff;
    --color-light: #f5f8fc;
    --color-text: #202530;
    --color-subtext: #667080;

    --color-blue: #28d7ff;
    --color-blue-dark: #087ea4;
    --color-yellow: #ffe600;
    --color-purple: #9b5cff;

    --header-height: 90px;

    --content-width: 1200px;
    --side-space: 40px;

    --transition: 0.3s ease;
}


/* ========================================
   リセットCSS
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    font-family:
         "M PLUS Rounded 1c",
    sans-serif;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open,
body.splash-open {
    overflow: hidden;
}

h1,
h2,
h3,
p,
figure {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    padding: 0;
    border: 0;
    color: inherit;
    background: none;
    cursor: pointer;
}

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


/* ========================================
   共通レイアウト
======================================== */

.main {
    width: 100%;
    padding-top: var(--header-height);
    background: #050609;
}

.section {
    padding: 110px var(--side-space);
}

.section-inner {
    width: min(100%, var(--content-width));
    margin: 0 auto;
}

.section-heading {
    margin-bottom: 55px;
    text-align: center;
}

.section-heading-en {
    margin-bottom: 8px;
    color: var(--color-blue-dark);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.22em;
}

.section-heading-ja {
    color: var(--color-text);
    color:white;

text-shadow:

0 0 10px rgba(37,233,255,.4),

0 0 25px rgba(155,92,255,.25);
    line-height: 1.25;
    letter-spacing: 0.05em;
}

.section-description {
    max-width: 680px;
    margin: 20px auto 0;
    color: var(--color-subtext);
    font-size: 1rem;
}

.section-button-area {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-width: 280px;
    padding: 16px 28px;
    border: 1px solid var(--color-dark);
    border-radius: 999px;
    color: var(--color-dark);
    font-weight: 700;
    transition:
        color var(--transition),
        background-color var(--transition),
        transform var(--transition);
}

.section-button span {
    transition: transform var(--transition);
}

.section-button:hover {
    color: var(--color-white);
    background-color: var(--color-dark);
    transform: translateY(-3px);
}

.section-button:hover span {
    transform: translateX(5px);
}


/* ========================================
   ヘッダー
======================================== */

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
border-bottom:

1px solid rgba(37,233,255,.2);    color: var(--color-white);
    background-color: rgb(7 9 13 / 78%);
backdrop-filter:

blur(25px);

background:

rgba(0,0,0,.55);}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 34px;
}


/* ロゴ */

.header-logo {
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter:


drop-shadow(

0 0 20px rgba(155,92,255,.4)

);
}

.header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.header-company-name {
    color: rgb(255 255 255 / 70%);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
}

.header-site-name {
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}


/* PCナビ */

.global-nav {
    margin-left: auto;
}

.global-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.8vw, 30px);
}

.global-nav-item a {
    position: relative;
    display: block;
    padding: 12px 0;
    color: var(--color-white);
    font-size: clamp(0.74rem, 0.9vw, 0.92rem);
    font-weight: 700;
    white-space: nowrap;
}

.global-nav-item a::after {
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--color-blue),
        var(--color-yellow)
    );
    content: "";
    transition: width var(--transition);
}

.global-nav-item a:hover::after {
    width: 100%;
}
.global-nav-item a:hover{

color:#25e9ff;

text-shadow:

0 0 10px #25e9ff;

}

/* ========================================
   ハンバーガーボタン
======================================== */

.hamburger-button {
    position: relative;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    margin-left: 24px;
    border: 1px solid rgb(255 255 255 / 24%);
    border-radius: 50%;
    background-color: rgb(255 255 255 / 8%);
    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.hamburger-button:hover {
    border-color: var(--color-blue);
    background-color: rgb(40 215 255 / 12%);
}

.hamburger-line {
    display: block;
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background-color: var(--color-white);
    transition:
        transform var(--transition),
        opacity var(--transition);
}


/* JavaScriptでis-activeを付けたとき */

.hamburger-button.is-active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-button.is-active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-button.is-active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* ========================================
   ハンバーガーメニュー
======================================== */

.hamburger-menu {
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    width: min(480px, 100%);
    height: 100dvh;
    padding: 130px 50px 50px;
    color: var(--color-white);
    background:
        radial-gradient(
            circle at 80% 15%,
            rgb(40 215 255 / 20%),
            transparent 35%
        ),
        linear-gradient(
            145deg,
            #071019,
            #111522 55%,
            #090b10
        );
    box-shadow: -20px 0 50px rgb(0 0 0 / 30%);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
        transform 0.45s ease,
        opacity 0.35s ease,
        visibility 0.45s;
}

.hamburger-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hamburger-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hamburger-nav-list {
    display: flex;
    flex-direction: column;
}

.hamburger-nav-item {
    border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.hamburger-nav-item a {
    display: flex;
    align-items: center;
    min-height: 58px;
    font-size: 1rem;
    font-weight: 700;
    transition:
        color var(--transition),
        padding-left var(--transition);
}

.hamburger-nav-item a:hover {
    padding-left: 10px;
    color: var(--color-blue);
}

.hamburger-action {
    display: grid;
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
}

.hamburger-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 58px;
    padding: 12px 20px;
    border-radius: 12px;
    color: var(--color-dark);
    font-weight: 900;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.hamburger-action-link:hover {
    transform: translateY(-3px);
}

.office-link {
    background-color: var(--color-white);
}

.recruit-link {
    background: linear-gradient(
        135deg,
        var(--color-yellow),
        #ffb800
    );
    box-shadow: 0 8px 30px rgb(255 230 0 / 20%);
}

.hamburger-action-icon {
    font-size: 1.3rem;
    color:#ffffff;
    text-shadow: 0 0 10px var(--color-black);
}
/* ========================================
   右下固定お問い合わせ
======================================== */

.fixed-contact {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
}


/* ========================================
   ボタン本体
======================================== */

.fixed-contact-link {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    min-width: 310px;
    min-height: 64px;

    padding: 15px 26px;

    overflow: hidden;

    border: 2px solid #ffe600;
clip-path:
    polygon(
        18px 0,
        100% 0,
        100% calc(100% - 18px),
        calc(100% - 18px) 100%,
        0 100%,
        0 18px
    );
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #070007 0%,
            #160f00 55%,
            #080008 100%
        );

    box-shadow:
        0 0 10px rgb(255 230 0 / 95%),
        0 0 24px rgb(255 230 0 / 75%),
        0 0 46px rgb(255 230 0 / 45%),
        inset 0 0 22px rgb(255 230 0 / 20%);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;

    animation:
        fixedContactGlow 1.8s ease-in-out infinite;

}
/* ========================================
   左アクセントライン
======================================== */

.fixed-contact-link::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 8px;
    height: 100%;

    background:
        linear-gradient(
            to bottom,
            #fff9a0,
            #ffe600,
            #ffb800
        );

    box-shadow:
        0 0 12px #ffe600,
        0 0 24px #ffe600;

}

/* ========================================
   光が横切る演出
======================================== */

.fixed-contact-link::after {
    position: absolute;
    top: -30%;
    left: -45%;

    width: 28%;
    height: 160%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgb(255 255 255 / 80%),
            transparent
        );

    content: "";

    opacity: 0.8;

    transform: rotate(18deg);

    animation:
        fixedContactShine 3.2s ease-in-out infinite;
}


/* ========================================
   ホバー
======================================== */

.fixed-contact-link:hover {
    border-color: #fff27a;

    background:
        linear-gradient(
            135deg,
            #181200 0%,
            #332700 55%,
            #161000 100%
        );

    box-shadow:
        0 0 14px #ffe600,
        0 0 32px rgb(255 230 0 / 95%),
        0 0 64px rgb(255 230 0 / 65%),
        0 0 90px rgb(255 230 0 / 35%),
        inset 0 0 28px rgb(255 230 0 / 28%);

    transform:
        translateY(-5px)
        scale(1.04);

    animation:
        fixedContactCyanFlash 0.75s ease;
}

@keyframes fixedContactCyanFlash {

    0% {
        border-color: #ffe600;

        box-shadow:
            0 0 14px #ffe600,
            0 0 32px rgb(255 230 0 / 90%),
            0 0 60px rgb(255 230 0 / 55%);
    }

    45% {
        border-color: #25e9ff;

        background:
            linear-gradient(
                135deg,
                #001317 0%,
                #002a31 55%,
                #001015 100%
            );

        box-shadow:
            0 0 16px #25e9ff,
            0 0 38px rgb(37 233 255 / 95%),
            0 0 72px rgb(37 233 255 / 65%),
            inset 0 0 28px rgb(37 233 255 / 25%);
    }

    100% {
        border-color: #fff27a;

        background:
            linear-gradient(
                135deg,
                #181200 0%,
                #332700 55%,
                #161000 100%
            );

        box-shadow:
            0 0 14px #ffe600,
            0 0 32px rgb(255 230 0 / 95%),
            0 0 64px rgb(255 230 0 / 65%);
    }

}
/* ========================================
   アイコン
======================================== */

.fixed-contact-icon {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border: 1px solid #fff27a;
    border-radius: 10px;

    color: #111111;

    background:
        linear-gradient(
            135deg,
            #ffe600,
            #ffb800
        );

    font-size: 1.2rem;

    box-shadow:
        0 0 12px rgb(255 230 0 / 90%),
        0 0 24px rgb(255 230 0 / 55%);

}

/* ========================================
   文字
======================================== */

.fixed-contact-text {

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;

    color: #ffffff;

    font-size: .95rem;
    font-weight: 900;

    line-height: 1.3;

    letter-spacing: .07em;

    text-shadow:
        0 0 6px rgb(255 255 255 / 80%),
        0 0 14px rgb(255 230 0 / 80%),
        0 0 24px rgb(255 230 0 / 35%);

}
.fixed-contact-text::after {
    display: block;

    margin-top: 4px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #ffe600 0%,
            #ffe600 38%,
            #ffffff 48%,
            #25e9ff 52%,
            #ffe600 62%,
            #ffe600 100%
        );

    background-size: 240% 100%;
    background-position: 120% 0;

    background-clip: text;
    -webkit-background-clip: text;

    font-family:
        "Orbitron",
        sans-serif;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.28em;

    content: "CONTACT US";

    filter:
        drop-shadow(0 0 5px rgb(255 230 0 / 90%));

    animation:
        fixedContactTextScan 2.8s linear infinite;
}

@keyframes fixedContactTextScan {

    0%,
    35% {
        background-position: 120% 0;
    }

    70%,
    100% {
        background-position: -120% 0;
    }

}
/* ========================================
   常時発光
======================================== */

@keyframes fixedContactGlow{
    0%,
    100%{
        box-shadow: 0 0 10px rgb(255 230 0 / 75%),
        0 0 22px rgb(255 230 0 / 50%),
        0 0 42px rgd(255 230 0 / 30%),
        inset 0 0 20px rgb(255 230 0 / 16%);
    }
    50%{
        box-shadow: 0 0 16px rgb(255 230 0 / 100%),
        0 0 36px rgb(255 230 0 / 80%),
        0 0 66px rgb(255 230 0 / 55%),
        inset 0 0 26px rgb(255 230 0 / 28%),;
    }
}
/* ========================================
   光が横切るアニメーション
======================================== */

@keyframes fixedContactShine {

    0%,
    55% {
        left: -45%;
        opacity: 0;
    }

    65% {
        opacity: 0.9;
    }

    82% {
        left: 120%;
        opacity: 0.9;
    }

    100% {
        left: 120%;
        opacity: 0;
    }

}


/* ========================================
   タブレット
======================================== */

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

    .fixed-contact {
        right: 14px;
        bottom: 14px;
    }

    .fixed-contact-link {
        min-width: 270px;
        min-height: 58px;

        padding: 13px 20px;
    }

    .fixed-contact-icon {
        width: 38px;
        height: 38px;
    }

    .fixed-contact-text {
        font-size: 0.88rem;
    }

}


/* ========================================
   スマホ
======================================== */

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

    .fixed-contact {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .fixed-contact-link {
        width: 100%;
        min-width: 0;
        min-height: 60px;

        padding: 13px 16px;

        border-radius: 14px;
    }

    .fixed-contact-text {
        font-size: 0.84rem;
        letter-spacing: 0.04em;
    }

    .fixed-contact-text::after {
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

}

/* ========================================
   ネオンライン
======================================== */

.fixed-contact-link::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.45),
            transparent
        );

    transition:.7s;

}


/* ========================================
   ホバー
======================================== */

.fixed-contact-link:hover{

    transform:
        translateY(-4px)
        scale(1.03);

    border-color:#ff4fc6;

    box-shadow:
        0 0 18px rgba(255,79,198,.45),
        0 0 40px rgba(255,79,198,.28),
        0 0 70px rgba(255,79,198,.18);

}


.fixed-contact-link:hover::before{

    left:120%;

}


/* ========================================
   呼吸するネオン
======================================== */

.fixed-contact-link{

    animation:
        contactGlow 2.8s ease-in-out infinite;

}

@keyframes contactGlow{

    0%{

        box-shadow:
            0 0 12px rgba(255,80,200,.18),
            0 0 24px rgba(255,80,200,.08);

    }

    50%{

        box-shadow:
            0 0 22px rgba(255,80,200,.45),
            0 0 48px rgba(255,80,200,.25);

    }

    100%{

        box-shadow:
            0 0 12px rgba(255,80,200,.18),
            0 0 24px rgba(255,80,200,.08);

    }

}


/* ========================================
   アイコン
======================================== */

.fixed-contact-icon{

    display:flex;
    align-items:center;
    justify-content:center;

    width:38px;
    height:38px;

    border-radius:50%;

    background:
        rgba(255,80,200,.18);

    font-size:1.15rem;

    box-shadow:
        0 0 16px rgba(255,80,200,.45);

}


/* ========================================
   文字
======================================== */

.fixed-contact-text{

    display:flex;
    flex-direction:column;

    color:#ffffff;

    font-size:.88rem;
    font-weight:800;

    line-height:1.35;

    letter-spacing:.08em;

}

.fixed-contact-text::after{

    content:"CONTACT US";

    display:block;

    margin-top:3px;

    color:#ffe600;

    font-size:.62rem;

    font-family:"Orbitron",sans-serif;

    letter-spacing:.28em;

}


/* ========================================
   スマホ
======================================== */

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

    .fixed-contact{

        right:15px;
        left:15px;
        bottom:15px;

    }

    .fixed-contact-link{

        justify-content:center;

        padding:15px;

    }

}
/* ========================================
   フッター
======================================== */

.footer {
    position: relative;
    padding: 85px var(--side-space) 0;
    color: var(--color-white);
    background:
        radial-gradient(
            circle at 10% 20%,
            rgb(40 215 255 / 14%),
            transparent 30%
        ),
        var(--color-black);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding-bottom: 70px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo-image {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.footer-company-name {
    color: rgb(255 255 255 / 60%);
    font-size: 0.7rem;
}

.footer-site-name {
    font-size: 1.5rem;
    font-weight: 900;
    white-space: nowrap;
}
.footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 30px;
}

.footer-nav-item a {
    display: inline-flex;
    padding: 7px 0;
    color: rgb(255 255 255 / 72%);
    font-size: 0.9rem;
    transition:
        color var(--transition),
        transform var(--transition);
}

.footer-nav-item a:hover {
    color: var(--color-blue);
    transform: translateX(4px);
}

.footer-action {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 18px;
    border: 1px solid rgb(255 255 255 / 18%);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    transition:
        border-color var(--transition),
        background-color var(--transition);
}

.footer-action-link:hover {
    border-color: var(--color-blue);
    background-color: rgb(40 215 255 / 10%);
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 12%);
    padding: 22px var(--side-space);
    text-align: center;
}

.copyright {
    color: rgb(255 255 255 / 48%);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
}


/* ========================================
   キーボード操作時
======================================== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 4px;
}
::selection{

background:#25e9ff;

color:black;

}
/* ========================================
   メディア比率の統一
======================================== */

.about-image-wrap,
.facility-card-figure,
.character-image-frame {
    aspect-ratio: 16 / 10;
}

.about-image,
.facility-card-image,
.character-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.about-image-wrap .media-placeholder,
.facility-card-figure .media-placeholder,
.character-image-frame .media-placeholder {
    height: 100%;
    min-height: 0;

    border: 0;
    border-radius: inherit;
}