@charset "UTF-8";
/*
font-family: 'Cormorant Garamond',serif;
font-family: 'Noto Serif JP',serif;
*/
#top article {
    margin: 0 auto;
    background-color: #090909;
}

/* .l-preca .blur li.one {
    width: 45%;
} */

#top .l-vis {
    height: auto;
}

#top .l-vis .l-vis__contents {
    position: relative;
    min-width: 1020px;
    text-align: center;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    #top .l-vis .l-vis__contents {
        min-width: 0;
        margin-bottom: 30px;
        /* margin-bottom: 100px; */
    }
}

.l-vis__contents img {
    width: 100%;
    max-width: 2000px;
    margin: auto;
}

.l-vis .l-vis__scroll {
    position: absolute;
    z-index: 2;
    bottom: -1%;
    right: 100px;
}

.l-vis .l-vis__scroll p {
    position: relative;
    padding: 0 0 80px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}

.l-vis .l-vis__scroll p:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 9px;
    left: 50%;
    width: 1px;
    height: 64px;
    margin: 0 0 0 -1px;
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    .l-vis .l-vis__scroll {
        display: none;
    }
}


/*----------common----------*/


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
　　header
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    margin-top: 20px;
    min-width: 100%;
    width: 20%;
    height: auto;
    padding: 2vw 0;
    background-color: rgba(255, 255, 255, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    -webkit-transition: background-color .4s ease-in-out, border-bottom .4s ease-in-out;
    transition: background-color .4s ease-in-out, border-bottom .4s ease-in-out;
}

.l-header>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.l-header>div .l-header__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;
    position: absolute;
    z-index: 101;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 6vw;
}

.l-header>div .l-header__btn>div {
    position: relative;
    width: 30px;
    height: 10px;
}

.l-header>div .l-header__btn>div span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #c89c00;
}

.l-header>div .l-header__btn>div span:nth-of-type(1) {
    top: 0;
}

.l-header>div .l-header__btn>div span:nth-of-type(2) {
    top: 8px;
}

.l-header>div nav {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    margin: auto;
    /* width: 30%; */
    height: 100vh;
    padding: 5vw 0;
    background-color: #090909;
    -webkit-transition: padding .4s ease-in-out;
    transition: padding .4s ease-in-out;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .l-header>div nav {
        display: none;
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: calc(6vw + 65px) 0 0 0;
        background-color: #090909;
        -webkit-transition: padding .4s ease-in-out;
        transition: padding .4s ease-in-out;
        overflow: scroll;
    }
}

.l-header>div nav h1 {
    display: none;
}

.l-header>div nav .l-header__nav--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 35px 0;
    padding: 4vh 80px 0 80px;
    width: 100%;
    /* overflow: hidden; */
}

@media screen and (max-width: 768px) {
    .l-header>div nav .l-header__nav--main {
        padding: 0 6vw;
    }
}

.l-header>div nav .l-header__nav--main li {
    margin: 0 40px 24px 0;
}

@media screen and (max-width: 768px) {
    .l-header>div nav .l-header__nav--main li {
        margin: 0;
        text-align: center;
    }
}

.l-header>div nav .l-header__nav--main li a {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #8e712f;
}

@media screen and (max-width: 768px) {
    .l-header>div nav .l-header__nav--main li a {
        padding: 20px;
        font-size: 32px;
        font-weight: 700;
        -webkit-transition: opacity .2s ease-in-out;
        transition: opacity .2s ease-in-out;
    }
}

.l-header.is-active .l-header__btn>div span {
    background-color: #c89c00;
}

.l-header.is-active .l-header__btn>div span:nth-of-type(1) {
    top: 4px;
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}

.l-header.is-active .l-header__btn>div span:nth-of-type(2) {
    top: 4px;
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.l-header>div nav .l-header__nav--main li a span {
    display: block;
    font-size: 14px;
    color: #e7eaeb;
    margin-top: 4px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    .l-header>div nav .l-header__nav--main {
        margin: 0 0 35px 0;
        padding: 0 6vw;
    }
    .l-header>div nav .l-header__nav--main li a {
        padding: 14px 6vw;
        font-size: 24px;
        letter-spacing: .04em;
        color: #8e712f;
    }
}

@media screen and (max-width: 768px) {
    .l-header.is-active .l-header__btn>div span {
        background-color: #c89c00;
    }
    .l-header.is-active .l-header__btn>div span:nth-of-type(1) {
        top: 4px;
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
    }
    .l-header.is-active .l-header__btn>div span:nth-of-type(2) {
        top: 4px;
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
    }
}

.l-contents {
    max-width: 1200px;
    margin: auto;
}

section h1 {
    margin-top: revert;
    font-size: 6em;
    color: #8e712f;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1em;
    text-align: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
    section h1 {
        font-size: 56px;
        text-align: center;
        margin-bottom: 10px;
    }
}

section h2 {
    font-size: 1.2em;
    color: #e7eaeb;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    line-height: 1.6em;
    letter-spacing: 0.2em;
    text-align: center;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    section h2 {
        font-size: 14px;
        margin-bottom: 40px;
    }
    .util-sp-hidden{
        display: none;
    }
}

@media screen and (min-width: 767px) {
    .util-pc-hidden{
        display: none;
    }
}


/*
.flex {
      position: absolute;
}
*/

.flex ul {
    display: flex;
    max-width: 1400px;
    align-items: flex-start;
    justify-content: center;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .flex ul {
        display: block;
    }
}

.flex ul li {
    margin: 0 10px;
}

.flex ul li img {
    width: 100%;
    margin: -40px 0 -20px 0;
}

@media screen and (max-width: 768px) {
    .flex ul li {
        margin: 0;
    }
    .flex ul li img {
        width: 100%;
        margin: -20px 0 0 0;
    }
}

br.pc {
    display: none;
}

br.sp {
    display: block;
}

@media screen and (max-width: 768px) {
    br.sp {
        display: none;
    }
    br.pc {
        display: block;
    }
}


/*btn----------*/

.l-btn {
    width: 380px;
    margin: 80px auto 0 auto;
    text-align: center;
    background-image: url(../img/b-arrow.svg);
    background-size: 14px 16px;
    background-position: 94% 50%;
    background-repeat: no-repeat;
    background-color: #c89c14;
}

@media screen and (max-width: 768px) {
    .l-btn {
        width: 100%;
        margin: 40px auto 0 auto;
    }
}

.l-btn a {
    display: block;
    padding: 32px 0;
    text-align: center;
    color: #fff;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
    .l-btn a {
        padding: 28px 0;
    }
}


/*----------image-blur*/

.btn-ov {
    -webkit-transition: opacity .4s ease-in-out;
    transition: opacity .4s ease-in-out;
}

.btn-ov:hover {
    opacity: .6;
}

.fly {
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
}

.fly:hover {
    box-shadow: 0 0 40px rgba(102, 102, 102, 0.6);
}


/*----------btn*/


/*----------common----------*/


/*copy----------*/

section.l-copy {
    padding: 200px 0 0;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    section.l-copy {
        padding: 0 20px;
        margin-top: 0;
    }
}

section.l-copy h3 {
    font-size: 1.8em;
    color: #e7eaeb;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    text-align: center;
    line-height: 2em;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
    section.l-copy h3 {
        letter-spacing: 0.04em;
        font-size: 14px;
    }
}


/*---------copy*/


/*news----------*/

.l-news {
    width: 100%;
    max-width: 1200px;
    padding: 160px 100px;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .news-64-p {
        margin-top: 0 !important;
    }
    .news-64-p-flex {
        margin-top: 0 !important;
        display: flex;
        justify-content: space-between;
    }
    .news-64-span {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .l-news {
        padding: 80px 20px;
    }
}

.l-news h1 {
    font-size: 4em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .l-news h1 {
        text-align: left;
        font-size: 32px;
    }
}

.l-news ul.l-news__li {
    color: #fff;
    margin-bottom: 40px;
}

.l-news a {
    color: #fff;
}

.l-news ul.l-news__li li {
    background-image: url(../img/b-arrow.svg);
    background-size: 10px 12px;
    background-position: 98% 75%;
    background-repeat: no-repeat;
    border-bottom: #1d1d1f solid 2px;
    padding: 20px;
}

@media screen and (max-width: 768px) {
    .l-news ul.l-news__li li {
        background-position: 98% 67%;
        padding: 20px 20px 20px 0;
    }
}

.l-news p {
    margin-top: 10px;
    line-height: 1.4em;
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .l-news p {
        font-size: 14px;
    }
}

.l-news time {
    font-size: 1.4em;
}

@media screen and (max-width: 768px) {
    .l-news time {
        font-size: 14px;
    }
}

.l-btn__sns .b-tw {
    width: 380px;
    margin: 0 auto;
    text-align: center;
    border: #55acee 1px solid;
    padding: 32px 0;
}

@media screen and (max-width: 768px) {
    .l-btn__sns .b-tw {
        width: 100%;
    }
}

.b-tw__svg {
    width: 48px;
}

.l-btn__sns .b-in a {}

.l-btn__sns .b-in {
    width: 380px;
    margin: 0 auto;
    text-align: center;
    border: #d93177 1px solid;
    padding: 32px 0;
}

@media screen and (max-width: 768px) {
    .l-btn__sns .b-in {
        width: 100%;
        margin: 0 !important;
    }
}

.b-in__svg {
    width: 48px;
}


/*----------news*/


/*design----------*/

.l-design {
    width: 100%;
    padding: 160px 100px;
    margin: auto;
    background-color: #2e2e31;
}

@media screen and (max-width: 768px) {
    .l-design {
        padding: 80px 20px;
    }
}

.l-design p {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    font-size: 1.3em;
    margin-top: 40px;
    line-height: normal;
}

@media screen and (max-width: 768px) {
    .l-design p {
        font-size: 1.2em;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .l-design .flex ul li {
        margin-bottom: 20px;
    }
    .New-design {
        margin-bottom: 60px!important;
    }
}


/*----------design*/


/*member----------*/

.l-member {
    width: 100%;
    padding: 160px 100px 0;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .l-member {
        padding: 80px 20px;
    }
}

.l-member ul li h3 {
    color: #8e712f;
    font-size: 3.4em;
    line-height: 1.2em;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 20px;
}

.l-member ul li h4 {
    display: none;
}

@media screen and (max-width: 768px) {
    .l-member ul {
        margin-top: 60px;
    }
}

.l-member ul li:first-child h3:after {
    content: "ORBIT OF THE SHOOTING STARS.";
    opacity: 0.2;
    display: block;
    color: #fff;
    font-size: 0.6em;
    line-height: 1.6em;
    letter-spacing: 0.04em;
}

.l-member ul li p {
    color: #e7eaeb;
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .l-member ul li:first-child h3:after {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .l-member ul li h3 {
        font-size: 28px;
        position: relative;
        z-index: 1;
    }
    .l-member ul li h4 {
        font-size: 50px;
        font-weight: bold;
        opacity: 0.1;
        position: relative;
        z-index: 0;
        display: block;
        color: #fff;
        font-family: 'Cormorant Garamond', serif;
        line-height: 0.7;
        letter-spacing: 0em;
        margin-top: -110px;
        text-align: right;
        right: -20px;
    }
    .l-member ul li p {
        margin-top: -40px;
        margin-bottom: 50px;
        font-size: 14px;
    }
}

.l-member ul li p small {
    font-size: 14px;
}

.l-member ul li:nth-child(2) h3 {
    text-align: right;
}

.l-member ul li:nth-child(2) h3:after {
    /* content: "THE BEGINNING OF ANOTHER LIFE."; */
    content: "HYDE ファブリックポスター";

    opacity: 0.2;
    display: block;
    color: #fff;
    font-size: 0.6em;
    line-height: 1.6em;
    letter-spacing: 0.04em;
}

.l-member ul li:nth-child(2) p {
    text-align: right;
}

.l-member ul li dl {
    float: right;
    width: 500px;
}

.l-member dt {
    float: left;
    color: #fff;
    font-size: 1.2em;
    text-align: left;
    line-height: 40px;
    width: 200px;
    padding-left: 20px;
}

.l-member dd {
    color: #8e712f;
    font-size: 1.2em;
    border-bottom: #8e712f solid 1px;
    text-align: left;
    line-height: 40px;
}

.l-member dd:before {
    content: ":";
    display: block;
    color: #fff;
    float: left;
    margin-right: 20px;
}

.poster__pos {
    top: -210px;
    position: relative;
    justify-content: flex-start !important;
}

.poster__pos li img {
    max-width: 274px !important;
}

@media screen and (max-width: 768px) {
    .l-member ul li:nth-child(2) h3:after {
        display: none;
    }
    .l-member ul li:nth-child(2) h4 {
        margin-top: -140px;
        text-align: left;
        left: -20px;
    }
    .l-member ul li:nth-child(2) p {
        /*  text-align: right;*/
    }
    .poster__pos {
        top: 10px;
    }
    .poster__pos li img {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .l-member ul li dl {
        width: 100%;
        font-size: 14px;
        margin-top: -40px;
    }
    .l-member dt {
        font-size: 14px;
        width: 40%;
    }
    .l-member dd {
        font-size: 14px;
    }
}


/*----------design*/


/*special----------*/

.l-special {
    padding: 140px 100px 160px 100px;
    margin-top: -140px;
}

.l-special .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
}

.l-special .l-special__item {
    width: calc(1200px / 5);
    margin: 5px;
    background-color: #2e2e31;
    border-top: #c89c14 2px solid;
    padding: 32px 20px;
    display: inline;
}

.l-special .l-special__item h3 {
    color: #8e712f;
    font-size: 2.2em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 020px;
    line-height: 1em;
}

.l-special .l-special__item h4 {
    color: #e7eaeb;
    font-size: 1em;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    text-align: center;
    line-height: 1.4em;
    min-height: 120px;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.l-special .l-special__item a {
    text-align: center;
    width: 100%;
    display: inline-block;
    color: #c89c14;
    border: #c89c14 1px solid;
    padding: 16px 10px;
    font-size: 1.4em;
    letter-spacing: 0.1em;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.gacha{
    margin: 0 auto 30px;
    max-width: 740px;
}

.gacha_inner{
    background-color: #2e2e31;
    padding: 32px;
    border-top: #c89c14 2px solid;
}

.gacha_inner + .gacha_inner{
    margin-top: 30px;
}

.gacha_inner:nth-of-type(2n) .gacha_image{
    order: 2;
}

.gacha_inner:nth-of-type(2n) .gacha_text{
    margin: 0 30px 0 0;
}

.gacha_image{
    width: 52%;
}

.gacha_inner:nth-of-type( 2n - 1 ) .gacha_image{
    width: 60%;
}

.gacha_image div + div{
    margin-left: 20px;
}

.gacha img{
    max-width: 100%;
}

.gacha_size{
    color: #fff;
    text-align: right;
    font-size: 12px;
    margin-top: 8px;
}

.gacha_text{
    flex: 1;
    margin-left: 30px;
}

.gacha_inner:nth-of-type( 2n - 1 ) .gacha_text{
    text-align: right;
}

.gacha_title{
    color: #8e712f;
    font-size: 2em;
    line-height: 1.2em;
    font-family: 'Noto Serif JP', serif;
    margin-bottom: 10px;
}

.gacha_lead{
    color: #e7eaeb;
    font-size: 1em;
    line-height: 1.6;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    margin-bottom: 12px;
}

.blur-gacha{
    margin-bottom: 80px;
}

.gacha_pt{
    color: #fff;
    font-size: 12px;
}

.gacha_pt_num{
    font-weight: bold;
    color: #8e712f;
}

.l-btn.gacha_btn{
    margin: 30px auto 0;
    background: initial;
}

.l-btn.gacha_btn a{
    color: #c89c14;
    border: 1px solid #c89c14;
    background-color: #000;
    background-image: url(../img/b-arrow_gold.svg);
    background-size: 14px 16px;
    background-position: 94% 50%;
    background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
    .l-special {
        margin: 0 20px;
        padding: 40px 0 80px 0;
        /*
    margin: -80px 20px 0 20px;
    padding: 80px 0 0 0;
*/
    }
    .l-special .flex {
        display: block;
    }
    .l-special .l-special__item h3 {
        height: auto;
        min-height: auto;
        margin-bottom: 10px;
        line-height: 1.2em;
    }
    .l-special .l-special__item h4 {
        height: auto;
        min-height: 0;
        margin-bottom: 20px;
        font-size: 14px;
        font-weight: bold;
        letter-spacing: 0.05em;
    }
    .l-special .l-special__item {
        width: 100%;
        margin: 10px 0;
        display: block;
    }
    .gacha_inner {
        padding: 32px 20px
    }
    .gacha_inner:nth-of-type(2n) .gacha_image{
        order: 1;
    }
    .gacha_inner:nth-of-type(2n) .gacha_text{
        margin: 0 30px 0 0;
    }
    .gacha_image{
        width: 100%;
    }
    .gacha_inner:nth-of-type( 2n - 1 ) .gacha_image{
        width: 100%;
    }
    .gacha_inner:nth-of-type( 2n - 1 ) .gacha_image .flex{
        display: flex;
    }
    .gacha_size{
        text-align: center;
        font-size: 10px;
    }
    .gacha_inner .gacha_text{
        text-align: center;
    }
    .gacha_inner:nth-of-type( 2n - 1 ) .gacha_text{
        text-align: center;
        margin:16px auto 0;
    }
    .gacha_inner:nth-of-type(2n) .gacha_text{
        margin:16px auto 0;
    }
    .gacha_title{
        font-size: 1.4em;
    }
    .gacha_lead{
        color: #e7eaeb;
        font-size: 1em;
        line-height: 1.6;
        font-family: 'Noto Serif JP', serif;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .blur-gacha{
        margin-bottom: 80px;
    }
    .gacha_pt{
        color: #fff;
        font-size: 12px;
    }
    .l-btn.gacha_btn a{
        font-size: 1.1em;
    }
}


/*----------special*/


/*preca----------*/

.l-preca {
    width: 100%;
    padding: 160px 100px;
    margin: auto;
    background-color: #2e2e31;
}

.l-preca p {
    text-align: left;
    color: #fff;
    font-size: 1.2em;
    line-height: 1.4em;
    margin: 20px auto 0;
    width: 740px;
}

@media screen and (max-width: 768px) {
    .l-preca p {
        width: 100%;
    }
}

.l-preca p span {
    text-align: left;
    color: #8e712f;
    font-weight: bold;
    font-size: 1em;
    margin-top: 14px;
}

@media screen and (max-width: 768px) {
    .l-preca {
        padding: 80px 20px 0 20px;
    }
    .l-preca p {
        font-size: 14px;
        line-height: 1.8em;
        width: 80%;
    }
}


/*----------preca*/


/*gasoline----------*/

.l-gasoline {
    width: 100%;
    padding: 160px 100px 160px 100px;
    margin: -160px auto 0;
    background-color: #2e2e31;
}

.l-gasoline p {
    text-align: center;
    color: #fff;
    font-size: 1em;
    line-height: 1.4em;
    margin: 20px auto 0;
    width: 620px;
}

@media screen and (max-width: 768px) {
    .l-gasoline {
        width: 100%;
        padding: 80px 20px;
        margin: auto;
        background-color: #2e2e31;
    }
    .l-gasoline p {
        font-size: 12px;
        text-align: center;
        width: 100%;
    }
}


/*----------gasoline*/


/*sns----------*/

.l-sns {
    padding: 160px 100px;
    background-color: #e7eaeb;
}

.l-sns h1 {
    margin-bottom: 80px;
    color: #000;
}

.l-sns .l-contents {
    text-align: center;
}

#twitterWrap {
    width: 800px;
    height: 500px;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}

li.l-tw_btn {
    width: 380px;
    margin: 40px 20px 0 !important;
    text-align: center;
    background-image: url('/lp/hyde/top/img/triangular-white.png');
    background-size: 14px 10px;
    background-position: 94% 50%;
    background-repeat: no-repeat;
    border: #ffffff 1px solid;
}

li.l-tw_btn a {
    display: block;
    padding: 30px 0;
    text-align: center;
    color: #ffffff;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

li.l-tw_btn a img {
    width: 23px;
    height: 18px;
    padding: 0;
    margin: 1px 6px 0 0;
}

li.l-in_btn {
    width: 380px;
    margin: 40px 20px 0 !important;
    text-align: center;
    background-image: url('data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2032%2024%22%20style%3D%22enable-background%3Anew%200%200%2032%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23D93177%3B%7D%3C%2Fstyle%3E%3Cpath%20id%3D%22%E3%82%B7%E3%82%A7%E3%82%A4%E3%83%97_1_%E3%81%AE%E3%82%B3%E3%83%94%E3%83%BC_2%22%20class%3D%22st0%22%20d%3D%22M32%2C12L0%2C0v24L32%2C12z%22%2F%3E%3C%2Fsvg%3E');
    background-size: 14px 10px;
    background-position: 94% 50%;
    background-repeat: no-repeat;
    border: #d93177 1px solid;
}

li.l-in_btn a {
    display: block;
    padding: 30px 0;
    text-align: center;
    color: #d93177;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

li.l-in_btn a img {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 1px 6px 0 0;
}

@media screen and (max-width: 768px) {
    .l-sns {
        padding: 80px 20px;
    }
    .l-sns .flex {
        margin-top: 40px;
    }
    li.l-tw_btn {
        width: 100%;
        margin: 0 !important;
        background-position: 94% 48%;
    }
    li.l-in_btn a {
        font-size: 18px;
        padding: 28px 0;
    }
    li.l-tw_btn a {
        font-size: 18px;
        padding: 28px 0;
    }
    li.l-tw_btn a img {
        width: 20px;
        height: 15px;
        padding: 0;
        margin: 2px 6px 0 0;
    }
    li.l-in_btn {
        width: 100%;
        margin: 20px 0 0 0 !important;
        background-position: 94% 48%;
    }
    li.l-in_btn a img {
        width: 18px;
        height: 18px;
        padding: 0;
        margin: 0 6px 0 0;
    }
    #twitterWrap {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        height: 500px;
        box-sizing: border-box;
        text-align: center;
        word-break: break-all;
    }
    #twitterWrap iframe {
        width: 740px !important;
    }
    #twitterWrap img {
        max-width: 320px;
    }
}


/*----------sns*/


/*info----------*/

.l-info {
    padding: 160px 0;
}

@media screen and (max-width: 768px) {
    .l-info {
        padding: 120px 0px;
    }
}

#accordion .accordionbox,
dl.accordionlist {
    display: none;
}


/* テーブ・E*/

.l-info table {
    margin: auto;
    border-collapse: separate;
    border-spacing: 0;
    text-align: left;
    font-size: 1em;
    line-height: 1.5;
    background-color: #242426;
    max-width: 1200px;
    width: 100%;
    table-layout: fixed;
}

.l-info table th {
    width: 30%;
    color: #fff;
    padding: 20px 20px 20px 40px;
    vertical-align: top;
    border-top: 1px solid #242426;
    background: #444444;
    vertical-align: middle;
    font-weight: bold;
    text-align: left;
}

.l-info table tr#fs th {
    border-top: 1px solid #444444;
}

.l-info table td {
    width: 100%;
    padding: 20px;
    vertical-align: top;
    border-top: 1px solid #444444;
    line-height: 1.6em;
    color: #fff;
    display: block;
}

.l-info table td a {
    font-weight: bold;
    color: #c89c14;
    text-decoration-line: underline;
}

.l-info table tr#ls td {
    border-bottom: 1px solid #444444;
}

.cardList {
    display: flex;
}

dl {
    margin: 10px auto;
    text-align: center;
}

dl img {
    width: 100%;
}

.l-info table tr#ls td ul li {
    text-indent: -1em;
    margin-left: 1em;
}


/* SP */

.accordionB {
    display: none;
}

@media screen and (max-width: 768px) {
    .l-info table {
        display: none;
    }
    .accordionB dt {
        cursor: pointer;
        background-color: #444444;
        background-image: url(../img/plus.svg);
        background-repeat: no-repeat;
        background-position: right 20px center;
        font-size: 16px;
        font-weight: 400;
        background-size: 3%;
    }
    .accordionB {
        background: #090909;
        width: 100%;
        margin: 0 auto 31px;
        padding: 5px 0;
        display: block;
        text-align: left;
    }
    .present_ttl {
        font-size: 1.8rem;
        font-weight: bold;
    }
    .tbltle {
        border-bottom: 1px solid #090909;
        color: #ffffff;
        padding: 15px 0 15px 15px;
    }
    .accordionB dd {
        display: none;
        background-color: #242426;
        font-size: 14px;
        font-weight: bold;
        color: #fff;
        line-height: 1.6em;
        margin: 0;
        padding: 20px 20px 40px 20px;
        letter-spacing: 0.1em;
    }
    dl img {
        width: 100%;
        justify-content: right;
        align-items: right;
        margin: 20px 0 0 0;
    }
    dd#card {
        text-align: left;
    }
    .accordionB dd a {
        color: #c89c14;
        text-decoration: underline;
    }
    .accordionB dt.active {
        background-image: url(../img/minus.svg);
    }
    dd ul li {
        text-indent: -1em;
        margin-left: 1em;
    }
}


/* SP */


/*----------info*/


/* footer  */

footer .container {
    max-width: 1040px;
    margin: 20px auto;
    padding: 0 20px;
}


/* SP */

@media screen and (max-width: 575px) {
    .container {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
}

footer.l-foot {
    background: #333333;
    color: #fff;
    line-height: 1.8;
    padding: 50px 0 56px;
    letter-spacing: 1.2px;
    font-size: 12px;
}

footer.l-foot a {
    color: #fff;
    text-decoration: none;
}

footer.l-foot a.uline {
    text-decoration: underline;
}

footer.l-foot a:hover {
    opacity: .8;
}

footer.l-foot p {
    margin-bottom: 1.6em;
}

footer.l-foot .footer-button {
    margin: 1em 0 3em;
}

footer.l-foot .footer-button>a {
    margin-right: 16px;
}

footer.l-foot .footer-logo {
    margin-bottom: 1em;
}

footer.l-foot .footer-info {
    border-top: 1px solid #fff;
    padding-top: 20px;
}

footer.l-foot .footer-copyright {
    padding-top: 5px;
    margin-top: 10px;
}


/*modal----------*/


/*sc-----*/

.remodal-sc {
    width: 620px;
    background-color: #2e2e31;
    border-top: #c89c14 2px solid;
    padding: 64px 40px;
    display: inline-block;
}

.remodal-sc h3 {
    color: #8e712f;
    font-size: 2.8em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1em;
}

.remodal-sc h4 {
    color: #e7eaeb;
    font-size: 1.2em;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    text-align: center;
    line-height: 1.4em;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.remodal-sc img {
    width: 500px;
}

.remodal-sc p {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 1rem;
    margin-left: 0;
    color: #e7eaeb;
    width: 500px;
    font-size: 1em;
    text-align: left;
    line-height: 1.6em;
    letter-spacing: 0.1em;
    margin: 20px auto 0;
}

.remodal-sc time {
    width: 100%;
    font-size: 14px;
    color: #e6ba20;
    line-height: 1.4em;
}

.remodal-sc dl {
    width: 500px;
    margin: 20px auto;
}

.remodal-sc dl.splayout {
    width: 100%;
}

.remodal-sc dt {
    float: left;
    color: #fff;
    border-bottom: #8e712f solid 1px;
    font-size: 1.2em;
    text-align: left;
    line-height: 40px;
    width: 150px;
    padding-left: 20px;
}

.remodal-sc dl.splayout dt {
    font-size: 14px;
    padding: 0;
    width: 100%;
    border-bottom: #53514b solid 1px;
    text-align: center;
}

.remodal-sc dd {
    color: #8e712f;
    font-size: 1.2em;
    border-bottom: #8e712f solid 1px;
    text-align: left;
    line-height: 40px;
    padding-right: 20px;
}

.remodal-sc dl.splayout dd {
    font-size: 14px;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    display: inline-block;
    line-height: 1.6;
}

.remodal-sc dd:before {
    content: ":";
    display: block;
    color: #fff;
    float: left;
    margin-right: 20px;
}

.remodal-sc dl.splayout dd:before {
    display: none;
}

.remodal-sc p strong {
    color: #e6ba20;
    font-size: 1.2em;
}

@media screen and (max-width: 768px) {
    .news_int {
        text-indent: -1em;
        margin-left: 1em !important;
    }
    .remodal-sc {
        width: 100%;
        padding: 40px 20px;
    }
    .remodal-sc img {
        width: 100%;
    }
    .remodal-sc h3 {
        font-size: 24px;
        margin-bottom: 24px;
        line-height: 1em;
    }
    .remodal-sc h4 {
        color: #e7eaeb;
        font-size: 14px;
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
        text-align: center;
        line-height: 1.4em;
        letter-spacing: 0.1em;
        margin-bottom: 24px;
    }
    .remodal-sc p {
        width: 100%;
    }
    .remodal-sc time {
        width: 100%;
        font-size: 14px;
    }
    .remodal-sc dl {
        width: 100%;
        margin: 20px auto;
    }
    .remodal-sc dt {
        font-size: 14px;
        padding: 0;
        width: 100%;
        border-bottom: #53514b solid 1px;
        text-align: center;
    }
    .remodal-sc dd {
        font-size: 14px;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .remodal-sc dd:before {
        display: none;
    }
    .remodal-sc p strong {}
    .remodal {
        padding: 20px;
        top: 80px;
    }
    .remodal-close {
        top: -50px;
        right: 30px;
    }
    .remodal-wrapper {
        padding: 10px 0;
    }
}


/*-----sc*/


/*----------modal*/

.remodal-sc ul {
    margin-bottom: 0;
    list-style: disc;
    padding-left: 1rem;
    width: 500px;
    margin: auto;
}

.remodal-sc ul li {
    text-indent: 0;
    line-height: 1.5rem;
    color: #fff;
    text-align: left;
    margin-top: 10px;
}

.remodal-sc ul.news_int {
    margin-top: 20px;
}

.remodal-sc ul.news_int li {
    color: #e7eaeb;
    line-height: 1.6em;
    text-indent: -1em;
    margin-left: 1em;
}

@media screen and (max-width: 768px) {
    .remodal-sc ul {
        width: 100%
    }
    .remodal-sc ul li {
        line-height: 1.4em;
        text-indent: 0;
        margin-left: 0;
    }
    .remodal-sc ul.news_int {
        margin-top: 20px;
    }
    .remodal-sc ul.news_int li {
        color: #e7eaeb;
        line-height: 1.4em;
        text-indent: -1em;
        margin-left: 0;
    }
}


/* スクロールバー追加 */

.l-news__li {
    overflow: auto;
    height: 300px;
    padding-right: 20px;
}

@media screen and (max-width: 768px) {
    .l-news__li {
        height: 270px;
    }
}


/* ポイントプログラム追加 */

.l-pointprogram {
    margin-top: 0px;
}

.l-pointprogram img {
    width: 100%;
    padding: 20px;
}

.l-pointprogram .flex {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.l-pointprogram .l-special__item {
    width: calc((100% - 60px) / 3);
    margin: 10px;
}

.l-pointprogram .l-special__item h4 {
    min-height: 80px;
    font-size: 1.8rem;
    padding-bottom: 0px;
}

.l-pointprogram .l-btn a {
    color: #c89c14;
    font-size: 120%;
}

@media screen and (max-width: 768px) {
    .l-pointprogram img {
        padding: 0px;
    }
    .l-pointprogram .flex {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .l-pointprogram .l-special__item {
        width: calc((100% - 20px) / 2);
        margin: 5px;
    }
    .l-pointprogram .flex {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        display: flex;
    }
    .l-pointprogram .l-special__item h4 {
        font-size: 0.95rem;
        min-height: 40px;
        padding-bottom: 0px;
    }
    .l-pointprogram .l-btn a {
        font-size: 110%;
    }
}


/*info改修*/

.present_ttl_block {
    padding-bottom: 1rem;
}

.l-info table.info-table th {
    width: 26%;
    vertical-align: top;
}

.l-info strong {
    font-weight: bold;
}

.toinfo-block {
    clear: both;
    padding: 40px 0px 0px;
    text-align: center;
}

.toinfo-block a {
    font-weight: bold;
    font-size: 120%;
    color: #c89c14;
    text-decoration-line: underline;
}

.toinfo-block .sp {
    display: none;
}

.l-member ul li p.poster_p {
    padding-top: 1.5rem;
    padding-right: 0;
    font-size: 0.65rem;
}


/* プリカ3弾修正 */

.l-preca .blur {
    width: 80%;
    margin: 0 auto;
    align-items: flex-end;
}

.l-preca .flex ul li img {
    width: 100%;
    margin: 0;
}

.l-preca .blur li {
    width: 50%;
}

/* .l-preca .blur li.one {
    padding-left: 4%;
    padding-right: 10%;
} */

.preca-bottom-text {
    display: block;
    clear: both;
    padding-top: 0.5rem;
}

.preca-bottom-text p {
    font-size: 12px;
    padding-right: 0;
    margin: 0;
    width: 100%;
    margin: 0 auto;
    text-align: right;
}


/* NEWS　画像3枚 */

.remodal-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-img-news {
    width: 33.3%;
    padding: 5px;
}

.flex-img-news img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    /* プリカ３弾修正 */
    .l-preca .blur {
        width: 100%;
    }
    .l-preca .blur li,
    .l-preca .blur li.one {
        width: 100%;
        padding-left: 5%;
        padding-right: 5%;
    }
    .l-preca .blur li.one {
        padding-bottom: 4rem;
    }
    .l-preca .blur li.one4dan {
        padding-bottom: 2rem;
    }
    .preca-bottom-text p {
        width: 100%;
        padding-right: 0rem;
        text-align: center;
    }
    .toinfo-block .pc {
        display: none;
    }
    .toinfo-block .sp {
        display: block;
    }
    .l-member ul li p.poster_p {
        padding-top: 20px;
        font-size: 0.75rem;
    }
    /* NEWS　画像3枚 */
    .flex-img-news {
        width: 100%;
        padding: 5px;
    }
    .remodal-flex {
        flex-direction: column;
    }
    /* ポスター更新の調整 */
    .l-member ul li p.spajust {
        margin-top: 40px;

    }
}

.snsx_btn {
    width: 380px;
    margin: 40px 20px 0 !important;
    text-align: center;
    background-image: url('/lp/hyde/top/img/triangular-black.png')!important;
    background-size: 14px 10px;
    background-position: 94% 50%;
    background-repeat: no-repeat;
    border: #000000 1px solid!important;
}

.snsx_btn a {
    display: block;
    padding: 30px 0;
    text-align: center;
    color: #000000!important;
    font-size: 1.4em;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.New-HYDE {
    margin-top:20px;

}

.New-design_title1 {
    color: #ffffff!important;
}

.New-design_title2 {
    font-size: 1.8em!important;
    font-weight: bold;
}

/*1020 add*/
.mt3rem{
    margin-top: 3rem !important;
}

.closed_card{
    position: relative;
}
.closed_card_img{
    filter: brightness(0.3);
}
.closed_card_p{
    font-weight: bold;
    margin-top: 0 !important;
    font-size: 1.7rem !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}
@media screen and (max-width: 768px) {
    .closed_card_p{
        font-size: 1.4rem !important;
    }
}

/* 0104 add */
.l-opinion {
    padding: 160px 0;
}

.opinion_box {
    border-top: #c89c14 2px solid;
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    height: 380px;
    background-color: #2e2e31;
}

.opinion_box h4 {
    margin-top: 2.5rem;
    text-align: center;
    color: white;
    min-height: 55px;
    font-size: 1.8rem;
    padding-bottom: 0px;
}

.opinion_box p {
    text-align: center;
    color: #fff;
    font-size: 1.3em;
    margin-top: 0;
    line-height: normal;
}

.opinion_btn {
    margin-top: 50px;
}

.opinion_text {
    margin-top: 50px !important;
    font-size: 14px !important;
}

.goldcolor_link{
    color: #C89C14;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .opinion_box {
        width: 90%;
        height: 310px;
    }

    .opinion_box p {
        font-size: 14px;
    }

    .opinion_btn {
        width: 90%;
        margin-top: 35px;
    }

    .opinion_btn a {
        padding: 18px 0;
    }

    .opinion_text {
        margin-top: 35px !important;
    }
}

@media screen and (max-width: 340px) {
    .opinion_box {
        height: 350px;
    }
}

.l-membersVoice {
    padding: 160px 0;
}

.mem_voi_title_div{
    position: relative;
    top: 25%;
}
.members_voice_title {
    max-width: 100%;
    height: 270px;
    background-image: url(../img/voice_title_pc.png);
    background-size: 100% 100.7%;
    border-bottom:2px solid #C89C15;
}

.voice_QAndA {
    max-width: 1000px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .voice_QAndA {
        max-width: 90%;
    }
    .voice_overview{
        max-width: 90%;
        margin: 0 auto;
    }
}

.voice_overview {
    margin-top: 4rem;
}

.voice_overview p {
    text-align: center;
    color: #fff;
    font-size: 1.3em;
    margin-top: 0;
    line-height: normal;
}

@media print,
screen and (min-width: 768px) {
    .heading2 {
        margin: 4.8em 0 2.4em;
        padding-bottom: 1.6em;
    }
}

@media print,
screen and (min-width: 768px) {
    .heading2 {
        margin: 5em 0 0;
    }
}

.heading2 {
    position: relative;
}

.heading2:after {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 62px;
    height: 4px;
    border-radius: 4px;
    background: #C89C14;
    content: "";
}

@media print,
screen and (min-width: 768px) {
    .heading2__title {
        font-size: 2.2rem;
        font-weight: 700;
    }
}

.heading2__title {
    margin: 0;
    line-height: 1.4;
}

@media print,
screen and (min-width: 768px) {
    .heading2__title {
        font-size: 1.8rem;
        font-weight: 700;
    }

}

.heading2__title {
    text-align: left;
}
.voice_accordion{
    background: #090909;
    width: 100%;
    margin: 30px auto 0;
    padding: 5px 0;
    display: block;
    text-align: left;
}
.voice_accordion dt{
    cursor: pointer;
    background-color: #444444;
    background-repeat: no-repeat;
    background-position: right 20px center;
    font-size: 16px;
    font-weight: 400;
    background-size: 3%;
}
.accordion_mark{
    position: relative;
    width: 25px;
    height: 5px;
    border-top: #c89c00 solid 2px;
}
.accordion_mark_container{
    position: absolute;
    right: 30px;
    top: 50%;
}
.accordion_mark:nth-child(1){
    transform: rotate(90deg);
    left: -1px;
    opacity: 1;
    transition-property: opacity;
    transition-duration: .3s;
	transition-timing-function: ease;
}
.accordion_mark:nth-child(2){
    top: -4px;
}
.voice_active .accordion_mark{
    border-top: #fff solid 2px;
}
.voice_active .accordion_mark:nth-child(1){
    opacity: 0;
}

.voice_QAndA_acc{
    margin-bottom: 2rem;
}
.voice_tbltle{
    color: #ffffff;
    padding: 15px 0 15px 15px;
    display: flex;
}
.voice_tbltle p{
    padding: 15px;
    font-weight: bold;
}
.voice_ans{
    display: flex;
}
.voice_ans_title{
    padding: 10px 0;
    margin:0 0 15px 25px;
    font-size: 16px;
}
.voice_present_ttl{
    border-top: 2px solid #c89c00;
    position: relative;
}
.voice_accordion dd{
    display: none;
    background-color: #242426;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.6em;
    margin: 0;
    padding: 20px 20px 40px 20px;
    letter-spacing: 0.1em;
    border: #c89c00 solid 2px;
}
.voice_accordion dt.voice_active{
    background-color: #c89c00;
}
.voice_accordion dt.voice_active h1{
    color: #fff;
}
.voice_accordion h1{
    padding: 5px 0;
    margin: 0 0 0 10px;
    text-align: left;
    font-family: "Libre Baskerville";
    font-size: 2.5em;
    color: #c89c00;
}
.voice_ans_p{
    font-weight: normal;
    margin-left: 25px;
}
.mt20px{
    margin-top: 20px;
}
.voice_q3_text{
    padding:10px 0;
}
.return_top{
    margin-top: 30px;
    text-align: center;
}

@media print,
screen and (min-width: 768px) {
    .l-header>div .y_scloll{
        overflow: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .y_scloll::-webkit-scrollbar{
        display: none;
    }
}

@media print,
screen and (max-width: 768px) {
    .members_voice_title{
        height: 200px;
        background-image: url(../img/voice_title_sp.png);
    }
    .members_voice_title h1{
        font-size: 2.8em;
    }
    .mem_voi_title_div{
        top: 35%;
    }
    .l-membersVoice{
        padding-bottom: 40px;
    }
    .voice_tbltle p{
        padding: 0 50px 0px 20px ;
        margin: auto 0;
        font-size: .9em;
        line-height: 17px;
    }
    .voice_overview{
        margin-top: 1.5rem;
    }
    .voice_overview p{
        font-size: 1em;
        margin-top: 10px;
        text-align: left;
    }
    .heading2__title{
        padding-bottom: 25px;
        font-size: 1.5em;
    }
    .voice_QAndA{
        margin-top: 30px;
    }
    .voice_accordion h1{
        font-size: 1.8em;
        margin-left: 0;
    }
    .accordion_mark{
        width: 18px;
    }
    .accordion_mark_container{
        right: 15px;
    }
    .voice_ans_title{
        font-size: 14px;
        padding: 5px 50px 0 0;
    }
    .voice_ans_p{
        padding: 0 50px 0 0;
    }
    .return_top{
        margin-top: 0;
    }
}