/* ---------------------------------------------------
  トップページ専用
----------------------------------------------------- */


/*-----------------------------------------------------
  mainVisual 
------------------------------------------------------*/
/* header色変更
------------------------------------------------------ */
.logo__main--top, 
.logo__sub--top {
    color: transparent;
}
.logo__main--top.change-color,
.logo__sub--top.change-color {
    color: #000;
    transition: .3s;
}


.mainVisual {
    padding-top: 150px;
    color: #fff;
    position: relative;
    width: 100%;
    height: 700px;
    background-image: url(../img/new_header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.mainVisual__logo {
    position: absolute;
    display: block;
    left: 20px;
    top: 25%;
    color: #fff;
}

.mainVisual__ttl {
    display: block;
    color: #000;
    font-size: 20px;
    letter-spacing: 0em;
    font-weight: 300;
    margin-bottom: -10px;
}

.mainVisual__name {
    display: block;
    color: #000;
    font-size: 32px;
    letter-spacing: 0em;
    font-family: 'Zen_Kaku_Gothic_New-Bold';
    font-weight: 700;
}

.mainVisual__name--eng {
    font-family: 'Red_Hat_Display';
    font-weight: 600;
}


@media screen and (min-width:768px) {
    .mainVisual {
        background-image: url(../img/new_header-wide.png);
    }

    .mainVisual__ttl {
        font-size: 30px;
    }

    .mainVisual__name {
        font-size: 50px;
    }

    .mainVisual__logo img {
        width: 63%;
        margin-top: 20px;
    }
}




/* --------------------------------------------------
  information 
----------------------------------------------------*/
.section._primary {
    background: #eeeeee;
}
.information {
    margin-top: 30px;
    font-size: 14px;
}

.information__item {
    display: block;
    border-bottom: 1px solid #7c7c7c;
    padding: 3% 1% 3% 1%;
}

.information__item span {
    margin-bottom: 10px;
}

.label {
    display: inline-block;
    margin-left: 1.5em;
    padding: 0.01em 0.6em;
    font-size: 0.8em;
}

.label.label__cast,
.label.label__publish,
.label.label__class {
    border: 1px solid #000;
    color: #000;
}

.label.label__creation,
.label.label__choreo {
    border: 1px solid #000;
    background-color: #000;
    color: #fff;
}

.information__link {
    text-decoration: underline;
}

.information__link:hover {
    color: #7c7c7c;
}

.information__video {
    max-width: 500px;
}

@media screen and (min-width:768px) {
    .information {
        font-size: 16px;
    }
}

/* --------------------------------------------------
  preProfile 
  ---------------------------------------------------*/
.preProfile__body {
    display: flex;
    flex-direction: column;
}

.preProfile__image {
    margin-top: 30px;
}

.preProfile__image img {
    width: 100%;
}

.preProfile__txt {
    text-indent: 1.0em;
    text-align: justify;
    word-break: break-all;
}

.preProfile__image+.preProfile__txt {
    margin-top: 30px;
}

.preProfile__heading {
    text-align: center;
    font-size: 24px;
}

.preProfile__heading .main {
    font-family: 'Zen_Kaku_Gothic_New-Bold';
    font-weight: 700;
}

.preProfile__heading .sub {
    font-family: 'Red_Hat_Display';
    font-weight: 600;
}


@media screen and (min-width:768px) {
    .preProfile__body {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .preProfile__image {
        width: calc((100% - 50px) / 2);
        margin-top: 50px;
    }

    .preProfile__image img {
        flex-shrink: 0;
        object-fit: cover;
    }

    .preProfile__txt {
        width: calc((100% - 50px) / 2);
        text-align: justify;
    }

    .preProfile__heading {
        font-size: 36px;
    }

}

/* --------------------------------------------------
  videoArea
  ---------------------------------------------------*/
  .videoArea video {
    max-width: 100%;
  }
  @media screen and (min-width:768px) {
  .section._video {
    display: none;
  }
  }

