/* ========================================
   Reset & Base
======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Maru Gothic', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  color: #222;
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ========================================
   CSS Variables
======================================== */
:root {
  --black: #222;
  --white: #fff;
  --gray-100: #f7f7f7;
  --gray-200: #efefef;
  --gray-300: #ddd;
  --gray-400: #bbb;
  --gray-500: #888;
  --gray-600: #666;
  --accent: #c23;
  --brand: #0055a0;
  --max-width: 1200px;
  --sidebar-width: 320px;
}

/* ========================================
   Loading Cover
======================================== */
.loading-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-cover.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.loading-logo {
  display: block;
  height: 56px;
  width: auto;
  opacity: 0;
  transform: translateY(8px);
  animation: loadReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes loadReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Site Layout - Sidebar + Main
======================================== */
.site-layout {
  display: flex;
  min-height: 100vh;
}

/* ========================================
   Sidebar (Fixed Left)
======================================== */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--white);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 48px 36px 36px;
  border-right: 1px solid var(--gray-200);
  overflow-y: auto;
}

.sidebar-top {
  margin-bottom: 32px;
}

.sidebar-logo {
  display: block;
}

.sidebar-logo img {
  width: 200px;
  height: auto;
  opacity: 0;
  animation: sidebarReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

@keyframes sidebarReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Hashtags
======================================== */
.sidebar-tags {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: baseline;
  gap: 2px 10px;
  margin-bottom: 32px;
  opacity: 0;
  animation: sidebarReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.hashtag {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gray-300);
  padding: 3px 0;
  cursor: pointer;
  transition: color 0.25s ease;
  user-select: none;
  white-space: nowrap;
  line-height: 1.3;
}

.hashtag:hover {
  color: var(--brand);
}

.hashtag.active {
  color: var(--brand);
}

/* ========================================
   Sidebar LINE CTA
======================================== */
.sidebar-line {
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: sidebarReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.7s forwards;
}

.sidebar-line-caption {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.6;
  text-align: left;
}

.sidebar-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 14px;
  background: #06C755;
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sidebar-line-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.sidebar-line-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ========================================
   Sidebar Nav
======================================== */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  opacity: 0;
  animation: sidebarReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 1.9s forwards;
}

.sidebar-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 10px 0;
  transition: color 0.3s ease;
}

.sidebar-nav a:hover {
  color: var(--black);
}

/* ========================================
   Mobile Header (hidden on desktop)
======================================== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
}

.mobile-header-logo {
  height: 20px;
  width: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--black);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 100px 24px 40px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
}

.nav-mobile a {
  display: block;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding: 20px 0;
  color: var(--black);
  border-bottom: 1px solid var(--gray-200);
  transition: padding-left 0.3s ease, color 0.3s ease;
}

.nav-mobile a:first-of-type {
  border-top: 1px solid var(--gray-200);
}

.nav-mobile a:hover {
  padding-left: 16px;
  color: var(--gray-500);
}

/* Mobile Nav LINE CTA (top of hamburger menu) */
.nav-mobile-line {
  margin-bottom: 28px;
}

.nav-mobile-line-caption {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 14px;
}

.nav-mobile a.nav-mobile-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  background: #06C755;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 10px;
  transition: opacity 0.25s ease;
}

.nav-mobile a.nav-mobile-line-btn:hover {
  padding-left: 20px;
  color: #fff;
  opacity: 0.88;
}

.nav-mobile a.nav-mobile-line-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ========================================
   Mobile Tags (below hero, hidden on desktop)
======================================== */
.mobile-tags {
  display: none;
  padding: 32px 24px;
  background: var(--white);
}

.mobile-tags-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
}

/* ========================================
   Main Content Area
======================================== */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-width: 0;
}

/* ========================================
   Hero Visual (right side image)
======================================== */
.hero-visual {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.hero-next-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-next-image.visible {
  opacity: 1;
}

/* Hero catchphrase */
.hero-catchphrase {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  z-index: 10;
  transition: color 0.6s ease, text-shadow 0.6s ease;
  pointer-events: none;
  opacity: 0;
  animation: heroReveal 1s ease 2s forwards;
}

.hero-catchphrase.dark {
  color: rgba(0, 0, 0, 0.75);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.5);
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 2.4s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Section Common
======================================== */
.section {
  padding: 120px 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.section-header {
  margin-bottom: 80px;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.section-title {
  font-size: 28px;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--gray-300);
  margin-top: 24px;
}

.section-header.center .section-divider {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   About
======================================== */
.about {
  background: var(--white);
}

.about-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-inline-image {
  display: block;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 48px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.about-lead {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 2.4;
}

.about-story {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-heading {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.06em;
  margin-top: 80px;
  margin-bottom: 20px;
}

.about-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2.2;
  margin-bottom: 16px;
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-location {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ========================================
   Concept
======================================== */
.concept {
  background: var(--white);
}

.concept-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Concept image */
.concept-image {
  display: block;
  width: 100%;
  max-width: 880px;
  aspect-ratio: 21 / 9;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 48px;
}

/* Keywords */
.concept-keyword-group {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
}

.concept-keyword-group-sub {
  margin-bottom: 0;
  margin: 28px 0;
}

.concept-keyword {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.concept-keyword-en {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
}

.concept-keyword-ja {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--gray-500);
}

/* Body text */
.concept-body {
  text-align: center;
  margin-bottom: 48px;
}

.concept-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2.4;
  letter-spacing: 0.04em;
}

.concept-ship {
  color: var(--brand);
  font-weight: 700;
}

/* Closing */
.concept-closing .concept-closing-text {
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 2.6;
  letter-spacing: 0.04em;
}

/* ========================================
   News
======================================== */
.news {
  background: var(--gray-100);
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  gap: 32px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-300);
  transition: opacity 0.3s ease;
}

.news-item:hover {
  opacity: 0.6;
}

.news-item:first-child {
  border-top: 1px solid var(--gray-300);
}

.news-date {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  white-space: nowrap;
  min-width: 80px;
}

.news-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
  border-radius: 4px;
  white-space: nowrap;
}

.news-badge.coming-soon {
  border-color: var(--accent);
  color: var(--accent);
}

.news-badge.update {
  border-color: var(--gray-400);
  color: var(--gray-500);
}

.news-content {
  flex: 1;
}

.news-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-top: 8px;
}

.news-loading {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  padding: 40px 0;
  letter-spacing: 0.06em;
}

/* ========================================
   Access
======================================== */
.access {
  background: var(--white);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.access-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--gray-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 13px;
}

.access-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: 0.08em;
}

.access-address {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 2;
  margin-bottom: 40px;
}

.access-route {
  margin-bottom: 28px;
}

.access-route h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.access-route p {
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.9;
}

.access-hours {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-300);
}

.access-hours h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.access-hours p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ========================================
   Contact
======================================== */
.contact {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact .section-label {
  color: var(--gray-500);
}

.contact .section-title {
  color: var(--white);
}

.contact .section-divider {
  background: var(--gray-600);
}

.contact-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 2;
}

.contact-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.contact-mail-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-email {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  margin-top: 8px;
  user-select: all;
}

.btn-contact-sub {
  display: block;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.6;
  margin-top: 2px;
}

.btn-mail {
  flex-wrap: wrap;
  justify-content: center;
  background: var(--white);
  color: var(--black);
}

.btn-mail:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-instagram {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-instagram:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-twitter {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-twitter:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-line {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-line:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ========================================
   Footer
======================================== */
.footer {
  padding: 60px 0 40px;
  background: var(--brand);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.08em;
}

/* ========================================
   Scroll Animations
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="100"] { transition-delay: 0.1s !important; }
[data-delay="200"] { transition-delay: 0.2s !important; }
[data-delay="300"] { transition-delay: 0.3s !important; }
[data-delay="400"] { transition-delay: 0.4s !important; }

/* ========================================
   Responsive
======================================== */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 240px;
  }

  .sidebar {
    padding: 32px 20px 24px;
  }

  .sidebar-logo img {
    width: 140px;
  }

  .sidebar-tags {
    gap: 1px 8px;
  }

  .hashtag {
    font-size: 13px;
  }

  .sidebar-nav a {
    font-size: 11px;
  }

  .section-inner {
    padding: 0 40px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .concept-keyword-group {
    gap: 24px;
  }

  .concept-keyword-en {
    font-size: 15px;
  }
}

@media (max-width: 820px) {
  .about-lead br,
  .about-text br {
    display: none;
  }

  .about-lead {
    font-size: 14px;
  }

  .about-text {
    font-size: 13px;
  }

  .about-heading {
    font-size: 16px;
    margin-top: 56px;
  }

  .about-inline-image,
  .concept-image {
    aspect-ratio: 16 / 9;
    margin-bottom: 36px;
  }

  /* Hide sidebar, show mobile header + tags */
  .sidebar {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .mobile-tags {
    display: block;
  }

  .main-content {
    margin-left: 0;
  }

  .hero-visual {
    height: 60vh;
    margin-top: 64px;
  }

  .hero-scroll {
    display: none;
  }

  .hero-catchphrase {
    bottom: 20px;
    right: 20px;
    font-size: 14px;
  }

  .section {
    padding: 80px 0;
  }

  .section-inner {
    padding: 0 24px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-mobile {
    padding: 100px 24px 40px;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-contact {
    width: 100%;
    justify-content: center;
  }

  .concept-keyword-group {
    flex-direction: column;
    gap: 16px;
  }

  .concept-text br,
  .concept-closing-text br {
    display: none;
  }

  .concept-closing .concept-closing-text {
    font-size: 14px;
  }
}
