/* ======================================
   RESET
====================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:#ffffff;

    color:#000000;

    font-family:"Noto Serif JP",serif;

    overflow-x:hidden;

}



/* ======================================
Scrollbar
====================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#050505;

}

::-webkit-scrollbar-thumb{

    background:#b40028;

}



/* ======================================
Loading
====================================== */

#loading{

    position:fixed;

    inset:0;

    background:#05070d;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loadingBox{

    text-align:center;

}

.loadingBox h2{

    display:inline-block;

    font-family:"Cinzel", serif;

    font-size:73px;      /* ローディングタイトル文字サイズ */

    font-weight:500;

    letter-spacing:10px;
    color:#fff;

    margin:25px 0;

    overflow:hidden;
    white-space:nowrap;

    border-right:2px solid #fff;

    width:0;

    animation:
        typing 1.5s steps(8,end) forwards,
        blink .7s infinite;

}

.loadingBox p{

    font-size:30px;

    letter-spacing:6px;

}

.loadingBox span{

    display:block;

    margin-top:0px;

    font-size:25px;

    color:#fff;

    letter-spacing:6px;

}

@keyframes typing{

    from{
        width:0;
    }

    to{
        width:8ch;
    }

}

@keyframes blink{

    50%{
        border-color:transparent;
    }

}

/* ======================================
HEADER
====================================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:25px 20px;

    text-align:center;

    z-index:100;

}

header::before{

    content:"";

    position:absolute;

    inset:0;

    backdrop-filter:blur(10px);

    background:rgba(0,0,0,.15);

    z-index:-1;

}

.logo{

    font-family:"Cinzel",serif;

    letter-spacing:8px;

    font-size:28px;

}

nav{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:20px 35px;       /* 縦 横 */

}

nav a{

    color:white;

    text-decoration:none;

    letter-spacing:4px;

    font-size:16px;

    transition:.3s;

}

nav a:hover{

    color:#ff4040;

}

/* ======================================
HERO
====================================== */


.hero{

    position:relative;

    width:100%;

    height:140vh;

    overflow:hidden;

}

.heroImage{

    position:absolute;

    top:0px;
    left:0px;

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center top;

}

/* ======================================
OVERLAY
====================================== */

.overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,.0),      /* TOP絵明るさ */
        rgba(0,0,0,.0)      /* TOP絵明るさ */
    );

}

/* ======================================
TEXT
====================================== */

.heroText{

    position:absolute;

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    z-index:5;

    transform:translateY(250px);

}

.case{

    letter-spacing:8px;

    color:#cccccc;

    margin-bottom:20px;

}

.hero h1{

    font-family:"Cinzel",serif;

    font-size:5vw;

    letter-spacing:25px;

    font-weight:500;

    color:#ffffff;

}

.sub{

    margin-top:25px;

    line-height:2.4;

    letter-spacing:6px;

    color:#d8d8d8;

}

/* ======================================
MESSAGE
====================================== */

.message{

    margin-top:80px;

    font-size:1.5rem;

    letter-spacing:4px;

}

.message p{

    display:inline-block;

    padding:12px 30px;

    border-left:3px solid #d5002b;

    border-right:3px solid #d5002b;

}

/* ======================================
SCROLL
====================================== */

.scroll{

    position:absolute;

    bottom:40px;

    left:50%;

    transform:translateX(-50%);

    letter-spacing:6px;

    font-size:.75rem;

    color:#ffffff;

}

.scroll::after{

    content:"";

    display:block;

    width:1px;

    height:70px;

    background:white;

    margin:15px auto;

    animation:scrollLine 2s infinite;

}

@keyframes scrollLine{

    0%{

        transform:scaleY(0);

        transform-origin:top;

    }

    50%{

        transform:scaleY(1);

    }

    100%{

        transform:scaleY(0);

        transform-origin:bottom;

    }

}

/* ======================================
SECTION
====================================== */

section{

    padding:130px 8%;

}

.content{

    max-width:1300px;

    margin:auto;

}

.content p{

    font-size:18px;      /* すべてのコンテンツの説明文字サイズ */

    color:#000000;

    line-height:2.2;

}

section h2{

    font-family:"Cinzel",serif;

    font-size:40px;

    margin-bottom:20px;

    letter-spacing:5px;

}

/* ======================================
LINE
====================================== */

.line{

    width:120px;

    height:2px;

    background:#d5002b;

    margin-bottom:40px;

}

/* ======================================
WORLD
====================================== */

.worldGrid{

    margin-top:60px;

    display:grid;

    grid-template-columns:

    repeat(2,1fr);

    gap:30px;

}

.worldGrid div{

    border:1px solid rgba(255,255,255,.08);

    background:

    rgba(255,255,255,.03);

    backdrop-filter:blur(10px);

    padding:45px;

    transition:.4s;

}

.worldGrid div:hover{

    transform:translateY(-10px);

    border-color:#d5002b;

}

.worldGrid h3{

    font-family:"Cinzel",serif;

    margin-bottom:20px;

    letter-spacing:4px;

}

.worldGrid p{

    color:#aaa;

}

/*======================================
CHARACTER
======================================*/

.character{

    background:#fff;

    color:#111;

    padding:150px 10%;

}

.characterCard{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:90px;

    max-width:1300px;

    margin:80px auto 0;

}

.characterImage{

    flex:0 0 auto;

    display:flex;

    justify-content:center;

    align-items:center;

}

.characterImage img{

    width:auto;          /* 原寸表示 */
    max-width:100%;      /* 画面からはみ出す場合だけ縮小 */
    height:auto;

    display:block;

}

.characterProfile{

    flex:1;

}

.kana{

    color:#999;

    font-size:15px;

    letter-spacing:6px;

}

.characterProfile h3{

    margin:15px 0;

    font-size:52px;

    font-weight:300;

    letter-spacing:8px;

}

.en{

    color:#b71c1c;

    font-size:15px;

    letter-spacing:5px;

    margin-bottom:35px;

}

.line{

    width:90px;

    height:2px;

    background:#b71c1c;

    margin-bottom:35px;

}

.description{

    margin-bottom:45px;

    color:#000;

    font-size:16px;

    line-height:2.3;

    letter-spacing:2px;

}

.status{

    width:100%;

    max-width:420px;

    border-collapse:collapse;

}

.status th{

    width:130px;

    padding:15px 0;

    border-bottom:1px solid #ddd;

    text-align:left;

    color:#999;

    font-weight:400;

    letter-spacing:3px;

}

.status td{

    padding:15px 0;

    border-bottom:1px solid #ddd;

    letter-spacing:2px;

}

/*======================================
Responsive
======================================*/

@media (max-width:900px){

.characterCard{

    flex-direction:column;

    gap:30px;

    text-align:center;

}

@media (max-width:900px){

.characterImage{

    width:103%;
    margin:0 auto;
    text-align:center;

}

.characterImage img{

    width:103%;
    max-width:900px;
    margin:0 auto;

}

}

.characterProfile{

    width:103%;          /* スマホ版　キャラクター説明　余白 */

    margin:0 auto;

}

.line{

    margin:10px auto;

}

.status{

    margin:0 auto;

}

.status th{

    width:150px;

}

.characterProfile h3{

    font-size:50px;   /* スマホ用　名前欄　文字サイズ */

    letter-spacing:4px;

}

}

/*======================================
NEWS
======================================*/

#news{

    max-width:1200px;

    margin:auto;

}

#news ul{

    list-style:none;

    margin-top:60px;

}

#news li{

    font-size:15px;

    display:flex;

    gap:60px;

    padding:28px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

#news li:hover{

    padding-left:20px;

    border-color:#d5002b;

}

#news span{

    width:160px;

    color:#d5002b;

}

/*======================================
STAFF
======================================*/

.staff{

    background:#ffffff;

    color:#111;

    padding:180px 10%;

}

.staffTable{

    max-width:1200px;

    margin:70px auto 0;

    border:2px solid #b71c1c;

}

.staffRow{

    display:grid;

    grid-template-columns:1fr 1fr;

}

.staffRow:not(:last-child){

    border-bottom:1px solid #b71c1c;

}

.staffCell{

    padding:40px;

    min-height:170px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.staffCell:first-child{

    border-right:1px solid #b71c1c;

}

.staffRole{

    font-family:"Share Tech Mono", monospace;

    font-size:15px;

    letter-spacing:3px;

    color:#b71c1c;

    margin-bottom:18px;

    text-transform:uppercase;

}

.staffName{

    font-family:"Noto Serif JP", serif;

    font-size:36px;

    font-weight:600;

    letter-spacing:4px;

    color:#111;

}


@media(max-width:900px){

.staffRow{

    grid-template-columns:1fr;

}

.staffCell:first-child{

    border-right:none;

    border-bottom:1px solid #b71c1c;

}

.staffName{

    font-size:28px;

}

.staffCell{

    padding:30px;

}

}


/*======================================
Fade Animation
======================================*/

.fade{

    opacity:0;

    transform:translateY(60px);

    transition:1.2s;

}

.fade.show{

    opacity:1;

    transform:translateY(0);

}

body::before{

    content:"";

    position:fixed;

    inset:0;

    background:

    radial-gradient(

    circle at top,

    rgba(213,0,43,.08),

    transparent 45%

    );

    pointer-events:none;

    z-index:-1;

}

/*======================================
Responsive
======================================*/

@media(max-width:1000px){

header{

    padding:20px;

}

nav{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px 20px;

}

nav a{

    font-size:14px;
    letter-spacing:2px;

}

.hero h1{

    font-size:60px;
    letter-spacing:10px;

}

section{

    padding:90px 8%;

}

section h2{

    font-size:2.8rem;

}

.characterArea{

    flex-direction:column;
    text-align:center;
    gap:30px;
    min-height:auto;

}

.characterInfo h3{

    font-size:2.5rem;

}

.worldGrid{

    grid-template-columns:1fr;

}

#news li{

    flex-direction:column;
    gap:10px;

}

}

/*======================================
GLITCH
======================================*/

.glitch{

animation:glitch .18s;

}

@keyframes glitch{

0%{

transform:translate(0);

}

20%{

transform:translate(-3px,2px);

}

40%{

transform:translate(3px,-2px);

text-shadow:

3px 0 red,

-3px 0 cyan;

}

60%{

transform:translate(-2px,1px);

}

100%{

transform:translate(0);

}

}

.loadingBox{

    color:#ffffff;

}

/*======================================
Notice
======================================*/

.notice{

    max-width:900px;

    margin:60px auto 0;

    padding:35px 40px;

    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.03);

    line-height:2;

    color:#d0d0d0;

}

.notice h3{

    font-family:"Cinzel", serif;

    font-size:24px;

    color:#000;

    margin-bottom:25px;

    letter-spacing:3px;

}

.notice hr{

    margin:35px 0;

    border:none;

    border-top:1px solid rgba(255,255,255,.15);

}

/*======================================
About
======================================*/

.about{

    position:relative;

    background:#fff;

    color:#111;

    padding:180px 10%;

    overflow:hidden;

}

.aboutInner{      /* はじめに、まで */

    max-width:1050px;

    margin:0 auto;

    text-align:left;

    position:relative;

    z-index:5;

}

.aboutCenter{      /* A.L.I.C.E.の部分 */

    text-align:left;

}

.aboutText{      /* PC版　説明文　文字サイズ */

    font-size:16px;

    max-width:900px;

    margin:0 auto;

    line-height:2.3;

    color:#000;

    text-align:left;

}

.aboutImage{

    display:block;

    width:100%;
    max-width:900px;

    height:auto;

    margin:60px auto;

}

.miniTitle{

    font-size:10px;

    letter-spacing:2px;

    color:#777;

}

.about h2{

    margin-top:25px;

    font-size:35px;

    letter-spacing:5px;

}

.jp{

    margin-top:5px;

    color:#000;

}

.aboutLogo{

    margin:70px 0;

    font-size:35px;

    letter-spacing:15px;

}

.aboutButton{

    display:inline-block;

    margin-top:60px;

    padding:18px 70px;

    border:1px solid #222;

    text-decoration:none;

    color:#222;

    transition:.3s;

}

.aboutButton:hover{

    background:#111;

    color:#fff;

}

.bgWord{

    position:absolute;

    top:20px;

    left:-30px;

    font-size:100px;

    font-weight:bold;

    color:#f4f4f4;

    letter-spacing:10px;

    user-select:none;

    z-index:0;

}

@media(max-width:900px){

.aboutText{

    font-size:13px;      /* スマホ版　説明文　文字サイズ */

}

}

/*======================================
INTRODUCTION
======================================*/

.intro{

    background:#fff;

    color:#111;

    padding:180px 10%;

}

.introHeader{

    max-width:1200px;

    margin:0 auto;

}

.miniTitle{

    font-size:13px;

    color:#999;

    letter-spacing:2px;

}

.introHeader h2{

    margin-top:20px;

    font-size:45px;

    font-weight:500;

    letter-spacing:5px;

}

/*==========================
Catch Copy
==========================*/

.introCatch{

    text-align:center;

    margin:120px 0;

}

.catch{

    font-size:30px;

    line-height:1.8;

    font-family:"Noto Serif JP",serif;

    font-weight:300;

    letter-spacing:3px;

}

.introCatch h1{

    margin:60px 0 35px;

    font-family:"Cinzel",serif;

    font-size:70px;   /* PC用　文字サイズ */

    letter-spacing:12px;

}

.subCatch{

    font-size:20px;

    color:#000;

    letter-spacing:4px;

}

/*==========================
Prologue、Introduction
==========================*/

.introBody{

    display:block;

    max-width:1200px;

    margin:60px auto 0;

}

.introImage{

    width:103%;

    display:flex;

    justify-content:center;

}

.introImage img{

    width:103%;

    max-width:1200px;

    height:auto;

    display:block;

}

.introText{

    font-size:18px;

    line-height:2.5;

    color:#000;

    text-align:center;

}

.introText strong{

    color:#ff0000;

    font-weight:500;

}

/*======================================
WORK INFORMATION
======================================*/

.workInfo{

    background:#ffffff;

    color:#111;

    padding:180px 10%;

}

.workTable{

    max-width:1000px;

    margin:70px auto 0;

    border-top:2px solid #b71c1c;

}

.workRow{

    display:grid;

    grid-template-columns:240px 1fr;

    border-bottom:1px solid #ddd;

}

.workTitle{

    background:#fafafa;

    padding:28px 35px;

    font-family:"Share Tech Mono", monospace;

    color:#b71c1c;

    letter-spacing:3px;

    font-size:15px;

    border-right:1px solid #ddd;

}

.workContent{

    padding:28px 35px;

    line-height:2;

    letter-spacing:1px;

    color:#333;

}

.workContent strong{

    display:block;

    margin-bottom:5px;

    color:#111;

    font-size:17px;

}

.workContent a{

    color:#555;

    word-break:break-all;

    transition:.3s;

}

.workContent a:hover{

    color:#b71c1c;

}


@media(max-width:900px){

.workRow{

    grid-template-columns:1fr;

}

.workTitle{

    border-right:none;

    border-bottom:1px solid #ddd;

    padding:18px 22px;

}

.workContent{

    padding:25px 22px;

}

}


/*======================================
KEYWORDS
======================================*/

.keywords{

    background:white;

    padding:180px 10%;

}

.keywords h2{

    margin-top:20px;

    font-size:44px;

    letter-spacing:5px;

}

.keywordGrid{

    margin-top:90px;

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:25px;

}

.keywordGrid span{

    padding:18px 45px;

    border:1px solid #ddd;

    letter-spacing:3px;

    font-size:18px;

    transition:.3s;

}

.keywordGrid span:hover{

    background:#111;

    color:white;

}

/*======================================
STORY
======================================*/

.storySection{

    background:#fff;

    padding:180px 10%;

}

.storySection .content{

    max-width:1200px;

    margin:0 auto;

}

.storySection h2{

    margin-top:20px;

    font-size:45px;

}

.storyText{

    max-width:1100px;

    margin:80px auto 0;

}

.storyText p{

    font-size:18px;

    line-height:2.6;

    color:#000;

}

/*======================================
Responsive
======================================*/

@media(max-width:900px){

.introBody{

    grid-template-columns:1fr;

}

.catch{

    font-size:28px;

}

.introCatch h1{

    font-size:47px;   /* スマホ用　文字サイズ */

    letter-spacing:6px;

}

.infoGrid{

    grid-template-columns:1fr;

}

.keywordGrid{

    justify-content:flex-start;

}

.storyText p{

    font-size:16px;

}

.noticeBox{

    padding:35px;

}

}

/*======================================
CREDITS
======================================*/

.credits{

    padding:180px 10%;

    background:#ffffff;

}

.creditLead{

    margin-top:30px;

    color:#000;

    line-height:2;

    margin-bottom:70px;

}

/*======================================*/

.credits details{

    border-top:1px solid #ddd;

    padding:25px 0;

}

.credits details:last-child{

    border-bottom:1px solid #ddd;

}

/*======================================*/

.credits summary{

    cursor:pointer;

    list-style:none;

    font-size:28px;

    font-family:"Cinzel", serif;

    letter-spacing:3px;

    position:relative;

    padding-right:40px;

}

.credits summary::-webkit-details-marker{

    display:none;

}

/*======================================*/

/* ＋マーク */

.credits summary::after{

    content:"+";

    position:absolute;

    right:0;

    top:0;

    font-size:28px;

    transition:.3s;

}


/* 開いた時 */

details[open] summary::after{

    content:"−";

}

/*======================================*/

.credits ul{

    margin-top:35px;

    padding-left:0;

    list-style:none;

}

/*======================================*/

.credits li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 0;

    border-bottom:1px solid #f2f2f2;

    color:#000;

    line-height:1.8;

}

.credits li:last-child{

    border:none;

}

/*======================================*/

.credits a{

    color:#000000;

    text-decoration:none;

    transition:.3s;

}

.credits a:hover{

    color:#b71c1c;

}


/*======================================*/

@media(max-width:768px){

.credits summary{

    font-size:22px;

}

.credits li{

    display:block;

}

.credits li a{

    display:block;

    margin-top:5px;

}

}



.credits details ul{

    opacity:0;

    transform:translateY(-10px);

    transition:
        opacity .35s ease,
        transform .35s ease;

}

.credits details[open] ul{

    opacity:1;

    transform:translateY(0);

}

/*======================================
WORLD
======================================*/

.world{

    padding:180px 10%;
    background:#ffffff;
    color:#222;

}

.worldLead{

    margin-top:30px;
    margin-bottom:70px;

    color:#000;

    line-height:2.3;
    letter-spacing:1.5px;

}

/*======================================
Accordion
======================================*/

.world details{

    border-top:1px solid #e5e5e5;

}

.world details:last-child{

    border-bottom:1px solid #e5e5e5;

}

/*======================================
Summary
======================================*/

.world summary{

    cursor:pointer;

    list-style:none;

    padding:28px 0;

    font-family:"Cinzel",serif;

    font-size:26px;

    color:#111;

    letter-spacing:4px;

    transition:.3s;

}

.world summary:hover{

    color:#b71c1c;

}

.world summary::-webkit-details-marker{

    display:none;

}

/*======================================
FILE
======================================*/

.file{

    display:inline-block;

    margin-right:25px;

    padding:5px 12px;

    border:1px solid #b71c1c;

    color:#b71c1c;

    font-size:12px;

    letter-spacing:3px;

}

/*======================================
Content
======================================*/

.worldContent{

    padding:10px 0 70px;

}

/*======================================
World Item
======================================*/

.worldItem{

    margin-bottom:60px;

}

.worldItem h3{

    font-size:26px;

    color:#111;

    letter-spacing:2px;

    margin-bottom:15px;

}

.worldItem h4{

    color:#b71c1c;

    font-size:14px;

    letter-spacing:2px;

    margin-bottom:25px;

}

.worldItem p{

    color:#000;

    line-height:2.4;

    letter-spacing:1.5px;

}

/*======================================
Timeline
======================================*/

.timeline{

    border-left:2px solid #dddddd;

    margin-left:20px;

}

.event{

    position:relative;

    padding:0 0 60px 40px;

}

.event:last-child{

    padding-bottom:0;

}

.event::before{

    content:"";

    position:absolute;

    width:12px;

    height:12px;

    border-radius:50%;

    background:#b71c1c;

    left:-7px;

    top:8px;

}

.date{

    display:inline-block;

    margin-bottom:15px;

    color:#000;

    font-size:13px;

    letter-spacing:3px;

}

.event h3{

    color:#111;

    font-size:28px;

    margin-bottom:18px;

    letter-spacing:2px;

}

.event p{

    color:#000;

    line-height:2.3;

    letter-spacing:1.5px;

}

/*======================================
Animation
======================================*/

.world details .worldContent{

    opacity:0;

    transform:translateY(-8px);

    transition:.35s;

}

.world details[open] .worldContent{

    opacity:1;

    transform:translateY(0);

}

/*======================================
FOOTER
======================================*/

footer{

    padding:70px;

    text-align:center;

    border-top:1px solid rgba(255,255,255,.05);

}

footer p{

    color:#000;

    letter-spacing:3px;

}

html{

    scroll-behavior:smooth;

}

/*======================================
Responsive Layout
======================================*/

@media(max-width:900px){

/* -----------------------
共通
----------------------- */

section{

    padding:90px 5%;

}

/* -----------------------
About
----------------------- */

.aboutInner{

    width:100%;
    max-width:none;

}

.aboutImage{

    width:100%;
    margin:45px auto;

}

/* -----------------------
Introduction
----------------------- */

.introHeader,
.storyText,
.creditLead,
.worldLead{

    width:100%;
    max-width:none;

}

/* -----------------------
Character
----------------------- */



/* -----------------------
Work Information
----------------------- */

.workTable{

    width:100%;

}

/* -----------------------
Staff
----------------------- */

.staffTable{

    width:100%;

}

/* -----------------------
World
----------------------- */

.worldContent{

    padding-bottom:40px;

}

.worldLead{

    max-width:950px;

    margin:30px auto 70px;

}

@media(max-width:900px){

.worldContent{

    padding:10px 8px 60px;

}

}

/* -----------------------
Keywords
----------------------- */

.keywordGrid{

    justify-content:center;

}

.keywordGrid span{

    padding:14px 26px;

    font-size:16px;

}

/* -----------------------
Credits
----------------------- */

.credits li{

    padding:18px 0;

}

}

@media (max-width:900px){

.heroImage{

    width:100%;
    height:auto;

    position:absolute;

    left:0%;
    top:-5%;

    transform:translateX(0%);

    object-fit:contain;

}

}

.storyScroll{

    display:flex;
    flex-direction:column;
    align-items:center;

    margin-top:80px;
    margin-bottom:10px;

    color:#fff;

    font-family:"Cinzel", serif;
    letter-spacing:5px;
    font-size:13px;

}

.storyScroll{

    text-align:center;

    margin-top:70px;

}

@media(max-width:900px){

.storyScroll{

    margin-top:60px;

    font-size:11px;

    letter-spacing:3px;

}

.storyScroll::after{

    height:50px;

}

}

@media(max-width:900px){

.world summary{

    line-height:1.8;

}

.file{

    display:block;

    width:fit-content;

    margin:0 0 12px 0;

}

}

@media(max-width:900px){

footer{

    padding:40px 12px;

}

footer p{

    font-size:12px;
    letter-spacing:1px;
    line-height:1.8;

}

}

