@charset "utf-8";

:root{
    --color-base:#6D6C7E;
    --color-main: #000;
    --color-accent: ;
}

html {
    font-family:"Yu Gothic Medium",
                "游ゴシック Medium",
                "游ゴシック体",
                "メイリオ",
                sans-serif;
    font-weight: normal;
    line-height: 1.7;
    height: auto;
    color: var(--color-main);
    overflow-x: hidden;
    word-break: break-all;
}
body {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    background-color: #000;
}

p{
    font-size: 14px;
}
h2{
    font-size: 15px;
}
a{
    color:#7457af;
}

.main-visual{
    width: 100%;
    height: 90vh;
    position: relative;
    background-color: var(--color-base);
    max-width: 800px;
}
.logo{
    z-index: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.xany{
    z-index: 99;
    position: absolute;
    width: 90%;
    top: 0;
}
.wanted{
    z-index: 10;
    position: absolute;
    width: 23%;
    top: 30%;
}
.waste{
    z-index: 0;
    position: absolute;
    right: 0;
    top: 49%;
    width: 20%;
}
.laila{
    z-index: 0;
    position: absolute;
    margin-left: 2%;
    bottom: 0;
    right: 0;
}
.axe{
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
}
.splay{
    z-index: 10;
    position: absolute;
    bottom: 0;
    width: 40%;
}



.content{
    background-color: var(--color-main);
    color: #ffffff;
}

.void {
    height: 10vh;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    background-color: #000;
    margin-top: -5vh;
    z-index: 200;
}
.boder{
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
}
.boder-item{
    align-items: center;

}

.line {
    border-bottom: solid 1px #4b4b4b;
    }

.episode-item{
    padding: 1rem 1.5rem;
    display: grid;
	grid-template-columns: 1fr 2fr;
}

.episode-text{
    margin-left: 1.5rem;
    position: relative;
}
.episode-thumb{
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #818181;
}
.date{
    color: #818181;
    position: absolute; /*自由に配置する指定*/
    bottom: 0; /*下寄せの指定*/
    margin: 0;
}

.sns{
    width: 100%;
    text-align: center;
    /* display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 1.5rem; */
    padding: 10%;
    background-image: url(images/miniature.jpg);
    background-size: cover;
    background-position: center;
}

.sns a{
    color: #ffffff;
    /* text-decoration: none; */
}

.sns img{
    border-radius: 100%;
    width: 30%;
    margin: 0 auto;
    z-index: 10;
}

.sns-right{
    margin-top: 1rem;
}

footer{
    background-color: var(--color-main);
}
footer p{
    text-align: center;
    padding: 1.5rem;
    color: #ffffff;
}

.wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    max-width: 470px; /* スマホ版の横幅に合わせる */
    max-height: 640px; /* スマホ版の縦幅に合わせる */
    object-fit: contain; /* 比率を維持し、余白が黒くなる */
}

/* メディアクエリで画面幅が小さい場合に対応 */
@media (max-width: 470px) {
    .wrapper {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
    }
    
}

/* PCやタブレットで余白を黒く塗りつぶす */
@media (min-width: 411px) {
    body {
        background-color: black; /* 黒い余白を作る */
    }
    
}