@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');
/*==============
    common
===============*/
:root {
  /* color */
  --font-black: #020914;
  --color1: #ffffff;
  --color2: #e8af02;
  --color3: #020914;

  /* font */
  --en: "Gloock", serif;
  --ja: "Zen Old Mincho", serif;
}
::selection {
  background: var(--color2);
  color: var(--color3);
}
::-moz-selection {
  background: var(--color2);
  color: var(--color3);
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
}
img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  image-rendering: -webkit-optimize-contrast;
  user-select: none;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
/* fade */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-size: 1.4rem;
  font-family: var(--ja) !important;
  font-weight: 500;
  color: var(--font-black);
  animation: fadeIn 4s forwards;
  background: var(--color3) !important;
  width: 100%;
  position: relative;
}
.trLi-offer-area {
  position: relative;
  width: 100%;
  background-image: url(../images/album_to/texture.png);
  background-repeat: repeat;
  /* background-position: center center; */
  background-size: 100% auto; /* 横幅100%、縦は自動 */
}
a {
  text-decoration: none;
  color: initial;
  transition: 0.4s all;
}
a:hover{
  color: #fff !important;
  opacity: 0.5;
}
.en {
  font-family: var(--en);
}
.pc{
  display: block !important;
}
.sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .pc{
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*==============
    header
===============*/
header {
  padding: 0 !important;
  border: 0 !important;
  position: relative;
  z-index: 1;
}
header .logo {
  width: 100%;
  padding: 20px 0 0 20px;
}
@media screen and (max-width: 1000px) {
  header {
    background: none !important;
    position: relative !important;
  }
  header .logo {
    max-width: 50%;
    padding: 16px 0px 0 16px;
  }
}
/*==============
    main
===============*/
/*--------------
    mainVisual
--------------*/
#mainVisual {
  height: 100vh;
  width: 100%;
  position: relative;
}
#mainVisual .visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
#mainVisual .texture{
  position: absolute;
  height: 100%;
  z-index: 3;
}
.mainTittl{
  position: absolute;
  max-width: 561px;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 48px;
  transform: translate(0%,-50%);
  top: 50%;
  left: 60px;
}
@media screen and (max-width: 1100px) {
  .mainTittl{
    width: 50%;
    max-width: 900px;
  }
}
@media screen and (max-width: 1000px) {
  .mainTittl{
    width: 75%;
  }
  #mainVisual .visual {
    height: 120vh;
    object-fit: cover;
    object-position: bottom;
    z-index: -1;
    }
  #mainVisual{
    height: 100vh;
  }
  .mainTittl{
    position: absolute;
    gap: 24px;
    width: 90%;
    transform: translate(0, 0);
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 500px) {
  #mainVisual {
    height: 90vh;
  }
  #mainVisual .visual {
    height: auto;
  }
  .mainTittl{
    position: absolute;
    gap: 24px;
    width: 90%;
    transform: translate(0, 0);
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #mainVisual .texture{
    display: none;
  }
}
/*--------------
    trackList
--------------*/
#trackList {
  padding-top: 120px;
  color: var(--color1);
  font-family: var(--en);
}
#trackList_inner{
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  position: relative;
  gap: 20px;
}
#trackList_inner article:nth-child(2){
  margin-top: 60px;
}
.Edition{
  width: calc((100% / 3) - 20px);
}
.Normal.Edition{
  margin-top: 120px;
}
.Edition figure{
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.AlbumType{
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--color1);
  border-bottom: 1px solid var(--color1);
  font-size: 18px;
}
.album-info{
  display: flex;
  align-items:baseline;
  justify-content: space-between;
}
.Albumproduct{
  font-size: 24px;
  margin-bottom: 40px;
}
.AlbumNumber{
  font-size: 12px;
  letter-spacing: 0.01rem;
}
.AlbumPrice{
  font-size: 32px;
}
.Pricesmll{
  font-size: 16px;
}
.TRACKLIST{
  font-size: 24px;
  margin-bottom: 32px;
}
.albumLine {
  font-weight: normal;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 10px;
  width: 100%;
  position: relative;
}
.line_r{
  position: absolute;
  width: 159px;
  height: 58px;
  bottom: -44px;
  right: -5px;
}
#trackList ul  {
  width: 100%;
  display: inline-block;
}
#trackList ul li{
  border-bottom: 1px solid #53585e;
  font-size: 16px;
  padding: 16px 0;
  line-height: 24px;
  font-family: var(--ja);
  display: flex;
}
#trackList ul li:last-child{
  border-bottom: none;
}
.txtY{
  color: var(--color2);
  display: inline-block;
  margin-right: 5px;
}
.album-format ul {
  display: none; /* 初期は非表示 */
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  text-wrap: nowrap;
}
.album-format.DVD{
  margin-top: 32px;
}
.toggle-btn {
  width: 15px;
  height: 15px;
  cursor: pointer;
  position: relative;
}
.toggle-btn .bar {
  height: 1.5px;
  width: 100%;
  background-color: #ffffff;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
}
.toggle-btn .bar:nth-child(2){
  transform: rotate(90deg);
}
.toggle-btn.active .bar:nth-child(2){
  transform: rotate(0deg);
}
.btn_area{
  margin: 80px auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  width: 90%;
}
.ButtonCss{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  width: 100%;
  padding: 30px 0;
  font-family: var(--ja);
  font-size: 24px;
  color: var(--color1);
  background: linear-gradient(90deg, rgba(232, 175, 2, 1) 10%, rgb(177, 133, 0) 100%);
  margin: 0 auto;
}
.ButtonCss::after{
  width: 1.25em;
  height: 1.25em;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6V8H5V19H16V14H18V20C18 20.5523 17.5523 21 17 21H4C3.44772 21 3 20.5523 3 20V7C3 6.44772 3.44772 6 4 6H10ZM21 3V11H19L18.9999 6.413L11.2071 14.2071L9.79289 12.7929L17.5849 5H13V3H21Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}
@media screen and (min-width: 1600px){
  #trackList_inner {
    padding-top: 240px;
}
}
@media screen and (max-width: 1000px) {
  #trackList{
    padding-top: 80px;
  }
  #trackList_inner{
    display: block;
  }
.Edition{
    width: 100%;
  }
  .btn_area{
    gap: 16px;
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 425px){
  .Normal.Edition{
    margin-top: 60px;
  }
}
/* 特典情報 */
#specialOffer{
  width: 100%;
  overflow: hidden;
}
.tittl{
  font-size: 48px;
  color: var(--color1);
  font-family: var(--en);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}
#specialOffer_inner{
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  display: flex;
  overflow: hidden;
  position: relative;
  flex-wrap: wrap;
  gap: 40px;
}
.specialOffer-item{
  background-color: var(--color1);
  width: calc((100% - 40px) / 2);
  position: relative;
  padding: 54px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.specialOffer-item.full{
  width: 100%;
  padding: 61px;
}
.specialOffer-item.full ul{
  width: calc((100% - 20px) / 2);
}
.specialOffer-shop{
  font-size: 24px;
  font-family: var(--ja);
  color: var(--color3);
  display: inline-block;
  padding-bottom: 32px;
  margin-bottom: 32px;
  text-align: center;
  border-bottom: 1px solid var(--font-black);
  max-width: 522px;
  width: 90%;
  margin: 0 auto;
}
.specialOffer-item section{
  display: flex;
  gap: 20px;
}
.offer_img{
  aspect-ratio: 530/358;
  overflow: hidden;
  margin-top: 36px;
}
.offer_img img{
  width: 100%;
}
@media screen and (max-width: 425px){
.offer_img{
  margin-top: 24px;	
 }
}
.specialOffer-item ul{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 30px;
  color: #020914;
}
@media screen and (max-width: 425px){
.specialOffer-item ul{
  margin-top: 24px;	
 }
}
.bonus{
  font-size: 24px;
  font-weight: bold;
}
.bonusInvent{
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}
.bonusInvent>span{
  font-size: 16px;
  display:block;
  font-weight: bold;
  margin: 10px 0;
}
.bonusDetail{
  font-size: 32px;
  text-align: center;
  line-height: 48px;
  font-weight: bold;
}
@media screen and (max-width: 1000px) {
  #specialOffer_inner{
    flex-direction: column;
    gap: 16px;
  }
  .specialOffer-item.full{
    padding: 10% 5%;
  }
  .specialOffer-item{
    width: 100%;
    padding: 10% 5%;
    flex-direction: column;
  }
  .specialOffer-item section{
    flex-direction: column;
  }
  .specialOffer-item.full ul{
    width: 100%
  }
}
/* youtube */
#youtube-area{
  width: 100%;
  padding: 100px 0;
}
#youtube-area-inner{
  max-width: 960px;
  aspect-ratio: 960/540;
  object-fit: cover;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
iframe {
  position: static !important;
}
@media screen and (max-width: 425px){
  #youtube-area{
    padding: 64px 0;
 }
}
/* TOUR INFO */
#tour-info{
  padding: 148px 0 72px 0;
  background-image: url(../images/album_to/tour_back.png);
  background-repeat: no-repeat;
  background-position: center center; /* 中央寄せ */
  background-size: cover; /* 全体にフィット（or containで収まる） */
}
#tour-info-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  width: 90%;
  overflow: hidden;
  margin: 0 auto;
}
.tittl.after {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-weight: normal !important;
  font-size:48px;
}
.tittl.after::after {
  content: "TOUR INFO";
  position: absolute;
  bottom:0;
  left: 50%;
  transform: translate(-50%, 0%);
  font-size: 80px; 
  font-family: var(--en);
  color: rgba(255, 255, 255, 0.3); 
  pointer-events: none;
  text-wrap: nowrap;
}
.tourLogoarea{
  width: 100%;
  background-color: #070103;
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 425px){
.tourLogoarea{
  margin-bottom: 16px;	
 }
}
.tour-area{
  width: 100%;
  color: var(--color1);
}
.tour-area{
  margin-bottom: 40px;
}
.tour-date{
  padding: 20px;
  border-bottom: 1px solid #5c5e5e;
  width: 100%;
  display: flex;
  align-items: end;
}
.date {
  font-family: var(--en);
  font-size: 40px;
  text-wrap: nowrap;
  display: flex;
  margin-right: 1px;
  align-self: center;
  flex-direction: row;
  align-items: flex-end;
  width: 130px;
}
.tour-date:last-child{
  border-bottom: none;
}
.year{
  font-size: 12px;
}
.youbi{
  font-family: var(--en);
  font-size: 16px; 
  margin-left:4px;
}
.en{
  font-family: var(--en);
  color: var(--color2);
  font-size: 32px;
  margin: 0 22px 0 132px;
  text-wrap: nowrap;
  align-self: center;
}
.jp{
  font-size: 18px;
  font-family: var(--ja);
  text-wrap: nowrap;
  align-self: center;
}
.add{
  margin-left: auto;  
  text-align: right; 
  text-wrap: nowrap;
  font-size: 18px;
  align-self: center;
}
@media screen and (max-width: 1000px){
  .tittl{
    font-size:clamp(1.75rem, 1.162rem + 2.94vw, 3rem);
    margin-bottom: 24px;
  }
  .tittl.after{
    font-size:clamp(1.75rem, 1.162rem + 2.94vw, 3rem);
  }
  .tittl.after::after{
    font-size: clamp(2.5rem, 1.324rem + 5.88vw, 5rem);
    letter-spacing: 3px;
  }
  .tour-date{
    padding: 4% 2%;
  }
  .youbi, .jp{
    width: fit-content;
    font-size: clamp(0.75rem, 0.574rem + 0.88vw, 1.125rem);
  }
  .en{
    margin: 0 3%;
    font-size: clamp(1.125rem, 0.478rem + 3.24vw, 2.5rem);
  }
  .date{
    font-size: clamp(1.125rem, 0.478rem + 3.24vw, 2.5rem);
  }
  .add{
    font-size: clamp(0.625rem, 0.39rem + 1.18vw, 1.125rem);
  }
}
@media screen and (max-width: 1000px){
  .ButtonCss{
    padding: 4%;
    font-size: clamp(1rem, 0.765rem + 1.18vw, 1.5rem);
  }
  .specialOffer-shop, .bonus{
    font-size: clamp(1rem, 0.765rem + 1.18vw, 1.5rem);
  }
  .AlbumPrice, .bonusDetail{
    font-size: clamp(1.5rem, 1.265rem + 1.18vw, 2rem);
  }
  .bonusInvent{
    font-size: clamp(1.313rem, 0.989rem + 1.62vw, 2rem);
  }
  .bonusDetail{
    font-size: clamp(1.313rem, 0.989rem + 1.62vw, 2rem);
    line-height: normal;
  }
  .bonusDetail>span{
    font-size:clamp(0.75rem, 0.632rem + 0.59vw, 1rem) ;
  }
  .TRACKLIST{
    font-size: clamp(1.125rem, 0.949rem + 0.88vw, 1.5rem);
    margin-bottom: 16px;
  }
  .AlbumType{
    font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
    padding: 5% 0;
  }
  .Albumproduct{
    font-size: clamp(0.875rem, 0.581rem + 1.47vw, 1.5rem);
  }
  .Albumproduct{
    font-size: 20px;
    line-height: 1;
  }
  .AlbumNumber{
    font-size: clamp(0.5rem, 0.382rem + 0.59vw, 0.75rem);
  }
  .AlbumNumber{
    font-size: 12px;
  }
  .Pricesmll{
    font-size: clamp(0.625rem, 0.449rem + 0.88vw, 1rem);
  }
  .albumLine{
    font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  }
  #trackList ul li, .bonusInvent>span{
    font-size: clamp(0.875rem, 0.816rem + 0.29vw, 1rem);
  }
}
@media screen and (max-width: 600px){
  .date {
    width: 100px;
  }
  #tour-info{
    padding: 80px 0 50px 0;
  }
}
@media screen and (max-width: 425px){  .ButtonCss{
    padding: 8%;
  }
  .specialOffer-shop, .bonus{
    padding-bottom: 24px;
  }
  .tour-date{
    flex-wrap: wrap;
    gap: 5px;
  }
  .date{
    width: 100%;
  }
  .tour-date section{
    width: 100%;
  }
  .en{
    margin: 0;
    margin-right: 2%;
  }
  .jp{
    align-self: anchor-center;
  }
}
/*==============
    footer
===============*/
footer {
  color: var(--color1) !important;
  background: var(--color3) !important;
  font-size: 12px !important;
  padding: 20px 0 !important;
}