@charset "UTF-8";

/* CSS Document */


/*-- 共通部分 --*/

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans JP", sans-serif, century-gothic, "Century Gothic", "Century Gothic W01", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, Meiryo, メイリオ, sans-serif;
    line-height: 1.4;
    color: #eeeeee;
    font-size: 1.2rem;
    font-feature-settings: "palt" word-break: break-all;
    width: 100vw;
    background: #000;
    position: relative;
    overflow-x: hidden;
}

@media screen and (max-width: 479px) {
    body {
        font-size: 1.0rem;
    }
}

br.sp_only {
    display: none;
}

@media screen and (max-width: 479px) {
    br.sp_only {
        display: block;
    }
}

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

ul {
    list-style: none;
}

li {
    list-style: none;
}

p {
    letter-spacing: 0.05em;
    font-size: 1.2rem;
}

@media screen and (max-width: 479px) {
    p {
        font-size: 4vw;
    }
    .url {
        font-size: 0.8rem;
        letter-spacing: -0.001em;
    }
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.centerleft {
    margin: 0em auto;
    max-width: 1200px;
    width: max-content;
    text-align: left;
    padding: 0 0.5em;
}

@media screen and (max-width: 1199.98px) {
    .centerleft {
        width: 90%;
    }
}

@media screen and (max-width: 559.98px) {
    .centerleft {
        width: calc(100% - 1em);
    }
}

a {
    text-decoration: none;
}


/*-- For Links --*/

a,
a:active,
a:visited,
a:focus,
a:hover {
    color: #777;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

a {
    color: #3e3e3e;
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.mt20 {
    margin-top: 20px;
}

.mt40 {
    margin-top: 40px;
}

@media screen and (max-width: 959px) {
    .mt20 {
        margin-top: 15px;
    }
    .mt40 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 479px) {
    .mt20 {
        margin-top: 10px;
    }
    .mt40 {
        margin-top: 15px;
    }
}


/* show only  SP/PC*/

.sp-only {
    display: none;
}

.tablet-only {
    display: none;
}

.pc-only {
    display: block;
}

@media screen and (max-width: 959px) {
    .sp-only {
        display: none;
    }
    .tablet-only {
        display: block;
    }
    .pc-only {
        display: none;
    }
}

@media screen and (max-width: 479px) {
    .sp-only {
        display: block;
    }
    .tablet-only {
        display: none;
    }
    .pc-only {
        display: none;
    }
}


/* KEYFRAMES */

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(359deg);
    }
}


/* Loading */

#loading {
    width: 100vw;
    height: 100vh;
    background: #000002;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100000;
    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;
}


/*
 header
*/

.header {
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.8);
    width: calc(50vw - 360px);
    min-width: 170px;
    height: 100vh;
    background-size: cover;
    position: fixed;
    z-index: 100000;
    top: 0;
}

@media screen and (max-width: 959px) {
    .header {
        top: 0;
        height: 0;
    }
}

.header::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.header__top {
/*    background-color: rgba(0, 0, 0, 0.8);*/
    width: calc(10vh * 12 * 3);
    overflow-x: hidden;
    background-size: contain;
    height: 10vh;
    background-repeat: repeat-x;
    position: fixed;
    bottom: 0;
    z-index: 1000;
    filter: grayscale(100%) brightness(120%);
    animation: header-scroll 10s linear;
    animation-iteration-count: infinite;
}

@keyframes header-scroll {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-60vh);
        filter: grayscale(0%)
    }
    100% {
        transform: translateX(-120vh);
        filter: grayscale(100%)
    }
}

@media screen and (max-width: 959px) {
    .header__top {
        animation: header-scroll 20s linear;
    }
}

.header-wrapper {
    opacity: 1;
    transition: .8s ease-in-out;
}

.header-wrapper.hide {
    opacity: 0;
    transition: .8s ease-in-out;
}

.link_btn {
    position: fixed;
    bottom: 0;
    right: calc(50% - 330px);
    z-index: 100000;
    line-height: 6vh;
    background: rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 959px) {
    .link_btn {
        font-size: 3vh;
        line-height: 6vh;
        right: 10vh;
        z-index: 10000;
    }
}

a.menu-link {
    font-size: 5vh;
    padding: 0 2vh;
    transform: skew(1deg, 0.5deg);
    font-style: italic;
}

a.menu-link span {
    float: right;
    font-size: 3vh;
    line-height: 8vh;
}

#top-news a.menu-link {
    width: 100%;
}

.header__inner {
    position: relative;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    background-image: url(../images/header-left-bg.jpg);
    background: linear-gradient(-80deg, #333, #333 50%, #eee 100%);
    background-blend-mode: darken;
    background-size: cover;
    animation: bg 8s steps(10) infinite;
}

@keyframes bg {
    to {
        background-position: 0 0;
    }
    10% {
        background-position: -0.05% -0.1%;
    }
    20% {
        background-position: -0.15% 0.05%;
    }
    30% {
        background-position: 0.07% -0.25%;
    }
    40% {
        background-position: 0.20% 0.25%;
    }
    50% {
        background-position: -0.25% 0.10%;
    }
    60% {
        background-position: 0.15% 0.05%;
    }
    70% {
        background-position: 0 0.15%;
    }
    80% {
        background-position: 0.25% 0.35%;
    }
    90% {
        background-position: -0.10% 0.10%;
    }
}

@media screen and (max-width: 959px) {
    .header__inner {
        top: 0;
        height: calc(10vh + 10px);
        background-image: none;
        background: transparent;
        width: 100vw;
        background-size: contain;
        background-position: top;
        overflow-y: hidden;
    }
    .header__inner .header__left {
        width: 80vw;
        position: absolute;
        left: 10vw;
        overflow-y: scroll;
    }
}

.header__logo img {
    height: 15vh;
    margin: 1vh;
    vertical-align: middle;
}

@media screen and (max-width: 959px) {
    .header__logo img {
        height: calc(10vh + 10px);
        ;
        margin: 0;
    }
}

@media screen and (max-width: 479px) {
    .header__logo img {}
}

nav.header__right {
    position: absolute;
    margin-top: 18vh;
    margin-left: 0px;
    width: 100%;
}

@media screen and (max-width: 959px) {
    nav.header__right {
        margin-top: 0;
        margin-left: 8vh;
        width: calc(100vw - 8vh);
    }
}

@media screen and (max-width: 479px) {
    nav.header__right {
        margin-left: 50px;
        width: calc(100vw - 50px);
    }
}

.header__logo {
    transform: translateZ(15px);
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
}

@media screen and (max-width: 959px) {
    .header__logo {
        left: 0;
    }
    .header__logo a:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 479px) {
    .header__logo {}
}

.header__link {
    width: 100%;
}

@media screen and (max-width: 959px) {
    .header__link {
        display: block;
        height: 90vh;
        width: 95vw;
    }
}

@media screen and (max-width: 479px) {
    .header__link {
        padding-left: 0;
        justify-content: left;
        -webkit-justify-content: left;
        -ms-justify-content: left;
    }
}

.header__link-list,
.lang-item {
    text-align: right;
    font-weight: bold;
    font-size: 4vh;
    font-style: italic;
    padding-left: 1rem;
    padding-right: 1rem;
    line-height: 1.5;
}

.header__link a::after {
    position: absolute;
    left: 0;
    content: '';
    width: calc(100% - 1vw);
    height: 0.5px;
    background: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
}

.header__link a:hover::after {
    transform: scale(1, 1);
}

li.lang-item.lang-item-en {
    font-size: 3vh;
}

li.lang-item.lang-item-zh-cn,
li.lang-item.lang-item-zh-tw {
    font-size: 2.4vh;
}

@media screen and (max-width: 959px) {
    .header__link-list,
    .lang-item {
        font-size: 5vh;
        text-align: left;
        height: 6vh;
        padding-top: 0.4rem;
        padding-bottom: 0.4rem;
        padding-right: 0;
        text-align: right;
    }
    li.lang-item.lang-item-en {
        height: 5vh !important;
        font-size: 3.5vh;
    }
    li.lang-item.lang-item-zh-cn,
    li.lang-item.lang-item-zh-tw {
        height: 5vh !important;
        font-size: 2.8vh;
    }
}

@media screen and (max-width: 479px) {
    .header__link-list,
    .lang-item {
        padding-left: 4px;
    }
    li.lang-item.lang-item-en {
        height: 4.5vh !important;
        font-size: 3vh;
    }
    li.lang-item.lang-item-zh-cn,
    li.lang-item.lang-item-zh-tw {
        height: 4.5vh !important;
        font-size: 2.4vh;
    }
}

li.lang-item.lang-item-zh-cn,
li.lang-item.lang-item-ko,
li.lang-item.lang-item-ja {
    font-size: 2.4vh;
}

@media screen and (max-width: 959px) {
    li.lang-item.lang-item-en,
    li.lang-item.lang-item-zh-cn,
    li.lang-item.lang-item-zh-tw,
    li.lang-item.lang-item-ko,
    li.lang-item.lang-item-jp {
        height: 4vh;
        padding: 0;
    }
}

@media screen and (max-width: 479px) {
    li.lang-item.lang-item-zh-cn,
    li.lang-item.lang-item-zh-tw,
    li.lang-item.lang-item-ko,
    li.lang-item.lang-item-jp {
        font-size: 90%;
    }
}

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

@media screen and (max-width: 479px) {
    .lang-item {}
}

.header__link li a {
    color: #fff;
    position: relative;
    transform: translateZ(10px);
    padding-right: 1vw;
    z-index: 10;
}


/*
.header__link li a:hover:after {
    width: 100%;
    border-bottom: 1px solid #fff;
    position: absolute;
    top:40px;
}

.header__link li a:after {
    content: '';
    width: 0;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    display: block;
}

.header__link li.lang-item a:hover:after {
    top: 24px;
}
*/

.header.twitter.pc-only {
    width: calc(50% - 340px);
    min-width: 170px;
    height: 100vh;
    background-size: cover;
    position: absolute;
    z-index: 100000;
    top: 0;
    right: 0;
}

.header.twitter.pc-only iframe {
    width: 100% !important;
}

.header__left {
    position: absolute;
    margin-top: 0;
    margin-left: 0px;
    width: 100%;
}

#toppage .home-content {
    background-size: cover;
}

#main {
    width: 100vw;
    height: 100vh;
    background-size: cover;
    filter: grayscale(100%);
    position: relative;
}

@media screen and (max-width: 479px) {
    #main {
        margin-top: -50px;
    }
}

#main:hover {
    filter: grayscale(0%);
    transition: 1s;
}

.main__txt {
    background: #ffffff;
    display: inline-block;
    margin-top: 70px;
}

@keyframes txt-color {
    0% {
        color: #47c4ea;
    }
    12.5% {
        color: #34aa49;
    }
    25% {
        color: #f8ba16;
    }
    37.5% {
        color: #ee4455;
    }
    50% {
        color: #47c4ea;
    }
    62.5% {
        color: #34aa49;
    }
    75% {
        color: #f8ba16;
    }
    87.5% {
        color: #ee4455;
    }
    100% {
        color: #47c4ea;
    }
}

.main__txt h1 {
    font-family: 'Alumni Sans';
    position: absolute;
    font-size: 14vw;
    margin-left: 4vw;
    margin-top: 2vh;
    line-height: 1;
    width: 92vw;
}

@media screen and (max-width: 479px) {
    .main__txt h1 {
        width: 340px;
        margin-top: 20vh;
        margin-left: calc(50vw - 170px);
        left: 0;
        font-size: calc(100vw / 8);
    }
}

.main__txt .spinner-box {
    position: absolute;
    top: calc(100vh - 300px);
    left: calc(50vw - 150px);
    height: 300px;
}

@media screen and (max-width: 479px) {
    .main__txt .spinner-box {
        top: calc(50vh - 120px);
    }
}

.main__txt p {
    animation: txt-color 12s infinite;
    -webkit-animation: txt-color 12s infinite;
}

@keyframes shine {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1 {
    font-size: 5vh;
    padding: 1vh;
    margin-bottom: 0.5vh;
    text-align: center;
    background: #000000;
    background-image: linear-gradient( 70deg, rgb(211, 209, 209, 0.8) 45%, #fff 50%, rgb(211, 209, 209, 0.8) 55%);
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 12s infinite;
    font-weight: 500;
    position: relative;
}

.main__txt p {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: -0.05em;
    border-top: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #47c4ea, #34aa49, #f8ba16, #ee4455) 1;
    padding: 0.5rem 0;
    width: 240px;
    margin: 0 auto;
    background: #000000;
    background-image: linear-gradient( 70deg, rgb(211, 209, 209, 0.3) 45%, #fff 50%, rgb(211, 209, 209, 0.3) 55%);
    background-size: 500% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine s inf9inite;
}

.main__txt img {
    max-width: 800px;
    margin: 1rem calc(50% - 400px);
}

.main__txt img:hover {
    filter: grayscale(00%);
    transition: 1s;
}

h1,
.main__txt p {
    line-height: 1.2;
}


/* 画像を光らせる*/

.reflection {
    position: relative;
    overflow: hidden;
}

.reflection:after {
    content: "";
    height: 100%;
    width: 30px;
    position: absolute;
    top: -180x;
    left: 0;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 6s ease-in-out infinite;
}

@keyframes reflection {
    0% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    80% {
        -webkit-transform: scale(0) rotate(45deg);
        opacity: 0.5;
    }
    81% {
        -webkit-transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}

@media screen and (max-width: 959px) {
    h1 {
        font-size: 2rem;
    }
    .main__txt p {
        font-size: 1.8rem;
    }
    .main__txt img {
        max-width: 479px;
        margin: 1rem calc(50% - 479px / 2);
    }
}

@media screen and (max-width: 479px) {
    .wrapper {
        width: 100%;
        max-width: 1024px;
        padding: 0 4%;
        margin: 0 auto;
    }
    .main__txt {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
        padding: 20px 1vw 0;
    }
    .main__txt img {
        width: 100%;
        margin: 1rem 0;
    }
    h1 {
        font-size: 1.5rem;
    }
    .main__txt p {
        font-size: 1rem;
        width: 140px;
        border-top: 1.5px solid;
        border-bottom: 1.5px solid;
    }
    /* 背景固定 */
    html.is-fixed,
    html.is-fixed body {
        height: 100%;
        overflow: hidden;
    }
}

section.top-background {
    position: relative;
}


/*
section.top-background::after,
section.top-background:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    z-index: 1;
}
*/

section.top-background::after {
    border-width: 0 0 10px 100vw;
    border-color: transparent transparent transparent rgba(223, 255, 98, 1);
}


/*
section.top-background::before {
    transform: rotate(180deg);
    border-width: 0 0 10px 100vw;
    border-color: transparent transparent transparent rgba(54, 251, 54, 1);
}
*/


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

.accordion-container .normal-title {
    position: relative;
    margin: 0;
    padding: 0.5em 1em;
    font-size: 1.6rem;
    font-weight: normal;
    color: #fff;
    cursor: pointer;
    border-bottom: solid 1px #aaa;
    font-family: 'Alumni Sans';
    font-style: italic;
}

@media screen and (max-width: 479px) {
    .accordion-container .normal-title {
        font-size: 1rem;
    }
}

.accordion-container .normal-title a {
    display: block;
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.accordion-container .normal-title a span {
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: none;
}

.accordion-content a {
    color: #333;
    display: block;
}

.accordion-container .normal-title:hover {
    color: #333;
}

.accordion-container .normal-title a:hover {
    color: #d6000f;
}

.accordion-content {
    background-color: #d9e0eb;
}

.accordion-content p {
    font-size: 15px;
    padding: 1rem 0;
    border-bottom: solid 1px #efefef;
    margin: 0 2rem;
}

.accordion-container a:after {
    width: 0;
}


/*ナビのスタイル*/

.sp-header__menu {
    position: fixed;
    top: 0;
    right: 0;
    background-image: url(../images/header-left-bg.jpg);
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: darken;
    background-size: cover;
    background-position: right;
    background-repeat: repeat-y;
    text-align: left;
    width: 100%;
    display: none;
    margin-top: 0;
    transform: translateZ(2px);
    z-index: 1000;
}

@media screen and (max-width: 959px) {
    .sp-header__menu {
        margin-top: calc(10vh + 10px);
        width: 100%;
    }
}

.sp-header__menu .accordion-container {
    width: 100%;
}

.sp-header__menu .wrapper {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    margin-top: 1vh;
}

.sp-header__menu .normal-title a span {
    font-size: 90%;
    vertical-align: middle;
    position: absolute;
    left: 50%;
    margin-top: 4px;
}


/*ボタンのスタイル*/

.Toggle {
    position: fixed;
    right: 0;
    top: 0;
    width: 10vh;
    height: calc(10vh + 10px);
    z-index: 13;
    cursor: pointer;
    display: block;
    background: rgba(0, 0, 0);
}

.Toggle:after {
    position: absolute;
    content: "MENU";
    top: 55%;
    left: 0;
    width: 10vh;
    height: 30px;
    color: #fff;
    font-size: 13px;
    text-align: center;
    font-family: 'Alumni Sans', 'Kaisei Decol', century-gothic, "Century Gothic", "Century Gothic W01", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, Meiryo, メイリオ, sans-serif;
    font-style: italic;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 479px) {
    .Toggle {}
}

.Toggle div {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px;
    border-image-source: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    border-image-slice: 1;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: calc(50% - 15px);
}

.Toggle .toggle-span {
    top: 30%;
}

.Toggle .toggle-span02 {
    top: 40%;
}

.Toggle .toggle-span03 {
    top: 50%;
}

.Toggle.active:after {
    position: absolute;
    content: "CLOSE";
}

.Toggle.active .toggle-span {
    top: 40%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 2px #fff;
}

.Toggle.active .toggle-span02,
.Toggle.active .toggle-span03 {
    top: 40%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 2px #fff;
}


/*
 トップページ共通
*/

.top-content {
    padding: 0;
    max-width: 959px;
    width: calc(50vw + 360px - 20px);
    margin: 0 calc(50vw - 360px);
    background: rgba(0, 0, 0, 0.8);
}

.top-content__textbox {
    margin: 0 auto;
    width: calc(100% - 5em);
    min-height: calc(100vh - 20px);
}

@media screen and (max-width: 1239px) {
    .top-content__textbox {
        margin: 0 auto;
    }
}

@media screen and (max-width: 1239px) {
    .top-content {
        max-width: 959px;
        margin: 0 0 0 calc(50% - 360px);
    }
}

.section__title {
    text-align: center;
}

.section__title h2 {
    font-size: 2.6rem;
    font-family: 'Alumni Sans';
    font-style: italic;
    color: #000;
    letter-spacing: -0.001em;
    font-weight: 100;
    overflow: hidden;
}

.section__title h2 span {
    /*  animation: text-animation 0.8s forwards;*/
    transform: translateY(3rem);
}

@keyframes text-animation {
    0% {
        transform: translateY(3rem);
    }
    100% {
        transform: translateY(0rem);
    }
}

.top-content h3 {
    font-family: "Century Gothic";
    font-size: 1.4rem;
    width: 90%;
    margin: 1em auto;
    text-align: center;
    font-weight: 500;
    color: #111;
    border: 1px solid;
    border-image: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    background: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    transform: skewX(-10deg);
}

.top-content h3.jp {
    font-family: 'Kaisei Decol', century-gothic, "Century Gothic", "Century Gothic W01", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, Meiryo, メイリオ, sans-serif;
}

@media screen and (max-width: 959px) {
    .top-content h3 {
        margin: 1em auto 0.5em;
        font-size: 4vw;
    }
}

@media screen and (max-width: 479px) {
    .top-content h3 {
        margin: 0.5em auto 0.2em;
    }
}

.top-content h4 {
    margin: 2em 1em 1em;
    color: #ccc;
    padding-left: 1em;
    border-left: 1px solid #fff;
    border-bottom: 1px solid;
}

#about dl {
    display: flex;
}

#about dt {
    margin-right: 2em;
    font-size: 90%;
    min-width: 90px;
}

#about dd {
    font-weight: 700;
}

#about p a {
    font-size: 80%;
}

#about p a span.material-icons-outlined {
    font-size: 80%;
    vertical-align: unset;
}

#about ul li {
    border-bottom: 1px solid #777;
    margin-bottom: 1em;
    padding-bottom: 1em;
    padding-left: 1em;
    width: calc(100% - 2em);
}

#about li:first-child {
    border-top: 1px solid #777;
    padding-top: 1em;
}

#about ul li p {
    margin-left: 140px;
    margin-top: 10px;
}

@media screen and (max-width: 959px) {
    #about dl {
        display: block;
    }
    #about ul li p {
        margin-left: 20px;
    }
}

.top-content h3 span.material-icons-outlined {
    vertical-align: sub;
    background: linear-gradient(to right, rgba(204, 254, 218, 1), rgba(252, 246, 194, 1), rgba(233, 251, 162, 1), rgba(139, 250, 139, 1));
    border-radius: 50%;
    color: #222;
    margin-right: 6px;
    font-size: 32px;
}

.section__title .subtitle {
    font-size: 1.8rem;
    font-family: 'Alumni Sans';
    color: #000;
    margin: 0 auto;
    width: 92%;
    padding-top: 1.2rem;
}

@media screen and (max-width: 959px) {
    .section__title .subtitle {
    border-top: 3px solid;dient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    }
}

.section__title h2 {
    width: 100%;
}

#toppage .section__title h2 {
    width: 700px;
    padding-top: 12px;
    margin-left: -1em;
}

@media screen and (max-width: 959px) {
    .section__title h2,
    #toppage .section__title h2 {
        width: 100%;
    }
}

.section__title h2,
.section__title .subtitle {
    color: #262626;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline;
    padding: 0 10px;
}

.article-wrapper {
    border: 1px solid #fff;
    margin: 2em 1em;
    transform: skewX(-1.2deg);
    padding: 0 1em 1em;
}

.article-wrapper iframe{
    transform: skewX(1.2deg);
}

.article-wrapper a{
    padding-left: 20px;
    font-size: 80%;
    text-align: left;
    position: relative
}

.article-wrapper a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(255, 251, 51, 1), rgba(255, 191, 51, 1), rgba(255, 255, 255, 0.2));
}

@media screen and (max-width: 959px) {
    .article-wrapper {
        transform: skewX(-0.5deg);
    }
}

@media screen and (max-width: 479px) {
    .article-wrapper {
        transform: skewX(-0.2deg);
        margin: 1em auto
    }
    .article-wrapper a::before{
        top: 0;
        width: 4vw;
        height: 4vw;
    }
}

@media screen and (max-width: 959px) {
    .top-content {
        margin: 0rem 1rem;
        width: calc(100% - 2rem);
    }
    .section__title h2 {
        font-size: 2.4rem;
    }
    .section__title .subtitle {
        font-size: 1.2rem;
        display: inline-block;
    }
    .section__title {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 479px) {
    .top-content {
        margin: 0 2vw;
        width: 96vw;
    }
    .top-content.nomargin {
        padding: 2rem 0;
        margin: 1rem 0;
        width: 100%;
    }
    .section__title {
        margin-bottom: 1rem;
    }
    .section__title h2 {
        font-size: 2.0rem;
    }
    .section__title .subtitle {
        padding-top: 0.6rem;
    }
}

.quiz-list h2 {
    margin-bottom: 2rem;
}

blockquote{
    background: rgba(255,255,255,0.1);
    margin: 1em
}

blockquote p{
     font-size: 70%;
     text-align:left;
     padding:1em
}

blockquote details{
     font-size: 70%
}

blockquote summary:hover{
    cursor: pointer
}

/*
.background-rainbow {
    background: linear-gradient(to right, rgba(155,255,182,.1 ), rgba(253, 242, 140, .1), rgba(223, 255, 98, .1), rgba(54, 251, 54, .1));
    background-size: cover;
    background-position: center;
    position: relative;
}
*/


/*ボタン*/

.btn__link {
    display: block;
    width: 200px;
    max-width: 100%;
    padding: 1.2rem 1rem;
    background: #d6000f;
    border: 2px solid transparent;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    text-decoeation: none;
    transition: .25s;
}

.btn__link:focus,
.btn__link:hover {
    background: #fff;
    border-color: currentColor;
    color: #d6000f;
}

.btn .btn__link {
    position: relative;
}

.btn .btn__link:before {
    content: "";
    position: absolute;
    top: 52%;
    left: 88%;
    width: 12px;
    height: 1px;
    background: #fff;
}

.btn .btn__link:after {
    content: "";
    position: absolute;
    top: 47%;
    left: 90%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.btn .btn__link:focus:before,
.btn .btn__link:hover:before {
    background: #d6000f;
}

.btn .btn__link:focus:after,
.btn .btn__link:hover:after {
    border-top: 1px solid #d6000f;
    border-right: 1px solid #d6000f;
}

.btn .btn__link {
    margin: 0 1rem;
}

@media screen and (max-width: 479px) {
    .btn {
        margin-top: 2rem;
    }
    .btn:first-child {
        margin-top: 0;
    }
    .btn__link {
        width: 220px;
        font-size: 1.5rem;
        padding: 1.5rem 1rem;
    }
    .top-content__box {
        margin-top: 3rem;
    }
    .btn .btn__link:after {
        top: 46%;
    }
}


/*--　table　--*/

.table {
    width: 100%;
    margin-top: 3rem;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    border: solid #CCC;
    border-width: 1px;
}

.table table tr th,
.table table tr td {
    padding: 1em 0.5em;
    text-align: left;
    vertical-align: top;
    border: solid #ddd;
    border-width: 1px;
}

.table table tr th,
.table table tr td {
    text-align: center;
    vertical-align: middle;
}

.table th {
    font-weight: normal;
}

.table table tr td ul {
    margin-bottom: 1rem;
}

@media screen and (max-width: 959px) {
    .table {
        margin-top: 3rem;
    }
}

@media screen and (max-width:479px) {
    .table {
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .page__table--company {
        margin-top: 3rem;
    }
    .table table {
        width: 100%;
        border-width: 0 0 1px 0;
        margin-bottom: 4rem;
    }
    .table table tr th,
    .table table tr td {
        width: 100%;
        padding: 3% 5%;
        font-size: 1.0rem;
        text-align: left;
    }
    .table table tr td p {
        font-size: 1.4rem;
    }
    .table table tr td {
        border-width: 0px 1px 0px 1px;
    }
}


/*
 ABOUT
*/

div#about {
    transform: translateZ(-1px);
}

.top-content__lead {
    letter-spacing: -0.03em;
    margin-top: 2em;
}


/*table*/

.table-about th,
.table-about td {
    color: #262626;
}

.table-about th {
    width: 30%;
}

.table-about td {
    width: 70%;
}

.table-about table {
    margin: 1em;
    width: calc(100% - 2em);
}

.table-about table tr th,
.table-about table tr td {
    border: none;
    border-bottom: solid 1px #999;
    background: rgba(1, 1, 1, 0.7);
    padding-right: 1em;
}

.table-about table tr th {
    padding: 0.5rem 2%;
    font-size: 120%;
    font-weight: 700;
    border: 1.5px solid #e5e5e5;
    background: linear-gradient( 60deg, rgba(255, 255, 255, .3) 30%, rgba(253, 242, 140, 1) 50%, rgba(250, 249, 60, .6) 60%);
    color: #111;
}

.table-about table tr:first-child th,
.table-about table tr:first-child td {
    border-top: solid 1px #999;
}

.table-about td a {
    color: #fff;
    position: relative;
    /* border-bottom:solid 1px #fff; */
}

.table-about td a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}

.table-about td a:hover:after {
    width: 0;
}

.player-photo {
    max-width: 240px;
}


/* .table-about td a:hover{
	color: #d6000f;
	border-bottom:solid 1px #d6000f;
} */

@media screen and (max-width: 959px) {
    .top-content-about .top-content__textbox {
        width: calc(100% - 2em);
    }
}

@media screen and (max-width:479px) {
    .top-content-about .top-content__textbox {
        width: 92%;
        display: inline;
    }
    .background-about {
        background-position: top;
        height: auto;
    }
    .top-content__lead {
        font-size: 1.0rem;
        margin: 2em 1em;
    }
    .table-about table,
    .table-about table tbody,
    .table-about table tr,
    .table-about table tr th,
    .table-about table tr td {
        display: block;
    }
    .table-about table tr {
        margin-bottom: 1.4rem;
    }
    .table-about table tr th,
    .table-about table tr td {
        text-align: center;
    }
    .table-about table tr:first-child th,
    .table-about table tr:first-child td {
        border-top: 1.5px solid #e5e5e5;
    }
    .table-about table tr td {
        padding: 0.5rem 2% 0;
        border-bottom: none;
    }
    .table-about table {
        margin-top: 2rem;
        margin-bottom: 0;
    }
}


/*
 title
*/

.table-title {
    white-space: nowrap;
}

.table-title table {
    max-width: 959px;
}

.table-title th {
    background-image: radial-gradient(circle, rgba(0, 0, 0, 1) 9%, rgba(0, 0, 0, 0) 13%), repeating-conic-gradient(from 5deg, rgba(0, 0, 0, 1) 50deg, rgba(12, 12, 12, 1) 50deg 52deg, rgba(0, 0, 0, 1) 52deg 58deg, rgba(12, 12, 12, 1) 58deg 61deg, rgba(0, 0, 0, 1) 61deg 68deg, rgba(12, 12, 12, 1) 68deg 72deg, rgba(0, 0, 0, 1) 72deg 83deg, rgba(12, 12, 12, 1) 83deg);
    color: #fff;
    padding: 2.4rem;
}

.table-title th,
.table-title td {
    width: 25%;
}

.table-title table tr td {
    padding: 1.2rem 1rem;
}

.table-title a {
    color: #000;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.table-title a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #000;
    display: block;
    position: absolute;
}

@media screen and (max-width:479px) {
    .table-title a:after {
        border-bottom: 1px solid #fff;
    }
    .table-title a.link-bk:after {
        border-bottom: 1px solid #000;
    }
    .table-title a.long-line:after {
        width: 120%;
        margin-left: -10%;
    }
}

.table-title a:hover:after {
    width: 0;
}

@media screen and (max-width: 959px) {
    .table-title {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
}

@media screen and (max-width:479px) {
    .table-title table tr th,
    .table-title table tr td {
        padding: 3% 1.5%;
        text-align: center;
    }
    .table-title table tr th:first-child,
    .table-title table tr td:first-child {
        width: 60%;
    }
    .table-title table tr td {}
    .table-title table tr:nth-child(2n+1) th,
    .table-title table tr:nth-child(2n+1) td {
        background-color: #000;
    }
    .table-title table tr:nth-child(2n) th {
        background-color: #fff;
        color: #000;
        background-image: none;
    }
    .table-title table tr:nth-child(2n+1) td,
    .table-title table tr:nth-child(2n+1) td a {
        color: #fff;
    }
}


/*
 live streaming
*/

.background-live {
    background-image: url("../images/bg-live.jpg");
    background-size: cover;
    position: relative;
    background-position: center;
    height: 435px;
}

.background-live:before {
    /* 透過した黒を上から重ねるイメージ */
    background-color: rgba(0, 0, 0, 0.4);
    /* 自由に位置指定 */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: ' ';
}

.top-content-live {
    transform: translateZ(-1px);
}

.top-content-live .top-content__textbox {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 959px;
    width: 100%;
}

@media screen and (max-width: 959px) {
    .top-content-live .top-content__textbox {
        width: 92%;
    }
}

@media screen and (max-width: 479px) {
    .top-content-live .top-content__textbox {
        position: absolute;
        top: 240px;
    }
}

@media screen and (max-width:479px) {
    .background-live {
        height: 670px;
        background-position: center;
        padding: 4rem 4%;
    }
    .top-content-live {
        text-align: center;
    }
    .top-content-live .top-content__textbox {
        width: 92%;
        margin-top: 4rem;
    }
}

.top-content-live p {
    width: 100%;
}

.top-content-live p a {
    position: relative;
    margin: 0 auto;
    cursor: pointer;
}

.top-content-live p a:after {
    content: '';
    width: 100%;
    transition: all 0.2s ease;
    border-bottom: 1px solid #fff;
    display: block;
    position: absolute;
    left: 0;
    cursor: pointer;
}

.top-content-live p a:hover:after {
    width: 0;
}


/*
 footer
*/

.footer {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    margin-bottom: -22px;
}

.footer__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    padding: 4rem 4%;
    max-width: 959px;
    margin: 0 auto;
}

.footer__inner p {
    font-size: 1.5rem;
}

@media screen and (max-width: 479px) {
    .footer__inner {
        padding: 2.4rem 4%;
    }
    .footer__inner p {
        font-size: 1.4rem;
    }
}

.copyright {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.4vh;
    right: 0;
    bottom: 0;
    padding: 10px;
    text-align: right;
    z-index: 110000;
    transform: translateZ(10px);
}

@media screen and (max-width: 959px) {
    .copyright {
        position: inherit;
    }
}

#page_top {
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100;
    border: 0.1px solid rgba(255, 255, 255, 0.3);
    margin: 1px;
}

#page_top a {
    position: relative;
    display: block;
    width: 70px;
    height: 70px;
    text-decoration: none;
}

#page_top a::before {
    content: '';
    font-size: 30px;
    color: #fff;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 10%;
    bottom: 0;
    right: 0;
    margin: auto;
    text-align: center;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 35%;
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

@media screen and (max-width: 479px) {
    #page_top {
        width: 45px;
        height: 45px;
    }
    #page_top a {
        width: 45px;
        height: 45px;
    }
    #page_top a::before {
        width: 10px;
        height: 10px;
        left: 30%;
        border-top: 2px solid #fff;
        border-left: 2px solid #fff;
    }
}


/*---------------------
 
		下層ページ

---------------------*/


/*
 下層ページ共通
*/

.page {
    height: 100vh;
}

.page__member {
    height: auto;
}

.page__content {
    padding: 10rem 0;
    width: 100%;
    margin: 0 auto;
}

.page__heading {
    width: 100%;
    height: 300px;
    position: relative;
    background: #000;
}

.page__heading-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    opacity: 0.4;
}

.page__heading--player {
    background-image: url('../images/bg-about.jpg');
    background-position: center;
}

.page__heading-inner {
    max-width: 100%;
    width: auto;
    color: #fff;
    font-weight: bold;
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.page__title {
    font-size: 8rem;
    font-family: 'Teko', sans-serif;
    font-weight: normal;
    letter-spacing: 0.04em;
    color: #fff;
}

.page__section {
    margin-bottom: 6rem;
}

.page__content p {
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    line-height: 1.7;
    text-align: center;
}

@media screen and (max-width: 479px) {
    .page {
        padding-top: 50px;
    }
    .page__heading {
        height: 120px;
        margin-top: 0;
    }
    .page__heading-bg {
        background-position: center;
    }
    .page__title {
        font-size: 4rem;
        white-space: nowrap;
    }
    .page__content {
        padding: 3rem 0;
    }
    .page__content-title {
        font-size: 4rem;
        margin-bottom: 2.4rem;
    }
    .page__content p {
        font-size: 1.5rem;
        letter-spacing: 0.01em;
    }
}

span.material-icons-outlined {
    vertical-align: bottom;
    padding-bottom: 7px;
}

.table-about span.material-icons-outlined {
    padding-bottom: 3px;
    font-size: 90%;
}

@media screen and (max-width: 959px) {
    span.material-icons-outlined {
        padding-bottom: 12px;
    }
}

ul.works-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

ul.works-list .animation {
    font-size: 90%;
}

ul.works-list li {
    display: inline-block;
    width: calc(50% - 0.5em - 8px);
    height: 90px;
    margin-bottom: 10px;
}

ul.works-list li a {
    font-size: 80%;
    font-family: 'Alumni Sans';
    font-style: italic;
    padding-left: 10px;
}

ul.works-list li:hover {
    background: linear-gradient(to right, rgba(48, 87, 120, 0.1), rgba(61, 82, 139, 0.5), rgba(174, 156, 216, 0.4));
    cursor: pointer;
}

ul.works-list li a span.material-icons-outlined {
    font-size: 120%;
    margin-left: -6px;
}

ul.works-list:after {
    content: "";
    width: calc(50% - 0.5em - 8px);
    display: block;
}

ul.works-list .longtitle {
    font-size: 70%;
    letter-spacing: -0.01em;
    display: inline-block;
}

@media screen and (max-width: 479px) {
    ul.works-list .longtitle {
        font-size: 70%;
        letter-spacing: -0.1em;
    }
    .modal .longtitle {
        font-size: 100%;
        letter-spacing: inherit;
    }
}

ul.works-list.animation .category {
    font-size: 80%;
    letter-spacing: -0.03em;
    display: block;
    border-bottom: 1px dotted;
    padding-bottom: 0.4rem;
    margin-bottom: 0.4rem;
}

ul.works-list .year {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Lato', sans-serif;
    padding: 0.2em 0.5em;
    font-weight: 700;
    color: #fff;
    font-size: 75%;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 1), rgba(11, 18, 35, 0.1) 80%, rgba(173, 255, 255, 0.1) 90%);
    text-shadow: 1px 1px #fff;
    padding-left: 1em;
    letter-spacing: 0.1em;
}

ul.works-list .year:after {
    content: "";
    position: absolute;
    bottom: 0rem;
    right: -10px;
    border: 3px solid #fff;
    width: 30px;
    height: 1.1rem;
    background: #fff;
}

ul.animation.works-list .year:after {
    height: 0;
    width: 0;
}

ul.works-list .company1,
ul.works-list .company2,
ul.works-list .company3,
ul.works-list .company4,
ul.works-list .company5 {
    position: absolute;
    bottom: 0;
    right: 0;
    color: #000;
    padding: 0.2em 0.5em;
    filter: contrast(.8) brightness(1.0);
    width: 120px;
    display: inline-block;
    text-align: center;
    text-shadow: 1.5px 1.5px #ccc;
    font-size: 75%;
    clip-path: polygon(0 200px, 100% 0, 100% calc(100% - 200px), 0 100%);
}

@media screen and (max-width: 479px) {
    ul.works-list .company1,
    ul.works-list .company2,
    ul.works-list .company3,
    ul.works-list .company4,
    ul.works-list .company5 {
        display: block;
        width: 80px;
    }
}

ul.works-list .company1 {
    background-image: repeating-conic-gradient(from 10deg at 50% 70%, rgba(185, 188, 203, 1) 0deg, rgba(74, 196, 237, 1) 0deg, rgba(142, 241, 182, 0.78) 38deg);
}

ul.works-list .company2 {
    background-image: repeating-conic-gradient(from 10deg at 50% 70%, rgba(185, 188, 203, 1) 0deg, rgba(242, 66, 85, 1) 0deg, rgba(241, 200, 63, 0.78) 38deg);
}

ul.works-list .company3 {
    background-image: repeating-conic-gradient(from 10deg at 50% 70%, rgba(185, 188, 203, 1) 0deg, rgba(250, 183, 26, 1) 0deg, rgba(230, 241, 142, 0.78) 38deg);
}

ul.works-list .company4 {
    background-image: repeating-conic-gradient(from 10deg at 50% 70%, rgba(185, 188, 203, 1) 0deg, rgba(208, 247, 205, 1) 0deg, rgba(142, 241, 182, 0.78) 38deg);
}

ul.works-list .company5 {
    background-image: repeating-conic-gradient(from 10deg at 50% 70%, rgba(185, 188, 203, 1) 0deg, rgba(205, 244, 247, 1) 0deg, rgba(142, 209, 241, 0.78) 38deg);
}

ul.works-list .hardware {
    color: #000;
    padding: 0.2rem;
    background-image: linear-gradient(to right, rgba(48, 87, 120, 0.1), rgba(61, 82, 139, 0.4), rgba(174, 156, 216, 0.4));
    border: 0.1px solid;
    font-size: 55%;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    letter-spacing: -0.04em;
}

@media screen and (max-width: 479px) {
    ul.works-list .hardware {}
}


/* Animation */

.delay-time05 {
    animation-delay: 0.5s;
}

.delay-time1 {
    animation-delay: 1s;
}

.delay-time15 {
    animation-delay: 1.5s;
}

.delay-time2 {
    animation-delay: 2s;
}

.flipLeftTrigger,
.rotateYTrigger {
    opacity: 0;
}


/* Left */

.flipLeft {
    animation-name: flipLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    perspective-origin: left center;
    opacity: 0;
}


/* Y axis */

.rotateY {
    animation-name: rotateYAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes rotateYAnime {
    from {
        transform: rotateY(0);
        opacity: 0;
    }
    to {
        transform: rotateY(-360deg);
        opacity: 1;
    }
}

@keyframes flipLeftAnime {
    from {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
        opacity: 0;
    }
    to {
        transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
        opacity: 1;
    }
}

.lineTrigger {
    position: relative;
    /* 枠線が書かれる基点*/
    opacity: 0;
}

.lineTrigger.lineanime {
    animation-name: lineAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    height: 90px;
}

@keyframes lineAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Line Animation */

.lineinappear {
    padding: calc(18px + 0.5em) calc(0px + 0.5em) 0.5em 1em;
    position: relative;
    line-height: 1;
}

.animation .lineinappear {
    padding: 0.5em 0.4em 0.5em 0.4em;
}

@media screen and (max-width: 479px) {
    .lineinappear {
        padding: calc(18px + 0.2em) calc(0px + 0.5em) 0.5em 0.5em;
        height: 127px;
    }
}


/*上下線*/

.lineTrigger::before,
.animation .lineTrigger:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0.1px;
    background: #0b1223;
    /* 枠線の色*/
}


/*左右線*/

.line2::before,
.line2::after {
    position: absolute;
    content: "";
    width: 0.1px;
    height: 0;
    background: #0b1223;
    /* 枠線の色*/
}


/*上線*/

.lineTrigger::before {
    top: 0;
    left: 0;
}

.lineTrigger.lineanime::before {
    animation: lineAnime .1s linear 0s forwards;
    /*表示されて0秒後に上線が0.5秒かけて表示*/
}


/*右線*/

.line2::before {
    top: 0;
    right: 0;
}

.lineTrigger.lineanime .line2::before {
    animation: lineAnime2 .1s linear .1s forwards;
    /*表示されて0.5秒後に右線が0.5秒かけて表示*/
}


/*下線*/

.animation .lineTrigger::after {
    bottom: 0;
    right: 0;
}

.lineTrigger.lineanime::after {
    animation: lineAnime .1s linear .2s forwards;
    /*表示されて1秒後に下線が0.5秒かけて表示*/
}


/*左線*/

.line2::after {
    width: 2px;
    bottom: 0;
    left: 0;
}

.lineTrigger.lineanime .line2::after {
    animation: lineAnime2 .1s linear .3s forwards;
    /*表示されて1.5秒後に左線が0.5秒かけて表示*/
}

@keyframes lineAnime {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@keyframes lineAnime2 {
    0% {
        height: 0%;
    }
    100% {
        height: 100%;
    }
}


/*枠線内側の要素*/

.lineTrigger.lineanime .lineinappear {
    animation: lineInnerAnime .1s linear .3s forwards;
    /*1.5秒後に中央のエリアが0.5秒かけて表示*/
    opacity: 0;
    /*初期値を透過0にする*/
    height: 90px;
}

@keyframes lineInnerAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Modal Window */

#modal-container,
#modal-container2 {
    position: fixed;
    display: table;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    z-index: 10;
    &.reaction {
        transform: scaleY(.01) scaleX(0);
        animation: unfoldIn 1s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
        .modal-background {
            .modal {
                /* transform:scale(0); */
                animation: zoomIn .5s .8s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
            }
        }
        &.out {
            transform: scale(1);
            animation: unfoldOut 1s .3s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
            .modal-background {
                .modal {
                    animation: zoomOut .5s cubic-bezier(0.165, 0.840, 0.440, 1.000) forwards;
                }
            }
        }
    }
    .modal-background {
        display: table-cell;
        background: rgba(0, 0, 0, .8);
        text-align: center;
        vertical-align: middle;
        .modal {
            background: white;
            padding: 30px 0;
            display: inline-block;
            border-radius: 3px;
            font-weight: 300;
            position: relative;
            width: 100%;
        }
        .modal h4 {
            font-size: 25px;
            line-height: 25px;
        }
        .modal h4 a {
            margin-top: 0;
            margin-left: 10px;
            padding: 0.3em;
        }
        .modal h4 span {
            font-size: 18px;
            line-height: 18px;
        }
        .modal p {
            font-size: 18px;
            line-height: 22px;
        }
        .modal-svg {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border-radius: 3px;
            rect {
                stroke: #fff;
                stroke-width: 2px;
                stroke-dasharray: 778;
                stroke-dashoffset: 778;
            }
        }
    }
}

.title1-visible,
.title2-visible,
.title3-visible,
.title4-visible,
.title5-visible,
.title6-visible,
.title7-visible,
.title8-visible,
.title9-visible,
.title10-visible,
.title11-visible,
.title12-visible,
.title13-visible,
.title14-visible,
.title15-visible,
.title16-visible,
.title17-visible,
.title1a-visible,
.title2a-visible,
.title3a-visible,
.title4a-visible,
.title5a-visible,
.title6a-visible,
.title7a-visible,
.title8a-visible,
.title9a-visible,
.title10a-visible,
.title11a-visible,
.title12a-visible,
.title13a-visible,
.title14a-visible {
    display: none;
}

.title1 .title1-visible,
.title2 .title2-visible,
.title3 .title3-visible,
.title4 .title4-visible,
.title5 .title5-visible,
.title6 .title6-visible,
.title7 .title7-visible,
.title8 .title8-visible,
.title9 .title9-visible,
.title10 .title10-visible,
.title11 .title11-visible,
.title12 .title12-visible,
.title13 .title13-visible,
.title14 .title14-visible,
.title15 .title15-visible,
.title16 .title16-visible,
.title17 .title17-visible,
.title1a .title1a-visible,
.title2a .title2a-visible,
.title3a .title3a-visible,
.title4a .title4a-visible,
.title5a .title5a-visible,
.title6a .title6a-visible,
.title7a .title7a-visible,
.title8a .title8a-visible,
.title9a .title9a-visible,
.title10a .title10a-visible,
.title11a .title11a-visible,
.title12a .title12a-visible,
.title13a .title13a-visible,
.title14a .title14a-visible {
    display: inline-block;
    width: 50%;
}

@media screen and (max-width: 479px) {
    .title1 .title1-visible,
    .title2 .title2-visible,
    .title3 .title3-visible,
    .title4 .title4-visible,
    .title5 .title5-visible,
    .title6 .title6-visible,
    .title7 .title7-visible,
    .title8 .title8-visible,
    .title9 .title9-visible,
    .title10 .title10-visible,
    .title11 .title11-visible,
    .title12 .title12-visible,
    .title13 .title13-visible,
    .title14 .title14-visible,
    .title15 .title15-visible,
    .title16 .title16-visible,
    .title17 .title17-visible,
    .title1a .title1a-visible,
    .title2a .title2a-visible,
    .title3a .title3a-visible,
    .title4a .title4a-visible,
    .title5a .title5a-visible,
    .title6a .title6a-visible,
    .title7a .title7a-visible,
    .title8a .title8a-visible,
    .title9a .title9a-visible,
    .title10a .title10a-visible,
    .title11a .title11a-visible,
    .title12a .title12a-visible,
    .title13a .title13a-visible,
    .title14a .title14a-visible {
        width: 100%;
    }
}

.modal-link,
.slider-link {
    position: relative;
    z-index: 500;
    cursor: pointer;
    padding: 0.5em;
    margin-top: 1em;
    border: 3px solid;
    border-image: linear-gradient(to right, rgba(204, 254, 218, 1), rgba(233, 251, 162, 1), rgba(139, 250, 139, 1)) 1;
    padding-top: 10px;
    display: inline-block;
}

.modal-active {
    overflow: hidden;
}

.content {
    min-height: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

@keyframes unfoldIn {
    0% {
        transform: scaleY(.001) scaleX(0);
    }
    50% {
        transform: scaleY(.001) scaleX(1);
    }
    100% {
        transform: scaleY(1) scaleX(1);
    }
}

@keyframes unfoldOut {
    0% {
        transform: scaleY(1) scaleX(1);
    }
    50% {
        transform: scaleY(.001) scaleX(1);
    }
    100% {
        transform: scaleY(.001) scaleX(0);
    }
}


/* YouTube */

.responsive {
    position: relative;
    padding-top: 56.25%;
    margin-top: 15px;
    margin-bottom: 50px;
}

.responsive iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
}


/* Discography */

.discography .top-content {
    position: relative;
    min-height: 100vh;
}

.discography .category {
    color: #333;
    display: block;
    padding: 0.5em;
    margin: 1em calc(50% - 150px);
    width: 300px;
    font-weight: 700;
    background: linear-gradient(to right, rgba(204, 254, 218, 1), rgba(252, 246, 194, 1), rgba(233, 251, 162, 1), rgba(139, 250, 139, 1));
}

.discography .release-day {
    display: block;
    padding-bottom: 10px;
}

.discography .album-title {
    font-weight: 700;
    font-size: 110%;
    border: 3px double;
    border-image: linear-gradient(to right, rgba(204, 254, 218, 1), rgba(252, 246, 194, 1), rgba(233, 251, 162, 1), rgba(139, 250, 139, 1));
    border-image-slice: 1;
    display: block;
    padding: 1em 0.5em;
    margin: 0 1em;
    webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(to right, rgba(252, 246, 194, 1), rgba(139, 250, 139, 1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discography .album-wrapper {
    display: flex;
    padding-bottom: 4em;
}

@media screen and (max-width:479px) {
    .discography .album-wrapper {
        display: block;
        padding-bottom: 2em;
    }
}

.discography .album-image {
    margin: 2em 1em;
    float: left;
    display: block;
}

@media screen and (max-width:479px) {
    .discography .album-image {
        float: inherit;
        max-width: 200px;
        margin: 1em auto;
    }
}

.discography .album-contents {
    display: block;
    width: 100%;
    margin: 2em 0 0 0;
}

@media screen and (max-width:959px) {
    .discography .album-contents {
        margin-right: 2em;
    }
}

@media screen and (max-width:479px) {
    .discography .album-contents {
        margin: 0 1em;
        padding-bottom: 2em;
        width: calc(100% - 2em);
    }
}

.line-iframe {
    padding-bottom: 2em;
}

.discography iframe {
    margin-top: 1em;
}

.discography details .album-details {
    text-align: left;
    padding: 1em;
    border: 1px solid #fff;
    margin: 1em;
    background: rgba(0, 0, 0, 0.6);
}

.discography details {
    padding-bottom: 1em;
    margin-right: 2em;
}

@media screen and (max-width:479px) {
    .discography details {
        margin-right: 0;
    }
}

.discography details summary {
    text-decoration: underline;
    cursor: pointer;
    margin-bottom: 2em;
}

.discography details summary:hover {
    color: rgba(204, 254, 218, 1);
}

.discography details .album-details p {
    margin-top: 1em;
}

@media screen and (max-width: 479px) {
    .discography iframe {
        margin-top: 1em;
    }
}

.discography a {
    margin-top: 1em;
}

.discography p:last-child a:last-child {
    margin-bottom: 4em;
}

.discography .lists {
    margin-top: 1em;
    text-align: left;
    background: rgba(0, 0, 0, 0.6);
    padding: 1em 0 1em 0.5em;
}

@media screen and (max-width: 479px) {
    .discography .lists {
        margin-left: 0.5em;
        letter-spacing: 0.01em;
    }
}


/* bxslider */

.bx-wrapper {
    width: 500px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 1em !important;
}

.bx-wrapper .bx-controls-direction a {
    top: 35px !important;
    background: linear-gradient(to right, rgba(11, 74, 91, 1), rgba(48, 87, 120, 1), rgba(61, 82, 139, 1), rgba(174, 156, 216, 1)) !important;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin-top: -16px;
    outline: 0;
    width: 32px;
    height: 32px;
    text-indent: -9999px;
    position: absolute;
}

.bx-wrapper .bx-prev:after,
.bx-wrapper .bx-next:after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    top: 9px;
    position: absolute;
    margin: 0 10px;
    transform: rotate(45deg);
}

.bx-wrapper .bx-prev {
    left: 10px;
}

.bx-wrapper .bx-next {
    right: 10px;
}

.bx-wrapper .bx-prev:after {
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    left: 1px;
}

.bx-wrapper .bx-next:after {
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    left: -2px;
}


/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Shooting Star */


/*
Copyright (c) Delroy Prithvi
Pure CSS Shooting Star Animation Effect 
Released under the MIT license
URL：https://codepen.io/delroyprithvi/pen/LYyJROR
*/

section.shooting-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* https://lh3.googleusercontent.com/ka_5IYJDRkXZnbptxq64LPuggGL5FM8gnpJlsuSiOQh4b39kMkiRbVfX8iK8bjMg5SLkdfoix09P60wyFjN2=w681-h614 */
    animation: animateBg 50s linear infinite;
}

@keyframes animateBg {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

section.shooting-star span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
    animation: animate 3s linear infinite;
}

section.shooting-star span::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes animate {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}

section.shooting-star span:nth-child(1) {
    top: 0;
    right: 0;
    left: initial;
    animation-delay: 0s;
    animation-duration: 1s;
}

section.shooting-star span:nth-child(2) {
    top: 0;
    right: 80px;
    left: initial;
    animation-delay: 0.2s;
    animation-duration: 3s;
}

section.shooting-star span:nth-child(3) {
    top: 80;
    right: 0px;
    left: initial;
    animation-delay: 0.4s;
    animation-duration: 2s;
}

section.shooting-star span:nth-child(4) {
    top: 0;
    right: 180px;
    left: initial;
    animation-delay: 0.6s;
    animation-duration: 1.5s;
}

section.shooting-star span:nth-child(5) {
    top: 0;
    right: 400px;
    left: initial;
    animation-delay: 0.8s;
    animation-duration: 2.5s;
}

section.shooting-star span:nth-child(6) {
    top: 0;
    right: 600px;
    left: initial;
    animation-delay: 1s;
    animation-duration: 3s;
}

section.shooting-star span:nth-child(7) {
    top: 300px;
    right: 0px;
    left: initial;
    animation-delay: 1.2s;
    animation-duration: 1.75s;
}

section.shooting-star span:nth-child(8) {
    top: 0px;
    right: 700px;
    left: initial;
    animation-delay: 1.4s;
    animation-duration: 1.25s;
}

section.shooting-star span:nth-child(9) {
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 0.75s;
    animation-duration: 2.25s;
}

section.shooting-star span:nth-child(10) {
    top: 0px;
    right: 450px;
    left: initial;
    animation-delay: 2.75s;
    animation-duration: 2.75s;
}

#streaming .buttons,
.discography .buttons {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content: space-around;
}

#streaming label,
.discography label {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: transparent;
}

#streaming label:hover,
.discography label:hover {
    cursor: pointer;
}

#streaming input,
.discography input {
    display: none;
}

#streaming input:checked+label,
.discography input:checked+label {
    background: radial-gradient(rgba(253, 242, 140, 1), rgba(223, 255, 98, 1), rgba(54, 251, 54, 1));
    color: #111;
    border: transparent;
}

#streaming .table.data-show,
.discography .list-items-wrapper.data-show {
    display: flex;
}

#streaming .table.data-hide,
.discography .list-items-wrapper.data-hide {
    display: none;
}


/* Polylang */

li.current-lang {
    display: none;
}


/* top Google spreadsheet iframe*/

td.s0 {
    word-wrap: break-word;
    overflow-x: auto;
}


/* off-meeting */

@media screen and (max-width:479px) {
    .table table {
        margin-bottom: 0;
    }
    .off-meeting .table.full table tr th,
    .off-meeting .table.full table tr td {
        display: block;
    }
    .off-meeting .table table tr th,
    .off-meeting .table table tr td {
        width: inherit;
        padding: 1px;
        position: relative;
    }
}

.off-meeting .table table tr td:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f00e";
    position: absolute;
    top: 0;
    right: 0;
    background-color: rgba(256, 256, 256, 0.5);
    width: 30px;
    height: 30px;
    font-size: 1.5em;
    pointer-events: none;
    z-index: 0;
}

.off-meeting .table.full table tr td:after {
    content: "";
    width: 0;
}

#video-area {
    position: absolute;
    top: 64.3px;
    right: 0;
}

@media screen and (max-width: 959px) {
    #video-area {
    top: calc(10vh + 10px);
    width:98vw;
    right:inherit;
        left:1vw
}
    #video-area iframe{
        width: 98vw;
    }
}

#top-news {
    position: absolute;
    top: 65svh;
    width: 100%;
    z-index: 200;
}

@media screen and (max-width: 959px) {
    #top-news {
        height: 28vh;
        top: 63vh;
    }
}

#top-news dl span {
    font-size: 1.6vh;
    border: 1px solid #ccc;
    padding: 0 1vh;
    margin-right: 2vh;
    height: 3vh;
}

#top-news .sentences {
    max-height: 300px;
    overflow-y: auto;
    display: inline-block;
    width: 600px;
    margin: 0 calc(50% - 300px);
    background: rgba(17, 17, 17, 0.8);
    color: rgba(223, 255, 255, 0.8);
    padding: 10px;
    border: 1px solid gold;
    height: 30vh;
    overflow-x: hidden;
}

@media screen and (max-width: 959px) {
    #top-news .sentences {
        width: 90vw;
        margin-left: 5vw;
        margin-top: 0;
        height:30vh;
        max-height: inherit;
/*        height: calc(100vh - 0px - 50vw / 3* 4);*/
    }
}

#top-news dl {
    border-bottom: 1px solid lightyellow;
    margin-bottom: 1vh;
    padding-bottom: 1vh;
    position: relative;
}

#top-news dl dt {
    font-size: 1.4vh;
    font-style: italic;
    background: rgba(0,0,0,0.7);
    text-shadow: 1px 2px rgba(219, 219, 219, 0.7);
    margin-right: 1em;
    padding: 0.2vh 1em 0.6vh 0.8em;
    right: 0;
    position: absolute;
    border: 1px solid;
    border-radius: 20px;
    display: inline;
    line-height: 2vh;
}

@media screen and (max-width: 959px) {
    #top-news dl dt {
        position: relative;
        display: flex;
        width: 10vh;
    }
}

#top-news dl dd {
    font-size: 90%;
}

@media screen and (max-width: 479px) {
    #top-news dl dd {
    font-size: 75%;
}
}

video {
    width: calc( (100vh - 250px - 20vh) / 9 * 16);
    margin: 0 0 10vh 0;
    top: 36vh;
    position: absolute;
    left: calc( 50vw - ((100vh - 250px - 20vh) / 9 * 16) / 2);
    z-index: 100;
    filter: grayscale(100%);
    clip-path: polygon(23% 0%, 77% 0%, 100% 100%, 0% 100%);
}

@media screen and (max-width: 959px) {
    video {
        width: 90vw;
        left: 5vw;
    }
}

@media screen and (max-width: 479px) {
    video {
        top: 60vh;
        margin-bottom: 0;
    }
}
