@charset "UTF-8";

/* =======================
   全体レイアウト
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #f7f9ff;
  --bg-card: #ffffff;
  --accent-blue: #2a6fbf;
  --accent-blue-soft: #d6e7ff;
  --accent-silver: #d5dde8;
  --text-main: #1f2633;
  --text-muted: #6c7a93;
  --border-soft: #dde5f5;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
}

/* ページの左右だけ縁取り */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 10px;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(180, 200, 230, 0.1),
    rgba(140, 180, 230, 0.4),
    rgba(230, 240, 255, 0.1)
  );
  box-shadow: 0 0 10px rgba(90, 140, 220, 0.45);
  border-radius: 999px;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

a {
  color: var(--accent-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =======================
   ヘッダー
   ======================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-blue);
}

.site-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.site-nav a {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  color: var(--text-main);
}

.site-nav a:hover {
  background: rgba(214, 231, 255, 0.8);
}

/* =======================
   ヒーロー
   ======================= */

.hero {
  padding: 1.8rem 1.2rem 1.4rem;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.hero-text {
  flex: 1.4;
}

.hero-label {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(214, 231, 255, 0.9);
  color: var(--accent-blue);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
}

.hero h1 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.4;
}

.hero-desc {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-buttons {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, #5aa6ff, #7bc7ff);
  color: #fff;
  box-shadow: 0 4px 10px rgba(70, 130, 200, 0.4);
}

.btn.secondary {
  background: #f5f8ff;
  color: var(--accent-blue);
  border-color: var(--accent-blue-soft);
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-placeholder {
  width: 260px;
  max-width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 1.4rem;
  background: radial-gradient(circle at 30% 0%, #ffffff, #e6f0ff);
  border: 1px solid rgba(180, 210, 245, 0.9);
  box-shadow:
    0 10px 30px rgba(120, 150, 220, 0.45),
    0 0 0 3px rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.maria-img {
  width: 100%;
  height: 100%;
  object-fit: contain;     /* 切らずに全体表示 */
  object-position: top;    /* ← ここが重要！上寄せ */
  display: block;
}

/* =======================
   セクション共通
   ======================= */

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem 1.6rem;
}

.section-header h2 {
  margin: 0;
  font-size: 1.2rem;
  border-left: 4px solid var(--accent-blue);
  padding-left: 0.6rem;
}

.section-header p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* カード系 */

.card-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: 0 3px 8px rgba(140, 170, 220, 0.2);
}

.card-badge-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.badge {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
}

.card-title {
  margin: 0.2rem 0;
  font-size: 1rem;
}

.card-meta {
  margin: 0.1rem 0 0.3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.card-text {
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.card-actions {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

.card-actions a {
  font-weight: 600;
}

/* =======================
   YouTube
   ======================= */

.youtube-category {
  margin-top: 1.8rem;
}

.youtube-category:first-of-type {
  margin-top: 0.9rem;
}

.subsection-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin: 0 0 0.5rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.6rem;
}

.video-title {
  margin-top: 0.4rem;
  color: #2A6FBF;
  font-weight: 600;
  font-size: 0.95rem;
}

.video-card {
  display: flex;
  flex-direction: column;
}

/* アスペクト比固定（16:9） */
.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #cdd8ea;
  box-shadow: 0 3px 8px rgba(100, 140, 200, 0.25);
}

.video-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

/* =======================
   グッズ スライダー
   ======================= */

.goods-slider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.6rem;
}

.goods-slide {
  flex: 1;
}

.goods-nav {
  border: none;
  background: #edf3ff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.goods-image {
  width: 100%;
  border-radius: 0.8rem;
  margin-bottom: 0.5rem;
}

.price {
  font-weight: 700;
  color: var(--accent-blue);
  margin-top: 0.2rem;
}

.goods-indicators {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.3rem;
  justify-content: center;
}

.goods-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: #d3dbea;
  cursor: pointer;
}

.goods-dot.is-active {
  width: 16px;
  background: var(--accent-blue);
}

/* =======================
   フッター
   ======================= */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding: 0.8rem 1.2rem 1.5rem;
  margin-top: 0.5rem;
}

.site-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =======================
   レスポンシブ
   ======================= */

@media (max-width: 768px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .hero-inner {
    flex-direction: column-reverse;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero-placeholder {
    width: 200px;
  }

  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* =============================
   Bottom section (SNS + Contents)
   ============================= */
:root{
  --sns-x: #000000;
  --sns-youtube: #FF0000;
  --sns-twicas: #4AAFF5;
}

.site-bottom{
  background:#2f2f2f;
  color:#ffffff;
  margin-top:64px;
}
.site-bottom a{ color:inherit; }

.site-bottom-inner{
  max-width:1100px;
  margin:0 auto;
  padding:48px 20px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:40px;
}

.site-bottom-title .jp{
  font-size:22px;
  font-weight:700;
  letter-spacing:.02em;
}
.site-bottom-title .en{
  margin-top:6px;
  font-size:28px;
  font-weight:800;
  letter-spacing:.02em;
}

.site-bottom-links{
  margin:18px 0 22px;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
  font-weight:600;
}
.site-bottom-links a{
  text-decoration:none;
  opacity:.95;
}
.site-bottom-links a:hover{ opacity:1; text-decoration:underline; }

.site-bottom-notes{
  font-size:13px;
  line-height:1.9;
  opacity:.9;
}
.site-bottom-notes p{ margin:0 0 10px; }

.site-bottom-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.site-bottom-heading{
  font-size:20px;
  font-weight:800;
  letter-spacing:.06em;
  text-align:center;
  opacity:.95;
}
.site-bottom-heading.is-contents{ margin-top:18px; }

.sns-icons{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}

.sns-icon{
  width:56px;
  height:56px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:#ffffff;
  text-decoration:none;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
  transform: translateY(0);
  transition: transform .15s ease, filter .15s ease;
}
.sns-icon svg,
.sns-icon img{ width:26px; height:26px; display:block; }
.sns-icon:hover{ transform: translateY(-2px); filter: brightness(1.02); }

.sns-icon.is-x{ background: var(--sns-x); }
.sns-icon.is-youtube{ background: var(--sns-youtube); }
.sns-icon.is-twicas{ background: var(--sns-twicas); }

.site-bottom-nav{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  font-size:14px;
  opacity:.95;
}
.site-bottom-nav a{
  text-decoration:none;
  padding:10px 6px;
}
.site-bottom-nav a:hover{ text-decoration:underline; }

@media (max-width: 860px){
  .site-bottom-inner{
    grid-template-columns:1fr;
    gap:28px;
  }
  .site-bottom-right{
    align-items:flex-start;
  }
  .site-bottom-nav{
    justify-content:flex-start;
  }
}

/* =======================
   ■ 外部リンク
   ======================= */

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.link-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: .2rem .8rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid #cdd8ea;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 3px 8px rgba(100, 140, 200, 0.18);
  color: inherit;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(42,111,191,0.45);
  box-shadow: 0 8px 20px rgba(100, 140, 200, 0.22);
}

.link-card-title {
  font-weight: 700;
  color: #2A6FBF;
  line-height: 1.2;
}

.link-card-desc {
  grid-column: 1 / 2;
  color: #4c5a73;
  font-size: .95rem;
}

.link-card-arrow {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 1.2rem;
  color: #8aa3c7;
}

@media (max-width: 520px) {
  .link-card {
    padding: .95rem 1rem;
  }
}
