@charset "UTF-8";

/* すべてのspanにinline-block
　　レスポンシブ 改行対応用 */
span{
    display: inline-block;
}

/* グローバルメニュー */
.about-menu img{
    opacity: 0.5;
}
.about-menu p{
    opacity: 0.5;
}

/* メイン */
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}

/* 財団について */
.about{
    background-color: white;
    padding: 0 40px 40px 40px;
    border-top: solid 6px #FF9D00;
    margin: 150px auto 50px auto;
}

/* チケット情報　タイトル */
.about-title{
    display: flex;
    font-family: 'Zen Maru Gothic', serif;
    margin-top: 35px;
    padding-bottom: 20px;
    border-bottom: solid 1px #707070;
    align-items: flex-end;
}
.about-title img{
    margin-right: 10px;
}
h2{
    font-size: 1.5rem;
}
.about-title p{
    font-size: 0.75rem;
    padding-left: 10px;
}

/* 財団について 内容 */
.about-in{
    max-width: 800px;
    margin: 30px auto 0 auto;
    text-align: justify;
    line-height: 1.8;
}
.space{
    margin-top: 50px;
    font-weight: 500;
}
.inner{
    margin-left: 20px;
}
.about-in li{
    list-style: decimal outside;
    margin-left: 10px;
}

/* 公開情報 */
.info{
    width: 90%;
    border: solid 3px #FF9D00;
    border-radius: 10px;
    margin: 50px auto 2%;
    padding: 20px 5% 0 5%;
    background-color: #FCFDE5;
}

/* サブタイトル */
.subtitle{
    text-align: center;
}
.subtitle p{
    display: inline-block;
    color: #2BA017;
    font-family: 'Zen Maru Gothic', serif;
    font-size: 1.5rem;
    font-weight: 700;
    border-bottom: solid 2px #5EBA4E;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* 公開情報 共通 */
.triangle{
    display: inline-block;
    vertical-align: -0.05em;
    color: #FF9D00;
    line-height: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.4em 0.5em;
    border-left-color: currentColor;
    border-right: 0;
    margin-right: 5px;
}
.info .flex{
    display: flex;
    flex-wrap: wrap;
    font-size: 1rem;
}
.year{
    margin-left: 10px;
}
.info .flex li{
   margin-right: 70px;
   margin-bottom: 5px;
}
.info a:hover{
    opacity: 0.5;
}
.bold{
    font-weight: 700;
    font-size: 1.125rem;
}
section{
    margin-top: 50px;
}

/* 公開情報 オレンジ縦線*/
.before{
    align-items: center;
    position: relative;
    margin-bottom: 10px;
    margin-left: 10px;
}
.before::before{
    content: "";
    background-color: #FF9D00;
    height: 80%;
    width: 3px;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
}

/* 事業計画 収支予算書 事業報告 共通*/

.black{
    color: black;
}
.small{
    font-size: 0.75rem;
}
.right{
    text-align: right;
    margin: 50px 0 20px 0;
}

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

    /* 財団について */
    .about{
        padding: 0 20px 40px 20px;
    }

    /* 財団について　タイトル */
    h2{
        font-size: 1.375rem;
    }

    /* 公開情報 */
    .info{
        width: 100%;
        padding-left: 10%;
    }
    

    /* サブタイトル */
    .subtitle p{
        margin-bottom: 20px;
        font-size: 1.25rem;
    }

    /* 公開情報 共通 */
    section{
        margin-top: 10px;
        margin-bottom: 50px;
    }
    .bold{
        font-size: 1rem;
    }
    

    /* 定款など */
    .teikan{
        flex-direction: column;
    }
    .teikan li{
        margin: 10px 0;
    }

}