@charset "UTF-8";

:root {
  --ink: #1f1f1f;
  --white: #ffffff;
  --paper: #f7f4ef;
  --line: rgba(60, 54, 48, 0.18);
  --red: #8f2d24;
  --blue: #203b63;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  overflow-x: hidden;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "メイリオ", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 34px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.logo {
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.03em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.top-nav a {
  border-bottom: 1px solid transparent;
}

.top-nav a:hover {
  border-bottom-color: currentColor;
}

.language {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.hero {
  min-height: 55vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 52px;
  color: var(--white);
  text-align: center;
  background-image:
    linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.48)),
    url("image/topback.png");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  max-width: 900px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}

.edition-band {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 10px;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.edition-band::before,
.edition-band::after {
  content: "";
  width: 58px;
  height: 1px;
  background: rgba(255,255,255,.75);
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(58px, 10vw, 118px);
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
}

.location {
  margin: 16px 0 10px;
  font-family: "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: .06em;
}

.lead,
.lead-en {
  margin: 8px 0 0;
  font-size: clamp(15px, 2vw, 20px);
}

.lead-en {
  font-family: "Times New Roman", serif;
}

.two-lines {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 26px;
}

.section-title p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  font-family: "Times New Roman", serif;
  font-size: 15px;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.section-title p::before,
.section-title p::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--line);
}

.section-title h2 {
  margin: 6px 0 0;
  font-size: clamp(22px, 3vw, 34px);
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: .08em;
}

.line-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.line-card {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 320px;
  overflow: hidden;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.music-card {
  border-color: rgba(143,45,36,.45);
}

.books-card {
  border-color: rgba(32,59,99,.45);
}

.card-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.music-card .card-image {
  background-image: url("img2/bach1iconeng.jpg");
}

.books-card .card-image {
  background-image: url("img2/topbooks.png");
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  text-align: center;
}

.icon {
  margin: 0 auto 8px;
  font-size: 36px;
  line-height: 1;
}

.music-card .icon,
.music-card h3 {
  color: var(--red);
}

.books-card .icon,
.books-card h3 {
  color: var(--blue);
}

.label {
  margin: 0;
  font-family: "Times New Roman", serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.card-body h3 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 2.8vw, 31px);
  font-family: "Playfair Display", "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.35;
}

.card-body p {
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 16px auto 0;
  min-width: 220px;
  padding: 11px 22px;
  color: var(--white);
  border-radius: 3px;
  font-family: "Times New Roman", "Noto Serif JP", serif;
  letter-spacing: .06em;
  transition: transform .2s ease, opacity .2s ease;
}

.button::after {
  content: "›";
  font-size: 24px;
  line-height: 1;
}

.button:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.button.red {
  background: var(--red);
}

.button.blue {
  background: var(--blue);
}

.sub-links {
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px auto 40px;
  padding: 0 20px;
}

.sub-links a {
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.sub-links a:last-child {
  border-right: 0;
}

.sub-links span {
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: .05em;
}

.sub-links small {
  display: block;
  color: #666;
}

footer {
  padding: 18px;
  text-align: center;
  color: var(--white);
  background: #222;
  font-size: 13px;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    gap: 8px;
    padding: 14px 18px;
  }

  .top-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .line-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 140px;
  }

  .line-card {
    grid-template-columns: 1fr;
  }

  .card-image {
    min-height: 210px;
  }

  .card-body {
    padding: 24px 18px;
  }

  .sub-links {
    grid-template-columns: 1fr;
  }

  .sub-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
