
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #000;
}

/* ==========================
   ヘッダー
   ========================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: transparent;
  z-index: 1000;
  box-shadow: none;
  transition: opacity 0.3s ease;
}

.header-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

header nav {
  position: absolute;
  top: 50%;
  left: 75%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  white-space: nowrap;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}
nav a:hover { color: #87cefa; }
/* ==========================
   Floating Hamburger Menu
   ========================== */
.floating-menu-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(35, 43, 63, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  z-index: 2000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.floating-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: 0.3s;
}

.floating-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.floating-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.floating-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.floating-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  padding: 90px 28px 32px;
  background: rgba(35, 43, 63, 0.96);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 1900;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.floating-menu.open {
  transform: translateX(0);
}

.floating-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.floating-menu-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.floating-menu-nav a:hover {
  opacity: 0.7;
}
/* ==========================
   HOME
   ========================== */

.home-hero-bg {
  display: block;
  width: 100%;
  min-height: calc(100vh - 60px);
  object-fit: cover;
  object-position: center top;
}

.home-overlay {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  pointer-events: none;
}

.home-info {
  position: absolute;
  top: 10%;
  left: 75%;
  transform: translateX(-50%);
  width: min(29vw, 500px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  pointer-events: auto;
  text-align: center;
}

.home-release {
  margin: 0 0 26px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.home-release-image {
  display: block;
  width: 150%;
  max-width: 600px;
  height: auto;
}

.home-release span {
  display: block;
}

.home-subtext {
  margin: 0 0 28px;
  font-size: clamp(1rem, 1.4vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.home-pv {
  width: 100%;
  margin-bottom: 28px;
}

.home-pv-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.home-pv-inner iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.home-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.home-link-btn {
  min-width: 96px;
  padding: 12px 18px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  transition: 0.3s;
}

.home-link-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.home-demo-banner{
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 40px auto 0;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-demo-banner:hover{
  transform: translateY(-2px);
  opacity: 0.95;
}

.home-demo-banner-image{
  display: block;
  width: 100%;
  height: auto;
}


/* ==========================
   STORY
   ========================== */
.story {
  background: #f3f3f3;
  color: #3b4167;
  padding: 110px 0 120px;
}

.story-inner {
  width: min(1280px, calc(100% - 120px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "title topimg"
    "text text"
    "bottomimg .";
  row-gap: 48px;
  column-gap: 56px;
}

.story-title {
  grid-area: title;
  margin: 0;
  align-self: start;
  justify-self: start;
  font-size: clamp(4rem, 6vw, 5.8rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #3b4167;
  font-family:
    "Times New Roman",
    "Yu Mincho",
    "Hiragino Mincho ProN",
    serif;
}

.story-top-image,
.story-bottom-image {
  margin: 0;
}

.story-top-image {
  grid-area: topimg;
  justify-self: end;
  width: min(100%, 690px);
}

.story-bottom-image {
  grid-area: bottomimg;
  justify-self: start;
  width: min(100%, 520px);
  margin-top: 12px;
}

.story-top-image img,
.story-bottom-image img {
  display: block;
  width: 100%;
  height: auto;
}

.story-text {
  grid-area: text;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.story-text p {
  margin: 0 0 24px;
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #4a4f74;
  font-weight: 400;
}

.story-text p:last-child {
  margin-bottom: 0;
}




/* ==========================
   フェードイン
   ========================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 2.0s ease, transform 2.0s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay] { transition-delay: var(--rv-delay, 0ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============ CHARACTER ============ */
.char-section{
  position: relative;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05), transparent 30%),
    linear-gradient(180deg, #55627a 0%, #465165 45%, #3f495d 100%);
  color:#ffffff;
  padding: 120px 0 140px;
  margin-top: 0;
  padding-top: 0;
  overflow: hidden;
}

.char-section::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.03) 0%, transparent 35%, transparent 65%, rgba(255,255,255,0.03) 100%);
  pointer-events:none;
}

.char-header{
  width: min(96%, 1200px);
  margin: 0 auto 24px;
  text-align: center;
}
.char-title{
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: 3px;
  margin: 0;
  color: #f7f7f7;
  text-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

/* タブ列 */
.char-tabs-wrap {
  width: min(96%, 1200px);
  margin: 20px auto 40px;
  display: flex;
  justify-content: center;
}

.char-tabs {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px;
  scroll-snap-type: x mandatory;
}

.char-tabs::-webkit-scrollbar{ height:8px; }
.char-tabs::-webkit-scrollbar-thumb{ background:#cfd6dc; border-radius:8px; }

.char-tab{
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  padding: 0;
  display: grid;
  place-items:center;
  cursor: pointer;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease, opacity .15s ease;
  opacity: 0.78;
}

.char-tab.is-active{
  opacity: 1;
  border-color:#ffffff;
  box-shadow:
    0 0 0 3px rgba(255,255,255,.12),
    0 10px 24px rgba(0,0,0,.22);
  transform: translateY(-3px);
  border-color:#4d2ae6;
}
.char-tab img{ width:100%; height:100%; object-fit:cover; border-radius: 12px; }

.char-tab:hover{ transform: translateY(-2px); }

/* パネル */
.char-panels{
  width: min(96%, 1200px);
  margin: 0 auto;
}
.char-panel{ display:none; }
.char-panel.is-active{ display:block; }

.char-grid{
  display: grid;
  grid-template-columns: minmax(420px, 620px) minmax(320px, 420px);
  justify-content: center;
  align-items: start;
  gap: 56px;
}


.char-text{
  grid-column: 1;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  line-height: 2.15;
  font-size: clamp(20px, 2.2vw, 25px);
}

.char-name{
  font-size: clamp(34px, 3.8vw, 48px);
  margin: 0 0 8px;
}

.char-catch{
  margin: 0 0 18px;
  color:#ffffff;
  font-size: clamp(20px, 2.1vw, 26px);
}

.char-catch::after{
  content:"";
  display:block;
  width: 72px;
  height: 1px;
  margin-top: 14px;
  background: rgba(255,255,255,0.35);
}

.char-desc p{ margin: 0 0 10px; }

.char-meta{
  display:grid; gap:8px; margin-top: 18px;
}

.char-meta dt{ color:#666; }

.char-meta dd{ margin:0; }

.char-visual{
  grid-column: 2;
  justify-self: center;
  align-self: start;
  width: 100%;
  max-width: 420px;
  height: 650px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.char-visual img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

/* 仕切り線 */
.char-divider{
  position: absolute;
  left: 1.5%;
  width: 97%;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  opacity: 0.9;
  pointer-events: none;
  z-index: 5;
}

.char-divider-top{
  top: 255px;
}

.char-divider-bottom{
  bottom: 38px;
}

/* 左右の矢印 */
.char-arrow{
  position: absolute;
  top: 58%;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 20;
  padding: 0;
}

.char-arrow::before{
  content:"";
  display:block;
  width: 100%;
  height: 100%;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  opacity: 0.95;
  transition: transform .2s ease, opacity .2s ease;
}

.char-arrow-prev{
  left: 11%;
}

.char-arrow-prev::before{
  transform: rotate(225deg);
}

.char-arrow-next{
  right: 11%;
}

.char-arrow-next::before{
  transform: rotate(45deg);
}

.char-arrow:hover::before{
  opacity: 1;
}

.char-arrow-prev:hover::before{
  transform: rotate(225deg) scale(1.08);
}

.char-arrow-next:hover::before{
  transform: rotate(45deg) scale(1.08);
}

/* ============ GALLERY (static grid) ============ */
.gallery-section{
   background:#344054;
   color:#fff;
   padding: 120px clamp(24px, 8vw, 96px) 230px;
   z-index: 1;
}

.gallery-header{
  width:min(96%,1200px);
  margin:0 auto 28px;
  text-align:center;
}
.gallery-title{
  font-family:"游明朝","Yu Mincho","YuMincho","Hiragino Mincho ProN","Hiragino Mincho Pro",serif;
  font-size:clamp(44px,6vw,72px);
  font-weight:700;
  letter-spacing:2px;
  margin:0;
}

.gallery-grid {
  width: min(90%, 1600px); /* ← 横幅を広めに */
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列固定 */
  gap: 60px 48px; /* 行・列の間隔を少し広く */
  justify-content: center;
}

.gl-item {
  position: relative;
  aspect-ratio: 16 / 9; /* ← 比率を横長に変更（画像が大きく見える） */
  overflow: hidden;
  border-radius: 16px;
  background: #111a22;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gl-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gl-item:hover img {
  transform: scale(1.05);
}

/* ------- Modal ------- */
.gl-modal{
  position:fixed; inset:0;
  display:none;            /* is-openでblock */
  align-items:center; justify-content:center;
  background: rgba(8,12,16,.85);
  z-index: 1000;
  padding: 6vh 6vw;
}
.gl-modal.is-open{ display:flex; }
.gl-full{
  max-width: 88vw; max-height: 86vh;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  border-radius: 12px;
  background:#0b0f14;
}
.gl-close, .gl-prev, .gl-next{
  position:absolute;
  top: 24px;
  width:44px; height:44px;
  display:grid; place-items:center;
  border:none; border-radius:10px;
  background: rgba(255,255,255,.1);
  color:#fff; font-size:26px; line-height:1;
  cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.gl-close{ right:24px; }
.gl-prev, .gl-next{
  top:50%; transform: translateY(-50%);
  font-size:40px;
}
.gl-prev{ left:24px; }
.gl-next{ right:24px; }
.gl-close:hover, .gl-prev:hover, .gl-next:hover{ background: rgba(255,255,255,.2); }


/* ============ FOOTER ============ */
.site-footer{
  background: #1f2735;
  color: rgba(255,255,255,0.82);
  padding: 42px 20px 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer__inner{
  width: min(92%, 1200px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.site-footer__brand{
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.site-footer__nav{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__nav a{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-footer__nav a:hover{
  color: #ffffff;
}

.site-footer__copy{
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

/* ========================================
   Responsive
   ======================================== */

/* ---------- 1280px以下 ---------- */
@media (max-width: 1280px) {
  header nav {
    left: 74%;
    gap: 28px;
  }

  nav a {
    font-size: 17px;
  }

  .home-info {
    top: 8%;
    left: 75%;
    transform: translateX(-50%);
    width: min(34vw, 480px);
    min-width: 300px;
  }

  .home-release-image {
    width: 128%;
    max-width: 500px;
  }

  .home-subtext {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .home-pv {
    margin-bottom: 24px;
  }

  .home-link-btn {
    min-width: 92px;
    padding: 11px 16px;
    font-size: 0.95rem;
  }

  .story {
    padding: 96px 0 104px;
  }

  .story-inner {
    width: min(100%, calc(100% - 80px));
    column-gap: 40px;
    row-gap: 40px;
  }

  .story-top-image {
    width: min(100%, 620px);
  }

  .story-bottom-image {
    width: min(100%, 460px);
  }

  .story-text p {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
  }

  .char-header,
  .char-tabs-wrap,
  .char-panels {
    width: min(96%, 1160px);
  }

  .char-grid {
    grid-template-columns: minmax(360px, 560px) minmax(280px, 380px);
    gap: 40px;
  }

  .char-text {
    font-size: clamp(18px, 1.9vw, 22px);
  }

  .char-name {
    font-size: clamp(30px, 3.2vw, 42px);
  }

  .char-catch {
    font-size: clamp(18px, 1.9vw, 22px);
  }

  .char-visual {
    max-width: 360px;
    height: 580px;
  }

  .char-divider-top {
    top: 235px;
  }

  .char-divider-bottom {
    bottom: 32px;
  }

  .char-arrow-prev {
    left: 7%;
  }

  .char-arrow-next {
    right: 7%;
  }

  .gallery-grid {
    width: min(94%, 1320px);
    gap: 36px 28px;
  }
}

/* ---------- 1100px以下 ---------- */
@media (max-width: 1100px) {
  header nav {
    display: none;
  }
  nav a {
    font-size: 15px;
  }

  .floating-menu-toggle {
  display: flex !important;
}

  .home-info {
    top: 7%;
    left: 75%;
    transform: translateX(-50%);
    width: min(38vw, 430px);
    min-width: 270px;
  }

  .home-release-image {
    width: 118%;
    max-width: 430px;
  }

  .home-subtext {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .home-pv {
    margin-bottom: 18px;
  }

  .home-links {
  gap: 12px;
  }

  .home-link-btn {
    min-width: 112px;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .story {
    padding: 90px 0 100px;
  }

  .story-inner {
    width: min(100%, calc(100% - 56px));
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "topimg"
      "text"
      "bottomimg";
    row-gap: 32px;
  }

  .story-title,
  .story-top-image,
  .story-bottom-image {
    justify-self: center;
  }

  .story-top-image,
  .story-bottom-image {
    width: min(100%, 760px);
  }

  .story-text p {
    font-size: clamp(1.15rem, 2.3vw, 1.6rem);
    line-height: 1.85;
  }

  .char-tabs-wrap {
    margin: 16px auto 32px;
  }

  .char-tabs {
    gap: 10px;
  }

  .char-tab {
    width: 72px;
    height: 72px;
  }

  .char-grid {
    grid-template-columns: minmax(300px, 1fr) minmax(220px, 320px);
    gap: 24px;
  }

  .char-text {
    font-size: clamp(16px, 1.7vw, 19px);
    line-height: 2;
  }

  .char-name {
    font-size: clamp(28px, 3vw, 36px);
  }

  .char-catch {
    font-size: clamp(16px, 1.8vw, 20px);
    margin-bottom: 14px;
  }

  .char-visual {
    max-width: 320px;
    height: 500px;
  }

  .char-divider-top,
  .char-divider-bottom {
    display: none;
  }

  .char-arrow {
  display: none;
}

  .gallery-section {
    padding: 96px 24px 180px;
  }

  .gallery-grid {
    width: min(96%, 1100px);
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
  }

  .gl-full {
    max-width: 90vw;
    max-height: 82vh;
  }
}

/* ---------- 768px以下 ---------- */
@media (max-width: 768px) {
  header {
    height: 56px;
  }

  header nav {
    display: none;
  }

  .floating-menu-toggle {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-menu-toggle {
  display: flex !important;
}

  .floating-menu {
    width: min(82vw, 320px);
    padding: 84px 22px 28px;
  }

  .floating-menu-nav a {
    font-size: 1rem;
  }

  .home-hero-bg {
    min-height: auto;
    height: auto;
    object-fit: contain;
  }

  .home-release {
    margin-bottom: 18px;
  }

  .home-release-image {
    width: 100%;
    max-width: 320px;
  }

  .home-subtext {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .home-links {
    justify-content: center;
    gap: 10px;
  }

  .home-link-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .story {
    padding: 72px 0 84px;
  }

  .story-inner {
    width: calc(100% - 28px);
    row-gap: 24px;
  }

  .story-title {
    font-size: clamp(3rem, 12vw, 4.2rem);
  }

  .story-text p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 16px;
  }

  .char-section {
    padding: 84px 0 92px;
  }

  .char-header,
  .char-tabs-wrap,
  .char-panels {
    width: calc(100% - 24px);
  }

  .char-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .char-tabs-wrap {
  width: calc(100% - 24px);
  margin: 14px auto 24px;
}

 .char-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 6px 0;
  overflow: visible;
  width: 100%;
}

.char-tab {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

  .char-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .char-text {
    grid-column: auto;
    font-size: 1rem;
    line-height: 1.95;
  }

  .char-name {
    font-size: clamp(24px, 7vw, 32px);
  }

  .char-catch {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }

  .char-visual {
    grid-column: auto;
    width: min(100%, 320px);
    max-width: 320px;
    height: 420px;
    margin: 0 auto;
  }

  .char-arrow {
    display: none;
  }

  .gallery-section {
    padding: 84px 16px 120px;
  }

  .gallery-title {
    font-size: clamp(40px, 11vw, 58px);
  }

  .gallery-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gl-modal {
    padding: 4vh 4vw;
  }

  .gl-close,
  .gl-prev,
  .gl-next {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    padding: 34px 16px 30px;
  }

  .site-footer__brand {
    font-size: 19px;
  }

  .site-footer__nav {
    gap: 16px;
  }
}

/* ---------- 480px以下 ---------- */
@media (max-width: 480px) {
  .home-info {
    padding: 22px 14px 28px;
  }

  .home-release-image {
    max-width: 280px;
  }

  .home-link-btn {
    flex: 1 1 100%;
  }

  .story-inner {
    width: calc(100% - 20px);
  }

  .char-tab {
    width: 58px;
    height: 58px;
  }

   .char-tabs {
    gap: 8px;
  }

  .char-text {
    font-size: 0.95rem;
  }

  .char-name {
    font-size: 26px;
  }

  .char-catch {
    font-size: 0.9rem;
  }

  .char-visual {
    width: min(100%, 280px);
    max-width: 280px;
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    font-size: 17px;
  }

  .site-footer__copy {
    font-size: 12px;
  }
}






/* 初期表示はPC用 */
.home-desktop {
  display: block;
}

.home-mobile {
  display: none;
}

/* 1100px以下でモバイル用に切り替え */
@media (max-width: 1100px) {
  .home-desktop {
    display: none;
  }

  .home-mobile {
    display: block;
    background: #3f4b63;
  }

  .home-mobile-bg {
    display: block;
    width: 100%;
    height: auto;
  }

  .home-mobile-info {
    padding: 24px 16px 32px;
    text-align: center;
  }
}