@charset "UTF-8";
body{
    background: #000;
}
/* =====================================
	head
===================================== */

header h1{
    position: absolute;
    top: 53px;
    left: 72px;
    z-index: 9999;
}

header h1 img{
    width: 212px;
}

nav{
    position: absolute;
    top: 70px;
    right: 75px;
    z-index: 9999;
}

nav ul li{
    float: left;
    font-size: 3.0rem;
}

nav ul li.current{
    text-decoration: line-through;
}

nav ul li:first-child{
    margin-right: 30px;
}

/* =====================================
	main
===================================== */

main{
    width: 66%;
    padding: 300px 0 275px;
    margin: 0 auto;
}

main ul li{
    float: left;
    font-size: 3.0rem;
    margin: 0 16px 60px 0;
    cursor: pointer;
    transition: 0.3s opacity ease;
}

main.japanese ul li.jp{
    text-decoration: underline;
    cursor: default;
}

main.japanese ul li.en:hover{
    opacity: 0.6;
}

main.english ul li.en{
    text-decoration: underline;
    cursor: default;
}

main.english ul li.jp:hover{
    opacity: 0.6;
}

main p{
    font-size: 2.6rem;
}

main.english p.en{
    line-height: 2;
}

main.japanese p.en{
    display: none;
}

main.english p.jp{
    display: none;
}


/* =====================================
	footer
===================================== */

footer{
    font-size: 1.1rem;
    position: absolute;
    bottom: 50px;
    left: 72px;
}


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

/* =====================================
	head
===================================== */

header h1{
    top: 7.33vw;
    left: 5.33vw;
}

header h1 img{
    width: 51.2vw
}

nav{
    top: 5.2vw;
    bottom: auto;
    right: 6.66vw;
}

nav ul li{
    float: none;
    font-size: 2.3rem;
    text-align: right;
    line-height: 1.5;
    margin: 0;
}

nav ul li:first-child{
    margin: 0;
}

/* =====================================
	main
===================================== */

main{
    width: 84%;
    padding: 50vw 0 46vw;
}

main ul li{
    font-size: 2.6rem;
    margin: 0 4vw 10vw 0;
}

main.japanese ul li.en:hover{
    opacity: 1;
}

main.english ul li.jp:hover{
    opacity: 1;
}

main p{
    font-size: 1.8rem;
}

/* =====================================
	footer
===================================== */

footer{
    font-size: 1.1rem;
    bottom: 4vw;
    left: 4vw;
}

}