/*
Theme Name: Zilky
Theme URI: https://www.zilqy.com/
Author: MAVERICK
Author URI: https://maverick-dci.com/
Description: Zilky theme
Version: 2025
Requires at least: 5.2
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: Zilky
*/

/*html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}html{scroll-behavior:smooth}body{line-height:1}a{text-decoration-skip-ink:auto}a[href^="tel"]{color:inherit;text-decoration:none}button{outline:0}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}q{display:inline;font-style:italic}q:before{content:'"';font-style:normal}q:after{content:'"';font-style:normal}textarea,input[type="text"],input[type="button"],input[type="submit"],input[type="reset"],input[type="search"],input[type="password"]{-webkit-appearance:none;appearance:none;border-radius:0}input[type="search"]{-webkit-appearance:textfield}table{border-collapse:collapse;border-spacing:0}th,td{padding:2px}big{font-size:120%}small,sup,sub{font-size:80%}sup{vertical-align:super}sub{vertical-align:sub}dd{margin-left:20px}kbd,tt{font-family:courier;font-size:12px}ins{text-decoration:underline}del,strike,s{text-decoration:line-through}dt{font-weight:bold}address,cite,var{font-style:italic}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
.sticky{}.bypostauthor{}.wp-caption{}.wp-caption-text{}.gallery-caption{}.alignright{}.alignleft{}.aligncenter{}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute!important;width:1px;word-wrap:normal!important;word-break:normal}
.screen-reader-text:focus{background-color:#f7f7f7;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#007acc;display:block;font-size:14px;font-size:.875rem;font-weight:700;height:auto;right:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}
.skip-link{left:-9999rem;top:2.5rem;z-index:999999999;text-decoration:underline}
.skip-link:focus{display:block;left:6px;top:7px;font-size:14px;font-weight:600;text-decoration:none;line-height:normal;padding:15px 23px 14px;z-index:100000;right:auto}
.visually-hidden:not(:focus):not(:active), .form-allowed-tags:not(:focus):not(:active){position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px 1px 1px 1px);clip:rect(1px, 1px, 1px, 1px);white-space:nowrap}*/

@charset "utf-8";

:root {
  --themeText: #dcdcdc;
  --themeDark: #111111;
  --themeDim: #171717;
  --themeHigh: crimson;
}

/* =======================================
	reset
======================================= */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul {
  list-style: none !important;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #666;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
}

/* =======================================
	common
======================================= */
body {
  position: relative;
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  text-align: center;
  color: var(--themeText);
  background: var(--themeDark);
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
table {
  width: 100%;
}
tr,
td {
  vertical-align: top;
}

a {
  outline: none;
  text-decoration: none;
}

a:link {
  color: var(--themeText);
  text-decoration: none;
}
a:visited {
  color: var(--themeText);
  text-decoration: none;
}
a:hover {
  color: var(--themeText);
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

/* =======================================
	navigation
======================================= */
.mobileNav {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  top: -60px;
  transition: top 0.5s ease;
}

.mobileNav.subNav {
  background: black;
  top: 0;
}

.mobileNav.subNav.is-active {
  background: none;
}
.mobileNav.is-active .mobileNavLogo {
  display: none;
}

.movileNavSpacer {
  height: 24px;
  width: 36px;
}

.btnNav {
  z-index: 999;
  position: relative;
  height: 24px;
  width: 24px;
  padding: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  box-sizing: content-box;
}

.barNav {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--themeText);
  position: relative;
}

.barNav::before,
.barNav::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--themeText);
  transition: 0.3s ease;
}

.barNav::before {
  top: -10px;
}

.barNav::after {
  bottom: -10px;
}

.btnNav.is-active {
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  border-radius: 50%;
  box-sizing: content-box;
}

.btnNav.is-active .barNav {
  height: 0;
}

.btnNav.is-active .barNav::before {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transition: 0.3s ease;
}

.btnNav.is-active .barNav::after {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transition: 0.3s ease;
}

.mobileNavLogo {
  flex: 1;
  text-align: center;
}

.mobileNavLogo img {
  height: 36px;
  display: inline-block;
}

.mobileMenu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  inset: 0;
  transition: 0.3s ease;
}

.mobileMenu.is-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--themeHigh);
  z-index: 333;
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100dvh;
  transition: 0.5s ease;
}

ul.menulist {
  display: flex;
  margin: 2em auto;
  z-index: 100;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  flex-direction: column;
  list-style-type: none;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.menulistLogo {
  width: 36%;
  margin: 0 auto;
}

.menulistLogo a {
  display: block;
  width: 100%;
  height: 100%;
}

.language {
  margin: 0 auto 2em;
  text-align: center;
  font-size: clamp(0.9rem, 0.791rem + 0.55vw, 1.2rem);
  letter-spacing: 0.1em;
}

.language span {
  color: gray;
}

ul.menuSNS {
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
}

ul.menuSNS li:not(:last-child) {
  margin-right: 1em;
}

/* =======================================
	header
======================================= */
header {
  width: 100%;
  position: relative;
}

header.h100svh {
  width: 100%;
  height: 100svh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 0;
}

#topVideoArea {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#topVideo {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.noise-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(#111 30%, transparent 31%),
    radial-gradient(#111 30%, transparent 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
}

.header-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.header-logo img {
  width: 80%;
  max-width: 640px;
  height: auto;
}

.header_sns {
  display: none;
}

/* =======================================
	main
======================================= */
main.main {
  min-height: 100svh;
  background: var(--themeDark);
}

main.subMain {
  min-height: 100svh;
  background: var(--themeDark);
  margin-top: 60px;
}

section {
  position: relative;
  text-align: left;
  padding-bottom: 3em;
  background: var(--themeDark);
}

section:nth-of-type(odd) {
  background: var(--themeDim);
}

main.subMain section {
  min-height: 100svh;
}

.inner {
  font-size: clamp(0.8rem, 0.655rem + 0.73vw, 1.2rem);
  line-height: 1.4;
  width: 100%;
  margin: 0 auto;
  padding: 5% 5% 0;
}

.inner.innerW100 {
  width: 100%;
  padding: 5% 0 0;
}

.inner.innerH100 {
  min-height: 100vh;
}

.inner.inner0 {
  padding: 0 5%;
}

main.subMain .inner {
  padding: 5%;
}

/* =======================================
	text
======================================= */
h2 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.8em 0;
  position: relative;
  overflow: hidden;
}

h2 span {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--themeText);
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
  position: relative;
  z-index: 1;
}

main.subMain h2 span {
  font-size: clamp(1.6rem, 1.309rem + 1.45vw, 2.4rem);
  opacity: 1;
  transform: none;
  transition: unset;
}

h2 span.animate {
  opacity: 1;
  transform: translateY(0);
}

h2.merchh2,
h2.musich2 {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: transparent;
}

h2 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

h2.merchh2 span,
h2.musich2 span {
  color: var(--themeText);
  text-shadow: 5px 3px 3px rgba(0, 0, 0, 0.4);
}

h3 {
  width: 100%;
  margin-inline: auto;
  max-inline-size: max-content;
  padding: 0 0 1em;
  font-size: clamp(1.1rem, 0.814rem + 1.43vw, 1.5rem);
  letter-spacing: 2px;
  font-weight: bold;
}

h3.pastlive {
  margin-top: 3em;
}

#tourArchive h3 {
  font-family: "Bebas Neue", sans-serif;
}

main.subMain h3 {
  font-weight: 500;
}

p.viewall {
  margin: 3em auto 0;
  text-align: center;
}

p.viewall a {
  font-family: "Bebas Neue", sans-serif;
  display: inline-block;
  color: var(--themeDark);
  background: var(--themeText);
  padding: 4px 2em;
  text-decoration: none;
  font-size: clamp(1.1rem, 0.918rem + 0.91vw, 1.6rem);
}

p.readmore {
  margin: 0 auto;
  text-align: center;
}

p.readmore a {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--themeDark);
  background: var(--themeText);
  padding: 0.2em 1em;
  text-decoration: none;
}

.the_content {
  font-weight: 500;
}

.the_content p {
  line-height: 1.6;
  margin-bottom: 1em;
}

.the_content a,
.the_content a:link,
.the_content a:visited,
.the_content a:hover,
.the_content a:active {
  text-decoration: underline;
}

/* =======================================
	swiper
======================================= */
.swiperMusic,
.swiperMerch,
.swiperDisco {
  padding: 0 24px;
}

.swiper-wrapper {
  align-items: baseline;
}

.swiper-slide {
  font-weight: 500;
  font-size: clamp(0.6rem, 0.5rem + 0.5vw, 0.875rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-items: center;
  box-sizing: border-box;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  color: whitesmoke;
  font-size: calc(var(--swiper-navigation-size) / 2);
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  top: 36%;
  right: -8px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  top: 36%;
  left: -8px;
}

.swiperMusic .swiper-slide a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.swiperMerch .swiper-slide a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.swiperDisco .swiper-slide a:not(.streaming) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* =======================================
	TOUR
======================================= */
ul.live {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
}

ul.live li {
  display: flex;
  flex-direction: column;
}

ul.live li:first-child {
  flex: 1;
}

ul.live li:last-child {
  gap: 0.5em;
}

ul.live li div.live_date {
  font-weight: bold;
}

ul.live li div.live_title {
  text-align: left;
}

ul.live li div.live_buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

ul.live li div.live_buttons a {
  display: block;
  text-align: center;
  padding: 0.4em 1.5em;
  color: var(--themeDark);
  background: var(--themeText);
  border: 1px solid var(--themeText);
  border-radius: 5px;
}

ul.live li div.live_buttons.btnRemind a {
  color: var(--themeText);
  background: var(--themeDark);
  border: 1px solid var(--themeText);
}

ul.live li.soldout {
  background: url("images/soldout.svg") right center no-repeat;
  background-size: auto 80%;
}

ul.liveArchive {
  width: 100%;
  margin: 0 auto 0.5em;
  display: flex;
  font-size: clamp(0.8rem, 0.655rem + 0.73vw, 1.2rem);
}

ul.liveArchive li:nth-child(1) {
  white-space: nowrap;
}

ul.liveArchive li:nth-child(2) {
  padding-left: 5%;
}

ul.liveArchive li:nth-child(2) span {
  display: block;
}

/* =======================================
	ONE ITEM / TWO ITEMS
======================================= */
.music1,
.merch1,
.disco1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}

.music1-image,
.merch1-image,
.disco1-image {
  width: 45%;
}

.music1-text,
.merch1-text,
.disco1-text {
  flex: 1;
}

.music1-image a,
.merch1-image a,
.disco1-image a,
.disco2-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.musuc1-subtext {
  color: silver;
}

.music1-text a,
.merch1-text a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.disco1-category,
.disco1-title,
.disco1-date {
  margin-bottom: 0.4em;
}

.disco1-category span {
  display: inline-block;
  padding: 1px 1em;
  border: 1px solid var(--themeText);
  text-align: center;
}

.disco1-button a.streaming {
  position: relative;
  z-index: 2;
  display: inline;
  color: var(--themeDark);
  background: var(--themeText);
  padding: 4px 1em;
  text-decoration: none;
  font-size: clamp(0.5rem, 0.355rem + 0.73vw, 0.9rem);
  font-weight: bold;
  letter-spacing: 0;
}

.music2-wrapper,
.merch2-wrapper,
.disco2-wrapper {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: 1em;
}

.music2,
.merch2,
.disco2 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.music2-image,
.merch2-image,
.disco2-image {
  width: 100%;
  flex-grow: 1;
}

.music2-text,
.merch2-text {
  width: 100%;
  margin: 1em auto 0;
  padding-top: 1em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.music2-title,
.merch2-title,
.disco2-title {
  margin-inline: auto;
  max-inline-size: max-content;
}

.music2-subtext,
.merch2-subtext,
.disco2-subtext {
  text-align: center;
  color: silver;
}

.music2-url a,
.merch2-url a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* =======================================
	MUSIC
======================================= */
.music_title-wrap {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 1em auto 0.4em;
  padding-top: 0.5em;
}

.music_title {
  font-size: clamp(0.8rem, 0.657rem + 0.72vw, 1rem);
  margin-inline: auto;
  max-inline-size: max-content;
}

.music_text {
  margin-inline: auto;
  max-inline-size: max-content;
}

/* =======================================
	MERCH
======================================= */
.merch_title-wrap {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  margin: 1em auto 0.4em;
  padding-top: 0.5em;
}

.merch_title {
  font-size: clamp(0.8rem, 0.657rem + 0.72vw, 1rem);
  margin-inline: auto;
  max-inline-size: max-content;
}

.merch_text {
  margin-inline: auto;
  max-inline-size: max-content;
}

/* =======================================
	NEWS
======================================= */
ul.newslist {
  width: 100%;
  margin: 0 auto 2em;
  position: relative;
  font-weight: 500;
}

ul.newslist a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

ul.newslist li {
  display: block;
  width: 100%;
  position: relative;
  padding: 0;
}

ul.newslist li:nth-child(1) {
  display: block;
  position: relative;
}

ul.newslist li:nth-child(2) {
  display: flex;
  justify-content: space-between;
  margin: 0.5em auto 0;
}

ul.newslist li:nth-child(2) p.news_date {
  flex-grow: 1;
}

ul.newslist li:nth-child(3) {
  display: block;
  margin: 0 auto 1em;
  letter-spacing: 0.1em;
}

ul.newslist_archive {
  width: 100%;
  position: relative;
  padding-top: 1em;
  letter-spacing: 0.1em;
  font-weight: 500;
}

ul.newslist_archive:not(:last-of-type) {
  border-bottom: 1px solid #666;
  padding-bottom: 1em;
}

ul.newslist_archive a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.news_post_date {
  width: 100%;
  margin: 0 auto;
  padding: 1em 0.5em 1em 0;
  text-align: right;
  border-top: 1px solid #666;
  letter-spacing: 0.1em;
}

/* =======================================
	VIDEOS
======================================= */

.videolist {
  width: 100%;
  margin: 0 auto 3em;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.youtube {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.videolist .youtube:first-of-type {
  width: 100%;
}

.btnPlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btnPlay i {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
}

.videolist .youtube:first-of-type .btnPlay i:first-of-type {
  font-size: clamp(4rem, 2.545rem + 7.27vw, 8rem);
}

/* =======================================
	DISCOGRAPHY
======================================= */
.discography_category {
  display: flex;
  justify-content: center;
  align-items: center;
}

.discography_category span {
  font-size: clamp(0.7rem, 0.557rem + 0.72vw, 0.9rem);
  display: inline-block;
  padding: 1px 1em;
  border: 1px solid var(--themeText);
  margin: 10px 0 0.5em 0.3em;
  text-align: center;
}

.discography_title {
  font-size: clamp(0.8rem, 0.657rem + 0.72vw, 1rem);
  margin-inline: auto;
  max-inline-size: max-content;
  letter-spacing: 0.1em;
}

.discography_date {
  font-size: clamp(0.65rem, 0.507rem + 0.72vw, 0.85rem);
  width: 100%;
  margin: 0.8em auto;
  padding: 0.4em 0;
  text-align: center;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  letter-spacing: 0.1em;
}

.discography_button {
  display: flex;
  justify-content: center;
}

.discography_button a.streaming {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: var(--themeDark);
  background: var(--themeText);
  padding: 4px 1em;
  text-decoration: none;
  font-size: clamp(0.5rem, 0.355rem + 0.73vw, 0.9rem);
  font-weight: bold;
  letter-spacing: 0;
}

.discography_button_sub {
  margin: 1em auto 0.5em;
}

main.subMain .discography_category span {
  color: var(--themeText);
  background: transparent;
  border: 1px solid var(--themeText);
}

main.subMain .discography_date {
  font-size: clamp(0.85rem, 0.743rem + 0.54vw, 1rem);
  margin: 0 auto 1em;
  padding: 1em 0;
  letter-spacing: 0.1em;
}

main.subMain .discography_button_sub a.streaming {
  padding: 4px 1em;
  text-decoration: none;
  color: var(--themeDark);
  background: var(--themeText);
  font-size: clamp(0.9rem, 0.685rem + 1.07vw, 1.2rem);
  font-weight: bold;
  letter-spacing: 0;
}

/* =======================================
	PROFILE
======================================= */
#profile,
#profile .inner {
  padding-top: 0;
  padding-bottom: 0;
}

.profile_logo {
  width: 36%;
  margin: 1em auto 2em;
  text-align: center;
}

.profile_text {
  width: 90%;
  font-size: clamp(0.8rem, 0.691rem + 0.55vw, 1.1rem);
  word-break: normal;
  margin: 0 auto 2em;
  letter-spacing: 0;
  line-height: 1.4;
}

.members {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

.member {
  width: 100%;
  background: var(--themeDark);
}

.member:nth-child(even) {
  background: var(--themeDim);
}

.member-inner {
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 0 5%;
}

.member:nth-child(even) .member-inner {
  flex-direction: row-reverse;
}

.member:nth-child(even) .member-info {
  text-align: right;
}

.member:nth-child(even) .member-sns {
  justify-content: flex-end;
}

.member-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
}

.member-photo {
  flex: 0 0 50%;
}

.member-photo img {
  width: 100%;
  height: auto;
}

.member-info {
  flex: 1;
  text-align: left;
}

.member-sns {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-sns li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: whitesmoke;
  color: var(--themeDark);
  font-weight: bold;
  transition: all 0.3s ease;
}

/* =======================================
	CONTACT
======================================= */
.wpcf7-form .cf-turnstile {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.wpcf7-turnstile.cf-turnstile div {
  display: grid;
  margin: 2em auto 0;
  place-items: center;
}

ul.notice {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-size: clamp(1rem, 0.2rem + 1.67vw, 1.2rem);
}

label {
  font-size: clamp(1rem, -0.2rem + 2.5vw, 1.3rem);
}

.wpcf7-response-output {
  border: none !important;
  font-size: clamp(1rem, 0.2rem + 1.67vw, 1.2rem);
}

.wpcf7-form p {
  margin-top: 1.5em;
}

input,
textarea {
  font-size: clamp(1rem, 0.2rem + 1.67vw, 1.2rem);
  margin-bottom: 0.5em;
}

textarea {
  width: 100%;
  padding: 8px 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="text"],
input[type="email"] {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--themeHigh) inset;
}

input[type="submit"],
input[type="button"] {
  display: block;
  width: 36%;
  margin: 4em auto 0;
  padding: 8px;
  border: none;
  border-radius: 4px;
  background: var(--themeText);
  color: var(--themeDark);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline: 0;
  background: var(--themeText);
  border: 2px solid var(--themeHigh);
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

/* =======================================
	newsletter
======================================= */
.newsletter {
  width: 100%;
  margin: 0 auto;
  padding: 1em 0 0.5em;
  background: #333;
}

.tnp-subscription form {
  display: flex;
  gap: 10px;
  align-items: center;
}

.tnp-field-email {
  flex-grow: 1;
}

.tnp-field-button {
  flex-shrink: 0;
}

.tnp-field {
  width: auto !important;
  float: none !important;
}

.tnp-email,
.tnp-submit {
  box-sizing: border-box;
  height: 40px;
}

/* =======================================
	footter
======================================= */
footer {
  width: 100%;
  padding: 0 0 2em;
  background: var(--themeDark);
}

ul.footerSNS {
  width: 80%;
  margin: 0 auto 2em;
  padding-top:2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.2rem, 1.055rem + 0.73vw, 1.6rem);
}

ul.footerSNS li:not(:last-child) {
  margin-right: 8%;
}

.contact {
  margin: 0 auto 1em;
  font-size: 14px;
}

.copyright {
  font-size: 12px;
}

/* =======================================
	pagination
======================================= */
.wp-pagenavi {
  margin: 3em auto;
  font-size: 15px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--themeText);
}
.wp-pagenavi a {
  color: var(--themeText);
}
.wp-pagenavi span.current,
.wp-pagenavi a.page {
  margin: 0 4px;
  line-height: 2;
  padding: 0 4px;
  transition: 0.03s;
  display: block;
  border-bottom: 4px solid transparent;
}
.wp-pagenavi span.current {
  border-bottom: 4px solid var(--themeText);
}
.wp-pagenavi a.page {
  background: none;
}
.wp-pagenavi a.page:hover {
  border-bottom: 4px solid var(--themeText);
}
.wp-pagenavi .extend {
  margin: 0 15px;
}
.wp-pagenavi .previouspostslink {
  margin-left: 15px;
}
.wp-pagenavi .nextpostslink {
  margin-right: 15px;
}

/* =======================================
	pagetop
======================================= */
.pagetop {
  z-index: 222;
  width: 42px;
  height: 42px;
  position: fixed;
  right: 5%;
  bottom: -60px;
  transition: bottom 0.5s ease;
  cursor: pointer;
}

.pagetop i {
  font-size: 36px;
}

/* =======================================
	not found
======================================= */
.notfound {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.notfound-logo {
  width: 50%;
  margin: 0 auto 2em;
}

.notfound-logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* =======================================
	banner
======================================= */
.banners {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  a,
  button,
  .newslist,
  .newslist_archive,
  .youtube,
  .pagetop i,
  .nextpostslink,
  .previouspostslink,
  .first,
  .last,
  .music1,
  .merch1,
  .music2,
  .merch2,
  .disco1 a,
  .disco2 a,
  .swiper-slide {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  footer a:hover,
  .banners a:hover,
  .the_content a:hover,
  .btnNav:hover,
  .mobileMenu.is-active a:hover,
  .mobileNavLogo a:hover,
  .header_sns a:hover,
  .pagetop i:hover,
  .live a:hover,
  .music1:hover,
  .merch1:hover,
  .music2:hover,
  .merch2:hover,
  .disco1 a:hover,
  .disco2 a:hover,
  .swiper-slide:hover,
  .youtube:hover,
  .newslist:hover,
  .newslist_archive:hover,
  .viewall a:hover,
  .profile_contents a:hover,
  .nextpostslink:hover,
  .previouspostslink:hover,
  .discography_button_sub a:hover,
  .first:hover,
  .last:hover,
  .notfound-logo a:hover,
  .getNotifiedIcon a:hover,
  input[type="submit"]:hover,
  input[type="button"]:hover {
    -moz-opacity: 0.5;
    opacity: 0.5;
  }

  .mobileNavLogo img {
    height: 40px;
  }

  .swiper-slide {
    padding: 10px;
  }

  .swiper-slide.swiper-slide-active {
    padding-left: 10px;
  }
  .swiper-slide.swiper-slide-next {
    padding-right: 10px;
  }

  h2 {
    padding: 4em 0;
  }

  h2.merchh2,
  h2.musich2 {
    aspect-ratio: 16 / 4;
  }

  section {
    padding-bottom: 2em;
  }

  .inner {
    width: 84%;
    max-width: 1100px;
    padding: 2% 0 5%;
  }

  .inner.innerW100 {
    max-width: unset;
    padding: 2% 0 5%;
  }

  main.subMain .inner {
    max-width: 960px;
    padding: 4% 0 5%;
  }

  section.discographySub .inner {
    padding-top: 2%;
  }

  .header_sns {
    display: block;
    position: absolute;
    top: 32px;
    right: 5%;
    width: 100%;
    height: 100%;
    z-index: 222;
  }

  .header_sns ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
  }

  .header_sns ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
  }

  .header_sns ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .header_sns ul li:last-child {
    color: white;
    gap: 4px;
  }

  .header_sns ul li:last-child span {
    color: gray;
  }

  .singleIMG {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
  }

  ul.live {
    width: 100%;
    display: flex;
    text-align: left;
    font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  }

  ul.live li {
    gap: clamp(0.125rem, 0.042rem + 0.17vw, 0.25rem);
  }

  ul.live li:last-child {
    min-width: 25%;
    padding-left: 5%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  ul.live li div.live_time {
    margin-bottom: 0;
  }

  ul.live li div.live_title {
    margin-inline: unset;
    max-inline-size: unset;
  }

  ul.live li.live_buttons {
    margin-top: 1em;
  }

  ul.live li div.live_buttons {
    display: flex;
    justify-content: start;
    gap: 16px;
  }
  ul.live li div.live_buttons a {
    display: inline-block;
  }

  ul.live li.soldout {
    background: url("images/soldout.svg") 20% center no-repeat;
    background-size: auto 90%;
  }

  #videos .inner {
    width: 84%;
    max-width: 1100px;
  }

  .youtube {
    cursor: pointer;
  }

  .disco1 {
    width: 84%;
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .disco1-image,
  .disco1-text {
    width: 50%;
  }
  .music2-wrapper,
  .merch2-wrapper,
  .disco2-wrapper {
    gap: clamp(3.125rem, 1.042rem + 4.34vw, 6.25rem);
  }

  .music2-text,
  .merch2-text {
    margin: clamp(1.5rem, 1.167rem + 0.69vw, 2rem) auto 0;
    padding-top: clamp(1.125rem, 1.042rem + 0.17vw, 1.25rem);
  }

  .newsWrap {
    display: flex;
    flex-wrap: wrap;
  }

  ul.newslist {
    width: 48%;
    display: flex;
    flex-direction: column;
  }

  ul.newslist li:nth-child(2) {
    margin: 0.5em auto 0.2em;
  }
  ul.newslist li.news_title {
    font-size: clamp(0.938rem, 0.771rem + 0.35vw, 1.188rem);
  }

  ul.newslist:not(:nth-of-type(even)) {
    margin-right: 4%;
  }

  ul.newslist:last-of-type:nth-of-type(odd) {
    margin-left: 0;
    margin-right: 0;
  }

  .profile_logo {
    width: 27%;
    max-width: 280px;
    margin: 2.4em auto 3em;
  }

  .profile_text {
    width: 84%;
    max-width: 1100px;
    margin: 0 auto 4em;
    line-height: 1.6;
  }

  .member-inner {
    width: 84%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0;
  }

  .member-photo {
    flex: 0 0 32%; /* 全体の30%に固定 */
  }

  .member-name {
    font-size: clamp(1.8rem, 1.133rem + 1.39vw, 2.8rem);
    margin-bottom: clamp(4.438rem, 0.729rem + 7.73vw, 10rem);
  }

  .member-sns {
    gap: clamp(1.125rem, 0.542rem + 1.22vw, 2rem);
  }

  .member-sns li a {
    width: clamp(1.5rem, 0.833rem + 1.39vw, 2.5rem);
    height: clamp(1.5rem, 0.833rem + 1.39vw, 2.5rem);
  }

  .member-sns li a:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 122, 204, 0.3);
  }

  ul.menulist {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
  }

  .menulistLogo {
    width: 40%;
    max-width: 200px;
  }

  ul.menulist li {
    width: 50%;
    text-align: center;
    margin-bottom: 32px;
  }

  ul.menulist li:nth-child(odd) {
    padding-right: 16px;
    text-align: right;
  }

  ul.menulist li:nth-child(even) {
    padding-left: 16px;
    text-align: left;
  }

  ul.menulist li:last-child {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .notfound img {
    height: 30vh;
  }

  ul.footerSNS li:not(:last-child) {
    margin-right: 2em;
  }

  .wp-pagenavi {
    font-size: 20px;
  }
}
