@charset "UTF-8";
/* CSS Document */
body{
	margin:0;
	padding:0;
	color:#fff;
	background:#000;
	font-size:16px;
	font-weight:400;
	line-height: 1.78;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

body.open, body.modaal-noscroll{
	overflow: hidden;
}
input, textarea {
    border-radius: 0;
    outline: none;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size:16px;
    -webkit-border-radius : 0;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
}

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

a {
	color:inherit;
	text-decoration:none;
	transition: all 0.3s ease-in-out 0s;
}

a:hover {
	text-decoration:none;
}
.flex_wrap{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
}
.flex_wrap_between{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex_wrap_center{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	justify-content: center;
}
.flex_wrap_middle{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:wrap;
	align-items: center;
}

.sp{display:none !important;}
.note{font-size:77%;font-weight: 400;}

:root {
  --hh: 90px;
  --pdsec: 120px;
}

/************************
header
************************/
header{
	width: 100%;
	height: var(--hh);
	transition: all 0.3s ease-in-out 0s;
	background: rgba(0,0,0,.6);
	position:fixed;
	z-index: 10;
}
header .logo{
	width: 208px;
}
.inner_header{
	margin: auto;
	width: 100%;
	padding: 0 30px;
	align-items: center;
	height: 100%;
	position: relative;
}

.gnav{
	font-size: 18px;
	font-weight: 900;
	transition: all 0.3s ease-in-out 0s;
}
.gnav ul{
	gap:18px;
}
.gnav ul a:hover{
	opacity: .5;
}

/************************
btn
************************/
.btn{
	width: 100%;
	max-width: 300px;
	margin: 0 auto 0;
}
.btn a{
	padding: 0 14px;
	color: #fff;
	background: #000;
	border: 1px solid #fff;
	position: relative;
	font-weight: 700;
	text-align: center;
	font-size: 18px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
}
.btn a::after{
	position: absolute;
	content: '';
	display: block;
	width: 8px;
	height: 14px;
	margin: auto;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	background: #fff;
	top: 0;
	bottom: 0;
	right: 16px;
}
.btn a:hover{
	opacity: .7;
}

.main_wrap{
	padding-top: var(--hh);
}



.kv{
	height: calc(100vh - var(--hh));
	min-height: 684px;
	justify-content: center;
	align-items: center;
	position: relative;
}
.kv::after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 103px;
	background: url("../img/bg_bottom.png") repeat-x;
	bottom: 0;
}
.main_pic{
	height: 100%;
	object-fit: cover;
}
.main_pic img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position:50% top;
}
.h1_kv{
	font-size: 14px;
	font-weight: 400;
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 2;
}


.def_sec{
	padding: var(--pdsec) 0;
}
.inner_1200{
	margin: auto;
	width: 90%;
	max-width: 1200px;
}
.logo_big{
	text-align: center;
}

.h2_sec{
	text-align: center;
	font-size: 110px;
	letter-spacing: .25em;
	margin-right: -.25em;
	font-weight: 100;
	line-height: 1;
	margin-bottom: 60px;
}

.sec_video{
	position: relative;
	background: url("../img/bg_video.png") center;
	background-size: cover;
	z-index: 1;
}
.sec_video::before, .sec_video::after{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 103px;
	z-index: -1;
}
.sec_video::before{
	top: 0;
	background: url("../img/bg_top.png") repeat-x;
}
.sec_video::after{
	bottom: 0;
	background: url("../img/bg_bottom.png") repeat-x;
}
.list_vd{
	gap:60px;
	margin-bottom: 80px;
}
.list_vd li{
	max-width: 356px;
	width: 100%;
}
.list_vd li a:hover{
	opacity: .5;
}
.musics .album_wrap:not(:last-of-type){
	margin-bottom: 100px;
}
.musics .album_wrap .album:not(:last-of-type){
	margin-bottom: 60px;
}
.album{
	gap:60px;
}
.album .wrap_alist_skin{
	width: 380px;
}
.stiky{
	position: sticky;
	top: var(--hh);
}
.album .wrap_alist_skin figure{
	position: relative;
	cursor: pointer;
}
.playall{
	position: absolute;
	margin: auto;
	width: 56px;
	height: 24px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: all 0.3s ease-in-out 0s;
	display: inline-flex;
	gap: 8px;
}
.pause .playall{
	opacity: .8;
}
.playall span{
	width: 8px;
  	height: 24px;
  	background: #fff;
  	animation: wave 1s infinite ease-in-out;
}
@keyframes wave {
	0%,100% { transform: scaleY(0.3); }
	50% { transform: scaleY(1); }
}
.playall span:nth-child(2) { animation-delay: 0.1s; }
.playall span:nth-child(3) { animation-delay: 0.2s; }
.playall span:nth-child(4) { animation-delay: 0.3s; }
.playall span:nth-child(5) { animation-delay: 0.4s; }

.album .wrap_alist_skin figure img{
	transition: all 0.3s ease-in-out 0s;
}
.album .wrap_alist_skin figure:hover img{
	opacity: .5;
}

.list_music_wrap{
	width: calc(100% - 440px);
}
.list_music_wrap h3{
	font-size: 18px;
	font-weight: 400;
}
.play_btn{
	width: 30px;
	height: 30px;
	background-image: url("../img/play.png");
	background-size: cover;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}
.play_btn:hover{
/*	opacity: .5;*/
}
.play_btn.pause{
	background-image: url("../img/pause.png");
}
.list_music_wrap ul{
	border-top: 1px solid #fff;
}
.list_music_wrap ul li{
	border-bottom: 1px solid #fff;
	padding: 18px 0;
	gap:18px;
}
.list_music_wrap ul li .ad_cnt{
	width: calc(100% - 48px);
}
.list_music_wrap ul li.playing{
	background: rgba(255,255,255,.15);
}

.player{
	background: rgba(255,255,255,.15);
	padding: 6px 0 40px;
	margin-top: 18px;
	position: relative;
}
.inner_player{
	gap:30px;
	position: relative;
}
.player_play{
	width: 30px;
	height: 30px;
	background: url("../img/playall.png") no-repeat center;
	background-size: 100%;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}
.player_play:hover{
	opacity: .8;
}
.player_play.pause{
	background-image: url("../img/pauseall.png");
}

.player_send{
	width: 20px;
	height: 20px;
	cursor: pointer;
	transition: all 0.3s ease-in-out 0s;
}
.player_send.disabled{
	pointer-events: none;
	opacity: .5;
}
.player_send:hover{
	opacity: .8;
}
.player_send.pre{
	background: url("../img/pre.png") center no-repeat;
	background-size: 100%;
}
.player_send.next{
	background: url("../img/next.png") center no-repeat;
	background-size: 100%;
}
.player_seek{
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	width: 90%;
	height: 3px;
	margin: auto;
	border-radius: 100vh;
	transition: all 0.3s ease-in-out 0s;
}
.active .player_seek{
}
.time_current, .time_duration{
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	font-size: 10px;
}
.time_current{
	left: 18px;
}
.time_duration{
	right: 18px;
}
.seek_bar{
	width: 100%;
	height: 100%;
	background: #333;
}
.seek_progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #555;
  pointer-events: none;
  border-radius: 100vh;
}

/* つまみ */
.seek_progress::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 10px;
  height: 10px;
  background: #f6f6f6;
  border-radius: 100vh;
}

.player_reset{
	width: 16px;
	height: 16px;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	right: 18px;
	transform: rotate(45deg);
	display: none;
}
.player_reset::before, .player_reset::after{
	position: absolute;
	display: block;
	content: '';
	background: #fff;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.player_reset::before{
	height: 100%;
	width: 2px;
}
.player_reset::after{
	height: 2px;
	width: 100%;
}
.player_title{
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	margin-bottom: 6px;
}
.player_title span{
	display: inline-block;
}
.active .player_title span{
	animation: marquee 10s linear infinite;
}
.active .player_title.paused span {
	animation-play-state: paused;
}
@keyframes marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.h3_music{
	margin-bottom: 30px;
	padding-bottom: 18px;
	border-bottom: 1px solid #fff;
	font-size: 24px;
	line-height: 1;
}
.lm_top{
	gap:10px;
	align-items: center;
	margin-bottom: 18px;
}

.btn_buy a{
	border-radius: 100vh;
	background: #fff;
	color: #000;
	padding: 2px 10px 2px 2px;
	display: flex;
	align-items: center;
	gap:5px;
}
.btn_buy span{
	background: #000;
	color: #fff;
	font-size: 10px;
	line-height: 1.2;
	display: inline-block;
	padding: 3px 10px;
	border-radius: 100vh;
}
.btn_buy a:hover{
	opacity: .5;
}


.ft{
	background: url("../img/bg_ft.png") center bottom / cover;
	padding: 180px 0 40px;
	position: relative;
	z-index: 1;
}
.ft::before{
	top: 0;
	background: url("../img/bg_top.png") repeat-x;
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 103px;
	z-index: -1;
}

.ft_cnt{
	text-align: center;
	background: rgba(0,0,0,.5);
	padding: 100px;
	margin-bottom: 60px;
}
.copy{
	background: #000;
	text-align: center;
	line-height: 60px;
}
.sns_box {
  margin: 0 auto 60px;
  height: 44px;
  min-width: 268px;
  gap:12px;
}

.sns_button {
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 100%;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
}
.sns_button a {
	display: block;
  width: 44px;
  height: 44px;
  color: #fff;
  text-align: center;
  -moz-transition: all 280ms ease;
  -o-transition: all 280ms ease;
  -webkit-transition: all 280ms ease;
  transition: all 280ms ease;
}
.sns_button i {
  font-size: 20px;
  line-height: 44px;
}
.sns_button:hover {
  box-shadow: inset 0 0 0 22px #fff;
}

.twitter:hover a {
  color: #000;
}

.facebook:hover a {
  color: #3B5999;
}

.google:hover a {
  color: #dd4b39;
}

.instagram:hover a {
  color: #2b5c84;
}

.pocket:hover a {
  color: #EE4056;
}
.youtube:hover a {
  color: #E91215;
}
.tiktok:hover a {
  color: #000;
}
/********************************
hbtn
********************************/
.h_btn{
	width: 20px;
	height: 17px;
	position: relative;
	cursor: pointer;
	display: none;
}
.h_btn span{
	position: absolute;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: all 0.13s ease-in-out 0s;
	margin: auto;
	top: 0;
}
.h_btn span:nth-child(2){
	bottom: 0;
}
.h_btn span:last-child{
	bottom: 0;
	top: inherit !important;
}

.open .h_btn span{
	transform: translateY(8px) rotate(45deg);
}
.open .h_btn:hover span{
	top: 0;
}
.open .h_btn span:nth-child(2){
	opacity: 0;
}
.open .h_btn span:last-child{
	transform: translateY(-8px) rotate(-45deg);
}
.open .h_btn:hover span:last-child{
	bottom: 0;
}
/********************************
sp
********************************/

@media screen and (max-width: 768px) {
	:root {
	  --hh: 40px;
	  --pdsec: 60px;
	}
	body{font-size: 14px;}
	.sp{ display:block !important;}
	.pc{display:none !important;}
	.inner_header{padding: 0 5%;}
	header .logo{width: 120px;}
	.gnav{position: fixed; top: var(--hh); height: calc(100svh - var(--hh)); background: rgba(0,0,0,.6);width: 80%;right: -80%;padding: 60px 20px;}
	.open .gnav{right: 0;}
	.gnav ul{flex-direction: column;text-align: center;}
	.h_btn{display: block;}
	.kv{min-height: calc(100vh - var(--hh));}
	.h1_kv{left: 5%;width: 90%;}
	.h2_sec{font-size: 60px;margin-bottom: 30px;}
	.album .wrap_alist_skin{width: 100%;}
	.list_music_wrap{width: 100%;}
	.album{gap:30px;}
	.ft_cnt{padding: 30px; margin-bottom: 60px;}
	.ft{padding-top: 80px;}
	.player{position: fixed; width: 100%;transition: all 0.3s ease-in-out 0s;bottom: -85px;left: 0; z-index: 10;background: rgba(0, 0, 0, .8);}
	.player.active{bottom: 0;}
	.stiky{position: relative; top: 0;}
	.player_reset{display: block;}
}