@charset "utf-8";

@font-face {
    font-family: myFonts;
    src: url("../css/harenosora.woff") format("woff"),/*For Modern browser*/
    url("../css/harenosora.woff2") format("woff2")
}


body{
    font-family: myFonts;
    margin: 0px;
    padding: 0px;
    color: #333;
    font-size: 16px;
    line-height: 2;
    background: #f0f0f0;
    -webkit-text-size-adjust: none;
    overflow-x: hidden;
}

ul{
    list-style: none;
}

img{
    width: 100%;
    height: auto;
}


*, *::before, *::after{
    box-sizing: border-box;
}


.inner{
    width:100%;
    margin:0 auto;
    padding:0;
}


/*======================================
h2 text(contents title)
=======================================*/
h2 {
    padding: 50px;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    white-space: nowrap;
    margin-left: 3cm;
}

.shadow-yellow{
    text-shadow: 5px 5px 0 #c3a400;
}
.shadow-purple{
    text-shadow: 2px 2px 0 #30003b;
}
.shadow-black{
    text-shadow: 2px 2px 0 #000000;
}


/*===============================================
font
===============================================*/
body,h2,p{
    font-family: myFonts;
}




/*===============================================
header
===============================================*/
#title{
    z-index:0;
    overflow: hidden;
    background-color: rgba(176, 239, 243, 0.123);/*半透明カラーの色*/
}

#title h1 {
    padding: 120px;
    font-weight: bold;
    margin-bottom: 50px;
    white-space: nowrap;/*改行防止*/
    margin: auto;
    text-align: center;
    text-shadow: 0 0 10px #555;
    line-height: 1.0;
    padding: 0 10px;
    height: 100%;
    writing-mode: vertical-rl;
    color: rgb(231, 231, 223);
    font-size: 50px;
}

#header{
    position: relative;
	height: 100vh;
    background: url('../img/sora.png') no-repeat center / cover;
    z-index: 0;
}

#header::before{
    content: '';
    background: inherit;/*.bgImageで設定した背景画像を継承する*/
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    position: absolute;
    /*ブラー効果で画像の端がボヤけた分だけ位置を調整*/
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -20px;
    z-index: -1;/*重なり順序を一番下にしておく*/
}


/*===============================================
menu block全体への指定
===============================================*/
#primary{
    position: absolute;
    bottom: 5%;
    left: 0px;
    width: 100%;
    text-align: center;
}


/*===============================================
menu１個あたりの指定
================================================*/
#primary li{
    display: inline-block;
    margin: 0.1%;
    animation: opa1;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

#primary li a{
    text-decoration: none; display: block;text-align: center;
    font-size: 20px;
    font-weight: 400;
    width: 200px;
    color: rgb(0, 0, 0);
    border-bottom: 2px solid transparent;
    padding-bottom: 20px;
}

/*===============================================
mouse on
================================================*/
#primary li a:hover{
    color: rgb(231, 231, 223);
    border-bottom: 2px solid rgb(231, 231, 223);
    letter-spacing: 0.2em;
}

/*===============================================
top return
===============================================*/
#page_top{
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #da9ee6;
    opacity: 0.6;
    border-radius: 50%;
}

#page_top a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f062';
    font-size: 40px;
    color: rgb(255, 255, 255);
    position: absolute;
    width: 15px;
    /* height: 10px; */
    top: 0;
    bottom: 5;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*===================================================
box
=====================================================*/
.box{
    width: 100vw;
    height: auto;
    min-height: 100vh;
}

/*===================================================
official setting
=====================================================*/
#official{
    position:relative;
    margin: 0 0 100px 0;
}

#official:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 230px;
    left: -30%;
    width: 150%;
    height: 600px;
    background: #d3ebe5;
    transform: rotate(3deg);
}


.kousiki {
    display: flex;
    justify-content: center;
    padding: 30px;
}

.kousiki p{
    font-size: 1.1rem;
    float: right;
    z-index: 1;
    padding: 10px 10px;
}

.heder-big {
    font-size: 40px;
    color: rgb(218, 172, 248);
}


#comenter{
    text-shadow: #da9ee6;
}

#par {
    color: #222;
}

#par:hover {
    color: #481459;
    font-size: large;
    cursor: pointer;
}

/*=============================================
menber style
===============================================*/
#menber{
    width: 100%;
}

.contents{
    width: fit-content;
    margin: 0 auto;
}

.contents li {
    position: relative;
    list-style: none;
}

.contents li:not(:first-of-type){
    margin-top: 200px;
}

.contents li:nth-of-type(odd) .contentsText{
    right: 0;
}

.contents li:nth-of-type(even) .contentsText{
    align-items: flex-start;
}

.contents li:nth-of-type(odd) img{
    transform: translate(-20px, 20px);
}

.contents li:nth-of-type(even) img{
    margin-left: auto;
    transform: translate(20px, 20px);
}

.contentsText{
    display: flex;
    flex-direction: column;
    align-items: flex-end;/*右寄せ */
    position: absolute;
    top: 40px;
    z-index: 1;
}

.contents h2{
    background-color: #333;
    color: rgb(158, 84, 226);
    font-size: 50px;
    font-weight: bold;
    white-space: nowrap;
    background-color: rgba(20, 20, 20, .8);
    padding: 10px 10px;
    line-height: 1.0;
    letter-spacing: 0.05em;
    border-radius: 5px;
    left: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
    margin-left: 5cm;
    margin-right: 5cm;
}

.contents p{
    background-color: #333;
    color: rgb(255, 255, 255);
    line-height: 1.6;
    background-color: #555;
    font-size: 14px;
    max-width: 450px;
    padding: 15px;
    margin-top: 30px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(20px);
    transition: 1s;
    margin-left: 5cm;
    margin-right: 5cm;
}

.contents img{
    width: 50%;
    height: 20%;
    display: block;
    box-shadow: 0px 0px 20px -5px rgba(1, 83, 97, 0.575);
    border-radius: 5px;
    opacity: 0;
    transition: 1s .5s;
    margin-left: 7cm;
    margin-right: 7cm;
}




/*===================================================
lyrics setting
====================================================*/
#lyrics {
    height: auto;
}

#sakusi p {
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    white-space: nowrap;
    width: 100vh;
    border-bottom: dashed 5px #286496;
}


#lyrics ul{
    display: flex;
    justify-content: center;
}

#lyrics li{
    text-align: left;
    padding: 10vh;
    font-size: 1.2vw;
}

.under-element {
    clear: both;
    text-align: center;
    margin-top: 30px;
}

/*空白----------------------------------------*/
.mrg-1 {
    margin-left: 200px;
}
.mrg-2 {
    margin-left: 100px;
}

/*==============================================
message setting
================================================*/
#message{
    position:relative;
    margin: 0 0 100px 0;
}

#message:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 230px;
    left: -30%;
    width: 150%;
    height: 500px;
    background: #b6adcc;
    transform: rotate(178deg);
}

.coment {
    display: flex;
    justify-content: center;
}

.coment p {
    float: right;
    font-size: 1.2rem;
}

.line-hi {
    line-height: 500%;
}


.mrg-10 {
    margin-left: 950px;
    bottom: 50px;
    font-size: 1.3rem;
}
.mrg-20 {
    margin-left: 500px;
    bottom: 50px;
}


/*===================================================
footer setting
=====================================================*/
footer{
    clear: both;
    text-align: center;
    background: #222;
    color: #fff;
    font-size: 85%;
}
footer a{
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    color: #fff;
}
footer .pr{
    display: block;
    font-size: 80%;
}


#footer-primary{
    position: relative;
    bottom: 5%;
    left: 0px;
    width: 100%;
    text-align: center;
}

/*-------------------------------------
menu１個あたりの指定
--------------------------------------*/
#footer-primary li{
    display: inline-block;
    margin: 0.1%;
    animation: opa1;
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
}

#footer-primary li a{
    text-decoration: none; display: block;text-align: center;
    width: 140px;
    color: rgb(255, 255, 255);
    border-bottom: 2px solid transparent;
    padding-bottom: 7px;
}

/*-------------------------------------
mouse on
---------------------------------------*/
#footer-primary li a:hover{
    border-bottom: 2px solid #ffffff;
    letter-spacing: 0.1em;
}