@charset "UTF-8";
/* CSS Document */

/* Style
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
font-size:14px;
line-height:2.0;
font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 768px) {
html {
font-size:12px;
}
}

h1, h2, h3, h4, h5, h6 {
font-weight:bold;
}
h1 {
font-size:3.5em;
line-height:1.25;
}
h2 {
font-size:3.0em;
line-height:1.25;
}
h3 {
font-size:2.0em;
line-height:1.25;
margin:0.25em 0 0.5em 0;
}
h4 {
font-size:1.6em;
line-height:1.4;
margin:0.25em 0 0.5em 0;
}
h5 {
font-size:1.25em;
line-height:1.4;
margin:0.25em 0 0.5em 0;
}
h6 {
font-size:1.15em;
line-height:1.4;
margin:0.25em 0 0.5em 0;
}
@media screen and (max-width: 480px) {
h2 {
font-size:2.0em;
}
h3 {
font-size:1.6em;
}
h4 {
font-size:1.4em;
}
h5 {
font-size:1.25em;
}
h6 {
font-size:1.15em;
}
}

img {
max-width:100%;
vertical-align: top;
}

/*Animation
-------------------------------------*/
.anm-fadeIn {
opacity:0;
transition:1.0s;
transform:translateX(30px);
}
.anm-fadeIn.active {
opacity:1.0;
transition:1.0s;
transform:translateX(0);
}
.anm-fadeIn-left {
opacity:0;
transition:1.0s;
transform:translateX(-100px);
}
.anm-fadeIn-left.active {
opacity:1.0;
transition:1.0s;
transform:translateX(0);
}
.anm-fadeInUp {
opacity:0;
transition:1.0s;
transform:translateY(30px);
}
.anm-fadeInUp.active {
opacity:1.0;
transition:1.0s;
transform:translateY(0);
}

/*FOOTER
-------------------------------------*/
footer {
width:100%;
color:#fff;
text-align:center;
margin-right:0;
margin-left:auto;
}

footer .footer-outer {
padding: 30px 5px 15px 5px;
}

footer .footer-logo-outer {
text-align: center;
margin:1.2em 0 0.5em 0;
display: block;
}

footer .footer-logo-outer span.footer-logo {
display: inline-block;
vertical-align: middle;
margin:auto 15px;
}

footer .footer-contact {
text-align:center;
}
footer .footer-contact a {
color:unset;
text-decoration: none;
}
footer p.copyright {
font-size:0.8em;
text-align:center;
}
@media screen and (max-width: 600px) {
footer {
width:100%;
margin:0;
}
}

/*==================================
PAGE TOP ボタン
===================================*/
/*ボタンデザイン*/
#page-top a {
	display: block;
    font-size: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    background:#555 url("../images/btn_arrow.png") no-repeat center center;
    background-size:55%;
    border-radius:50%;
    position: relative;
}
#page-top a:hover {
	background:#c50018 url("../images/btn_arrow.png") no-repeat center center;
    background-size:55%;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 7px;
	bottom:10px;
	z-index: 3;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/*======================================
9mm Parabellum Bullet 2025
=======================================*/
body {
color:#fff;
margin:0;
padding:0;
background: #000;
letter-spacing: 0.1em;
font-feature-settings: "palt";
}
p,ul, ol, dl {
margin-bottom:2.0em;
}
.roboto {
font-family: 'Roboto Condensed', sans-serif;
font-weight:700;
font-size:1.25em;
}
.red {
color:#c50018;
}
#wrapper {
width:100%;
margin:0;
padding:0;
}
#wrapper_inner {
width:100%;
height:100vh;
position:fixed;
top:0;
right:0;
background:url("../images/background-layer-grey.png") no-repeat;
background-size:120%;
background-position:0;
z-index: -1;
}
#nav-wrap {
width:100%;
height:45px;
position:fixed;
top:0;
left:0;
background:rgba(0, 0, 0, 0.5);
z-index: 99999;
}
#header {
width:100%;
margin:0 auto;
}
#header_inner {
width:100%;
}
#header_inner h1.header-logo {
width:50%;
margin:60px auto 30px auto;
}
.main-artist-photo {
width:80%;
height:auto;
margin:0 auto 0 auto;
}
nav {
display: block;
width: 80%;
margin:15px auto 0 auto;
}
nav .inner {
padding:0;
}
nav .inner h1.nav-logo {
display:none;
}
nav .inner ul {
width:100%;
list-style: none;
display:flex;
justify-content: flex-end;
margin:0;
padding: 0;
}
nav .inner ul li {
display:inline-block;
height:12px;
margin: 0 0 0 0;
}
nav .inner ul li:not(:last-child) {
margin-right:40px;
}
nav .inner ul li a img {
width:auto;
height:12px;
}
nav .inner ul li:hover {
opacity: 0.8;
}
#main-contents {
width: 80%;
margin: 0 auto 0 auto;
}
.main-contents-inner {
margin: 0 30px;
}
.contents_block {
margin: 50px 0 75px 0;
padding: 0 0 50px 0;
border-bottom: 1px dashed #777;
}
h2.section-title {
margin: 0 0 30px 0;
}
h2.section-title img {
width: 410px;
height: auto;
}

/*RELEASE*/
.release-title {
font-size: 2.0em;
}
.release-mediatype {
display: inline-block;
font-size: 1.2em;
font-family: 'Roboto Condensed', sans-serif;
font-weight: 700;
line-height: 1.0;
padding: 0.15em 0.3em;
border: 1px solid;
margin-right: 0.5em;
}
.release-date {
font-size:1.0em;
}
ol.release-song-list {
list-style-type: decimal;
margin-left:2.0em;
}
ol.release-song-list li {
font-size:1.1em;
}
ul.list-subset {
list-style-type: disc;
margin-left:1.5em;
}
ul.list-subset li {
font-size:0.9em;
}

a.linkbtn {
display:inline-block;
font-size:1.05em;
line-height:1.0;
font-weight:bold;
padding:0.5em 0.5em;
border: 1px solid;
}
a.linkbtn:hover {
background:rgba(255, 255, 255, 0.25);
}
/*段落枠囲み*/
.border-frame {
padding:0.35em 0.75em;
border:1px solid #999;
}

@media screen and (max-width: 1024px) {
#header_inner h1.header-logo {
width:70%;
}
#main-contents {
width:90%;
margin:0 auto;
}
h2.section-title img {
width:280px;
}
}

@media screen and (max-width: 768px) {
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -100vw;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1.0;
}
nav .inner {
  padding: 25px;
}
nav .inner h1.nav-logo {
display:block;
width:80%;
margin:50px auto 30px auto;
}
nav .inner ul {
  list-style: none;
  margin: 50px;
  padding: 0;
  display:flex;
  justify-content: start;
  flex-direction: column;
}
nav .inner ul li {
  position: relative;
  margin: 0 0 35px 0;
  margin-right:0;
}

nav .inner ul li a {
  display: block;
  text-decoration: none;
  transition-duration: 0.2s;
  margin-bottom:15px;
}
nav .inner {
  padding:0;
  position:relative;
}

/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 15px;
  right: 20px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 1.0;
  z-index: 2;
  cursor: pointer;
}
}

@media screen and (max-width: 768px) {
#header_inner h1.header-logo {
width:90%;
}
.main-artist-photo {
width:100%;
}
#main-contents {
width:100%;
margin:0;
}
.main-contents-inner {
margin:0 5%;
}
}

@media screen and (max-width: 480px) {
h2.section-title img {
width:200px;
height:56px;
}
}

/*======================================
追加CSS
=======================================*/
h2.section-title-text {
font-size:2.0em;
line-height:1.25;
margin:1.0em 0;
padding:1.0em 0 1.0em 1.25em;
background:url("../images/section_title_marker.png") no-repeat;
background-size:4.0em;
}
.btn-wrap {
margin:1.0em 0;
text-align: center;
}
a.btn-vote {
font-size:1.25em;
color:#fff;
line-height:1.0;
display:inline-block;
padding:0.75em 0.75em;
border-radius:6px;
background:#c50018;
width:50%;
min-width:200px;
}
a.btn-vote:hover {
color:inherit;
background:#9f0114;
}
hr.dotted-line {
width:50%;
height:2px;
margin:70px auto;
border:none;
border-top:2px dotted #c50018;
}
.txt-info {
font-size:1.1em;
letter-spacing: 0.1em;
}
.txt-info::before {
content:"●";
font-size:0.9em;
color:#c50018;
}
.txt-lg {
font-size:1.125em;
font-weight:bold;
color:#efc032;
}

.list-header {
text-align: center;
margin:70px 0 20px 0;
border-top:1px solid;
border-bottom:1px solid;
padding:0.3em 0;
}
/*タブ切り替え全体のスタイル*/
.tabs {
display: flex;
flex-wrap: wrap;
}
.tab_label {
font-size:1.2em;
color: #fff;
line-height:1.4;
font-weight: bold;
border: solid 2px #fff;
background-color:#666;
position: relative;
z-index: 1;
cursor: pointer;
flex: 1;
padding: 0.5em;
margin: 0 5px; 
}
.tab_label:hover {
background:#333;
}
.tab_content {
flex: 100%;
display: none;
overflow: hidden;
padding:2.5em 1.25em;
}
input[name="tab_switch"] {
display: none;
}
.tabs input:checked + .tab_label {
color: #fff;
background-color: #c50018;
border-color: #c50018;
}
.tabs input:checked + .tab_label::after {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 15px 10px 0 10px;
border-color: #c50018 transparent transparent transparent;
display: block;
position: absolute;
top: 100%;
left: 50%;
margin-left: -10px;
transition: all 0.3s ease 0s;
}
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content {
  display: block;
}
.tab_content{
position: relative;
animation: fadeIn 1s ease;
}

.list-title {
font-size:1.15em;
color:#fff;
border-bottom:1px dotted #fff;
padding-bottom:0.2em;
margin-bottom:0.5em;;
}
.songlist-wrap {
display:flex;
flex-wrap:wrap;
}
.songlist-wrap .songlist-block {
width:48%;
margin:25px 1%;
}
ul.songlist {
font-size:1.1em;
color:#fff;
margin-bottom:50px;
}

@media screen and (max-width: 768px) {
.songlist-wrap {
display:block;
}
.songlist-wrap .songlist-block {
width:98%;
}
}

/*======================================
追加CSS 2024.07
=======================================*/
html {
scroll-padding-top: 120px;
}
.border-bottom-none {
border-bottom: none;
padding-bottom: 0;
}
#thumb-wrap {
display: flex;
flex-direction: row;
flex-wrap:wrap;
}
#thumb-wrap .col.span-3 {
flex: 0 0 23%;
max-width: 23%;
margin:0 1% 30px;
}
.message-box {
padding:30px;
background:rgba(0, 0, 0, 0.5);
}
.message-box h4 {
text-align: left;
margin: 0.5em 0;
}
.message-box p {
font-size:1.05em;
line-height:2.5;
letter-spacing:0.1em;
text-align: justify;
}
.message-artist {
text-align: center;
}
.message-artist img {
max-height: 600px;
margin:0 auto;
}
.thumb-box {
padding:15px;
background:rgba(0, 0, 0, 0.5);
}
h5.thumb-artistname {
font-size:1.05em;
background:url("./images/section_title_marker.png") no-repeat;
background-size:4.0em;
padding:0.5em 1.0em;
}
p.url-link {
font-size:1.0em;
line-height:1.6;
border-left:2px solid #fff;
padding-left:1.0em;
}
@media screen and (max-width: 600px) {
.contents_block {
margin: 35px 0 35px 0;
padding: 0 0 20px 0;
}
#thumb-wrap {
margin-right: -2.0rem;
margin-left: -2.0rem;
}
#thumb-wrap .col.span-3 {
flex: 0 0 32%;
max-width: 32%;
margin:0 0.5% 20px;
}
.message-artist img {
max-height: 80vw;
margin-bottom:30px;
}
}
@media screen and (max-width: 480px) {
#thumb-wrap .col.span-3 {
flex: 0 0 48%;
max-width: 48%;
margin:0 1% 20px;
}
h2.section-title-text {
font-size: 1.8em;
}
}

/*======================================
追加CSS 2024.09
=======================================*/
#thumb-wrap .col.span-6 {
  flex: 0 0 48%;
  max-width: 48%;
  margin:0 1% 30px;
  position: relative;
}
#thumb-wrap .col.span-6::before {
  content: "";
  display: block;
  width: 45%;
  height: 2px;
  background: #cc0000;
  position: absolute;
  top: 0;
  left: 0;
}
h4.pl-thumb-title {
  font-size:1.6em;
  padding: 0.8em 0 1.5em 1.0em;
  background:url("../images/playlist/pl_title_marker.png") no-repeat;
  background-size:74px;
  background-position: top left;
}
h5.pl-fan-title {
  font-size: 1.3em;
  color: #aaa;
  margin-top:2.0em;
  margin-bottom:0.25em;
}
p.fan-name {
  font-size:1.1em;
  line-height:1.2;
  text-align: right;
}
.pl-link-box {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  padding:10px 10px 3px 10px;
  background: rgba(255, 255, 255, 0.2);
}
.pl-link-box a.pl-icon.apple {
  display: inline-block;
  width: 100px;
  padding: 5px;
  margin-right: 25px;
}
.pl-link-box a.pl-icon.spotify {
  display: inline-block;
  width: 82px;
  padding: 5px;
}

/*インタビュー*/
.container-intv {
  margin:0 auto;
  padding:0;
  max-width:1200px;
  position:relative;
}
.container-intv .row {
display: flex;
flex-direction: column;
flex-wrap:wrap;
padding: 0;
}
.container-intv .row.interview {
  background:rgba(0, 0, 0, 0.5);
}
.container-intv .row.interview .col.span-12 {
  flex: 0 0 92%;
  max-width:92%;
  margin: 20px 4% 50px;
}
.container-intv .row.interview h4 {
  font-size:1.6em;
  font-weight:bold;
  color:#c50018;
  margin:0;
  padding:30px 0;
}
.container-intv .row.interview p {
  font-size:15px;
  line-height:2.4;
  text-align: justify;
  margin-bottom:3.0em;
}
p.interviewer {
  font-weight:bold;
  margin-bottom:1.0em!important;
}
p.interviewer::before {
  content:"";
  display:inline-block;
  width:2.0em;
  height:1px;
  background:#fff;
  vertical-align:0.37em;
  margin-right:0.25em;
}
p.answer {
  margin-left:6.0em;
  text-indent:-6.0em;
}
span.ans-name {
  font-weight:bold;
  display:inline-block;
  width:6.0em;
  transform:translateX(6em);
}
figure.full-width, figure.half-width {
  margin-bottom:50px;
}
figure.half-width {
  width: 50%;
}
figure.al-r {
  margin-left:auto;
}
figure.al-l {
  margin-right:auto;
}
figure.al-c {
  margin-right:auto;
  margin-left:auto;
}

@media screen and (max-width: 480px) {
#thumb-wrap .col.span-6 {
  flex: 0 0 100%;
  max-width: 100%;
  }
  .container-intv .row.interview .col.span-12 {
    margin:0 4%;
  }
  .container .row.interview p {
    font-size:14px;
  }
  figure.half-width {
    width: 100%;
  }
}

/*======================================
YouTube
=======================================*/
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
a img:hover {
opacity: 0.8;
transition:0.3s;
}

/*======================================
追加CSS 2025.05
=======================================*/
/*Title Logo*/
#header_inner h1.header-logo-pl21 {
  font-size:1.0em;
  line-height: 1.0;
  width:80%;
  margin:90px auto 30px auto;
}
/*リードコピー*/
.pl21-leadcopy {
  font-size: 1.25em;
  font-weight: bold;
  line-height: 2.2;
}
/*企画概要リスト*/
ul.pl21-info-list {
  font-size: 1.1em;
  margin: 0 0 30px 0;
  list-style-type: none;
  padding:1.5em 1.8em;
  background: rgba(0,0,0,0.5);
  border: 1px solid #c50018;
}
ul.pl21-info-list > li {
  margin-left: 1.0em;
  margin-bottom: 1.0em;
}
ul.pl21-info-list > li::before {
  content: "●";
  color: #c50018;
  margin-left: -1.2em;
  margin-right: 0.1em;
}
.pl21-btm-msg {
  font-size:1.25em;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
  border: 1px solid #fff;
}
/*企画内容*/
ul.pl21-rules {
  font-size:1.1em;
  margin-left:1.0em;
}
ul.pl21-rules > li {
  text-indent: -1.0em;
}
/*見出しマーカー*/
.pl21-head-marker::before {
  content: "●";
  color: #c50018;
}
/*賞品*/
dl.pl21-prize {
  display:flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 1.5em 0;
}
dl.pl21-prize dt {
  font-size: 1.1em;
  font-weight: bold;
  color: #fff;
  line-height: 1.25;
  display: inline-block;
  width: 12em;
  height:2.2em;
  background: #c50018;
  padding: 0.5em;
  text-align: center;
  margin: 0 0.7em 0.7em 0;
}
dl.pl21-prize dd {
  font-size:1.1em;
  font-weight: bold;
  line-height:1.8;
  padding-top: 0.25em;
  width: calc(100% - 13em);
}
/*表題曲リスト*/
.pl21-tab_label {
  font-size:1.2em;
  color: #fff;
  line-height:1.4;
  font-weight: bold;
  background-color:#c50018;
  padding: 0.5em;
  margin: 0;
}
ul.pl21-songlist {
  font-size: 1.1em;
  font-weight: bold;
  margin: 30px 0 50px 0;
}
ul.pl21-songlist > li {
  line-height: 1.6;
  margin-bottom: 2.0em;
  padding-bottom: 0.5em;
  padding-right: 280px;
  border-bottom: 1px dotted #fff;
  position: relative;
}
ul.pl21-songlist > li span {
  font-size: 0.9rem;
  font-weight: normal;
  color: #ddd;
  position: relative;
}
ul.pl21-songlist > li .pl21-link-box {
  display: flex;
  flex-direction: row;
  position: absolute;
  top: 0;
  right: 0;
}
ul.pl21-songlist > li .pl21-link-box .pl-icon {
  display: inline-block;
  padding: 5px 0 5px 20px;
}
ul.pl21-songlist > li .pl21-link-box .pl-icon.youtube {
  width: 65px;
  padding-left: 0;
}
ul.pl21-songlist > li .pl21-link-box .pl-icon.apple {
  width: 100px;
}
ul.pl21-songlist > li .pl21-link-box .pl-icon.spotify {
  width: 82px;
}

@media screen and (max-width: 768px) {
  #header_inner h1.header-logo-pl21 {
    width:90%;
  }
}
@media screen and (max-width: 600px) {
  ul.pl21-songlist > li {
    padding-right: 0;
    padding-bottom: 50px;
  }
  ul.pl21-songlist > li .pl21-link-box {
    top: unset;
    bottom: 0;
  }
  a.btn-vote {
    width:80%;
  }
}
@media screen and (max-width: 480px) {
  #header_inner h1.header-logo-pl21 {
    margin-top:50px;
  }
  dl.pl21-prize {
    display:block;
  }
  dl.pl21-prize dt {
    width: 100%;
  }
  dl.pl21-prize dd {
    width: 100%;
    margin-bottom: 1.5em;
  }
}