


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

    /* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: 999;
      background:#263238;
      text-align:center;
      color:#fff;
    }
    
    /* Loading画像中央配置　*/
    #splash_logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
      width:260px;
    }
    
    /* fadeUpをするアイコンの動き */
    .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
     

    body {
        margin: 0;
        width: 100%;
        height: auto;
        /* min-height: 100vh; */
        display: grid;
        /* grid-template-rows: auto 1fr auto; */
        grid-template:
            "header header" auto
            "sidebar main" 1fr
            "footer footer" auto
            /320px 1fr;
            font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
        /* justify-items: center; */

        background: #e8b3ff ;/*保険用*/
        background: -moz-linear-gradient(top, white 0%, #e8b3ff 100%);/*古いFireFox向け*/
        background: -webkit-linear-gradient(top, white 0%,#e8b3ff 100%);/*古いSafariなど向け*/
        filter:progid:DXImageTransform.Microsoft.Gradient(
            startColorstr='white',
            endColorstr='#e8b3ff',
            GradientType=0 );/*IE9以下向け*/
        background: linear-gradient(to bottom, white 0%, #e8b3ff 100%);/*正規の指定*/
        background-size: 100% 100%;/*サイズを大きくひきのばす*/
        animation: bggradient 20s ease infinite;
    }
    
    @keyframes bggradient{
        0% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
        100% {
            background-position: 0% 50%;
        }
    }
    
    
    
    /* *{
        outline: 2px red solid;
    } */
    
    
    

main {
    text-align: right;
    /* height: 5800px; */
    min-width: 500px;
}

header {
    grid-area: header;
    height: 80px;
    /* border-bottom: 1px solid #000; */
    /* background-color: #263238; */
}

aside {
    grid-area: sidebar;
    position: fixed;
    margin: auto;
    padding-top: 70px;
    padding-left: 70px;
}

.menu {
    height: 20%;
    padding-bottom: 24px;
}

li {
    
    list-style: none;
}

.menu a{
    /* padding-left: 70px; */
    display: block;
    font-size: 56px;
    text-decoration: none;
    font-family: kurobara-cinderella, sans-serif;
    margin: 0 auto;
    color: #263238;
}

main {
    grid-area: main;
}

h1 img {
    width: 64%;
    padding-top: 100px;
    padding-right: 140px;
    text-align: right;
}

h2 img {
    width: 80%;
    padding-bottom: 60px;
    margin-left: auto;
    display: block;
    animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
    from {
      opacity: 0;
      transform: translateY(100px);
    }
  
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.sectionname4 img {
    width: 50%;
    padding-top: 160px;
    padding-bottom: 40px;
}

.sectionname5 img {
    width: 60%;
    padding-top: 160px;
}

.sectionname6 img {
    width: 70%;
    padding-top: 160px;
}

#Top {
    height: 100vh;
}


#container {
	display: flex; /* flexbox */
	flex-wrap: wrap; /* 折返し指定 */
    justify-content: space-between;
    padding-right: 140px;
    padding-left: 140px;
}




.song {
    text-align: center;
    padding-bottom: 70px;
}

.music img {
    width: 220px;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 10px 10px 15px -10px;
}

.music :hover img{
    opacity: 0.6;
    transition-duration: 0.3s;
  }

.musictitle {
    font-size: 12px;
    font-weight: bold;
    padding: 16px;
}

.accordion-area li {
    width: 90%;
    font-size: 16px;
    font-weight: bold;
}


/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 88%;
    margin: auto
}

.accordion-area li{
    margin: 8px 0;
    /* padding-left: px; */
}

.accordion-area section {
	border-bottom: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    color: #263238;
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: bold;
    padding: 3% 3% 3% 70px;
    transition: all .5s ease;
    text-align: left;
}

.accordion-area p {
    color: #263238;
    text-align: left;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #9B82CA;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

/*closeというクラスがついたら形状変化*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    /* background: #f3f3f3; */
	margin:0 3% 3% 3%;
    padding: 3%;
}

.infop {
    line-height: 1.5;
    font-weight: normal;
    
}

li a {
    text-decoration: none;
}

.infoplink {
    line-height: 1.5;
    font-weight: normal;
    padding-top: 16px;
}


.logo img {
    height: 120px;
    padding-left: 70px;
    padding-bottom: 24px;
}

.iolabout {
    display: flex;
    flex-flow: column;
    text-align: left;
    padding-bottom: 16px;
}

#About4 p {
    text-align: left;
}

.jewelize {
    font-family: kurobara-cinderella, sans-serif;
    font-size: 48px;
    color: #263238;
    margin-top: auto;
    padding-top: 32px;
    padding-left: 32px;
    padding-bottom: 24px;
}

.introduction {
    width: 84%;
    margin: auto;
    padding-top: 8px;
    padding-bottom: 8px;
    /* padding-left: 140px; */
    line-height: 1.5;
    text-align: left;
}

.introduction2 {
    width: 84%;
    margin: auto;
    padding-top: 8px;
    padding-bottom: 16px;
    /* padding-left:140px; */
    line-height: 1.5;
    text-align: left;
}

.plan {
    display: flex;
    /* text-align: left; */
    padding-left: 50px;
    line-height: 1.5;
}

.soon {
    margin-top: auto;
    color: #9B82CA;
    padding-left: 32px;
    padding-bottom: 8px;
    font-weight: bold;
}

.creater {
    padding-left: 24px;
}


h3 {
    margin-top: auto;
    /* margin-right: auto; */
    padding-left: 10px;
    /* padding-top: 16px; */
    /* padding-bottom: 8px; */
    font-size: 2.2vw;
    font-weight: bold;
}

.position {
    font-size: 1.4vw;
    padding-left: 16px;
    margin-top: auto;
}

.twitterlogo img {
    margin-top: auto;
}

.Twittericon img {
    padding-left: 16px;
    padding-top: 28px;
    margin-top: auto;
}

.profile  {
    display: flex;
}

.profile img {
    margin-top: auto;
}

.career {
    font-size: 14px;
    padding-top: 16px;
    margin-top: auto;
    line-height: 1.5;
}

.member {
    display: flex;
    padding-top: 24px;
    padding-left: 70px;
    padding-bottom: 24px;
}

.member2 {
    display: flex;
    padding-top: 24px;
    padding-left: 100px;
    padding-bottom: 24px;
}

.Memberpic img {
    width: 160px;
    border-radius: 10px;
    user-select: none;
    box-shadow: 6px 6px 10px -10px;
}

.creater {
    display: flex;
    flex-flow: column;
}

.profile {
    display: flex;
}


.career {
    width: 90%;
    display: flex;
    text-align: left;
}

/* form {
    display: flex;
} */

.formtext {
    width: 72%;
    margin: auto;
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
    /* padding-left: 210px; */
    padding-bottom: 70px;
}

.form {
    text-align: center;
}

input {
    width: 584px;
    height: 40px;
    border: 1px #263238 solid;
    border-radius: 4px;
    padding-left: 16px;
    margin-bottom: 16px;
}

select {
    width: 604px;
    height: 40px;
    border: 1px #263238 solid;
    border-radius: 4px;
    padding-left: 8px;
    margin-bottom: 16px;
}

textarea {
    width: 584px;
    height: 144px;
    border: 1px #263238 solid;
    border-radius: 4px;
    padding-top: 16px;
    padding-left: 16px;
    margin-bottom: 16px;
}

button {
    display: block;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    width: 128px;
    height: 48px;
    background-color: #263238;
    border-radius: 20px;
    border: none;
    outline: none;
    margin: auto;
    margin-top: 32px;
    margin-bottom: 96px;
}

button:hover {
    background-color: #9B82CA;
}

footer {
    grid-area: footer;
    height: 80px;
    /* position: absolute;←絶対位置 /
    bottom: 0; /下に固定*/
    background-color: #263238;
}

footer p {
    text-align: center;
    color: white;
    padding: 32px;
}



}





/* SP用CSS */
@media screen and (max-width: 900px) {

    /* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
      position: fixed;
      width: 100%;
      height: 100%;
      z-index: 999;
      background:#263238;
      text-align:center;
      color:#fff;
    }
    
    /* Loading画像中央配置　*/
    #splash_logo {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    
    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
      width:260px;
    }
    
    /* fadeUpをするアイコンの動き */
    .fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }

    body {
        margin: 0;
        width: 100%;
        height: auto;
        /* min-height: 100vh; */
        /* display: grid; */
        /* grid-template-rows: auto 1fr auto; */
        grid-template:
            "header header" auto
            "sidebar main" 1fr
            "footer footer" auto
            /320px 1fr;
            font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
        /* justify-items: center; */

        background: #e8b3ff ;/*保険用*/
        background: -moz-linear-gradient(top, white 0%, #e8b3ff 100%);/*古いFireFox向け*/
        background: -webkit-linear-gradient(top, white 0%,#e8b3ff 100%);/*古いSafariなど向け*/
        filter:progid:DXImageTransform.Microsoft.Gradient(
            startColorstr='white',
            endColorstr='#e8b3ff',
            GradientType=0 );/*IE9以下向け*/
        background: linear-gradient(to bottom, white 0%, #e8b3ff 100%);/*正規の指定*/
        background-size: 100% 100%;/*サイズを大きくひきのばす*/
        animation: bggradient 20s ease infinite;
    }
    
    
    
    /* *{
        outline: 2px red solid;
    } */
    
    
    


    main {
        width: 100%;
    }
    
    header {
        height: 80px;
        /* border-bottom: 1px solid #000; */
        /* background-color: #263238; */
    }

    /*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 600;
    /*ナビのスタート位置と形状*/
	top:0;
    left: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: #263238;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width:100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 800;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #9B82CA;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

    
    .menu {
        padding-bottom: 16px;
    }

    li {
    
        list-style: none;
    }
    
    .menu a{
        display: block;
        font-size: 40px;
        text-decoration: none;
        font-family: kurobara-cinderella, sans-serif;
        margin: 0 auto;
    }
    
    h1 img {
        width: 78%;
        display: block;
        position: absolute;
        top: 30%;
        left: 10%;
        text-align: center;
    }
    
    h2 img {
        width: 80%;
        padding-bottom: 60px;
        display: block;
        margin-left: auto;
        animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
    }

    @keyframes fadeUpAnime{
        from {
          opacity: 0;
          transform: translateY(100px);
        }
      
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
    
    .sectionname4 img {
        width: 60%;
        padding-top: 104px;
        padding-bottom: 8px;
    }
    
    .sectionname5 img {
        width: 60%;
        padding-top: 160px;
    }
    
    .sectionname6 img {
        padding-top: 160px;
    }
    
    #Top {
        height: 100vh;
    }
    
    
    #container {
        display: flex; /* flexbox */
        flex-direction: column;
        width: 80%;
        margin: auto;
    }
    
    
    .song {
        text-align: center;
        padding-bottom: 64px;
    }
    
    .music img {
        width: 50%;
        display: inline-block;
        border-radius: 8px;
        box-shadow: 10px 10px 15px -10px;
    }
    
    .music :hover img{
        opacity: 0.6;
        transition-duration: 0.3s;
      }
    
    .musictitle {
        font-size: 16px;
        font-weight: bold;
        padding: 16px;
    }

    .info {
        display: block;
        text-align: center;
        margin: auto;
    }
    
    .accordion-area li {
        font-size: 16px;
        font-weight: bold;
    }
    
    
    /*アコーディオン全体*/
    .accordion-area{
        list-style: none;
        width: 84%;
        max-width: 760px;
        margin: auto;
    }
    
    .accordion-area li{
        margin: 8px 0;
        /* padding-left: px; */
    }
    
    .accordion-area section {
        border-bottom: 1px solid #ccc;
    }
    
    /*アコーディオンタイトル*/
    .title {
        color: #263238;
        position: relative;/*+マークの位置基準とするためrelative指定*/
        cursor: pointer;
        font-size:1rem;
        font-weight: bold;
        padding: 3% 3% 3% 40px;
        transition: all .5s ease;
        text-align: left;
    }
    
    .accordion-area p {
        color: #263238;
        text-align: left;
    }
    
    /*アイコンの＋と×*/
    .title::before,
    .title::after{
        position: absolute;
        content:'';
        width: 12px;
        height: 2px;
        background-color: #9B82CA;
        
    }
    .title::before{
        top:48%;
        left: 12px;
        transform: rotate(0deg);
        
    }
    .title::after{    
        top:48%;
        left: 12px;
        transform: rotate(90deg);
    
    }
    
    /*closeというクラスがついたら形状変化*/
    
    .title.close::before{
        transform: rotate(45deg);
    }
    
    .title.close::after{
        transform: rotate(-45deg);
    }
    
    /*アコーディオンで現れるエリア*/
    .box {
        display: none;/*はじめは非表示*/
        /* background: #f3f3f3; */
        margin:0 3% 3% 3%;
        padding: 3%;
    }

    .infop {
        line-height: 1.5;
        font-weight: normal;
        
    }
    
    li a {
        text-decoration: none;
    }
    
    .infoplink {
        line-height: 1.5;
        font-weight: normal;
        padding-top: 16px;
    }
    
    
    
    
    .logo img {
        width: 50%;
        padding-top: 32px;
        padding-left: 24px;
        padding-bottom: 8px;
    }
    
    .iolabout {
        display: flex;
        flex-flow: column;
        padding-bottom: 16px;
    }
    
    #About4 p {
        text-align: left;
    }
    
    .jewelize {
        font-family: kurobara-cinderella, sans-serif;
        font-size: 48px;
        color: #263238;
        margin-top: 40px;
        padding-bottom: 16px;
        padding-left: 48px;
    }
    
    .introduction {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-right: 24px;
        padding-left: 48px;
        margin: auto;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .introduction2 {
        padding-top: 8px;
        padding-bottom: 16px;
        padding-right: 24px;
        padding-left: 48px;
        margin: auto;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .plan {
        display: flex;
        text-align: left;
        padding-top: 24px;
        padding-left: 48px;
        font-size: 16px;
        line-height: 1.5;
        flex-direction: column;
    }
    
    .soon {
        margin-top: auto;
        color: #9B82CA;
        padding-bottom: 8px;
        font-weight: bold;
        
    }
    
    .creater {
        padding-left: 24px;
    }

    .twiposi {
        display: flex;
        flex-flow: column;
        padding-left: 12px;
    }
    
    
    h3 {
        font-size: 24px;
        
    }
    
    .position {
        font-size: 16px;
        padding-top: 8px;
        padding-bottom: 8px;
        
    }
    
    .twitterlogo img {
        margin-top: auto;
    }
    
    .Twittericon img {
        width: 20px;
        margin-top: auto;
        padding: 8px;
    }
    
    .profile img {
        margin-top: auto;
    }
    
    .career {
        font-size: 14px;
        padding-top: 16px;
        margin-top: auto;
        line-height: 1.5;
        width: 90%;
        margin-right: auto;
    }
    
    .member {
        display: flex;
        padding-top: 24px;
        padding-left: 24px;
        padding-bottom: 24px;
    }
    
    .member2 {
        display: flex;
        padding-top: 24px;
        padding-left: 24px;
        padding-bottom: 24px;
    }
    
    
    .Memberpic img {
        width: 120px;
        border-radius: 10px;
        user-select: none;
        box-shadow: 6px 6px 10px -10px;
    }
    
    .creater {
        display: flex;
        flex-flow: column;
    }
    
    .profile {
        display: flex;
    }
    
    
    .career {
        display: flex;
        text-align: left;
    }
    
    /* form {
        display: flex;
    } */
    
    .formtext {
        font-size: 16px;
        line-height: 1.5;
        /* text-align: left; */
        margin: auto;
        width: 80%;
        padding-bottom: 70px;
    }
    
    .form {
        text-align: center;
    }
    
    input {
        width: 80%;
        height: 40px;
        border: 1px #263238 solid;
        border-radius: 4px;
        padding-left: 16px;
        margin-bottom: 16px;
    }
    
    select {
        width: 83%;
        height: 40px;
        border: 1px #263238 solid;
        border-radius: 4px;
        padding-left: 8px;
        margin-bottom: 16px;
    }
    
    textarea {
        width: 80%;
        height: 144px;
        border: 1px #263238 solid;
        border-radius: 4px;
        padding-top: 16px;
        padding-left: 16px;
        margin-bottom: 16px;
    }
    
    button {
        display: block;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        font-size: 16px;
        text-align: center;
        width: 128px;
        height: 48px;
        background-color: #263238;
        border-radius: 20px;
        border: none;
        outline: none;
        margin: auto;
        margin-top: 32px;
        margin-bottom: 96px;
    }
    
    button:hover {
        background-color: #9B82CA;
    }
    
    footer {
        grid-area: footer;
        height: 80px;
        /* position: absolute;←絶対位置 /
        bottom: 0; /下に固定*/
        background-color: #263238;
    }
    
    footer p {
        text-align: center;
        color: white;
        padding: 32px;
    }

}