/* @import url("reset.css"); */

:root {
    --outer-width: 1366px;
    --middle-width: 1080px;
    --inner-width: 900px;
    --item-width: 660px;

    --key-color: #f94dbf;
    --sub-color: #5cdbfd;
}

html {
    font-family: "Noto Sans JP", sans-serif;
}

body {
    margin: 0;
}

main {
    padding-top: 52px;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

object {
    max-width: 100%;
    pointer-events: none;
}

a {
    color: #000;
    text-decoration: none;
}

p,
ul,
dl {
    font-size: 16px;
    line-height: 1.5;
}

/* MEDIA */
@media screen and (max-width: 639px) {
    .sp-dnone {
        display: none !important;
    }

    p,
    ul,
    dl {
        font-size: 14px;
    }
}

@media screen and (min-width: 640px) {
    .pc-dnone {
        display: none !important;
    }
}

/* ---------- PARTS ---------- */
/* BG */
main {
    position: relative;
    overflow: hidden;
}

main::after,
main::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 80%;
    background-image: url("../images/element/top/sphea.png");
    background-repeat: space;
    transform: rotate(-10deg);
    background-size: 100%;
}

main::after {
    top: 100vw;
    left: -60%;
}

main::before {
    top: 200px;
    left: 70%;
}

/* SECTION */
section {
    max-width: var(--outer-width);
    margin: 0 auto;
    /* padding: 20px; */
}

section.ly_banner {
    padding: 12px;
}

section.notice {
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
}
@media screen and (max-width: 639px) {
    section.notice {
        font-size: 22px;
    }
}

/* CONTENT INNER */
.content-inner {
    max-width: var(--inner-width);
    margin: 0 auto 100px;
}

.content-inner>*+* {
    margin-top: 20px;
}

/* IMAGE */
.normal-img.--radius {
    border-radius: 15px;
    overflow: hidden;
}

/* IS PAGE */
a.is-page {
    pointer-events: none;
}

/* TITLE */
.title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 28px;
    width: 80%;
    max-width: 500px;
    min-width: 300px;
    height: 5.7vw;
    max-height: 60px;
    min-height: 35px;
    margin: 30px auto 40px;
    background-image: url("../images/element/top/title.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.title.news .follow_btn {
    position: absolute;
    top: 50%;
    right: -112px;
    transform: translateY(-50%);
}

@media screen and (max-width: 639px) {
    .title {
        font-size: 24px;
    }

    .title.news {
        flex-direction: column;
        margin: 30px auto 80px;
    }

    .title.news .follow_btn {
        top: auto;
        bottom: -50px;
        right: 50%;
        transform: translateX(50%);
    }
}

/* SUB TITLE */
.sub-title {
    color: var(--key-color);
    text-align: center;
    font-size: 24px;
}

/* BUTTON */
.button {
    display: block;
    width: 80%;
    max-width: 300px;
    min-width: 200px;
    margin: 20px auto;
    text-align: center;
    color: var(--sub-color);
    font-weight: bold;
    border: 2px solid;
    padding: 10px 0;
}

/* PAGENATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination li>* {
    margin: 0 6px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    height: 33px;
    min-width: 25px;
    color: var(--sub-color);
    line-height: 1;
    font-size: 18px;
    font-weight: bold;
    padding: 0 5px;
    border: 2px solid;
    box-sizing: border-box;
}

.pagination li>span {
    background-color: var(--sub-color);
    color: #fff;
}

/* ADJUST MARGIN */
.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

/* ADJUST TEXT STYLE */
.txt-red {
    color: #ff4746;
}

.txt-yellow {
    color: #fce200;
}

.txt-spink {
    color: #f84546;
}

a.link-blue {
    color: #48c7ff;
    text-decoration: underline;
}

a.link-yellow {
    color: #ffe400;
    text-decoration: underline;
}

a.link-spink {
    color: #f84546;
    text-decoration: underline;
}

.txt-small {
    font-size: 12px;
}

.txt-l {
    font-size: 20px;
}

.fwb {
    font-weight: bold;
}

.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}

.notice .txt {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    transition: all 0.4s;
}

.notice .txt a {
    border-bottom: 1px solid;
}

.notice .txt a:hover {
    color: transparent;
    background: linear-gradient(135deg, #5cdbfd 15%, #f94dbf 85%);
    -webkit-background-clip: text;
}

@media screen and (max-width: 639px) {
    .notice .txt {
        width: 100%;
    }
}

/* ---------- HEADER ---------- */
header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    display: flex;
    background: #5cdbfd;
    background: linear-gradient(135deg, #5cdbfd 35%, #f94dbf 65%);
    border-bottom: 2px solid #fff;
}

.pgt {
    background: linear-gradient(to right, #000D43, #5E006A);
    color: #FFEECE;
}

.header__inner {
    max-width: var(--middle-width);
    width: 100%;
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    margin: auto auto 10px;
    padding: 0 20px;
}

.header__menu {
    display: flex;
    align-items: center;
    margin: 0 auto;
    list-style: none;
}

.header__menu__item {
    padding: 0 15px;
    position: relative;
}

.header__menu__item+.header__menu__item {
    border-left: 1px solid #ffffffa3;
}

.header__menu__item a {
    color: #fff;
    line-height: 1.5em;
    font-weight: 100;
}

@media screen and (max-width: 639px) {
    .header__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LOGO */
.logo__box {
    width: 150px;
}

/* LANGUAGE */
.header__lang {
    cursor: pointer;
    height: 40px;
    margin-left: auto;
}

.header__lang__inner {
    border-radius: 5px;
    background: #ffffff61;
    backdrop-filter: blur(7px);
}

.header__lang__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 15px;
}

.header__lang object {
    width: 25px;
    margin-right: 10px;
}

.header__lang__txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    width: 70%;
    color: #fff;
    filter: drop-shadow(0 0 5px #e436a6);
}

.header__lang__list {
    width: 100%;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    margin: 0;
}
#header__lang__list.show {
    opacity: 1;
    pointer-events: visible;
}

.header__lang__list__item {
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
}
#header__lang__list__item.show{
    height: 40px;
}


.header__lang__list__item a {
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #fff;
    filter: drop-shadow(0 0 5px #e436a6);
}

@media screen and (max-width: 899px) {
    .header__lang {
        margin-left: auto;
        display: block !important;
    }

    .header__lang[aria-hidden="false"] .header__lang__list {
        opacity: 1;
        pointer-events: auto;
    }

    .header__lang[aria-hidden="false"] .header__lang__list__item {
        height: 40px;
    }

    .header__lang[aria-hidden="false"] .header__lang__close__bg {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        z-index: 100;
        display: block;
    }

    .header__lang[aria-hidden="false"] .header__lang__inner {
        position: relative;
        z-index: 101;
    }

    .header__lang {
        position: relative;
        margin-right: 54px;
    }

    .header__lang[aria-hidden="false"] .header__lang__btn__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 33px;
        z-index: 102;
    }
}

@media screen and (min-width: 900px) {
    .header__lang__btn {
        pointer-events: none;
    }

    .header__lang:hover .header__lang__list {
        opacity: 1;
        pointer-events: auto;
    }

    .header__lang:hover .header__lang__list__item {
        height: 40px;
    }

    .header__lang__btn__overlay,
    .header__lang__close__bg {
        display: none;
    }
}

/* ---------- FOOTER ---------- */
footer {
    padding-top: 20px;
}

.footer__logo {
    width: 35%;
    max-width: 500px;
    margin: 0 auto;
}

.footer__logo a {
    display: block;
}

.footer__inner {
    background-color: var(--sub-color);
    color: #000;
    text-align: center;
    padding: 20px;
}

.footer__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    list-style: none;
    padding: 0;
}

.footer__menu>*+* {
    margin-left: 20px;
}

.footer__copyright {
    font-size: 12px;
    margin: 70px auto;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

@media screen and (max-width: 640px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }
}