/*************************************************************

フォント設定

*************************************************************/
:root {
    --noto-Sans-JP: "Noto Sans JP", serif;
    --noto-Serif-JP: "Noto Serif JP", serif;
    --colorBlue: #6CA1B5;
}




/*************************************************************

基本設定

*************************************************************/
body {
    font-family: var(--noto-Sans-JP);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

p {
    text-align: justify;
    margin-bottom: 1em;
}

p:last-of-type {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}

a {
    transition: .3s;
}

a:hover {
    opacity: .5;
}

.sec {
    margin-bottom: 100px;
}

.sec>div.inner {
    max-width: 1300px;
    margin: auto;
}

@media screen and (max-width:1300px) {
    .sec>div.inner {
        padding: 0 10px;
    }
}

.PcOnly {
    display: block;
}

@media screen and (max-width:1024px) {
    .PcOnly {
        display: none;
    }
}

.SpOnly {
    display: none;
}

@media screen and (max-width:1024px) {
    .SpOnly {
        display: block;
    }
}


ul.notes li {
    position: relative;
    padding-left: 1.5em;
    font-size: 14px;
    color: #666;
}

ul.notes li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

/*----------------------------
ページトップ
----------------------------*/
/*リンクの形状*/
#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333;
    border: solid 2px #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.6rem;
    transition: all 0.3s;
}

#page-top a:hover {
    background: #777;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}


/*************************************************************

ヘッダー　MVエリア

*************************************************************/
header {
    margin-bottom: 100px;
}

header>.inner {
    position: relative;
}

header>.inner::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 80px;
    width: 15px;
    height: 10px;
    border-top: solid 10px #666;
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
    transform: translate(-50%, 0);
}

@media screen and (max-width:1024px) {
    header>.inner::before {
        bottom: 20px;
    }
}

header picture img {
    max-width: none;
    width: 100%;
}


/*----------------------------
ロゴエリア
----------------------------*/
header #LogoBorder {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
    width: 100%;
}

header #LogoBorder::before,
header #LogoBorder::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
}

header #LogoBorder::before {
    margin-right: 1em;
}

header #LogoBorder::after {
    margin-left: 1em;
}

header #LogoArea {
    text-align: center;
    font-family: var(--noto-Serif-JP);
}

header #LogoArea p {
    text-align: center;
}

header #LogoArea h1 {
    font-size: 3vw;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 10px;
    ;
}

@media screen and (max-width:599px) {
    header #LogoArea h1 {
        font-size: 7vw;
    }
}

header #LogoArea h2 {
    background: #fff;
    padding: 5px 10px;
    border-radius: 50px;
    ;
}

/*----------------------------
SNSリンク
----------------------------*/
header .SnsArea {
    position: absolute;
    right: 20px;
    top: 20px;
}

@media screen and (max-width:599px) {
    header .SnsArea {
        top: inherit;
        bottom: 20px;
    }
}

header .SnsArea ul {
    display: flex;
    justify-content: flex-end;
}

header .SnsArea ul>li {
    flex: auto 0 1;
    margin-right: 20px;
}

@media screen and (max-width:1024px) {
    header .SnsArea ul>li {
        flex: 40px 0 1;
        margin-right: 10px;
    }
}

header .SnsArea ul>li:last-child {
    margin-right: 0;
}



/*************************************************************

この先10年プロジェクト 第1弾　なれない

*************************************************************/
#Project_1st {}


/*----------------------------
イントロテキスト
----------------------------*/
#Project_1st .intro {
    font-family: var(--noto-Serif-JP);
    margin-bottom: 50px;
    color: #000;
}

#Project_1st .intro p {
    text-align: center;
    font-size: 25px;
    margin-bottom: 1em;
}

@media screen and (max-width:1024px) {
    #Project_1st .intro p {
        font-size: 2.5vw;
    }
}

@media screen and (max-width:599px) {
    #Project_1st .intro p {
        font-size: 3.9vw;
    }
}

#Project_1st .intro h2 {
    font-size: 40px;
    text-align: center;
    font-weight: 700;
}

@media screen and (max-width:1024px) {
    #Project_1st .intro h2 {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    #Project_1st .intro h2 {
        font-size: 6.5vw;
    }
}

/*----------------------------
「なれない」説明欄
----------------------------*/
#Project_1st #Project_1st_main {
    font-family: var(--noto-Serif-JP);
    text-align: center;
    color: #000;
}

#Project_1st #Project_1st_main h3 {
    font-size: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width:599px) {
    #Project_1st #Project_1st_main h3 {
        font-size: 20px;
    }
}

#Project_1st #Project_1st_main h3::before,
#Project_1st #Project_1st_main h3::after {
    content: "";
    flex: 1;
    border-top: dashed 1px #000;
}

#Project_1st #Project_1st_main h3::before {
    margin-right: 1em;
}

#Project_1st #Project_1st_main h3::after {
    margin-left: 1em;
}

#Project_1st #Project_1st_main h3 span {
    font-size: 50px;
    font-weight: 700;
}

@media screen and (max-width:599px) {
    #Project_1st #Project_1st_main h3 span {
        font-size: 30px;
    }
}

#Project_1st #Project_1st_main h2 {
    font-size: 100px;
}

#Project_1st #Project_1st_main p.title{
    font-size: 2.5em;
}

@media screen and (max-width:1024px) {
    #Project_1st #Project_1st_main h2 {
        font-size: 9.5vw;
    }
	#Project_1st #Project_1st_main p.title{
    font-size: 2em;
}
}

@media screen and (max-width:599px) {
    #Project_1st #Project_1st_main h2 {
        font-size: 10vw;
    }
	
	#Project_1st #Project_1st_main p.title{
    font-size: 1.7em;
}
}

#Project_1st #Project_1st_main p {
    text-align: center;
}

#Project_1st #Project_1st_main p.date {
    color: var(--colorBlue);
    font-weight: 700;
    margin-bottom: 30px;
}

#Project_1st #Project_1st_main p.date span {
    font-size: 25px;
}

#Project_1st #Project_1st_main div.text {
    margin-bottom: 30px;
}

#Project_1st #Project_1st_main div.text p {}

@media screen and (max-width:599px) {
    #Project_1st #Project_1st_main div.text p {
        text-align: justify;
        margin-bottom: .5em;
    }
}


/*----------------------------
脚本家紹介
----------------------------*/
#Project_1st .column {
    border: solid 1px #000;
    padding: 50px 20px;
    border-radius: 5px;
    margin-top: 50px;
}

#Project_1st .column h3 {
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

@media screen and (max-width:599px) {
    #Project_1st .column h3 {
        font-size: 25px;
        text-align: justify;
    }
}

@media screen and (max-width:339px) {
    #Project_1st .column h3 {
        font-size: 22px;
        text-align: justify;
    }
}

#Project_1st .column dt {
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    background: #000;
    padding: 5px 20px;
    margin-bottom: 10px;
}

@media screen and (max-width:599px) {
    #Project_1st .column dt {
        font-size: 18px;
    }
}

#Project_1st .column dd {
    margin-bottom: 50px;
}

#Project_1st .column dd:last-of-type {
    margin-bottom: 0;
}



/*************************************************************

プロフィール

*************************************************************/
#Profile {
    padding: 100px 0;
    background: #333;
}

#Profile .ContentsTitle {
    margin-bottom: 50px;
}

#Profile .ContentsTitle h2 {
    color: #fff;
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}

@media screen and (max-width:599px) {
    #Profile .ContentsTitle h2 {
        font-size: 40px;
    }
}

#Profile .ContentsTitle p {
    text-align: center;
    color: var(--colorBlue);
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    font-size: 20px;
}

#Profile ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#Profile ul>li {
    flex: calc(100%/3 - 10px) 0 1;
    background: #fff;
    margin-bottom: 20px;
}

@media screen and (max-width:1024px) {
    #Profile ul>li {
        flex: calc(100%/2 - 10px) 0 1;
        background: #fff;
    }
}

@media screen and (max-width:599px) {
    #Profile ul>li {
        flex: 100% 0 1;
        background: #fff;
    }
}

#Profile ul>li img {
    max-width: none;
    width: 100%;
}


#Profile ul>li .text {
    padding: 20px;
}

#Profile ul>li .text h3 {
    font-family: var(--noto-Serif-JP);
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 30px;
}



/*************************************************************

公演概要

*************************************************************/
#About {}

#About .ContentsTitle {
    margin-bottom: 50px;
}

#About .ContentsTitle h2 {
    color: #000;
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    font-size: 50px;
    text-align: center;
}

@media screen and (max-width:599px) {
    #About .ContentsTitle h2 {
        font-size: 40px;
    }
}

#About .ContentsTitle p {
    text-align: center;
    color: var(--colorBlue);
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    font-size: 20px;
}

/*----------------------------
公演概要表
----------------------------*/
#About .AboutTable {
    border-top: solid 1px #ccc;
    margin-bottom: 50px;
}

#About .AboutTable div {
    display: flex;
    flex-wrap: wrap;
}

#About .AboutTable div>dt {
    flex: 300px 0 0;
    background: #eee;
    padding: 20px;
    font-weight: 700;
    border-bottom: solid 1px #ccc;
}

@media screen and (max-width:599px) {
    #About .AboutTable div>dt {
        flex: 100% 0 1;
        border-bottom: none;
        text-align: center;
    }
}

#About .AboutTable div>dd {
    flex: calc(100% - 300px) 0 1;
    padding: 20px;
    border-bottom: solid 1px #ccc;
}

@media screen and (max-width:599px) {
    #About .AboutTable div>dd {
        flex: 100% 0 1;
    }
}

#About .AboutTable dd a.bt {
    display: inline-block;
    border: solid 1px #333;
    text-align: center;
    padding: 5px 30px;
    border-radius: 50px;
    line-height: 1;
    margin-left: 20px;
}

@media screen and (max-width:599px) {
    #About .AboutTable dd a.bt {
        display: block;
        margin-top: 20px;
        margin-left: 0;
        padding: 10px 20px;
    }
}

#About .AboutTable div.DateTime dd p {
    margin-bottom: .5em;
}

#About .AboutTable div.DateTime.LastNoMargin dd p:last-of-type {
    margin-bottom: 0;
}


/*----------------------------
チケットを購入する
----------------------------*/
#About aside {
    padding: 50px 20px;
    border: solid 1px #000;
    border-radius: 5px;
}

#About aside h3 {
    font-family: var(--noto-Serif-JP);
    font-weight: 700;
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
}

#About aside h3+p {
    text-align: center;
    margin-bottom: 20px;
}

#About aside .AboutTable {
    max-width: 800px;
    margin: auto;
}

#About aside .AboutTable dt {
    background: none;
    display: flex;
    align-items: center;
}

@media screen and (max-width:599px) {
    #About aside .AboutTable dt {
        justify-content: center;
    }
}

#About aside .AboutTable dd {
    text-align: right;
}

#About aside .AboutTable dd a {
    display: inline-block;
    max-width: 300px;
    width: 100%;
    background: var(--colorBlue);
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
}

@media screen and (max-width:599px) {
    #About aside .AboutTable dd a {
        max-width: none;
    }
}

#About aside .AboutTable dd a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
}





/*************************************************************

フッター

*************************************************************/
footer {
    border-top: solid 1px #000;
    padding: 30px 20px;
}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul>li {
    flex: auto 0 1;
    margin: 0 10px;
    position: relative;
}

@media screen and (max-width:599px) {
    footer ul>li {
        font-size: 14px;
    }
}

footer ul>li:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 1px;
    height: 60%;
    background: #ccc;
    transform: translate(0, -50%);
}