:root {
  --bg-color: #f8f9fa;
  --text-color: #333;
  --accent-color: #a5cad2; /* 写真のシャチE��近いブルー */
  --serif: "Playfair Display", "Noto Serif JP", serif;
}

footer {
  background: #7db7d2;
  color: #fff;
  text-align: center;
  padding: 18px 16px;
}

footer p {
	margin: 0;
	font-size: 0.55rem;
	line-height: 1;
	letter-spacing: 0.04em;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(160deg, #f8f9fa 0%, #edf5f8 100%);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.7s ease,
    visibility 0s linear 0.7s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-logo {
  font-family: "Cinzel", serif;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
  color: #4a5c63;
}

.page-loader-bar {
  width: 160px;
  height: 2px;
  background: rgba(125, 183, 210, 0.22);
  overflow: hidden;
  border-radius: 999px;
  position: relative;
}

.page-loader-bar::after {
  content: "";
  position: absolute;
  left: -45%;
  top: 0;
  width: 45%;
  height: 100%;
  background: #7db7d2;
  animation: loaderSweep 1.2s ease-in-out infinite;
}

@keyframes loaderSweep {
  from {
    left: -45%;
  }
  to {
    left: 100%;
  }
}

body.menu-open {
  overflow: hidden;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-sizing: border-box;
  transition:
    background-color 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
  pointer-events: none;
}

nav * {
  pointer-events: auto;
}

nav.is-scrolled {
	padding: 18px 50px;
	background: rgba(125, 183, 210, 0.6);
	backdrop-filter: blur(3px) saturate(120%);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: var(--serif);
  color: var(--text-color);
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0s;
}

.logo-main {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-subtitle {
	font-family: "Shippori Mincho", serif;
	font-size: 0.56rem;
	letter-spacing: 0.20em;
	text-transform: uppercase;
	line-height: 1.8;
	opacity: 1;
}

body.is-home .logo {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;
}

body.is-home nav.is-scrolled .logo {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: #fff;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

body:not(.is-home) nav.is-scrolled .logo {
  color: #fff;
}

body.is-subpage .logo {
  color: #fff;
}

/* Subpages: always show scrolled state (blue background with white text) */
body.is-subpage nav {
	padding: 18px 50px;
	background: rgba(125, 183, 210, 0.92);
	backdrop-filter: blur(3px) saturate(120%);
	-webkit-backdrop-filter: blur(14px) saturate(120%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

body.is-subpage nav.is-scrolled {
	background: rgba(125, 183, 210, 0.57);
}

body.is-subpage nav .nav-links a {
  color: #fff;
}

body.is-subpage nav .nav-meta-links {
  display: flex;
}

body.is-subpage nav.is-scrolled .nav-meta-links {
  display: none;
}

body.is-subpage nav .nav-meta-links a,
body.is-subpage nav .nav-meta-links .lang-sep {
  color: #fff;
}

body.is-subpage nav .nav-links a::after {
  background: #fff;
}

body.is-subpage nav .menu-toggle span {
  background: #fff;
}

nav.is-scrolled .nav-links a {
  color: #fff;
}

nav.is-scrolled .nav-meta-links a,
nav.is-scrolled .nav-meta-links .lang-sep {
  color: #fff;
}

nav.is-scrolled .nav-meta-links {
  display: none;
}

nav.is-scrolled .nav-links a::after {
  background: #fff;
}

nav.is-scrolled .menu-toggle span {
  background: #fff;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
}

.nav-links-mobile-meta {
  display: none;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.nav-meta-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.nav-meta-links a {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.nav-meta-links a:hover {
  color: #7db7d2;
}

.nav-meta-links .lang-sep {
  color: rgba(51, 51, 51, 0.5);
  user-select: none;
}

.menu-toggle,
.menu-backdrop {
  display: none;
}

.menu-toggle {
  border: none;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 140;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 1px;
	background: var(--text-color);
	transition: transform 0.3s ease, opacity 0.3s ease;
}

nav.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

nav.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

nav.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
  z-index: 115;
}

nav.is-menu-open .menu-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #7db7d2;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 0%;
  position: relative;
}

@keyframes ondaSlideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 0.5;
  }
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../images/onda.png") no-repeat left bottom;
  background-size: auto;
  pointer-events: none;
  z-index: 1;
  background-position-y: 600px;
  opacity: 0;
  animation: ondaSlideIn 3.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-sns {
  position: absolute;
  top: 118px;
  left: 10%;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  left: max(16px, calc(10% - 32px));
}

.hero-sns-label {
  font-size: 0.87rem;
  letter-spacing: 0.18em;
  color: #666;
  white-space: nowrap;
  margin-right: 2px;
}

.hero-sns a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-color);
  background: transparent;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.hero-sns a:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-sns a:hover i {
  color: #7db7d2;
}

.hero-sns a:hover .x-logo {
  color: #7db7d2;
}

.hero-sns i {
  font-size: 18px;
  line-height: 1;
  transition: color 0.3s ease;
}

.hero-sns .x-logo {
  width: 14px;
  height: 14px;
  display: block;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.hero-image-wrapper {
  flex: 1.2;
  align-self: stretch;
  margin-top: 110px;
  position: relative;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.artist-name {
	font-family: "Cinzel", serif;
	font-size: clamp(3rem, 8vw, 9rem);
	margin: 0;
	line-height: 1;
	font-weight: 300;
	position: absolute;
	left: max(16px, calc(10% - 32px));
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-color);
	border-left: 0px solid #7db7d2;
	padding-left: 10px;
}

.artist-name .lisa {
  color: #7db7d2;
}

.artist-name .artist-subtitle {
  display: block;
  margin-top: 0;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(0.78rem, 1.14vw, 1.2rem);
  letter-spacing: 0.2em;
  line-height: 1.35;
  font-weight: 500;
  color: rgba(51, 51, 51, 0.82);
}

/* News Section Simple */
.section {
  padding: 100px 10%;
  max-width: 1200px;
  margin: 0 auto;
}

body.is-subpage .section {
  position: relative;
}


body.is-subpage .section::before {
	content: "";
	position: absolute;
	right: 0;
	top: 303px;
	width: min(46vw, 520px);
	height: min(46vw, 520px);
	background: url("../images/onda_white.png") no-repeat center center;
	background-size: contain;
	transform: translateX(140px) translateY(-50%);
	opacity: 0;
	pointer-events: none;
	z-index: 0;
	animation: subpageWaveRevealRight 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

body.is-subpage .section > * {
  position: relative;
  z-index: 1;
}


@keyframes subpageWaveRevealRight {
  to {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}

/* ── YouTube Banner ── */
.banner-youtube-section {
  text-align: center;
  padding: 24px 16px 0;
  max-width: 960px;
  margin: 0 auto;
}
.banner-youtube-section a { display: block; overflow: hidden; border-radius: 8px; }
.banner-youtube {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform .3s ease, filter .3s ease;
}
.banner-youtube-section a:hover .banner-youtube {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.home-youtube-embed-section {
  padding: 20px 16px 12px;
}

.home-youtube-embed-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.home-youtube-embed {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.updates-shell {
  position: relative;
  overflow: hidden;
}

.updates-shell::before {
	content: "";
	position: absolute;
	right: 0;
	top: 240px;
	width: min(46vw, 520px);
	height: min(46vw, 520px);
	background: url("../images/onda_white.png") no-repeat center center;
	background-size: contain;
	transform: translateX(140px) translateY(-50%);
	opacity: 0;
	transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.4s ease;
	pointer-events: none;
	z-index: 0;
}

.updates-shell.is-inview::before {
  transform: translateX(0) translateY(-50%);
  opacity: 1;
}

.updates-section {
  padding: 0px 0% 50px 0;
  position: relative;
  z-index: 1;
}

.updates-shell .section-title,
.updates-shell .updates-grid {
  position: relative;
  z-index: 1;
}

.section-title {
	font-family: "Cinzel", serif;
	font-size: 2rem;
	border-bottom: 1px solid #7db7d2;
	padding-bottom: 5px;
	margin-bottom: 25px;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-weight: inherit;
	padding: 0 10px;
}

.section-title span {
  font-size: 0.95rem;
  color: #7c7c7c;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}
/* PC: NEWS=col1, LIVE=col2, Facebook=col1 row2 */
.updates-grid > .updates-column:first-child { grid-column: 1; }
.updates-grid > .updates-column:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.updates-grid > .facebook.column3 { grid-column: 1; }

.updates-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.updates-panel {
	background: rgba(255, 255, 255, 0.72);
	border: 0px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
	padding: 28px;
}

.panel-title {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}

.panel-title.news {
  color: #cfa381;
}

.panel-title.live {
  color: #7db7d2;
}

.news-feed,
.live-feed {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-feed li,
.live-feed li {
  border-bottom: 1px solid #ececec;
}

.news-feed li:last-child,
.live-feed li:last-child {
  border-bottom: none;
}

.news-feed a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 18px 28px;
  margin: 0 -28px;
  transition:
    background-color 0.3s ease,
    opacity 0.3s ease;
  border-radius: 0;
}

.news-feed a:hover {
  background: rgba(253, 143, 60, 0.1);
  opacity: 1;
}

.news-feed .date {
  display: block;
  margin-bottom: 8px;
  color: #cfa381;
  font-size: 0.9rem;
}

.news-feed h3,
.live-feed h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.live-pref-badge {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	color: #7db7d2;
	border: 1px solid #7db7d2;
	border-radius: 14px;
	padding: 1px 8px;
	width: fit-content;
	line-height: 1.5;
	letter-spacing: 0.03em;
	white-space: nowrap;
	margin-bottom: 2px;
}

.live-feed a {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	align-items: center;
	text-decoration: none;
	color: inherit;
	padding: 10px 28px;
	margin: 0 -28px;
	transition: background-color 0.3s ease, opacity 0.3s ease;
	border-radius: 0;
}

.live-feed a:hover {
  background: rgba(125, 183, 210, 0.1);
  opacity: 1;
}

.live-date-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #7db7d2;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  /* box-shadow: 0 10px 24px rgba(125, 183, 210, 0.28); */
}

.live-date-badge .day {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.live-date-badge .year {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.panel-link-wrap {
  margin-top: 24px;
  text-align: right;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid currentColor;
  font-size: 0.95rem;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.panel-link.news {
  background: #cfa381;
  color: #fff;
}

.panel-link.news:hover {
  background: transparent;
  color: #cfa381;
}

.panel-link.live {
  background: #7db7d2;
  color: #fff;
}

.panel-link.live:hover {
  background: transparent;
  color: #7db7d2;
}

.facebook.column3 {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 22px;
}

.facebook .block-title {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  border-bottom: 1px solid #7db7d2;
  padding-bottom: 10px;
  line-height: 1.2;
}

.facebook .block-title span {
  color: #7db7d2;
  letter-spacing: 0.04em;
}

.facebook .fb-page,
.facebook .fb-page span,
.facebook .fb-page iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.news-item {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s;
}

.news-item:hover {
  background-color: #f1f1f1;
}

.date {
  color: #888;
  font-size: 0.9rem;
}

.release-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: min(520px, calc(100vw - 32px));
  z-index: 120;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.95s ease,
    transform 0.95s ease;
}

.release-popup.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.release-popup::before {
  content: "";
  position: absolute;
  right: 33px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid rgba(125, 183, 210, 0.45);
  z-index: 0;
}

.release-popup::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid rgba(255, 255, 255, 0.32);
  z-index: 1;
}

.release-popup-close {
  position: absolute;
  top: -15px;
  right: 10px;
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(125, 183, 210, 1);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.release-popup-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	position: relative;
	z-index: 1;
	background: rgba(255, 255, 255, 0.32);
	border: 1px solid rgba(125, 183, 210, 0.35);
	border-radius: 7px;
	padding: 14px 16px 14px 18px;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	text-decoration: none;
	color: #2f2a2a;
}

.release-popup-text {
  flex: 1;
  min-width: 0;
}

.release-popup-kicker {
  margin: 0 0 8px;
  color: #fff;
  background: #7db7d2;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.release-popup-kicker i {
  margin-right: 6px;
}

.release-popup-copy {
  margin: 0 0 8px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: #5e5757;
}

.release-popup-title {
	margin: 0;
	color: #fff;
	font-size: 1.02rem;
	line-height: 1.45;
	font-weight: 500;
	background: #c8a87db0;
	display: inline-block;
	padding: 4px 10px;
	border-radius: 4px;
}

.release-popup-content img {
  display: block;
  width: 120px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Biography page styles */
.biography-page {
  padding-top: 90px;
}

.biography-intro p {
  margin: 0 0 1em;
  font-size: 0.98rem;
}

.biography-photo-inline-mobile {
  display: none;
  margin: 0;
}

.biography-photo-wrap {
  text-align: right;
}

.biography-profile-image {
  width: 100%;
  max-width: 360px;
  margin: 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.biography-history {
  margin-top: 28px;
}

.history-timeline {
  margin: 0;
  padding: 0;
}

.timeline-item {
	display: flex;
	gap: 0;
	margin-bottom: 0;
	position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 100px;
  padding-right: 20px;
  padding-top: 0;
  padding-bottom: 20px;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: #7db7d2;
  text-align: right;
  position: relative;
}

.timeline-year::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 20px;
  width: 2px;
  background: #7db7d2;
}

.timeline-content {
  flex: 1;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 0;
}

.timeline-event {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #d0d0d0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.timeline-event:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.event-month {
  flex-shrink: 0;
  width: 60px;
  color: #7db7d2;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 2px;
}

.timeline-event p {
  margin: 0;
  flex: 1;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #333;
}

/* Live page styles */
.live-page {
  padding-top: 90px;
}

.live-entry {
  margin-bottom: 26px;
  padding: 0 0 28px;
  overflow: hidden;
}

.live-entry .title {
  margin: 0;
}

.live-entry .title h1 {
	margin: 0;
	padding: 14px 28px;
	border-radius: 0;
	background: rgba(39, 144, 192, 0.74);
	color: #fff;
	font-size: 1.3rem;
	line-height: 1.5;
	font-family: "Cinzel", serif;
	font-weight: 500;
}

.live-entry .txt {
  padding: 20px 28px 0;
}

.live-entry .pref {
	display: inline-block;
	margin-right: 10px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgb(255, 255, 255);
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: #87bdd6;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	font-weight: bold;
	font-family: "游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

.live-entry dl {
  margin: 0;
}

.live-entry dt {
  margin: 18px 0 6px;
  color: #7db7d2;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.live-entry dd {
  margin: 0;
  line-height: 1.9;
  font-size: 0.97rem;
  color: #333;
  word-break: break-word;
}

.live-entry a {
  color: #4d8ca8;
}

.live-detail-columns {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.live-detail-info {
  flex: 1;
  min-width: 0;
}

.live-detail-image {
  flex: 0 0 400px;
  max-width: 400px;
}

.live-entry .jacket {
  display: block;
  width: min(100%, 320px);
  margin-top: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.live-detail-image .jacket {
  width: 100%;
  margin-top: 0;
}

.live-listing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.live-list-item {
  margin-bottom: 0;
}

.live-list-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.live-list-link:hover h1 {
  background: rgba(125, 183, 210, 0.92);
}

.live-detail-page {
  padding-top: 90px;
}

.live-pager {
  margin-top: 24px;
}

.live-pager nav {
  position: static;
  width: auto;
  padding: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.live-pager nav ul,
.live-pager ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.live-pager li > a,
.live-pager .pagination li > a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #454545;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.2;
}

.live-pager li > a > span,
.live-pager .pagination li > a > span {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.live-pager li.active > a {
  background: #7db7d2;
  border-color: #7db7d2;
  color: #fff;
}

.live-pagination {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.live-pagination .prev,
.live-pagination .next {
  min-width: 140px;
}

/* Gallery page styles */
.gallery-page {
  padding-top: 90px;
}

.gallery-list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-list li {
  opacity: 1;
  transition: opacity 0.3s;
}

.gallery-list li:hover {
  opacity: 0.65;
}

.gallery-list li a {
  display: block;
  line-height: 0;
}

.gallery-list li img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive YouTube embed */
.iframe-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin-top: 40px;
}

.iframe-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
}

/* Discography page styles */
.discography-page {
  padding-top: 90px;
}

.discography-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 22px;
  align-items: start;
}

.discography-item {
  display: flex;
  flex-direction: column;
}

.jacket-wrap {
  position: relative;
  line-height: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.jacket-link {
  display: block;
}

.jacket-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.jacket-link:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

.badge-new {
	position: absolute;
	top: 8px;
	left: 8px;
	background: #cfa381;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 9px 9px;
	border-radius: 999px;
	pointer-events: none;
	z-index: 2;
}

.disc-meta {
  padding: 11px 2px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.disc-release {
  margin: 0 0 4px;
  font-size: 0.78rem;
  color: #7db7d2;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.disc-title {
  margin: 0 0 6px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #333;
  font-weight: 500;
}

.disc-opt {
  margin: 0 0 8px;
  font-size: 0.76rem;
  color: #888;
  line-height: 1.65;
}

.disc-detail-link-wrap {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #e8e8e8;
}

.disc-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4d8ca8;
  text-decoration: none;
  font-size: 0.8rem;
}

.disc-detail-link:hover {
  text-decoration: underline;
}

/* Discography detail page */
.discography-detail-page {
  padding-top: 90px;
}

.discography-detail-article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 28px;
}

.discography-detail-article h1 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #333;
  font-family: "Cinzel", serif;
}

.discography-detail-article .ja-title {
  margin: -10px 0 18px;
  color: #5a5a5a;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 30px;
  align-items: start;
}

.discography-detail-article .left .jacket {
  width: 100%;
  border-radius: 8px;
  display: block;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
  margin-bottom: 12px;
}

.discography-detail-article .left .release {
  margin: 0 0 6px;
  color: #7db7d2;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.discography-detail-article .left .opt {
  margin: 0 0 14px;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.7;
}

.discography-detail-article .left .info {
  margin: 0;
  color: #3f3f3f;
  line-height: 1.9;
  font-size: 0.92rem;
}

.discography-detail-article .left .link-btn-wrap {
  margin-top: 14px;
}

.discography-detail-article .left .link-btn.green {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 18px;
	border-radius: 999px;
	border: 0px solid #5f9667;
	background: #87bdd6;
	color: #fff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1.2;
	transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.discography-detail-article .left .link-btn.green:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(76, 128, 82, 0.28);
}

.discography-detail-article .left .link-btn.green:focus-visible {
  outline: 2px solid rgba(76, 128, 82, 0.5);
  outline-offset: 2px;
}

.discography-detail-article .left .link-btn.green i {
  font-size: 0.9rem;
}

.discography-detail-article .songs {
  margin: 0;
  border-top: 1px dotted #cfdce4;
  padding-top: 10px;
}

.discography-detail-article .songs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.discography-detail-article .songs li {
  margin: 0 0 16px;
}

.discography-detail-article .songs h4 {
  margin: 0 0 8px;
  color: #4d8ca8;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.discography-detail-article .songs dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 6px 8px;
}

.discography-detail-article .songs dt,
.discography-detail-article .songs dd {
  margin: 0;
  line-height: 1.8;
  font-size: 0.88rem;
}

.discography-detail-article .songs dt {
  color: #4d8ca8;
  font-weight: 700;
}

.discography-detail-article .songs .main-title {
	display: block;
	color: #333;
	font-weight: bold;
}
.main-title i {
	color: #87bdd6;
	font-size: 0.7rem;
	font-style: inherit;
	margin-left: 5px;
}

.discography-detail-article .songs .sub-title {
  display: block;
  color: #666;
  font-size: 0.82rem;
}

/* News list page */
.news-page {
  padding-top: 90px;
}

.news-listing {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.news-listing .news-item {
  display: block;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
  padding: 22px;
}

.news-listing .news-item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-listing .news-title .news-item-link:hover {
  color: #c86d39;
}

.news-listing .news-date {
  margin: 0 0 8px;
  color: #c86d39;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
}

.news-listing .news-title {
  margin: 0;
  color: #2f2f2f;
  line-height: 1.5;
  font-size: 1.16rem;
  font-family: "Shippori Mincho", serif;
}

.news-listing .news-excerpt {
  margin: 12px 0 0;
  color: #575757;
  line-height: 1.75;
}

.news-listing .news-list-body {
  margin-top: 12px;
}

.news-pager {
  margin-top: 24px;
}

.news-pager nav {
  position: static;
  width: auto;
  padding: 0;
  display: block;
  background: transparent;
  box-shadow: none;
  border: 0;
  pointer-events: auto;
}

.news-pager nav ul,
.news-pager ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.news-pager li > a,
.news-pager .pagination li > a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #c8c8c8;
  background: #fff;
  color: #454545;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.2;
}

.news-pager li > a > span,
.news-pager .pagination li > a > span {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.news-pager li.next a,
.news-pager li.last a,
.news-pager li.pager-next a,
.news-pager li.pager-last a {
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 6px 12px;
  min-width: 0;
}

.news-pager li.active > a {
  background: #e7aa77;
  border-color: #e7aa77;
  color: #fff;
}

.news-detail-page {
  padding-top: 90px;
}

.news-detail-article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
  padding: 34px;
}

.news-detail-date {
  margin: 0 0 10px;
  color: #c86d39;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.news-detail-article h1 {
  margin: 0 0 22px;
  font-size: 1.75rem;
  line-height: 1.55;
  color: #2f2f2f;
}

.news-detail-body {
  color: #444;
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.news-detail-body > *:first-child {
  margin-top: 0;
}

.news-detail-body > *:last-child {
  margin-bottom: 0;
}

.news-detail-body img,
.news-detail-body iframe,
.news-detail-body video {
  max-width: 100%;
  height: auto;
}

.news-detail-body figure {
  margin: 22px 0;
}

.news-detail-body a {
  color: #c86d39;
}

.news-detail-body ol,
.news-detail-body ul {
  padding-left: 1.4em;
}

.sns {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
}

.sns-title {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #666;
}

.sns-cnt {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sns-cnt a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.sns-cnt .sns-x-logo {
  width: 14px;
  height: 14px;
  display: block;
}

.sns-cnt a:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.sns-cnt .twitter {
  background: #7db7d2;
}

.sns-cnt .facebook {
  background: #7db7d2;
}

.sns-cnt .line {
  background: #7db7d2;
}

.sns-cnt .instagram {
  background: #7db7d2;
}

.sns-cnt .mail {
  background: #7db7d2;
}

.sns-line-text {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.detail-admin-edit-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.detail-admin-edit-btn {
  --edit-accent: #4f9bbb;
  --edit-bg: #eef7fb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--edit-accent) 38%, #ffffff 62%);
  background: var(--edit-bg);
  color: var(--edit-accent);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.07);
  transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.detail-admin-edit-btn:hover {
  background: var(--edit-accent);
  border-color: var(--edit-accent);
  color: #fff;
  transform: translateY(-1px);
}

.detail-admin-edit-btn:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--edit-accent) 45%, #ffffff 55%);
  outline-offset: 2px;
}

.detail-admin-edit-btn.news {
  --edit-accent: #c86d39;
  --edit-bg: #fff6ef;
}

.detail-admin-edit-btn.live {
  --edit-accent: #4f9bbb;
  --edit-bg: #eef7fb;
}

.detail-admin-edit-btn.discography {
  --edit-accent: #6f9d72;
  --edit-bg: #eff8f0;
}

.news-detail-pagination {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.news-detail-pagination .prev,
.news-detail-pagination .next {
  min-width: 140px;
}

.discography-pagination {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discography-pagination .prev,
.discography-pagination .next {
  min-width: 140px;
}

/* Remove blue background from NEWS/LIVE pagination on subpages */
body.is-subpage .news-pager li > a,
body.is-subpage .news-pager .pagination li > a,
body.is-subpage .news-pager li > a > span,
body.is-subpage .news-pager .pagination li > a > span,
body.is-subpage .live-pager li > a,
body.is-subpage .live-pager .pagination li > a,
body.is-subpage .live-pager li > a > span,
body.is-subpage .live-pager .pagination li > a > span {
  background: #fff !important;
  color: #454545 !important;
  /* border: 1px solid #c8c8c8 !important; */
}

body.is-subpage .news-pager li.active > a,
body.is-subpage .live-pager li.active > a {
  background: #e7aa77 !important;
  border-color: #e7aa77 !important;
  color: #fff !important;
}

/* 全ページのNEWS/LIVEページネーション外枠の背景・シャドウ・白背景を除去 */
.news-pager, .live-pager, .news-pager nav, .live-pager nav,
.news-pager ul, .live-pager ul, .news-pager .pagination, .live-pager .pagination {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.news-pager li, .live-pager li {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.news-pager li > a, .news-pager .pagination li > a,
.live-pager li > a, .live-pager .pagination li > a {
  background: transparent !important;
  box-shadow: none !important;
  border: 1px solid #c8c8c8 !important;
}

.news-pager li > a > span, .news-pager .pagination li > a > span,
.live-pager li > a > span, .live-pager .pagination li > a > span {
  background: transparent !important;
}

/* Page-specific pagination redesign */
.news-pager {
  --pager-accent: #c86d39;
  --pager-tint: #fff6ef;
}

.live-pager {
  --pager-accent: #4f9bbb;
  --pager-tint: #eef7fb;
}

.news-pager li > a,
.news-pager .pagination li > a,
.live-pager li > a,
.live-pager .pagination li > a {
  border-radius: 999px;
  border-width: 1px !important;
  border-style: solid;
  border-color: color-mix(in srgb, var(--pager-accent) 38%, #ffffff 62%) !important;
  background: var(--pager-tint) !important;
  color: var(--pager-accent) !important;
  font-weight: 600;
  min-width: 2.35em;
  text-align: center;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.06);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.22s ease;
}

.news-pager li > a:hover,
.news-pager .pagination li > a:hover,
.live-pager li > a:hover,
.live-pager .pagination li > a:hover {
  background: var(--pager-accent) !important;
  border-color: var(--pager-accent) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

.news-pager li.active > a,
.live-pager li.active > a {
  background: var(--pager-accent) !important;
  border-color: var(--pager-accent) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--pager-accent) 40%, transparent 60%);
}

.news-detail-pagination,
.live-pagination,
.discography-pagination {
  --detail-accent: #4f9bbb;
  --detail-tint: #eef7fb;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.news-detail-pagination {
  --detail-accent: #c86d39;
  --detail-tint: #fff6ef;
}

.live-pagination {
  --detail-accent: #4f9bbb;
  --detail-tint: #eef7fb;
}

.discography-pagination {
  --detail-accent: #6f9d72;
  --detail-tint: #eff8f0;
}

.news-detail-pagination .prev,
.news-detail-pagination .next,
.live-pagination .prev,
.live-pagination .next,
.discography-pagination .prev,
.discography-pagination .next {
  min-width: 0;
  flex: 0 0 auto;
}

.news-detail-pagination .prev a,
.news-detail-pagination .next a,
.live-pagination .prev a,
.live-pagination .next a,
.discography-pagination .prev a,
.discography-pagination .next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--detail-accent) 36%, #ffffff 64%);
  background: var(--detail-tint);
  color: var(--detail-accent);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.22s ease;
}

.news-detail-pagination .prev a:hover,
.news-detail-pagination .next a:hover,
.live-pagination .prev a:hover,
.live-pagination .next a:hover,
.discography-pagination .prev a:hover,
.discography-pagination .next a:hover {
  background: var(--detail-accent);
  border-color: var(--detail-accent);
  color: #fff;
  transform: translateY(-1px);
}

.news-detail-pagination i,
.live-pagination i,
.discography-pagination i {
  font-size: 0.92rem;
}

/* User login page */
.user-login-page {
  min-height: calc(100vh - 140px);
  padding: 150px 16px 56px;
}

.user-login-shell {
  width: min(100%, 440px);
  margin: 0 auto;
}

.user-login-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 26px 22px;
}

.user-login-title {
  margin: 0 0 16px;
  font-size: 1.45rem;
  font-family: "Cinzel", serif;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2f2f2f;
}

.user-login-alert,
.user-login-note {
  margin: 0 0 12px;
  padding: 8px 11px;
  font-size: 0.88rem;
  line-height: 1.5;
  border-radius: 8px;
}

.user-login-alert {
  color: #9f3e2f;
  background: #fff4f2;
  border: 1px solid #f5cec6;
}

.user-login-note {
  color: #3f5f6d;
  background: #f0f8fc;
  border: 1px solid #cee8f4;
}

.user-login-form {
  display: grid;
  gap: 13px;
}

.user-login-field {
  display: grid;
  gap: 5px;
}

.user-login-field label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #5c5c5c;
}

.user-login-field input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d8d8d8;
  background: #fff;
  padding: 10px 11px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.user-login-field input:focus {
  border-color: #7db7d2;
  box-shadow: 0 0 0 3px rgba(125, 183, 210, 0.18);
  outline: none;
}

.user-login-submit {
  margin-top: 6px;
  border: 1px solid #6da9c5;
  background: #7db7d2;
  color: #fff;
  padding: 10px 14px;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.user-login-submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .user-login-page {
    min-height: auto;
    padding: 106px 12px 34px;
  }

  .user-login-card {
    padding: 18px 14px;
  }

  .user-login-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-page {
  max-width: 680px;
}

.contact-intro {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.9;
  margin-bottom: 36px;
}

.contact-intro .hide-sp { display: inline; }

/* --- alerts --- */
.contact-alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.6;
}
.contact-alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.contact-alert-error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* --- form layout --- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: rgba(255,255,255, 0.72);
  border: 1px solid rgba(125,183,210, 0.18);
  border-radius: 16px;
  padding: 36px 32px 40px;
  box-shadow: 0 6px 30px rgba(0,0,0, 0.06);
}

/* --- fieldset (purpose) --- */
.contact-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.contact-legend {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: #333;
  margin-bottom: 12px;
}

.contact-radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-radio-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #d5dce4;
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: #fff;
}
.contact-radio-card:hover {
  border-color: #7db7d2;
  background: rgba(125,183,210, 0.04);
}
.contact-radio-card:has(input:checked) {
  border-color: #7db7d2;
  box-shadow: 0 0 0 2px rgba(125,183,210, 0.22);
  background: rgba(125,183,210, 0.06);
}
.contact-radio-card input[type="radio"] {
  accent-color: #7db7d2;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-radio-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-radio-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #222;
}
.contact-radio-desc {
  font-size: 0.8rem;
  color: #777;
  line-height: 1.4;
}

/* --- field base --- */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #444;
  letter-spacing: 0.03em;
}
.contact-required {
  color: #c44;
  margin-left: 4px;
  font-size: 0.85em;
}

/* --- row (name + gender) --- */
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-field-grow { flex: 1 1 0; }
.contact-field-narrow { flex: 0 0 auto; min-width: 150px; }

/* --- text input / textarea --- */
.contact-input,
.contact-textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: "Shippori Mincho", serif;
  border: 1px solid #c8cfd8;
  border-radius: 8px;
  background: #fff;
  color: #222;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #aab3be;
  font-size: 0.88rem;
}
.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #7db7d2;
  box-shadow: 0 0 0 3px rgba(125,183,210, 0.2);
}
.contact-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.7;
}

/* --- gender inline radios --- */
.contact-gender-group {
  display: flex;
  gap: 0;
  border: 1px solid #c8cfd8;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 0;
  height: 42px;
}
.contact-gender {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "Shippori Mincho", serif;
  font-size: 0.88rem;
  color: #555;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid #c8cfd8;
  padding: 0 12px;
}
.contact-gender:last-child { border-right: none; }
.contact-gender:hover { background: #f5f9fb; }
.contact-gender:has(input:checked) {
  background: #7db7d2;
  color: #fff;
}
.contact-gender input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* --- recaptcha --- */
.contact-recaptcha {
  display: flex;
  justify-content: center;
}

/* --- submit button --- */
.contact-submit-wrap {
  text-align: center;
  padding-top: 4px;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 52px;
  border: 1px solid #7db7d2;
  border-radius: 50px;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.contact-submit:hover {
  background: #7db7d2;
  color: #fff;
  transform: translateY(-1px);
}
.contact-submit:active {
  transform: translateY(0);
}
.contact-submit-arrow {
  font-size: 1.15em;
  transition: transform 0.3s;
}
.contact-submit:hover .contact-submit-arrow {
  transform: translateX(4px);
}

/* --- thank-you page --- */
.contact-thankyou {
  text-align: center;
  padding: 60px 0;
  font-family: "Shippori Mincho", serif;
  font-size: 1.1rem;
  line-height: 2;
}
.contact-back-link {
  display: inline-block;
  margin-top: 24px;
  color: #7db7d2;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s;
}
.contact-back-link:hover { opacity: 0.7; }

/* --- confirm page --- */
.contact-confirm-card {
  gap: 0;
}
.confirm-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #e8ecf0;
  align-items: flex-start;
}
.confirm-row:first-child { padding-top: 0; }
.confirm-row:last-of-type { border-bottom: none; }

.confirm-label {
  flex: 0 0 140px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: #555;
  padding-top: 2px;
}
.confirm-value {
  flex: 1;
  font-family: "Shippori Mincho", serif;
  font-size: 0.95rem;
  color: #222;
  line-height: 1.7;
  word-break: break-word;
}
.confirm-value-message {
  white-space: pre-wrap;
}

.confirm-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid #e8ecf0;
}
.confirm-send-form {
  margin: 0;
}
.contact-btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border: 1px solid #aab3be;
  border-radius: 50px;
  background: transparent;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.contact-btn-back:hover {
  background: #f0f3f6;
  border-color: #7db7d2;
  color: #333;
}

/* --- responsive --- */
@media (max-width: 768px) {
  .contact-page { padding: 100px 5% 60px; }
  .contact-intro .hide-sp { display: none; }
  .contact-form { padding: 24px 18px 28px; gap: 22px; border-radius: 12px; }
  .contact-radio-group { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; gap: 22px; }
  .contact-field-narrow { min-width: 0; width: 100%; }
  .contact-submit { padding: 13px 36px; font-size: 0.95rem; }
  .confirm-row { flex-direction: column; gap: 4px; }
  .confirm-label { flex: none; }
  .confirm-buttons { flex-direction: column; gap: 12px; }
  .contact-btn-back { justify-content: center; width: 100%; padding: 13px 24px; }
  .confirm-buttons .contact-submit { width: 100%; justify-content: center; }
}