main {
  width: 100%;
  overflow: hidden;
}

:root {
  /* Rich & Premium Modern Palette */
  --primary: #d68f9a;
  /* Sophisticated dusty pink */
  --primary-light: #fbebf0;
  /* Soft pastel pink */
  --primary-gradient: linear-gradient(135deg, #e4a7b3 0%, #d68f9a 100%);
  --secondary: #97a1b4;
  /* Elegant slate blue */
  --accent: #f0c38e;
  /* Warm gold/peach accent */
  --text-main: #2c3e50;
  --text-muted: #6b7c93;
  --bg-main: #ffffff;
  --bg-gradient: linear-gradient(180deg, #fdfbfb 0%, #f4f6f8 100%);

  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 10px 40px rgba(112, 128, 144, 0.08);
  /* Sophisticated subtle shadow */
  --premium-shadow: 0 20px 50px rgba(44, 62, 80, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);

  --font-en: 'Outfit', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-ja);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-en);
  font-weight: 600;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}

.container--wide {
  max-width: 1300px;
}

.maxWidth-md {
  max-width: 800px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.bg-light {
  background: var(--bg-gradient);
}

/* Premium Glass & Shadow */
.glass-premium {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}

.shadow-premium {
  box-shadow: var(--premium-shadow);
}

.radius-img {
  border-radius: 20px;
  overflow: hidden;
}

/* Typography */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--secondary);
  letter-spacing: 0.15em;
  font-family: var(--font-ja);
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: var(--font-en);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.btn--primary {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 143, 154, 0.4);
  border: none;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(214, 143, 154, 0.5);
  color: #fff;
}

.btn--outline {
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(151, 161, 180, 0.3);
}

/* Decorative Orbs (Light Blurs) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  animation: floatOrb 10s infinite alternate cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -50px) scale(1.1);
  }
}

.orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(238, 192, 200, 0.3);
  top: 10%;
  left: -100px;
}

.orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(175, 193, 219, 0.3);
  bottom: 10%;
  right: -50px;
}

.orb--3 {
  width: 500px;
  height: 500px;
  background: rgba(240, 195, 142, 0.2);
  top: 20%;
  right: -150px;
  filter: blur(100px);
}

.orb--4 {
  width: 350px;
  height: 350px;
  background: rgba(214, 143, 154, 0.2);
  top: 0;
  left: 10%;
}

/* SVG Waves */
.wave {
  position: absolute;
  left: 0;
  width: 100vw;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  transform: translateY(2px);
}

.wave--bottom {
  bottom: -22px;
}

@media screen and (max-width: 768px) {
  .wave--bottom {
    bottom: -23px;
  }

  .hero__overlay {
    height: 106% !important;
  }
}

.wave svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 6vw;
  min-height: 40px;
  max-height: 100px;
  margin: 0;
}

.wave .shape-fill {
  fill: var(--bg-main);
}

.wave .shape-fill-bg-light {
  fill: #fdfbfb;
}

/* Animation Utils */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 5%;
  transition: padding 0.3s;
}

.header.is-scrolled .header__inner {
  padding: 15px 5%;
}

.header__logo a {
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 0.1em;
}

.header__nav-list {
  display: flex;
  gap: 40px;
}

.header__nav-list a {
  font-family: var(--font-en);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  color: var(--text-main);
}

.header__nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  transition: width 0.3s ease;
}

.header__nav-list a:hover::after {
  width: 100%;
}

.header__nav-list a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

.hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
  0% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1.1);
  }
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.2) 100%);
  z-index: -1;
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 60px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-family: var(--font-en);
  font-weight: 600;
  text-transform: uppercase;
}

.hero__title {
  font-size: 3.8rem;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--text-main);
  font-family: var(--font-ja);
}

.hero__text {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 2;
  font-weight: 500;
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  z-index: 10;
}

.scroll-down::after {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--primary);
  margin: 15px auto 0;
  animation: scrollAnim 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* About Section */
.vision-box {
  text-align: center;
  margin-bottom: 80px;
  padding: 50px;
  position: relative;
}

.vision-box__icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.vision-box__title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.vision-box__text {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 500;
}

.strengths__title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.card {
  padding: 40px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  z-index: 10;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--premium-shadow);
}

.card__number {
  font-size: 5rem;
  font-family: var(--font-en);
  color: var(--primary-light);
  font-weight: 700;
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: -1;
  line-height: 1;
}

.card__icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon-wrap svg {
  width: 24px;
  height: 24px;
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-family: var(--font-ja);
  font-weight: 700;
}

.card__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Business Section */
.business-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
}

.business-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.business-card__image-wrap {
  height: 280px;
  overflow: hidden;
}

.business-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.business-card:hover .business-card__image {
  transform: scale(1.05);
}

.business-card__content {
  padding: 40px;
  flex-grow: 1;
}

.business-card__title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--primary);
}

.business-card__desc {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Event Section */
.event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.event-layout__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
}

.event-profile {
  padding: 40px;
  margin-bottom: 40px;
  background: #fff;
}

.event-profile__name {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-family: var(--font-ja);
  font-weight: 700;
}

.event-profile__desc {
  line-height: 1.8;
  color: var(--text-muted);
}

.event-schedules__title {
  font-size: 1.6rem;
  margin-bottom: 25px;
  color: var(--text-main);
}

.sns-links {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.premium-table-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.premium-table {
  width: 100%;
  border-collapse: collapse;
}

.premium-table th,
.premium-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-table th {
  background: var(--primary-light);
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.badge {
  display: inline-block;
  padding: 5px 12px;
  background: #eaf0f6;
  color: var(--secondary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge--real {
  background: var(--primary-light);
  color: var(--primary);
}

/* Aromappy Section */
.aromappy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.aromappy-intro {
  padding: 40px;
  margin-bottom: 40px;
  background: #fff;
  text-align: center;
}

.aromappy-intro__icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.aromappy-intro__title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.aromappy-intro__desc {
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 30px;
}

.aromappy-img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 30px;
}

.aromappy-flow {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.glass-card {
  background: var(--glass-bg);
  padding: 20px 25px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s;
}

.glass-card:hover {
  transform: translateX(10px);
}

.flow-step__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--bg-main);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.flow-step__icon.highlight {
  background: var(--primary-gradient);
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 143, 154, 0.4);
}

.glass-card p {
  line-height: 1.5;
  font-size: 0.95rem;
}

.glass-card strong {
  color: var(--primary);
}

/* Company Section */
.company-box {
  padding: 60px;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.company-logo-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 15rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--primary-light);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  position: relative;
  z-index: 10;
}

.company-table th,
.company-table td {
  padding: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.company-table th {
  width: 200px;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-en);
  font-size: 1.1rem;
}

.text-link {
  color: var(--primary);
  font-weight: 500;
}

.text-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--text-main);
  color: #fff;
  padding: 100px 0 40px;
  text-align: center;
  position: relative;
}

.footer__logo {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  color: var(--primary-light);
}

.footer__address {
  color: var(--secondary);
  margin-bottom: 40px;
}

.footer__nav {
  margin-bottom: 40px;
  font-family: var(--font-en);
  color: var(--secondary);
}

.footer__nav a {
  margin: 0 15px;
}

.footer__nav a:hover {
  color: #fff;
}

.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--font-en);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

/* Responsive */
@media (max-width: 992px) {

  .event-layout,
  .aromappy-layout {
    grid-template-columns: 1fr;
  }

  .event-layout__image img,
  .aromappy-img {
    height: 400px;
  }

  .aromappy-layout__image {
    grid-row: 1;
  }

  /* Image on top for mobile */
}

@media (max-width: 768px) {
  .hero__content {
    padding: 40px 20px;
    margin: 0 20px;
  }

  .hero__title {
    font-size: 2.3rem;
  }

  .section {
    padding: 80px 0;
  }

  .hamburger {
    display: block;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav-list {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .header__nav-list a {
    font-size: 1.5rem;
  }

  .company-box {
    padding: 40px 20px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 15px 0;
  }

  .company-table th {
    padding-bottom: 5px;
    border-bottom: none;
  }
}