@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP&family=Montaga&display=swap');

/*－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
  Wonderland Network Theme
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－*/

:root {
  /* Alice & Wonderland Inspired Palette */
  --color-bg: #f5f8fc;
  --color-card-bg: #ffffff;
  --color-text: #2c333a;
  --color-text-muted: #64748b;
  --color-main: #4a8cd1;          /* Alice Dress Blue */
  --color-sub: #d3e2f2;           /* Soft Ice Blue Border */
  --color-accent: #d84b65;        /* Queen's Rose Red */
  --color-black: #1b2129;
  --color-white: #ffffff;
  --color-shadow: rgba(30, 50, 75, 0.08);

  /* Fonts */
  --font-base: "LINE Seed JP", sans-serif; "EB Garamond", serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-title: "EB Garamond", serif; "LINE Seed JP", sans-serif;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  background-color: var(--color-bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(216, 75, 101, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(74, 140, 209, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.7;
  letter-spacing: 0.3px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all 0.25s ease;
}

/*－－－－－－－－－－ Main Container －－－－－－－－－－*/
.mainwrapper {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

@media screen and (max-width: 520px) {
  .mainwrapper {
    padding: 24px 16px;
  }
}

/*－－－－－－－－－－ Typography －－－－－－－－－－*/
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-black);
  margin: 0 0 0.8em 0;
}

.headingL {
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.2rem);
  letter-spacing: 1.5px;
  margin: 40px 0 20px 0;
  border-bottom: 2px solid var(--color-sub);
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.headingL::before {
  content: "♦";
  color: var(--color-accent);
  font-size: 0.8em;
}

.headingM {
  font-size: 1.3rem;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

p {
  margin: 14px 0;
  text-align: justify;
}

/*－－－－－－－－－－ Profile Header －－－－－－－－－－*/
.profile-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

.profile-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--color-white);
  box-shadow: 0 8px 24px var(--color-shadow);
  object-fit: cover;
  margin-bottom: 12px;
}

.profile-icon:hover {
  transform: scale(1.04) rotate(1.5deg);
}

.username {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 4px 0 0 0;
  letter-spacing: 1px;
}

.site-tagline {
  font-family: var(--font-title);
  color: var(--color-main);
  font-size: 1.05rem;
  font-style: italic;
  margin: 2px 0 16px 0;
  letter-spacing: 1px;
}

.profile-bio {
  max-width: 520px;
  font-size: 0.98rem;
  color: var(--color-text);
  line-height: 1.65;
  margin-bottom: 18px;
  text-align: center;
}

/*－－－－－－－－－－ Social Icons Bar －－－－－－－－－－*/
.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  box-shadow: 0 2px 8px var(--color-shadow);
  text-decoration: none;
}

.social-icons a svg {
  width: 20px;
  height: 20px;
}

.social-icons a:hover {
  transform: translateY(-4px);
  background: var(--color-main);
  color: var(--color-white);
  border-color: var(--color-main);
  box-shadow: 0 6px 16px rgba(74, 140, 209, 0.3);
}

/*－－－－－－－－－－ Visual Banner Card －－－－－－－－－－*/
.banner-section {
  margin: 24px 0 10px 0;
}

.banner-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--color-shadow);
  border: 2px solid var(--color-white);
}

.banner-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/*－－－－－－－－－－ Link Buttons －－－－－－－－－－*/
.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 14px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-sub);
  border-radius: 14px;
  box-shadow: 0 3px 10px var(--color-shadow);
  text-decoration: none;
  color: var(--color-text);
}

.link-btn .icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--color-main);
}

.link-btn .text {
  font-size: 1.02rem;
  font-weight: 600;
  flex-grow: 1;
}

.link-btn .sub-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-family: monospace;
}

.link-btn:not(.info-btn):hover {
  background: #fdfefe;
  border-color: var(--color-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 140, 209, 0.15);
}

.link-btn.info-btn {
  background: rgba(255, 255, 255, 0.7);
}

/*－－－－－－－－－－ Q&A / Story Cards (Wonders) －－－－－－－－－－*/
.box {
  background: var(--color-card-bg);
  padding: 24px 28px;
  border-radius: 14px;
  border-left: 4px solid var(--color-main);
  box-shadow: 0 4px 16px var(--color-shadow);
  margin-bottom: 20px;
}

.box .question-title {
  color: var(--color-accent);
  margin-top: 0;
}

/*－－－－－－－－－－ About Alice Showcase －－－－－－－－－－*/
.alice-showcase {
  background: var(--color-card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px var(--color-shadow);
  border: 1px solid var(--color-sub);
}

.alice-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 20%;
}

.alice-story {
  padding: 22px 26px;
}

.story-ending {
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 1.1rem;
  margin-top: 10px;
}

/*－－－－－－－－－－ Artwork Gallery －－－－－－－－－－*/
.gallery-lead {
  margin-bottom: 18px;
  color: var(--color-text-muted);
}

.art-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px var(--color-shadow);
  border: 1px solid var(--color-sub);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  display: block;
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-text-muted);
  background: var(--color-white);
  border-top: 1px solid var(--color-sub);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(74, 140, 209, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

@media screen and (max-width: 420px) {
  .art-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item img {
    height: 180px;
  }
}

/*－－－－－－－－－－ Page UP －－－－－－－－－－*/
.pageup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 1px solid var(--color-sub);
  box-shadow: 0 4px 12px var(--color-shadow);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  opacity: 0.85;
}

.pageup .arrow {
  width: 10px;
  height: 10px;
  border: 2px solid var(--color-main);
  border-bottom: 0;
  border-left: 0;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.pageup:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

.pageup:hover .arrow {
  border-color: var(--color-white);
}

/*－－－－－－－－－－ Footer －－－－－－－－－－*/
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}