@charset "utf-8";
@media screen and (max-width:480px){

body {
    margin: 0;
    padding: 0;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

h2,
h3,
p,
ul,
li,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}
.container {
    width: 100%;
}

header .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    background-color: #6420A8;
    z-index: 10000;
}
header img{
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 30px;
    width: auto;
    height: 20px;
}
header img:nth-child(2){
    width: 37px;
    height: 30px;
    padding-right: 30px;
}

.container{
    width: 100%;
}

.header__nav {
    display: none;
}

/* ハンバーガーメニュー */
/* チェックボックスを非表示にする */
.drawer_hidden {
    display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    /* 重なり順を一番上にする */
    cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
    bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
    top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked~.drawer_open span {
    background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked~.drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #8146BC;
}

#drawer_input:checked~.drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #8146BC;
}

/* メニューのデザイン*/
.nav_content_hm {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /* メニューを画面の外に飛ばす */
    z-index: 99;
    background: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    transition: .5s;
    padding: 200px 0 0;
    justify-items: center;
}

li.nav_item_hm{
padding-bottom: 37px;
}

.nav_item_hm a {
    text-decoration: none;
    color: #8146BC;
    justify-content: center;
}

li.nav_item_hm a:hover{
 color: #FFB100;
}

.nav_icons_hm img{
    justify-content: center;
    margin: 27px;
}

/* メニュー黒ポチを消す */
.nav_list_hm {
    list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked~.nav_content_hm {
    left: 0;
    /* メニューを画面に入れる */
}

/*ハンバーガー終了*/

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

ul {
    list-style: none;
}

.profileimage{
    width: 262px;
    height: 249px; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px auto 44px;

}

dt {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 20% 0;
    margin-top: 40px;
    margin-bottom: 10px;
    position: relative;
}

dt img{
 vertical-align: bottom;
}

dt::after{
    position: absolute;
    content: "";
    background-color: #8146BC;
    height: 2px;
    bottom: -10px;
    width: 60vw;
}

dt img{
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px, solid, #fff;
}

.profile .icon img {
        margin-right: 5px;

}

.container .prof{
    background-color: #fff;
    color: #8146BC;
    padding-bottom:70px;

}

.container .discografy{
    background-color: #8146BC;
    color: #fff;
    padding-top:40px;
    padding-bottom: 150px
}

h2 {
    font-size: 2rem;
    padding-top: 90px;
    line-height: 2;
    text-align: center;
    color: #8146BC;

}
h2 span{
    text-align: center;
    padding-bottom: 13px;
    border-bottom: 6px solid #FFB100;     
}

h3 {
    font-size: 1.8rem;
    line-height: 1;
    text-align: left;
    color: #8146BC;
}

.discografy h3{
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    justify-content: left;
    padding: 0 20% 0;
    margin-top: 40px;
    margin-bottom: 10px;
    position: relative;
}
.discografy h3::after{
    position: absolute;
    content: "";
    background-color: #fff;
    height: 2px;
    bottom: -10px;
    width: 60vw;
    
}

h4 {
    font-size: 1.2rem;
    line-height: 1;
    
}

p {
line-height: 1.875;
padding: 25px 5% 0;
text-align: center;
}

dd {
    padding: 0 20% 0;
    text-align: left;
      
}

footer {
    color: #fff;
    background: url(../img/footer.png);
    background-size: 100% auto;
    background-repeat: no-repeat;    
    align-items: bottom;
}
footer p{
    font-size: 12px;
    padding-top: 117px;
    padding-bottom: 20px;
    text-align: center;
}
}

@media (min-width:768px) {
    header .container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        background-color: #6420A8;
        width: 100%;
        z-index: 10000;
    }

    header .container img:nth-of-type(1) {
        margin: 0 30px 0;
    }

    header .container img:nth-of-type(2) {
        display: none;
    }

    .header__nav {
        margin: 0 40px 0;
        display: flex;
        justify-content: space-around;
    }

    .nav__items {
        display: flex;
        justify-content: space-around;
        list-style: none;
        margin-top:0;
        margin-bottom: 0;
    }

    .nav__item a {
        align-items: center;
       color: #fff;
       display: flex;
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        height: 72px;
        text-decoration: none;
        margin-right: 10vw;
    }

    .nav_icons {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav a img {
        width: 20px;
        height: auto;
    }


    .nav__item a:hover {
        color: #FFB100;
    }

    .humburger {
        display: none;
    }

    h2{
        padding: 120px 0 57px; 
     }

    .profileimage{
        margin: 0 auto 24px;
    
    }
  
   .acount{
        display: flex;
       flex-flow: row;
       justify-content: space-around;
        align-items: start;
        padding-top: 0;
    }

h3 {
    display: flex;
    text-align:center;
    justify-content: center;
    align-items: start;
   /* margin-top: 30px;*/
    padding-right: 5vw;
    position: relative;
}

dt{
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 10px;
    position: relative;
}

dt::after{
    position: absolute;
    content: "";
    background-color: #8146BC;
    height: 2px;
    bottom: -10px;
    width: 30vw;
}

.acount dl{
    display: flex;
    flex-flow: column;
    justify-content: left;
    align-items: center;
}

.profile .icon {
    margin-left: 30px;
}

.profile .icon img {
    width: 20px;
    height: auto;
    border-radius: 6px;
    border: 1px, solid, #fff;
   margin-right: 5px;

}

p{
    display: flex;
    text-align: center;
    justify-content: center;
   /* margin-left: 5%*/
    padding: 25px 0 0 0; /*線ある場合は35px*/
}
    
    dd {
        justify-content: center;   
        padding: 0;
    }

}