html{
    font-size: 62.5%;
}

body{
    font-size: 1.6rem;
    line-height: 1.5;
    color: black;
    background: #fff;
    /* background-image: url(../images/haikei.svg); */
}

/* 全部ゴシック固定（日本語対策） */
html, body,h1, h3, h4, h5, h6,p, a, li, span, div,small, strong, em,button, input, textarea, select {
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, Arial, Helvetica, sans-serif !important;
}


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


#wapper{
    width: 100%;
    margin: 0 auto;
}

header{
    position: relative;
    margin-bottom: 20px;
}

header h1{
    position: absolute;
    top:30px;
    left: 25px;
    width: 17%;
}

/* ハンバーガーメニュークリック前
/* クリックエリアと位置を指定 ---------------------- */
.btnHamburger {
    position: fixed;
    z-index: 3;
    top: 6vw;
    right: 30px;
    width: 30px; /* クリックエリアの横幅*/
    height: 20px; /* クリックエリアの高さ*/
    cursor: pointer;
}
        
 /* 3本線の1本ごとに共通するスタイルを指定 ---------------------- */
.btnHamburger .line {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 40px; /* 横幅 */
    height: 4px; /* 1本辺りの高さ */
    background: #3D5276; /* 線の色 */
        
/* 適用するプロパティ、変化する時間、変化する速度 */
    transition: 0.3s;
}
        
/* 3本線の各線の位置を指定 ---------------------- */
.btnHamburger .line_01 { top: 0px; }
.btnHamburger .line_02 { top: 10px; }
.btnHamburger .line_03 { top: 20px; }

/* #coverlayerクリック前 */
#coverlayer{
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: #3D5276;
    opacity: 0;
    transition: 0.5s;
}

/* navクリック前 */
nav{
    position: fixed;
    top: 100px;
    right: -100%;
    width: 100%;
    opacity: 0;
    transition: 1s;
    z-index: 2;

}

/* ハンバーガーメニュークリック後 */
/* 最上部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_01 {
    top: 8px; /* 上から2番目の線の位置に変更 */
    background: #fff;
    
    /* 線を45度回転 */
    transform: rotate(45deg);
}
    
/* 上から2番目の線のスタイル ---------------------- */
.btnHamburger.is-active .line_02 {
    opacity: 0; /* 不透明度を下げて線を消す */
}
    
/* 最下部の線のスタイル ---------------------- */
.btnHamburger.is-active .line_03 {
    top: 8px; /* 上から2番目の線の位置に変更 */
    background: #fff;
        
    /* 線を135度回転 */
    transform: rotate(135deg);
}

/* #coverlayerクリック後 */
#coverlayer.is-active{
    width:  77%;
    opacity: 0.9;
}

/* navクリック後 */
nav.is-active{
    left: 0;
    opacity: 1;
    position: fixed;
    z-index: 10;
}

/* ナビゲーション */
nav ul{
    margin-left: 22vw;
    text-align: center
}

nav ul li {
    padding-bottom: 40px;
}

nav ul li a{
	color: #fff;
	text-decoration: none;
    font-weight: normal;
    font-size: 1.4rem;
    font-family: "Handlee", cursive;
}

nav ul li .contact {
    background-color: #122341;
    padding: 7px 15px;
    border-radius: 30px;
}

nav ul li a:hover{
    color: #122341;
    background-color: #fff;
    border: 3px solid #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
}



/* 画像フワッと出る */
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
&.fadein-bottom{
      transform: translate(0,30px);
  }
&.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

#top_main{
    margin-bottom: 30px;
    width: 100%;
}

#top_main img{
    width: 100%;
}

main{
    position: relative;
}

main article{
    margin-bottom: 50px;
}

#concept{
    position: relative;
    margin-top: 80px;
}

@keyframes opacity{
    0%{opacity: 0;}
    30%{opacity: 0.3;}
    50%{opacity: 0.7;}
    100%{opacity: 1;}
}

#concept .ui01{
    width: 13px;
    position: absolute;
    top: 11px;
    left: 150px;
    z-index: 1;
    animation: opacity 1s both;
    animation-iteration-count: infinite;
}

#concept .ui02{
    width: 10px;
    position: absolute;
    top: 1px;
    left: 140px;
    z-index: 1;
    animation: opacity 1.5s both;
    animation-iteration-count: infinite;
}

#concept .bg{
    margin-bottom: 80px;
}

main h2{
    margin: 0 0 50px 20px;
    padding: 0 0 0 15px;
    font-size: 1.7rem;
    border-left: 3px solid #3D5276;
    color: #3D5276;
    font-weight: bold;
    font-family: "Handlee", "Hiragino Sans", "Yu Gothic", "YuGothic", Meiryo, Arial, Helvetica, sans-serif !important;
}

main h3{
    line-height: 1.5;
    margin: 0 38px 20px 38px;
    font-weight: bold;
    color: #3D5276;
    font-size: 1.1rem;
}

main p{
    line-height: 1.5;
    margin: 0 33px 0 38px;
    font-weight: bold;
    color: #3D5276;
    font-size: 1.1rem;
    text-align: center;
}

main h4{
    margin: 0 38px;
    line-height: 1.5;
}

#member{
    position: relative;
    margin: 0 auto;
    margin-bottom: 80px;
}

#member .ui03{
    width: 13px;
    position: absolute;
    top: 11px;
    left: 145px;
    z-index: 1;
    animation: opacity 1s both;
    animation-iteration-count: infinite;
}

#member .ui04{
    width: 10px;
    position: absolute;
    top: 1px;
    left: 135px;
    z-index: 1;
    animation: opacity 1.5s both;
    animation-iteration-count: infinite;
}

.mb1{
    width: 95%;
    /* margin-top: 30px; */
}

.mb2{
    width: 95%;
    /* margin-top: 50px; */
}

.mb3,.mb4,.mb5{
    width: 95%;
    /* margin-top: 40px; */
}

.pr1,.pr2,.pr3,.pr4,.pr5{
    display: flex;
    justify-content: space-around;
    margin: 0 35px 50px;
}

.photo{
    margin: 0 0 0 18px;
    width: 190px;
}

.profile{
    width: 170px;
    /* margin: 50px 0 70px 0;    */
}

.profile1{
    width: 170px;
    margin-top: 30px;
}

main #member .pr1 .profile .nm1{
    font-size: 1.3rem;
    font-size: 1.1rem;
    flood-color: #3D5276;
    font-weight: bold;
    text-align: center;
}


main #member .pr3 .profile .nm3{
    font-size: 1.1rem;
    flood-color: #3D5276;
    font-weight: bold;
    text-align: center;
    padding-top: 12px;
}

main #member .pr2 .profile .nm2{
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
    padding-top: 10px;
}

main #member .pr4 .profile .nm4,
main #member .pr5 .profile .nm5{
    font-size: 1.1rem;
    text-align: center;
    padding-top: 10px;
}

main #member .pr4 .profile .nm4,
main #member .pr5 .profile .nm5{
    margin: 0 20px 0 20px;
    text-align: center;
}

.x,.inst,.tiktok,.youTube{
    width: 30%;
}

.twitcasting{
    margin-top: 5px;
    width: 24%;
    padding: 0 0 5px 5px;
    line-height: 1.5;
}

main h5{
    line-height: 1.5;
    text-align: center;
    font-size: 0.9rem;
}

main #member .pr1 .profile .nm1-1{
    font-size: 0.9rem;
}

#discography{
    position: relative;
    margin-bottom: 80px;
}

#discography .ui05{
    width: 13px;
    position: absolute;
    top: 11px;
    left: 200px;
    z-index: 1;
    animation: opacity 1.5s both;
    animation-iteration-count: infinite;
}

#discography .ui06{
    width: 10px;
    position: absolute;
    top: 1px;
    left: 185px;
    z-index: 1;
    animation: opacity 2s both;
    animation-iteration-count: infinite;
}

.discography1{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.discography2{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.discography3{
    width: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 10px;
}

.d01{
    text-align: center;
    margin-bottom: 50px;
}

.d03{
    text-align: center;
    margin-bottom: 50px;
}

.d02{
    text-align: center;
    margin-bottom: 80px;
}

#discography .d01 .musicdownload,
#discography .d02 .musicdownload,
#discography .d03 .musicdownload{
    font-size: 1.1rem;
    background-color: #3D5276;
    border: #000 solid 1px;
    border-radius: 30px;
    padding: 5px 20px;
    width: 150px;
    margin: 0 auto;
    margin-top: 10px;
    color: #fff;
}

#discography a{
    text-decoration: none;
}


/* お知らせ */
#news{
    margin-bottom: 80px;
    position: relative;
}

#news .ns1{
    margin-bottom: 50px;
}

#news .ns2{
    margin-bottom: 10px;
}

#news .ui07{
    width: 13px;
    position: absolute;
    top: 11px;
    left: 120px;
    z-index: 1;
    animation: opacity 1.5s both;
    animation-iteration-count: infinite;
}

#news .ui08{
    width: 10px;
    position: absolute;
    top: 1px;
    left: 110px;
    z-index: 1;
    animation: opacity 2s both;
    animation-iteration-count: infinite;
}

#news  section a{
    text-decoration: none;
    color: #000;
}

#news .twitter-timeline{
    margin: 0 38px;
}

#news .ns3-3{
    background-color: #3D5276;
    color: #fff;
    line-height: 40px;
    display: block;
    border-radius: 20px;
    font-weight: bold;
    width: 220px;
    text-align: center;
    border: #000 solid 1px;
    font-size: 1.1rem;
}

/* コンタクトフォーム */
#contact{
text-align: left;
position: relative;
margin-bottom: 80px;
}

#contact .ui09{
    width: 13px;
    position: absolute;
    top: 11px;
    left: 150px;
    z-index: 1;
    animation: opacity 1s both;
    animation-iteration-count: infinite;
}

#contact .ui010{
    width: 10px;
    position: absolute;
    top: 1px;
    left: 139px;
    z-index: 1;
    animation: opacity 1.5s both;
    animation-iteration-count: infinite;
}

#contact .ctt{
    margin: 0;
    padding: 0 20px 10px 38px;
    font-size: 0.9rem;

}

#contact .contact1{
    background-color:#3D5276 ;
    line-height: 40px;
    font-weight: bold;
    width: 220px;
    text-align: center;
    margin-left: 40px;
    border-radius: 30px;
    border: #000 solid 1px;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    }


#contact .contact2{
    background-color:#3D5276 ;
    line-height: 40px;
    font-weight: bold;
    width: 220px;
    text-align: center;
    margin-left: 40px;
    border-radius: 30px;
    border: #000 solid 1px;
    color: #fff;
    font-size: 1.1rem;
    }

#contact a{
    text-decoration: none;
    color: #fff;
}


#contact section dt{
    text-align: left;
}

#contact section dd{
    text-align: left;
    margin-bottom: 10px;
}

/* フォームのビジュアル指定 */
main section dd{
    margin-bottom: 10px;
}

input[type="text"]{
    border-radius: 5px;
    width:45%;
}

input[type="email"]{
    border-radius: 5px;
    width: 70%;
}

textarea{
    width: 70%;
    height: 100px;
    border-radius: 7px;
}

label{
    margin-right: 300px;
}

input[type="submit"]{
    margin: 5px 0 30px 38px;
}

.form_btn {
    color: #fff;
    background-color: #3D5276;
    border-radius: 5px;
}

footer{
    background-color: #3D5276;
    color: #fff;
    text-align: center;
    height: 180px;
    vertical-align: middle;
}


footer h6{
    width: 10%;
    margin: 0 auto;
    padding: 20px 0 5px 0;
}

footer #sns .x,
footer #sns .inst,
footer #sns .tiktok,
footer #sns .youtube{
    width: 14%;
    margin: 0 auto;
    padding: 0 0 5px 0;
}

#sns .questions{
    width: 10%;
    margin-left: 8px;
    margin-bottom: 15px;
}

footer small{
    font-size: 0.9rem;
}

#pagetop{
    text-align: center;
    position: fixed;
    bottom: 91px;
    right: 15px;
}

#pagetop img{
    width: 42px;
}

/* TB用のcss */
@media screen and (min-width: 600px){
header{
    width: 100%;
    height: 100px;
    background-color: #3D5276;
}

header h1{
    top: 25px;
    left: 30px;
    width: 80px;
}

.btnHamburger .line {
    background: #fff; /* 線の色 */
}

.btnHamburger {
    position: fixed;
    z-index: 3;
    top: 4vw;
    right: 30px;
    width: 30px; /* クリックエリアの横幅*/
    height: 20px; /* クリックエリアの高さ*/
    cursor: pointer;
}

#coverlayer.is-active{
    width:  87%;
    opacity: 0.9;
}

nav ul li {
margin-right: 55px;
}

main{
    margin: 0 80px;
}


#concept .ui01{
    width: 15px;
    position: absolute;
    top: 12px;
    left: 160px;
}

#concept .ui02{
    width: 12px;
    position: absolute;
    top: 1px;
    left: 145px;
}

#member .ui03{
    width: 15px;
    position: absolute;
    top: 12px;
    left: 160px;
}

#member .ui04{
    width: 12px;
    position: absolute;
    top: 1px;
    left: 145px;
}

.pr1,.pr2,.pr3,.pr4,.pr5{
    display: inline;
}

.content{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.content1{
    display: flex;
    justify-content:center;
    margin-bottom: 80px;
}

main h3,main p{
    font-size: 1.3rem;
    margin-top: 2px;
}

main h4{
    font-size: 1.2rem;
}

main #member{
    margin: 0 auto;
}

main #member .content .photo .mb2{
    margin-top: 0;
}

main #member .content .photo .mb3{
    margin-top: 0;
}

main #member .content .profile{
    margin-left: 23px;
}

main #member .content .profile .nm1{
    margin-top: -56px;
    font-size: 1.3rem;
}

main #member .pr2 .profile .nm2,
main #member .pr3 .profile .nm3{
    padding: 0;
    margin-top: 55px;
}

main #member .pr4 .profile .nm4{
    padding: 0;
    margin-top: 58px;
}

main #member .pr5 .profile .nm5{
    padding: 0;
}

main #member .content1 .profile{
    margin-left: 23px;
}


.profile1{
    margin-top: -7.5px;
    padding: 0 20px; 
}

#discography .dcg{
    display: flex;
    margin-bottom: 80px;
}

#discography .d02{
    margin-bottom: 0;
}

#discography .d01 .musicdownload,
#discography .d02 .musicdownload
#discography .d03 .musicdownload{
    width: 120px;
}

#discography .ui05{
    width: 15px;
    position: absolute;
    top: 15px;
    left: 205px;
}

#discography .ui06{
    width: 12px;
    position: absolute;
    top: 1px;
    left: 190px;
}

.discography1{
    width: 80%;
}

.discography2{
    width: 80%;
}

.discography3{
    width: 80%;
}

.d01{
    margin-bottom: 0;
}

#discography .d02 .musicdownload{
    width: 120px;
}

main h5 {
    line-height: 1.5;
    font-size: 1.1rem;
}

#news .ui07{
    width: 14px;
    position: absolute;
    top: 9px;
    left: 135px;
}

#news .ui08{
    width: 11px;
    position: absolute;
    top: 1px;
    left: 115px;
}

.twitter-tweet {
  max-width: 450px !important;
}

dl dt{
    font-size: 1.2rem;
}

dl dd{
    font-size: 1.3rem;
}


#contact .ctt {
    font-size: 1.2rem;
}

#contact .ui09{
    width: 15px;
    position: absolute;
    top: 11px;
    left: 161px;
}

#contact .ui010{
    width: 12px;
    position: absolute;
    top: 0;
    left: 142px;
}


/* フォームのビジュアル指定 */
main section dd{
    margin-bottom: 15px;
}

input[type="text"]{
    border-radius: 5px;
    width:30%;
}

input[type="email"]{
    border-radius: 5px;
    width: 50%;
}

textarea{
    width: 50%;
    height: 110px;
    border-radius: 7px;
}

footer{
    height: 160px;
}

footer h6{
    width: 6%;
}

#pagetop{
    bottom: 86px;
    right: 20px;
}

#pagetop img{
    width: 50px;
}

footer #sns .x,
footer #sns .inst,
footer #sns .tiktok,
footer #sns .youtube{
    width: 7%;
    padding: 0 0 5px 0;
}

#sns .questions{
    width: 5%;
    margin-left: 8px;
    margin-bottom: 13px;
}

}

/* PC用のCSS */
@media screen and (min-width:960px){

header h1{
    width: 70px;
}

.btnHamburger {
    top: 30px;
    right: 30px;
    width: 30px; /* クリックエリアの横幅*/
    height: 20px; /* クリックエリアの高さ*/
    cursor: pointer;
}


#coverlayer.is-active{
    width:  90%;
    opacity: 0.9;
}

nav ul li {
margin-right: 150px;
}

/* #concept .ui01,
#concept .ui02{
    display: none;
}

#member .ui03,
#member .ui04{
    display: none;
}

#discography .ui05,
#discography .ui06{
    display: none;
}

#news .ui07,
#news .ui08{
    display: none;
}

#contact .ui09,
#contact .ui010{
    display: none;
} */

.discography1{
    width: 65%;
}

.discography2{
    width: 65%;
}

.discography3{
    width: 65%;
}

.twitter-tweet {
  max-width: 450px !important;
}

footer{
    height: 170px;
    vertical-align: middle;
}


footer h6{
    width: 4.5%;
}

footer #sns .x,
footer #sns .inst,
footer #sns .tiktok,
footer #sns .youtube{
    width: 55px;
}

#sns .questions{
    width: 40px;
    margin-bottom: 13px;
}

#pagetop{
    bottom: 80px;
    right: 30px;
}

#pagetop img{
    width: 57px;
}

}