@charset "UTF-8";

.header{
	height: 6.5vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	background: #005C4C;
}

.ki{
	color: #D2E1D4;
	font-size: 1.5rem;
	margin: 0 0 0 15px;
}

.ki a{
	color: #D2E1D4;
	text-decoration: none;
}

/* 幅750px以下の場合 */

@media (max-width: 750px) {
	.ki{
		margin: 0 30px 0 0;
		text-align: center;
	}
}



/* チェックボックスを非表示にする */

.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: #F9F0E2;
	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);
}

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

/* メニューのデザイン*/

.nav_content{
	width: 100%;
	height: 100%;
	font-size: 2rem;
	margin: auto;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 99;
	background: #D2E1D4;
	transition: .5s;
	
}

.nav_list{
	color: #005C4C;
	list-style: none;
}

.nav_list a{
	font-size: 2rem;
	color: #005C4C;
	text-decoration: none;
}

.nav_list a:hover{
	color: #4F3A25;
}

.nav_menu{
	color: #005C4C;
	margin: 40px 0 0 40px;
}

/* アイコンがクリックされたらメニューを表示 */

#drawer_input:checked ~ .nav_content {
	left: 80%;
}

/* 幅750px以下の場合 */

@media (max-width: 750px) {
	
	#drawer_input:checked ~ .nav_content {
		left: 0%;
	}
}




body{
	
	color: #444444;
	background-color: #F9F0E2;
	background-image: url("../image/haikei.svg");
	background-size:100% auto;
	background-position: top;
	background-repeat: no-repeat;
	background-attachment: local;
	
	font-family: "Hina Mincho", serif;
	font-weight: 400;
	font-style: normal;
}

h1{
	
	color: #F9F0E2;
	font-size: 2.5rem;
	text-align: center;
	margin: 50px;
	padding: 20px 0 50px 0;
}

.text{
	width: 800px;
	margin: 150px auto 100px auto;
	
}

/* モバイルサイズ */

@media (max-width: 750px) {
	body{
		color: #444444;
		background-color: #F9F0E2;
		background-image: url("../image/mobile4.svg");
		background-size: 100% auto;
		background-position: top;
		background-repeat: no-repeat;
		background-attachment: local;
		
	}
	
	h1{
		margin: auto;
	}
	
	.text{
		width: 300px;
	}
	
	.text img{
		width: 300px;
		height: auto;
	}
	
}

.ga{
	display: flex;
	flex-direction: column;
	align-items: center;
	
}

.release{
	margin-left: 10px;
	margin-bottom: 50px;
	background:rgba(249,240,226,0.3);
	display: block;
	
}

.ichiran{
	list-style: none;
	
}



/* モバイルサイズ */

@media (max-width: 750px){

	
	.ga img{
               margin-top: 100px;
		width: 300px;
		height: 300px;
	}
	
	.release{
		margin: 10px;
		background:rgba(249,240,226,0.0);
	}
	
	.kyoku{
		padding: 0;
	}
}

.music img{
	border-radius: 15px;
}

.block{
	margin-left: 200px;
}

/* モバイルサイズ */

@media (max-width: 750px){
	
	.music img{
		width: 70px;
		height: 70px;
		
	}
	
	.linemusic img{
		width: 216px;
		height: 50px;
		
	}
	
	.sound img{
		width: 100px;
		height: 50px;
		
	}
	
	.block{
		margin-left: 0;
	}
}

footer{
	position: relative;
	bottom: 0;
	width: 100%;
	background-color: #F9F0E2;
	
}

footer a {
	text-decoration: none;
}

.sns_link{
	padding: 0;
	text-align: center;
	
}

.sns_item{
	list-style: none;
	display: inline-block;
	padding: 0 5px;
}

.copyright{
	text-align: center;
}


.anim_box{
	animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* CSS Document */