:root {
  --navy: #0f2a44;
  --deep: #14385a;
  --gold: #c7a45b;
  --pink: #e46f9c;
  --cream: #f7f3ea;
  --text: #4a2434;
  --muted: #6f7c87;
  --line: #e6e2d8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 42, 68, 0.12);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Noto_Sans_JP', sans-serif, "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1300px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 226, 216, 0.8);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
  letter-spacing: 0.08em;
  z-index: 25;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.global-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  color: var(--navy);
}

.global-nav a.active {
  color: var(--gold);
  font-weight: 700;
}

.contact-btn {
  padding: 10px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(15, 42, 68, 0.18);
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 25;
  box-shadow: 0 10px 24px rgba(15, 42, 68, 0.08);
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 99px;
  transition: 0.25s ease;
}

.hero {
  min-height: 760px;
  padding-top: 78px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(15, 42, 68, 0.68), rgba(20, 56, 90, 0.58)),
    url("../images/topba.jpg") center/cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.lower-hero {
  padding: 150px 0 80px;
  background:
    linear-gradient(120deg, rgba(15, 42, 68, 0.88), rgba(20, 56, 90, 0.62)),
    url("../images/04-30.jpg") center/cover;
  color: var(--white);
}

.lower-hero h1 {
  font-size: clamp(28px, 4vw, 44px);
}

.breadcrumb {
  margin-top: 18px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 14px;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 50px);
  line-height: 1.22;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero p {
  margin: 28px 0 38px;
  max-width: 650px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-primary,
.btn-secondary,
.more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
}

.more-btn {
  margin-top: 28px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(15, 42, 68, 0.14);
}

.section {
  padding: 100px 0;
}

.section.bg {
  background: var(--cream);
}

.section-title {
  /*display: grid;*/
  /*grid-template-columns: 1fr 2fr;*/
  gap: 50px;
  align-items: start;
  margin-bottom: 54px;
}

.section-title span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
}

h2 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.38;
  letter-spacing: 0.08em;
}

.lead {
  margin: 0;
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(230,226,216,0.75);
}

.card-number {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 22px;
}

.card h3,
.business-item h3,
.product-body h3 {
  color: var(--navy);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-box {
  background: var(--white);
  padding: 42px;
  border-radius: 28px;
  border: 1px solid var(--line);
}

.about-box dl {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  font-size: 14px;
}

.about-box dt {
  
  font-weight: 700;
}

.about-box dd {
  margin: 0;
  
}

.business-list {
  display: grid;
  gap: 18px;
}

.business-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 30px;
}

.business-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.08), rgba(199, 164, 91, 0.18));
  color: var(--gold);
  font-size: 28px;
}

.business-item h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.business-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

.product-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 22px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.flow-step {
  padding: 24px 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
}

.flow-step strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 24px;
  margin-bottom: 8px;
}

.flow-step span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.detail-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

.detail-box h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 21px;
}

.detail-box p,
.detail-box li {
  color: var(--muted);
  font-size: 14px;
}

.detail-box ul {
  margin: 0;
  padding-left: 1.2em;
}

.message-box {
  background: var(--cream);
  border-radius: 30px;
  padding: 48px;
  border: 1px solid var(--line);
}

.contact-section {
  /*background: linear-gradient(135deg, var(--navy), var(--deep));
  color: var(--white);*/
  border-radius: 34px;
  padding: 58px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  box-shadow: var(--shadow);
}

.contact-section h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.contact-section p {
  /*color: rgba(255,255,255,0.78);*/
  margin: 0;
}

form {
  display: grid;
  gap: 16px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  /*color: var(--white);*/
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.58); }
select option { color: var(--text); }

textarea {
  min-height: 140px;
  resize: vertical;
}

.submit-btn {
  border: 0;
  background: var(--gold);
  color: var(--white);
  border-radius: 999px;
  padding: 15px 28px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.08em;
}

footer {
  padding: 46px 0;
  background: #081927;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 22px;
}

@media (max-width: 900px) {
  .section-title,
  .about-grid,
  .contact-section {
    /*grid-template-columns: 1fr;*/
  }

  .cards,
  .products,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header-inner {
    height: 68px;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--line);
    /*border-radius: 22px;*/
    box-shadow: var(--shadow);
    padding: 12px;
    opacity: 0;
    transform: translateY(-12px);
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .global-nav ul {
    display: grid;
    gap: 0;
  }

  .global-nav li + li {
    border-top: 1px solid var(--line);
  }

  .global-nav a {
    display: block;
    padding: 15px 14px;
    font-weight: 700;
  }

  .menu-toggle:checked ~ .global-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: 660px;
    padding-top: 68px;
  }

  .lower-hero {
    padding: 120px 0 64px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions a {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    gap: 18px;
    margin-bottom: 34px;
  }

  .cards,
  .products,
  .flow,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .about-box,
  .detail-box {
    padding: 16px;
  }

  .message-box {
    padding: 30px 24px;
  }

  .about-box dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-box dd {
    margin-bottom: 10px;
  }

  .business-item {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-section {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}


/* Business accordion */
.accordion-list {
  gap: 18px;
}

.accordion-item {
  display: block;
  padding: 0;
  overflow: hidden;
}

.accordion-item summary {
  display: grid;
  grid-template-columns: 92px 1fr 46px;
  gap: 26px;
  align-items: center;
  padding: 26px 30px;
  cursor: pointer;
  list-style: none;
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.business-summary h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
}

.business-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.accordion-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  position: relative;
  transition: 0.25s ease;
}

.accordion-mark::before,
.accordion-mark::after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 99px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.accordion-mark::before {
  width: 16px;
  height: 2px;
}

.accordion-mark::after {
  width: 2px;
  height: 16px;
  transition: 0.25s ease;
}

.accordion-item[open] .accordion-mark {
  background: var(--navy);
  border-color: var(--navy);
}

.accordion-item[open] .accordion-mark::before,
.accordion-item[open] .accordion-mark::after {
  background: var(--white);
}

.accordion-item[open] .accordion-mark::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion-content {
  margin: 0 30px 30px 148px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.accordion-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.accordion-content ul {
  margin: 0;
  padding-left: 1.2em;
}

.accordion-content li {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .accordion-item summary {
    grid-template-columns: 64px 1fr 42px;
    gap: 14px;
    padding: 22px;
  }

  .accordion-content {
    margin: 0 22px 22px;
    padding: 22px;
  }
}


/* Flow section with title and arrows */
.flow-section {
  background: #ffffff;
}

.flow-heading {
  text-align: center;
  margin-bottom: 58px;
}

.flow-heading span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
}

.flow-heading h2 {
  margin: 8px 0 16px;
  color: var(--navy);
}

.flow-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--gold);
  margin: 22px auto 0;
  border-radius: 99px;
}

.flow-heading p {
  margin: 22px 0 0;
  color: var(--muted);
}

.flow-with-arrows {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 0;
}

.flow-with-arrows .flow-step {
  min-height: 150px;
  display: grid;
  align-content: center;
  background: var(--white);
  border: 1px solid rgba(199, 164, 91, 0.45);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.06);
}

.flow-with-arrows .flow-step strong {
  font-size: 28px;
}

.flow-arrow {
  color: var(--gold);
  font-size: 54px;
  line-height: 1;
  font-family: Georgia, serif;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .flow-with-arrows {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flow-arrow {
    transform: rotate(90deg);
    font-size: 42px;
  }

  .flow-with-arrows .flow-step {
    min-height: 118px;
  }
}


/* Product category sub pages */
.product {
  transition: 0.25s ease;
}

.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 42, 68, 0.14);
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 44px;
  align-items: start;
}

.product-detail-title {
  grid-template-columns: 1.2fr 1.4fr;
  margin-bottom: 34px;
}

.product-showcase-grid {
  display: grid;
  gap: 24px;
}

.product-showcase-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

.product-showcase-img {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.product-showcase-body {
  padding: 34px 34px 34px 0;
  display: grid;
  align-content: center;
}

.product-showcase-body span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-showcase-body h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 24px;
}

.product-showcase-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.product-side-menu {
  position: sticky;
  top: 104px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
}

.product-side-menu h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 19px;
}

.product-side-menu nav {
  display: grid;
  gap: 10px;
}

.product-side-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.product-side-menu a::after {
  content: "›";
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.product-side-menu a:hover,
.product-side-menu a.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white)!important;
}

.product-side-menu a:hover::after,
.product-side-menu a.active::after {
  color: var(--white);
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-side-menu {
    position: static;
    order: -1;
  }

  .product-side-menu nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  .product-side-menu nav {
    grid-template-columns: 1fr;
  }

  .product-showcase-card {
    grid-template-columns: 1fr;
  }

  .product-showcase-img {
    min-height: 410px;
  }

  .product-showcase-body {
    padding: 24px;
  }

  .product-detail-title {
    grid-template-columns: 1fr;
  }
}


/* Product list and folder subpages */
.product-showcase-link {
  color: inherit;
  transition: 0.25s ease;
}

.product-showcase-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(15, 42, 68, 0.14);
}

.product-showcase-body em {
  margin-top: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.product-sub-menu {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-sub-menu h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-list-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 42, 68, 0.08);
}

.product-list-img {
 width: 100%;
    aspect-ratio: 1 / 1;
    padding: 10px;
    box-sizing: border-box;

    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: content-box;
}

.product-list-body {
  padding: 0 16px 16px 16px;
}

.product-list-body span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-list-body h3 {
  margin: 8px 0 10px;
  margin: 0px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.2;
}

.product-list-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.product-list-body a {
  display: inline-flex;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .product-list-grid {
    grid-template-columns: 1fr 1fr;
  }
}


.product-showcase-card.product-showcase-link {
  text-decoration: none;
}

.product-showcase-card.product-showcase-link .product-showcase-body em {
  margin-top: 18px;
}

.product-sub-menu a {
  margin-bottom: 10px;
}


/* Fixed product detail two-column layout */
.product-detail-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 280px !important;
  gap: 44px !important;
  align-items: start !important;
}

.product-main {
  min-width: 0;
}

.product-side-menu {
  width: 100%;
  align-self: start;
}

.product-showcase-card {
  width: 100%;
}

.product-showcase-card.product-showcase-link {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr !important;
  }

  .product-showcase-card.product-showcase-link {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 760px) {
  .product-showcase-card.product-showcase-link {
    grid-template-columns: 1fr;
  }
}


/* ==============================
   Animation Effects
   ============================== */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes shineLine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

header {
  animation: fadeIn 0.7s ease both;
}

.hero-content,
.lower-hero .container {
  animation: fadeUp 0.9s ease both;
}

.hero::after {
  animation: floatSoft 6s ease-in-out infinite;
}

.section-title,
.flow-heading,
.about-box,
.message-box,
.contact-section {
  animation: fadeUp 0.85s ease both;
}

.card,
.business-item,
.product,
.product-showcase-card,
.product-list-card,
.detail-box,
.flow-step {
  animation: fadeUp 0.85s ease both;
}

.cards .card:nth-child(2),
.products .product:nth-child(2),
.product-showcase-grid .product-showcase-card:nth-child(2),
.product-list-grid .product-list-card:nth-child(2),
.flow-with-arrows .flow-step:nth-of-type(2) {
  animation-delay: 0.08s;
}

.cards .card:nth-child(3),
.products .product:nth-child(3),
.product-showcase-grid .product-showcase-card:nth-child(3),
.product-list-grid .product-list-card:nth-child(3),
.flow-with-arrows .flow-step:nth-of-type(3) {
  animation-delay: 0.16s;
}

.products .product:nth-child(4),
.product-list-grid .product-list-card:nth-child(4),
.flow-with-arrows .flow-step:nth-of-type(4) {
  animation-delay: 0.24s;
}

.card,
.business-item,
.product,
.product-showcase-card,
.product-list-card,
.flow-step,
.detail-box,
.more-btn,
.btn-primary,
.btn-secondary,
.contact-btn,
.submit-btn {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    opacity 0.28s ease;
}

.card:hover,
.business-item:hover,
.product:hover,
.product-showcase-card:hover,
.product-list-card:hover,
.detail-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 42, 68, 0.16);
}

.btn-primary:hover,
.more-btn:hover,
.submit-btn:hover,
.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(15, 42, 68, 0.2);
  opacity: 0.92;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: width 0.28s ease;
}

.global-nav a:hover::after,
.global-nav a.active::after {
  width: 100%;
}

.logo-mark {
  transition: transform 0.35s ease;
}

.logo:hover .logo-mark {
  transform: rotate(12deg) scale(1.05);
}

.product-img,
.product-showcase-img,
.product-list-img,
.about-image img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.product:hover .product-img,
.product-showcase-card:hover .product-showcase-img,
.product-list-card:hover .product-list-img,
.about-image:hover img {
  transform: scale(1.055);
  filter: brightness(1.04);
}

.product,
.product-showcase-card,
.product-list-card,
.about-image {
  overflow: hidden;
}

.flow-arrow {
  animation: fadeIn 0.8s ease both;
}

.accordion-item[open] .accordion-content {
  animation: fadeUp 0.35s ease both;
}

.contact-section,
.message-box,
.about-box {
  position: relative;
  overflow: hidden;
}

.contact-section::after,
.message-box::after,
.about-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-120%);
  pointer-events: none;
}

.contact-section:hover::after,
.message-box:hover::after,
.about-box:hover::after {
  animation: shineLine 1.1s ease;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* Image logo */
.image-logo {
  display: flex;
  align-items: center;
  width: 210px;
  height: 52px;
}

.image-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.image-logo::after {
  display: none !important;
}

.logo:hover img {
  transform: translateY(-1px);
}

.image-logo img {
  transition: transform 0.3s ease;
}

@media (max-width: 760px) {
  .image-logo {
    width: 172px;
    height: auto;
  }
}


/* Recruit page */
.recruit-grid .detail-box ul {
  margin-top: 16px;
}

.recruit-grid .detail-box .more-btn {
  margin-top: 18px;
}

@media (min-width: 761px) {
  .global-nav ul {
    gap: 22px;
  }
}

/* i-goods style first view: full image + floating left copy */
.igoods-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 760px;
  padding-top: 0;
  overflow: hidden;
  background: #101820;
  color: #fff;
}

.igoods-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 760px;
  overflow: hidden;
}

.igoods-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.igoods-slide {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  isolation: isolate;
  transition: opacity 1.35s cubic-bezier(.25,.46,.45,.94), visibility 1.35s;
}

.igoods-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.igoods-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.12);
  filter: brightness(.78) saturate(1.04);
  transition: transform 7.2s linear, filter 1.2s ease;
	background-position: right center; 
}

.igoods-slide.is-active .igoods-bg {
  transform: scale(1.02);
  filter: brightness(.86) saturate(1.06);
}

.igoods-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,19,31,.64) 0%, rgba(5,19,31,.36) 31%, rgba(5,19,31,.08) 62%, rgba(5,19,31,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.02) 38%, rgba(0,0,0,.28) 100%);
}

.igoods-slide::after {
  display: none;
}

.igoods-copy {
  position: absolute;
  z-index: 3;
  left: clamp(34px, 9.2vw, 138px);
  top: 50%;
  transform: translateY(-42%) translateX(-18px);
  width: min(620px, 72vw);
  color: #fff;
  display: block;
  opacity: 0;
  text-shadow: 0 8px 28px rgba(0,0,0,.42);
  transition: opacity 1s ease .38s, transform 1.05s cubic-bezier(.22,1,.36,1) .38s;
}

.igoods-slide.is-active .igoods-copy {
  opacity: 1;
  transform: translateY(-42%) translateX(0);
}

.igoods-no {
  display: block;
  width: fit-content;
  margin: 0 0 22px;
  padding: 0 0 10px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: .08em;
  color: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(255,255,255,.72);
}

.igoods-copy h1 {
  color: #fff;
  font-size: clamp(42px, 5.1vw, 76px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .12em;
  margin: 0 0 30px;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  min-height: 0;
}

.igoods-copy p {
  width: min(520px, 100%);
  margin: 0 0 34px;
  color: rgba(255,255,255,.94);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 2.05;
  letter-spacing: .08em;
  opacity: 1;
  transform: none;
}

.igoods-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  opacity: 1;
  transform: none;
  overflow: hidden;
  transition: background .32s ease, color .32s ease, transform .32s ease;
}

.igoods-link::after {
  content: "→";
  width: auto;
  height: auto;
  margin-left: 14px;
  background: none;
}

.igoods-copy:hover .igoods-link {
  background: #fff;
  color: #0f2a44;
  text-shadow: none;
  transform: translateY(-2px);
}

.igoods-nav {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 96px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 -16px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}

.igoods-nav button {
  position: relative;
  border: 0;
  border-right: 1px solid rgba(15,42,68,.13);
  background: transparent;
  color: #0f2a44;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .12em;
  cursor: pointer;
  overflow: hidden;
  transition: background .28s ease, color .28s ease;
}

.igoods-nav button span {
  display: inline-block;
  margin-right: 16px;
  color: #c7a45b;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  line-height: 1;
  vertical-align: middle;
}

.igoods-nav button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #c7a45b;
  transform: scaleX(0);
  transform-origin: left center;
}

.igoods-nav button.is-active::before {
  animation: igoodsProgress 5.8s linear both;
}

.igoods-nav button.is-active,
.igoods-nav button:hover {
  background: #f7f3ea;
}

.igoods-scroll {
  position: absolute;
  z-index: 5;
  right: 32px;
  bottom: 138px;
  height: 116px;
  color: #fff;
  font-size: 11px;
  letter-spacing: .18em;
  writing-mode: vertical-rl;
  opacity: .88;
  text-shadow: 0 4px 18px rgba(0,0,0,.32);
}

.igoods-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  margin: 12px auto 0;
  background: rgba(255,255,255,.82);
  animation: scrollLine 1.6s ease-in-out infinite;
}

@keyframes igoodsProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  46% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 1000px) {
  .igoods-hero { height: 760px; min-height: 760px; }
  .igoods-stage { height: 760px; min-height: 760px; }
  .igoods-bg { background-position: right center; }
  .igoods-copy {
    left: 32px;
    right: 32px;
    top: auto;
    bottom: 142px;
    width: auto;
    transform: translateY(20px);
  }
  .igoods-slide.is-active .igoods-copy { transform: translateY(0); }
  .igoods-copy h1 { font-size: clamp(36px, 8.2vw, 60px); line-height: 1.34; margin-bottom: 22px; }
  .igoods-copy p { font-size: 15px; line-height: 1.9; }
  .igoods-nav { height: 86px; overflow-x: auto; grid-template-columns: repeat(4, minmax(138px, 1fr)); }
  .igoods-nav button { font-size: 12px; white-space: nowrap; letter-spacing: .06em; }
  .igoods-nav button span { display: block; margin: 0 0 3px; font-size: 18px; }
  .igoods-scroll { display: none; }
}

@media (max-width: 560px) {
  .igoods-hero { height: 720px; min-height: 720px; }
  .igoods-stage { height: 720px; min-height: 720px; }
  .igoods-copy { left: 22px; right: 22px; bottom: 118px; }
  .igoods-no { font-size: 16px; margin-bottom: 16px; }
  .igoods-copy h1 { font-size: 34px; letter-spacing: .08em; margin-bottom: 16px; }
  .igoods-copy p { font-size: 14px; line-height: 1.85; margin-bottom: 22px; }
  .igoods-link { min-width: 126px; min-height: 42px; padding: 10px 18px; font-size: 12px; }
  .igoods-nav { height: 76px; }
}

/* i-goods style service section */
.service-showcase {
  position: relative;
  overflow: hidden;
  padding: 94px 0 106px;
  background: #f8f8f7;
}

.service-showcase::before,
.service-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(45, 62, 54, 0.08);
  pointer-events: none;
}

.service-showcase::before { top: 53%; }
.service-showcase::after { top: 68%; }

.service-bg-text {
  position: absolute;
  left: 50%;
  top: 43%;
  transform: translate(-50%, -50%);
  z-index: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(100px, 22vw, 340px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(30, 50, 40, 0.10);
  text-stroke: 1px rgba(30, 50, 40, 0.10);
  white-space: nowrap;
  user-select: none;
}

.service-showcase .container {
  position: relative;
  z-index: 1;
  max-width: 1800px;
}

.service-heading {
  text-align: center;
  margin-bottom: 78px;
}

.service-heading span {
  display: block;
  color: #435b4e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
}

.service-heading h2 {
  margin: 0;
  color: #4a2434;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 38px);
  
  margin: 0 auto;
  align-items: stretch;
}

.service-card {
  display: block;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 24px 54px rgba(18, 28, 24, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px rgba(18, 28, 24, 0.13);
}

.service-photo {
  position: relative;
  height: 306px;
  overflow: hidden;
  background: #eee;
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.service-card:hover .service-photo img {
  transform: scale(1.08);
}

.service-label {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 188px;
  height: 56px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-label.green { background: #388a65; }
.service-label.blue { background: #08a9d3; }

.service-body {
  min-height: 260px;
  padding: 55px 42px 54px;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 34px;
  color: #4a2434;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.service-body p {
  margin: 0 auto;
  max-width: 370px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.04em;
	text-align: left;
}

@media (max-width: 1000px) {
  .service-showcase {
    padding: 76px 0 88px;
  }
  .service-heading {
    margin-bottom: 48px;
  }
  .service-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }
  .service-photo {
    height: 330px;
  }
  .service-body {
    min-height: auto;
    padding: 40px 28px 44px;
  }
}

@media (max-width: 560px) {
  .service-showcase {
    padding: 58px 0 66px;
  }
  .service-bg-text {
    top: 18%;
    font-size: 116px;
  }
  .service-heading h2 {
    font-size: 34px;
  }
  .service-photo {
    height: 220px;
  }
  .service-label {
    min-width: 132px;
    height: 44px;
    font-size: 17px;
  }
  .service-body {
    padding: 32px 22px 34px;
  }
  .service-body h3 {
    margin-bottom: 20px;
    font-size: 21px;
  }
  .service-body p {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* i-goods inspired business page */
.service-page { background:#fff; color:#070707; }
.service-kv {
  position: relative;
  padding: 178px 0 116px;
  background: #f8f8f7;
  overflow: hidden;
  text-align: center;
}
.service-kv::before,
.service-kv::after {
  content:"";
  position:absolute;
  left:0; right:0;
  height:1px;
  background:rgba(40,55,48,.09);
}
.service-kv::before { top: 47%; }
.service-kv::after { bottom: 22%; }
.service-kv-bg {
  position:absolute;
  left:50%; top:52%;
  transform:translate(-50%,-50%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(120px, 24vw, 360px);
  line-height:.8;
  font-weight:900;
  letter-spacing:.02em;
  color:transparent;
  -webkit-text-stroke:1px rgba(30,50,40,.10);
  text-stroke:1px rgba(30,50,40,.10);
  white-space:nowrap;
  user-select:none;
}
.service-kv .container { position:relative; z-index:1; }
.service-kv-label,
.service-small {
  display:block;
  color:#435b4e;
  font-size:13px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:14px;
}
.service-kv h1 {
  color:#4a2434;
  font-size: clamp(42px, 5vw, 70px);
  font-weight:900;
  letter-spacing:.06em;
  line-height:1.05;
}
.service-kv p {
  margin:30px auto 0;
  max-width:760px;
  font-size:18px;
  line-height:2;
  font-weight:600;
}
.breadcrumb.dark { color:rgba(0,0,0,.45); margin-top:34px; }
.service-intro { padding:94px 0 90px; }
.service-intro-inner {
  display:grid;
  grid-template-columns: .75fr 1fr 1.25fr;
  gap:58px;
  align-items:start;
}
.service-intro-en {
  font-family:Arial, Helvetica, sans-serif;
  font-weight:900;
  font-size:56px;
  line-height:.95;
  color:transparent;
  -webkit-text-stroke:1px rgba(36,57,47,.18);
  letter-spacing:.04em;
}
.service-intro h2 {
  margin:0;
  color:#4a2434;
  font-size: clamp(28px, 3vw, 42px);
  font-weight:900;
  line-height:1.45;
}
.service-intro p {
  margin:0;
  font-size:15px;
  font-weight:500;
  line-height:2.2;
  color:#222;
}
.ig-service-block {
  padding: 30px 0 112px;
  background: linear-gradient(90deg,#fff 0%,#fff 52%,#f8f8f7 52%,#f8f8f7 100%);
}
.ig-service-row {
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  align-items:center;
  gap:clamp(46px, 6vw, 92px);
  margin-bottom:104px;
}
.ig-service-row:last-child { margin-bottom:0; }
.ig-service-row.reverse { grid-template-columns: .92fr 1.08fr; }
.ig-service-row.reverse .ig-service-image { order:2; }
.ig-service-row.reverse .ig-service-text { order:1; }
.ig-service-image {
  position:relative;
  overflow:hidden;
  min-height:460px;
  box-shadow:0 28px 64px rgba(18,28,24,.10);
}
.ig-service-image::after {
  content:"";
  position:absolute;
  right:0; bottom:0;
  width:120px; height:120px;
  background:#388a65;
  clip-path: polygon(100% 0,0 100%,100% 100%);
}
.ig-service-row.reverse .ig-service-image::after { background:#08a9d3; left:0; right:auto; transform:scaleX(-1); }
.ig-service-image img {
  width:100%; height:100%; min-height:460px;
  object-fit:cover;
  transform:scale(1.02);
}
.ig-service-text { position:relative; padding:34px 0; }
.ig-service-num {
  position:absolute;
  right:0; top:-48px;
  font-family:Arial, Helvetica, sans-serif;
  font-size:142px;
  font-weight:900;
  line-height:1;
  color:transparent;
  -webkit-text-stroke:1px rgba(30,50,40,.14);
  z-index:0;
}
.ig-service-text span {
  position:relative; z-index:1;
  display:block;
  color:#388a65;
  font-size:13px;
  font-weight:900;
  letter-spacing:.17em;
  margin-bottom:18px;
}
.ig-service-row.reverse .ig-service-text span { color:#08a9d3; }
.ig-service-text h2 {
  position:relative; z-index:1;
  margin:0 0 28px;
  color:#4a2434;
  font-size: clamp(30px, 4vw, 48px);
  font-weight:900;
  line-height:1.28;
  letter-spacing:.04em;
}
.ig-service-text p {
  margin:0 0 30px;
  font-size:15px;
  font-weight:500;
  line-height:2.15;
  color:#222;
}
.ig-service-text ul { margin:0; padding:0; list-style:none; border-top:1px solid #e6e6e2; }
.ig-service-text li {
  position:relative;
  padding:17px 0 17px 28px;
  border-bottom:1px solid #e6e6e2;
  font-weight:800;
  font-size:15px;
}
.ig-service-text li::before {
  content:"";
  position:absolute;
  left:2px; top:50%;
  width:10px; height:10px;
  border-radius:50%;
  background:#388a65;
  transform:translateY(-50%);
}
.ig-service-row.reverse .ig-service-text li::before { background:#08a9d3; }
.service-flow-ig {
  position:relative;
  overflow:hidden;
  padding:94px 0 106px;
  background:#f8f8f7;
}
.service-heading.compact { margin-bottom:48px; text-align:center; }
.ig-flow-grid {
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: repeat(5,1fr);
  gap:1px;
  background:#e4e4df;
  box-shadow:0 24px 54px rgba(18,28,24,.07);
}
.ig-flow-grid > div { background:#fff; padding:34px 24px 32px; min-height:210px; }
.ig-flow-grid b { display:block; font-family:Arial, Helvetica, sans-serif; font-size:42px; color:#388a65; line-height:1; margin-bottom:20px; }
.ig-flow-grid strong { display:block; font-size:18px; margin-bottom:14px; }
.ig-flow-grid p { margin:0; font-size:13px; line-height:1.9; color:#333; }
.ig-contact-panels { padding:96px 0; }
.ig-contact-panels .container { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.ig-contact-panel {
  display:block;
  min-height:230px;
  padding:42px;
  background:#f8f8f7;
  border:1px solid #eee;
  transition:.3s ease;
}
.ig-contact-panel:hover { transform:translateY(-5px); box-shadow:0 24px 54px rgba(18,28,24,.10); }
.ig-contact-panel span { display:block; color:#388a65; font-size:13px; font-weight:900; letter-spacing:.18em; margin-bottom:20px; }
.ig-contact-panel strong { display:block; color:#4a2434; font-size:30px; font-weight:900; margin-bottom:18px; }
.ig-contact-panel em { font-style:normal; color:#333; font-size:15px; }
.ig-contact-panel.dark-panel { background:#102a43; color:#fff; border-color:#102a43; }
.ig-contact-panel.dark-panel span,
.ig-contact-panel.dark-panel strong,
.ig-contact-panel.dark-panel em { color:#fff; }
@media (max-width: 980px) {
  .service-kv { padding:130px 0 82px; }
  .service-intro-inner { grid-template-columns:1fr; gap:26px; }
  .service-intro-en { font-size:48px; }
  .ig-service-block { background:#fff; padding-bottom:78px; }
  .ig-service-row,
  .ig-service-row.reverse { grid-template-columns:1fr; gap:28px; margin-bottom:72px; }
  .ig-service-row.reverse .ig-service-image,
  .ig-service-row.reverse .ig-service-text { order:initial; }
  .ig-service-image,
  .ig-service-image img { min-height:340px; }
  .ig-flow-grid { grid-template-columns:1fr 1fr; }
  .ig-contact-panels .container { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .service-kv { padding:112px 0 68px; }
  .service-kv p { font-size:15px; line-height:1.9; }
  .service-intro { padding:58px 0; }
  .ig-service-image,
  .ig-service-image img { min-height:250px; }
  .ig-service-num { font-size:88px; top:-22px; }
  .ig-service-text h2 { font-size:28px; }
  .ig-flow-grid { grid-template-columns:1fr; }
  .ig-contact-panel { padding:32px 24px; min-height:190px; }
  .ig-contact-panel strong { font-size:25px; }
}


.partner-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:24px;
margin-top:40px;
align-items:center;
}
.partner-grid img{
width:100%;
aspect-ratio:4/2;
object-fit:contain;
background:#fff;
border:1px solid #ececec;
border-radius:14px;
padding:22px;
box-shadow:0 6px 18px rgba(0,0,0,.05);
transition:.3s;
}
.partner-grid img:hover{
transform:translateY(-4px);
box-shadow:0 10px 24px rgba(0,0,0,.08);
}

/* 2026-07 update: fixed hero copy, no bottom thumbnails */
.igoods-hero {
  height: calc(100vh - 0px);
  min-height: 680px;
  background: #f7f4ee;
}
.igoods-stage { min-height: 680px; }
.igoods-slide { pointer-events: none; }
.igoods-bg {
  filter: brightness(.9) saturate(1.02);
  transform: scale(1.06);
  background-position: center right;
}
.igoods-slide.is-active .igoods-bg {
  transform: scale(1.01);
  filter: brightness(.94) saturate(1.05);
}
.igoods-slide::before {
  background: linear-gradient(90deg, rgba(7,30,48,.68) 0%, rgba(7,30,48,.46) 34%, rgba(7,30,48,.10) 64%, rgba(7,30,48,.10) 100%);
}
.igoods-fixed-copy {
  position: absolute;
  z-index: 6;
  left: clamp(34px, 8vw, 120px);
  top: 50%;
  transform: translateY(-45%);
  width: min(560px, 46vw);
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,.38);
}
.igoods-fixed-copy h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: .10em;
  margin: 0 0 28px;
}
.igoods-fixed-copy p {
  margin: 0 0 34px;
  color: rgba(255,255,255,.95);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2;
  letter-spacing: .06em;
}
.igoods-nav { display: none !important; }
.igoods-scroll { bottom: 48px; }

/* top about section similar to provided reference */
.home-about-wide {
  background: #fff;
  padding: 78px 0 66px;
  overflow: hidden;
}
.home-about-inner {
  width: 100%;
	    padding: 0 0 0 calc((100% - 1300px) / 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(460px, 0.72fr) minmax(0, 1.48fr);
  gap: 52px;
  align-items: center;
}
.home-about-text { padding-left: 10px; }
.home-about-en {
  display: block;
  color: var(--pink);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1;
  letter-spacing: .12em;
  font-weight: 500;
  margin-bottom: 18px;
  text-transform: lowercase;
}
.home-about-text h2 {
  color: #4a2434;
  font-size: clamp(30px, 3.4vw, 37px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.28;
  margin: 0 0 34px;
}
.home-about-text p {
  color: #4a2434;
  font-size: 17px;
  font-weight: 300;
  line-height: 2.05;
  letter-spacing: .04em;
  margin: 0 0 8px;
}
.home-about-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.home-about-photo::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 34%;
  z-index: 2;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.82) 45%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.home-about-photo img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.home-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
  padding: 18px 22px 18px 44px;
  min-width: 260px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 12px 24px rgba(59,115,151,.22);
}
.home-about-btn span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  color: #fc6277;
  font-size: 24px;
  line-height: 1;
  margin-left: auto;
}

.cards .card { padding: 0 0 30px; overflow: hidden; }
.card-img { height: 220px; overflow: hidden; margin-bottom: 26px; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-number, .card h3, .card p { margin-left: 30px; margin-right: 30px; }
.card-number { margin-bottom: 16px; }
.card p { line-height: 1.8; }

@media (max-width: 1000px) {
  .igoods-hero, .igoods-stage { min-height: 680px; height: 680px; }
  .igoods-fixed-copy {
    left: 30px;
    right: 30px;
    top: auto;
    bottom: 76px;
    width: auto;
    transform: none;
  }
  .igoods-fixed-copy h1 { font-size: clamp(36px, 7vw, 58px); margin-bottom: 22px; }
  .igoods-fixed-copy p { font-size: 15px; line-height: 1.9; }
  .home-about-inner { grid-template-columns: 1fr; width: min(760px, calc(100% - 44px)); gap: 30px; }
  .home-about-photo { min-height: 300px; order: -1; border-radius: 24px; }
  .home-about-photo::before { display: none; }
  .home-about-photo img { height: 330px; }
}
@media (max-width: 560px) {
  .igoods-hero, .igoods-stage { min-height: 620px; height: 620px; }
  .igoods-fixed-copy { left: 22px; right: 22px; bottom: 60px; }
  .igoods-fixed-copy h1 { font-size: 34px; letter-spacing: .06em; }
  .igoods-fixed-copy p { font-size: 14px; margin-bottom: 24px; }
  .home-about-wide { padding: 54px 0 48px; }
  .home-about-text h2 { font-size: 28px; margin-bottom: 24px; }
  .home-about-text p { font-size: 15px; line-height: 1.9; }
  .home-about-btn { min-width: 0; width: 100%; padding-left: 28px; }
  .card-img { height: 180px; }
  .card-number, .card h3, .card p { margin-left: 24px; margin-right: 24px; }
}

/* ===== SAENCO reference style update: header / mobile menu / footer / WonderHouse page ===== */
.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(15,42,68,.08);
  box-shadow: 0 8px 24px rgba(15,42,68,.06);
}
.saenco-header-inner {
  width: min(1280px, calc(100% - 36px));
  height: 84px;
  margin: 0 auto;
  gap: 28px;
}
.image-logo img { max-height: 54px; width: auto; }
.logo-company {
  display: block;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}
.saenco-nav { margin-left: auto; }
.saenco-nav ul {
  align-items: center;
  gap: 0;
}
.saenco-nav li { position: relative; }
.saenco-nav a {
  position: relative;
  display: flex;
  align-items: center;
  height: 84px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #4a2434;
}
.saenco-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 22px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: #3b7397;
  transition: transform .25s ease;
}
.saenco-nav a:hover::after,
.saenco-nav a.active::after { transform: scaleX(1); }
.saenco-nav a.active { color: var(--pink); }
.saenco-contact-btn {
  height: 84px;
  min-width: 118px;
  border-radius: 0;
  padding: 0 20px;
  display: grid;
  place-items: center;
  background: #14385a;
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: none;
}
.saenco-contact-btn::after {
  content: "›";
  display: inline-block;
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}
.mobile-nav-extra { display: none; }

.saenco-footer {
  background: #f3f7fa;
  color: #4a2434;
  margin-top: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(260px, .95fr) minmax(280px, .9fr);
  gap: 46px;
  padding: 70px 0 56px;
  align-items: start;
}
.footer-logo img { width: 190px; max-height: 74px; object-fit: contain; }
.footer-catch {
  margin: 22px 0 18px;
  font-weight: 800;
  line-height: 1.8;
	font-size:12px;
}
.footer-address {
  margin: 0 0 18px;
  color: #4a2434;
  font-size: 14px;
}
.footer-access {
  color: #3b7397;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}
.footer-nav-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.footer-column h3,
.footer-contact-box span {
  display: block;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.footer-column a {
  display: block;
  margin: 0 0 12px;
  color: #4a2434;
  font-weight: 700;
  font-size: 14px;
}
.footer-contact-box {
  background: #fff;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(15,42,68,.09);
}
.footer-contact-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.45;
}
.footer-contact-box p {
  margin: 0 0 22px;
  color: #4a2434;
  font-size: 14px;
}
.footer-contact-box a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  background: #14385a;
  color: #fff;
  font-weight: 800;
}
.footer-bottom {
  border-top: 1px solid rgba(15,42,68,.10);
  padding: 18px 0;
  color: #667789;
  font-size: 13px;
}

.wonder-page .wonder-hero {
  background: linear-gradient(120deg, rgba(15,42,68,.86), rgba(59,115,151,.54)), url("../images/nuigurumi.jpg") center/cover;
}
.wonder-intro {
  padding: 86px 0 76px;
  background: #fff;
}
.wonder-intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.wonder-intro-copy span,
.wonder-product-strip .section-title span,
.contact-band span,
.center-title span {
  color: var(--pink);
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: lowercase;
}
.wonder-intro-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.42;
  letter-spacing: .05em;
  
}
.wonder-intro-text p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 2.15;
  font-weight: 600;
  
}
.center-title {
  display: block;
  text-align: center;
  margin-bottom: 52px;
}
.center-title h2 { margin-top: 10px; }
.wonder-feature-list {
  display: grid;
  gap: 36px;
}
.wonder-feature-card {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15,42,68,.09);
}
.wonder-feature-card.reverse .wonder-feature-image { order: 2; }
.wonder-feature-image { height: 360px; overflow: hidden; }
.wonder-feature-image img { width: 100%; height: 100%; object-fit: cover; }
.wonder-feature-body { padding: 48px 56px; }
.wonder-feature-body span {
  color: var(--pink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .06em;
}
.wonder-feature-body h3 {
  margin: 14px 0 18px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.55;
  
}
.wonder-feature-body p {
  margin: 0 0 24px;
  line-height: 2;
  
}
.wonder-feature-body a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--pink);
}
.wonder-feature-body a::after { content: "›"; font-size: 20px; }
.wonder-product-strip { padding: 76px 0; background: #fff; }
.wonder-category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.wonder-category-tags a {
  padding: 16px 24px;
  border: 1px solid #dbe6ee;
  background: #f7fafc;
  color: #4a2434;
  font-weight: 800;
}
.contact-band {
  padding: 62px 0;
  background: #14385a;
  color: #fff;
}
.contact-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}
.contact-band h2 { margin: 8px 0 8px; color: #fff; font-size: 36px; }
.contact-band p { margin: 0; color: rgba(255,255,255,.85); }
.contact-band a {
  flex: 0 0 auto;
  padding: 16px 30px;
  background: #fff;
  color: #14385a;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .logo-company { display: none; }
  .saenco-nav a { padding: 0 10px; font-size: 13px; }
  .saenco-contact-btn { min-width: 106px; }
}

@media (max-width: 760px) {
  .saenco-header-inner {
    width: 100%;
    height: 70px;
    padding: 0 0 0 18px;
  }
  .image-logo img { max-height: 46px; }
  .saenco-contact-btn {
    display: grid;
    position: absolute;
    right: 70px;
    top: 0;
    height: 70px;
    min-width: 92px;
    padding: 0 12px;
    font-size: 12px;
  }
  .saenco-hamburger {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }
  .saenco-nav {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 26px 24px 40px;
    background: rgba(255,255,255,.98);
    transform: translateX(100%);
    transition: transform .32s ease;
    overflow-y: auto;
    box-shadow: none;
  }
  .saenco-nav ul {
    display: block;
  }
  .saenco-nav li + li { border-top: 1px solid #e8eef2; }
  .saenco-nav a {
    height: auto;
    padding: 18px 4px;
    font-size: 17px;
    justify-content: space-between;
  }
  .saenco-nav a::after {
    content: "›";
    position: static;
    display: block;
    height: auto;
    background: transparent;
    transform: none;
    color: #3b7397;
    font-size: 24px;
  }
  .mobile-nav-extra {
    display: block;
    margin-top: 28px;
  }
  .mobile-nav-extra a {
    display: flex;
    justify-content: center;
    padding: 16px 20px;
    background: #14385a;
    color: #fff;
    font-weight: 900;
  }
  .menu-toggle:checked ~ .saenco-nav { transform: translateX(0); }
  .menu-toggle:checked + .saenco-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle:checked + .saenco-hamburger span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .saenco-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 54px 0 42px;
  }
  .footer-nav-columns { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-contact-box { padding: 26px 22px; }

  .wonder-intro { padding: 62px 0 52px; }
  .wonder-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .wonder-intro-copy h2 { font-size: 32px; }
  .wonder-feature-card,
  .wonder-feature-card.reverse { grid-template-columns: 1fr; }
  .wonder-feature-card.reverse .wonder-feature-image { order: 0; }
  .wonder-feature-image { height: 250px; }
  .wonder-feature-body { padding: 32px 24px; }
  .contact-band-inner { display: block; }
  .contact-band a { display: inline-flex; margin-top: 24px; }
}

/* ===== requested refinement: logo stack / full-width right aligned header / typography ===== */
html { font-size: 16px; }
body {
  font-size: 15.5px;
  line-height: 1.9;
  letter-spacing: .035em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header { width: 100%; }
.saenco-header-inner {
  width: 100%;
  max-width: none;
  height: 88px;
  padding: 0 0 0 clamp(22px, 3vw, 44px);
  gap: clamp(18px, 2.2vw, 34px);
  justify-content: flex-start;
}
.image-logo {
  flex: 0 0 auto;
  width: auto;
  min-width: 210px;
  height: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1.1;
}
.image-logo img {
  width: auto;
  max-width: 198px;
  max-height: 42px;
  object-fit: contain;
}
.logo-company {
  display: block !important;
  margin-top: 2px;
  padding-left: 1px;
  color: #4a2434;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .07em;
  white-space: nowrap;
}
.saenco-nav {
  margin-left: auto;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.saenco-nav ul {
  justify-content: flex-end;
  width: auto;
}
.saenco-nav a {
  height: 88px;
  padding: 0 clamp(10px, 1.05vw, 18px);
  font-size: clamp(12.5px, .9vw, 14.5px);
  line-height: 1;
}
.saenco-contact-btn {
  align-self: stretch;
  height: 88px;
  min-width: 126px;
  margin-left: 0;
  font-size: 14px;
}

h1 { font-size: clamp(34px, 4.2vw, 52px); line-height: 1.26; }
h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.38; letter-spacing: .06em; }
h3 { font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; letter-spacing: .045em; }
p, li, dd, dt { font-size: 15.5px; }
.lead { font-size: 16px; line-height: 2; }
.section-title span,
.service-heading span,
.home-about-en,
.eyebrow,
.center-title span,
.wonder-intro-copy span,
.footer-column h3,
.footer-contact-box span {
  font-size: 13px;
  letter-spacing: .18em;
}
.card p,
.service-body p,
.business-summary p,
.accordion-content p,
.accordion-content li,
.footer-address,
.footer-contact-box p {
  font-size: 14.5px;
  line-height: 1.9;
}
.card h3,
.service-body h3,
.business-summary h3 {
  font-weight: 800;
}
.btn-primary,
.btn-secondary,
.more-btn,
.home-about-btn,
.footer-column a,
.footer-contact-box a {
  font-size: 14px;
  letter-spacing: .08em;
}

@media (max-width: 1180px) {
  .saenco-header-inner { gap: 16px; padding-left: 22px; }
  .image-logo { min-width: 188px; }
  .image-logo img { max-width: 178px; max-height: 38px; }
  .logo-company { font-size: 11.5px; }
  .saenco-nav a { padding: 0 8px; font-size: 12.5px; }
  .saenco-contact-btn { min-width: 112px; padding: 0 14px; font-size: 13px; }
}

@media (max-width: 760px) {
  body { font-size: 14.5px; line-height: 1.82; letter-spacing: .03em; }
  .saenco-header-inner {
    width: 100%;
    height: 76px;
    padding: 0 162px 0 16px;
  }
  .image-logo {
    min-width: 0;
    width: auto;
    max-width: 160px;
    height: 76px;
    gap: 3px;
    align-items: flex-start;
  }
  .image-logo img {
    max-width: 150px;
    max-height: 34px;
  }
  .logo-company {
    display: block !important;
    font-size: 10.5px;
    letter-spacing: .045em;
    transform: scale(.96);
    transform-origin: left center;
  }
  .saenco-contact-btn {
    right: 76px;
    height: 76px;
    min-width: 86px;
    font-size: 11.5px;
    padding: 0 8px;
  }
  .saenco-hamburger {
    width: 76px;
    height: 76px;
  }
  .saenco-nav {
    top: 76px;
    height: calc(100vh - 76px);
  }
  .saenco-nav a {
    height: auto;
    font-size: 16px;
    line-height: 1.35;
    padding: 17px 4px;
  }
  h1 { font-size: clamp(28px, 8vw, 38px); }
  h2 { font-size: clamp(24px, 6.5vw, 32px); }
  h3 { font-size: 18px; }
  p, li, dd, dt { font-size: 14.5px; }
  .lead { font-size: 15px; }
  .igoods-hero,
  .igoods-stage { min-height: 680px; }
  .lower-hero { padding-top: 132px; }
  .section-title span,
  .service-heading span,
  .home-about-en,
  .eyebrow,
  .center-title span,
  .wonder-intro-copy span {
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .saenco-header-inner { padding-right: 148px; padding-left: 12px; }
  .image-logo { max-width: 140px; }
  .image-logo img { max-width: 132px; }
  .logo-company { font-size: 10px; transform: scale(.92); }
  .saenco-contact-btn { right: 68px; min-width: 80px; font-size: 11px; }
  .saenco-hamburger { width: 68px; }
}

/* ===== final requested tweaks: short nav underline / SAENCO style contact / footer SNS ===== */
@media (min-width: 761px) {
  .saenco-nav a::after {
    left: 50% !important;
    right: auto !important;
    bottom: 24px !important;
    width: 24px !important;
    height: 2px !important;
    transform: translateX(-50%) scaleX(0) !important;
    transform-origin: center center !important;
    background:  var(--pink); !important;
  }
  .saenco-nav a:hover::after,
  .saenco-nav a.active::after {
    transform: translateX(-50%) scaleX(1) !important;
  }
}

.saenco-contact-btn {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--pink);
  
  line-height: 1.1;
  letter-spacing: .08em;
  text-align: center;
}
.saenco-contact-btn::after { content: none !important; display: none !important; }
.saenco-contact-btn .mail-icon {
  position: relative;
  display: block;
  width: 28px;
  height: 19px;
  border: 2px solid currentColor;
  border-radius: 2px;
}
.saenco-contact-btn .mail-icon::before,
.saenco-contact-btn .mail-icon::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 16px;
  height: 2px;
  background: currentColor;
  transform-origin: top center;
}
.saenco-contact-btn .mail-icon::before {
  left: 1px;
  transform: rotate(36deg);
}
.saenco-contact-btn .mail-icon::after {
  right: 1px;
  transform: rotate(-36deg);
}
.saenco-contact-btn .contact-label {
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.footer-social-box {
  /*background: #fff;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(15,42,68,.09);*/
}
.footer-social-box span {
  display: block;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
.footer-social-box h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.45;
  color: #4a2434;
}
.footer-social-box p {
  margin: 0 0 22px;
  color: #4a2434;
  font-size: 14.5px;
  line-height: 1.9;
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .25s ease, opacity .25s ease;
}
.footer-social-icon:hover { transform: translateY(-3px); opacity: .9; }
.footer-ins { font-size: 11px; }

@media (max-width: 760px) {
  .saenco-contact-btn {
    gap: 4px;
  }
  .saenco-contact-btn .mail-icon {
    width: 23px;
    height: 16px;
    border-width: 1.7px;
  }
  .saenco-contact-btn .mail-icon::before,
  .saenco-contact-btn .mail-icon::after {
    width: 13px;
    height: 1.7px;
  }
  .saenco-contact-btn .contact-label {
    font-size: 11px;
    letter-spacing: .04em;
  }
  .footer-social-box { padding: 26px 22px; }
  .footer-social-icons { gap: 12px; }
  .footer-social-icon { width: 46px; height: 46px; }
}


/* icon image update */
.saenco-contact-btn .mail-icon,
.saenco-contact-btn .mail-icon::before,
.saenco-contact-btn .mail-icon::after {
  display: none !important;
}
.saenco-contact-btn .mail-icon-img {
  display: block !important;
  width: 36px;
  height: 26px;
  object-fit: contain;
}
.footer-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-sns-img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .saenco-contact-btn .mail-icon-img {
    width: 32px;
    height: 23px;
  }
  .footer-sns-img {
    width: 32px;
    height: 32px;
  }
}


/* footer sns image fix */
.footer-social-icon {
  font-size: 0 !important;
  line-height: 0 !important;
}
.footer-social-icon::before,
.footer-social-icon::after,
.footer-x::before,
.footer-x::after,
.footer-ins::before,
.footer-ins::after {
  content: none !important;
  display: none !important;
}
.footer-social-icon img.footer-sns-img,
.footer-sns-img {
  display: block !important;
  width: 34px !important;
  height: 34px !important;
  object-fit: contain !important;
}


/* homepage business section redesign */
.business-redesign {
  padding: 104px 0 112px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(247,250,250,.96)),
    #f7faf9;
}
.business-redesign::before,
.business-redesign::after {
  display: none;
}
.business-redesign .container {
  max-width: 1180px;
}
.business-redesign .service-bg-text {
  top: 18%;
  font-size: clamp(82px, 16vw, 210px);
  color: rgba(20,56,90,.035);
  -webkit-text-stroke: 1px rgba(20,56,90,.065);
  text-stroke: 1px rgba(20,56,90,.065);
}
.business-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}
.business-heading p {
  margin: 22px auto 0;
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: .04em;
}
.business-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.business-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  color: #4a2434;
  text-decoration: none;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(15,42,68,.08);
  transition: transform .32s ease, box-shadow .32s ease;
}
.business-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 62px rgba(15,42,68,.14);
}
.business-service-image {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: #edf2f4;
}
.business-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .5s ease;
}
.business-service-card:hover .business-service-image img {
  transform: scale(1.08);
}
.business-service-no {
  position: absolute;
  right: 18px;
  bottom: -22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #14385a;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 14px 28px rgba(20,56,90,.22);
}
.business-service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 38px 30px 34px;
}
.business-service-en {
  display: block;
  margin-bottom: 12px;
  color: var(--pink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .16em;
}
.business-service-content h3 {
  margin: 0 0 18px;
  color: #4a2434;
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 850;
  line-height: 1.45;
  letter-spacing: .04em;
}
.business-service-content p {
  margin: 0 0 22px;
  color: #4a2434;
  font-size: 14.5px;
  line-height: 1.9;
  letter-spacing: .035em;
  text-align: left;
}
.business-service-content ul {
  margin: auto 0 0;
  padding: 0px 0 0 20px;
  list-style: none;
  
}
.business-service-content li {
  position: relative;
  margin: 0 0 9px;
  padding-left: 18px;
  color: #4a2434;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
}
.business-service-content li:last-child {
  margin-bottom: 0;
}
.business-service-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
}
.business-service-more {
  margin-top: 48px;
  text-align: center;
}
.business-service-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 54px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #14385a;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(20,56,90,.18);
}
.business-service-more span {
  margin-left: 12px;
  font-size: 20px;
  line-height: 1;
}
.pc-only { display: inline; }
@media (max-width: 1024px) {
  .business-service-list {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
    gap: 24px;
  }
  .business-service-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    border-radius: 18px;
  }
  .business-service-image {
    height: 100%;
    min-height: 300px;
  }
  .business-service-no {
    right: -24px;
    bottom: 24px;
  }
}
@media (max-width: 640px) {
  .business-redesign {
    padding: 66px 0 74px;
  }
  .business-heading {
    margin-bottom: 36px;
  }
  .business-heading p {
    font-size: 14.5px;
    line-height: 1.9;
    text-align: left;
  }
  .business-service-card {
    display: flex;
    border-radius: 16px;
  }
  .business-service-image {
    height: 210px;
    min-height: 0;
  }
  .business-service-no {
    right: 16px;
    bottom: -18px;
    width: 52px;
    height: 52px;
    font-size: 16px;
  }
  .business-service-content {
    padding: 34px 22px 28px;
  }
  .business-service-content h3 {
    font-size: 20px;
  }
  .business-service-more {
    margin-top: 34px;
  }
  .business-service-more a {
    width: 100%;
    min-width: 0;
  }
  .pc-only { display: none; }
}








/* business card list title */
.business-li-title {
  margin: 4px 0 10px !important;
  padding-top: 18px;
  border-top: 1px solid #d8e2e8;
  
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.4;
  letter-spacing: .08em;
}
.business-service-content .business-li-title + ul {
  margin-top: 0;
}
@media (max-width: 768px) {
  .business-li-title {
    margin-top: 20px !important;
    padding-top: 16px;
    font-size: 13px !important;
  }
}


/* unified homepage section titles */
#top .title-unified,
main .title-unified {
  max-width: 760px;
  margin: 0 auto 58px !important;
  text-align: center !important;
}
#top .title-unified span,
main .title-unified span {
  display: block;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  line-height: 1.4;
}
#top .title-unified h2,
main .title-unified h2 {
  margin: 0;
  color: #4a2434;
  font-size: clamp(36px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
#top .title-unified p,
main .title-unified p {
  margin: 22px auto 0;
  color: #4a2434;
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: .04em;
  max-width: 760px;
}
@media (max-width: 768px) {
  #top .title-unified,
  main .title-unified {
    margin-bottom: 36px !important;
  }
  #top .title-unified h2,
  main .title-unified h2 {
    font-size: 34px;
  }
  #top .title-unified p,
  main .title-unified p {
    font-size: 14.5px;
    line-height: 1.9;
  }
}


/* homepage business section horizontal card redesign */
.business-redesign .business-service-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 28px !important;
}

.business-redesign .business-service-card {
  display: grid !important;
  grid-template-columns: 460px minmax(0, 1fr) !important;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  border-radius: 24px;
  overflow: hidden;
}

.business-redesign .business-service-image {
  height: 100% !important;
  min-height: 280px;
}

.business-redesign .business-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-redesign .business-service-content {
  padding: 34px 36px 30px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.business-redesign .business-service-content h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.35;
}

.business-redesign .business-service-content p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.95;
}

.business-redesign .business-li-title {
  margin: 18px 0 10px !important;
  padding-top: 16px;
}

.business-redesign .business-service-content ul {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}

.business-redesign .business-service-content li {
  font-size: 15px;
  line-height: 1.8;
}

.business-redesign .business-service-no {
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
}

@media (max-width: 1100px) {
  .business-redesign .business-service-card {
    grid-template-columns: 300px minmax(0, 1fr) !important;
  }
  .business-redesign .business-service-content {
    padding: 28px 28px 24px !important;
  }
}

@media (max-width: 768px) {
  .business-redesign .business-service-list {
    gap: 22px !important;
  }

  .business-redesign .business-service-card {
    grid-template-columns: 1fr !important;
  }

  .business-redesign .business-service-image {
    min-height: 220px;
  }

  .business-redesign .business-service-content {
    padding: 26px 22px 24px !important;
  }

  .business-redesign .business-service-content h3 {
    font-size: 24px;
  }

  .business-redesign .business-service-content p {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .business-redesign .business-service-content li {
    font-size: 14px;
  }
}


/* WonderHouse about detail pages */
.saenco-like-page {
  padding: 150px 0 70px;
  background: linear-gradient(180deg, #f7faf9, #fff);
	background: linear-gradient(120deg, rgba(15, 42, 68, .36), rgba(59, 115, 151, .44)), url(../images/nuigurumi.jpg) center / cover;
}
.saenco-like-page .page-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.saenco-like-page h1 {
  margin: 0 0 18px;
  color: #4a2434;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: .05em;
}
.saenco-like-page .breadcrumb {
  color: #6a7b8a;
  font-size: 14px;
}
.saenco-like-page .breadcrumb a { color: #3b7397; }

.about-detail-main {
  padding: 78px 0 90px;
  background: #fff;
}
.about-detail-lead {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}
.about-detail-lead span,
.about-detail-section-title span {
  display: block;
  margin-bottom: 12px;
  color: #435b4e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.about-detail-lead h2 {
  margin: 0 0 24px;
  color: #4a2434;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.35;
  letter-spacing: .05em;
}
.about-detail-lead p {
  color: #4a2434;
  font-size: 16px;
  line-height: 2;
}
.about-detail-section-title {
  margin: 60px 0 30px;
  text-align: center;
}
.about-detail-section-title h3 {
  margin: 0;
  color: #14385a;
  font-size: clamp(24px, 2.6vw, 36px);
  letter-spacing: .05em;
}
.about-detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.about-detail-cards.two {
  grid-template-columns: repeat(2, 1fr);
}
.about-detail-cards article {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(15,42,68,.08);
}
.about-detail-cards img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.about-detail-cards h4 {
  margin: 26px 26px 12px;
  color: #4a2434;
  font-size: 21px;
  line-height: 1.45;
}
.about-detail-cards p {
  margin: 0 26px 30px;
  color: #4a2434;
  font-size: 15px;
  line-height: 1.9;
}
.about-flow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
.about-flow li {
  position: relative;
  margin: 0 0 18px;
  padding: 24px 28px 24px 82px;
  background: #f7faf9;
  border-radius: 18px;
  counter-increment: flow;
}
.about-flow li::before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 24px;
  color: #3b7397;
  font-weight: 900;
  font-size: 22px;
}
.about-flow strong {
  display: block;
  color: #14385a;
  font-size: 18px;
  margin-bottom: 8px;
}
.about-flow p {
  margin: 0;
  color: #4a2434;
  line-height: 1.8;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.quality-grid div {
  padding: 18px;
  background: #f7faf9;
  border-radius: 14px;
  color: #14385a;
  font-weight: 800;
  text-align: center;
}
.about-detail-cta {
  padding: 70px 0;
  background: #f3f7fa;
  text-align: center;
}
.about-detail-cta h2 {
  margin: 0 0 16px;
  color: #14385a;
  font-size: clamp(28px, 3vw, 42px);
}
.about-detail-cta p {
  margin: 0 0 28px;
  color: #4a2434;
}
.about-detail-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.about-detail-buttons a {
  display: inline-flex;
  min-width: 220px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  background: #14385a;
  color: #fff;
  border-radius: 999px;
  font-weight: 800;
}
.about-detail-buttons a:nth-child(2) {
  background: #fff;
  color: #14385a;
  border: 1px solid #d7e2e9;
}
@media (max-width: 900px) {
  .about-detail-cards,
  .about-detail-cards.two,
  .quality-grid {
    grid-template-columns: 1fr;
  }
  .saenco-like-page {
    padding: 120px 0 52px;
  }
}


/* OEM visual flow section */
.oem-flow-title {
  margin: 72px 0 34px;
}
.oem-flow-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 48px;
  margin-top: 8px;
}
.oem-flow-card {
  position: relative;
  padding: 64px 28px 26px;
  border: 2px solid #3b7397;
  background: transparent;
  min-height: 400px;
}
.oem-flow-number {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #3b7397;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}
.oem-flow-card h4 {
  margin: 0 0 24px;
  color: #4a2434;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .02em;
  text-align: center;
}
.oem-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 110px;
  margin-bottom: 18px;
  color: #3b7397;
}
.oem-flow-icon svg {
  width: 84px;
  height: 84px;
}
.oem-flow-card p {
  margin: 0;
  color: #232b33;
  font-size: 15px;
  line-height: 1.95;
}
@media (max-width: 1100px) {
  .oem-flow-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px 28px;
  }
  .oem-flow-card h4 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .oem-flow-visual {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .oem-flow-card {
    min-height: 0;
    padding: 58px 22px 24px;
  }
  .oem-flow-number {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }
  .oem-flow-card h4 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .oem-flow-icon {
    height: 88px;
    margin-bottom: 14px;
  }
  .oem-flow-icon svg {
    width: 70px;
    height: 70px;
  }
  .oem-flow-card p {
    font-size: 14px;
    line-height: 1.9;
  }
}



/* homepage contact visual section - reference style */
.home-contact-visual {
  position: relative;
  min-height: 340px;
  padding: 62px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 18, 18, .60), rgba(18, 18, 18, .60)),
    url("../images/contact-bg.jpg") center/cover no-repeat;
  color: #fff;
  text-align: center;
}

.home-contact-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.08), rgba(0,0,0,.14)),
    rgba(40, 40, 40, .08);
  z-index: 0;
}

.home-contact-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.home-contact-en {
  display: block;
  margin-bottom: 10px;
  color: #fff !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: lowercase;
}

.home-contact-inner h2 {
  margin: 0 0 22px;
  color: #fff !important;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .04em;
}

.home-contact-inner p {
  margin: 0 0 24px;
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .03em;
}

.home-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 290px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.98) !important;
  color: var(--pink) !important;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.home-contact-btn:hover {
  transform: translateY(-2px);
  background: #fff !important;
  box-shadow: 0 24px 52px rgba(0,0,0,.24);
}

.home-contact-btn i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--pink);
  color: #fff;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
}

.home-contact-faq {
  display: table;
  margin: 24px auto 0;
  color: #fff !important;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .04em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 768px) {
  .home-contact-visual {
    min-height: 320px;
    padding: 54px 18px;
  }

  .home-contact-en {
    font-size: 18px;
  }

  .home-contact-inner h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .home-contact-inner p {
    font-size: 15px;
    line-height: 1.8;
  }

  .home-contact-btn {
    min-width: 240px;
    min-height: 56px;
    font-size: 15px;
  }

  .home-contact-faq {
    font-size: 15px;
  }
}



/* products page 4-row horizontal layout */
.products-page .products,
.products {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 34px !important;
}

.products-page .product,
.products .product {
  display: grid !important;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr) !important;
  align-items: stretch !important;
  background: #fff !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 18px 46px rgba(217, 111, 159, .13) !important;
  text-decoration: none !important;
  color: inherit !important;
  min-height: 300px !important;
}

.products-page .product-img,
.products .product-img {
  width: 100% !important;
  min-height: 300px !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
}

.products-page .product-body,
.products .product-body {
  padding: 42px 46px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
}

.products-page .product-body h3,
.products .product-body h3 {
  margin: 0 0 18px !important;
  color: #4a2434 !important;
  font-size: clamp(26px, 2.4vw, 36px) !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
  letter-spacing: .04em !important;
}

.products-page .product-body p,
.products .product-body p {
  margin: 0 0 28px !important;
  color: #6f5360 !important;
  font-size: 16px !important;
  line-height: 2 !important;
}

.products-page .product-more,
.products .product-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 132px !important;
  min-height: 44px !important;
  padding: 0 28px !important;
  border-radius: 999px !important;
  background: #e46f9c !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: 0 12px 28px rgba(228, 111, 156, .28) !important;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease !important;
}

.products-page .product:hover .product-more,
.products .product:hover .product-more {
  transform: translateY(-2px) !important;
  background: #d95c8e !important;
  box-shadow: 0 16px 34px rgba(228, 111, 156, .36) !important;
}

@media (max-width: 900px) {
  .products-page .product,
  .products .product {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }

  .products-page .product-img,
  .products .product-img {
    min-height: 240px !important;
  }

  .products-page .product-body,
  .products .product-body {
    padding: 30px 24px !important;
  }

  .products-page .product-body h3,
  .products .product-body h3 {
    font-size: 24px !important;
  }

  .products-page .product-body p,
  .products .product-body p {
    font-size: 14.5px !important;
    line-height: 1.9 !important;
  }
}



/* products more button bottom alignment */
.products-page .product-body,
.products .product-body {
  justify-content: flex-start !important;
}

.products-page .product-body p,
.products .product-body p {
  margin-bottom: 24px !important;
}

.products-page .product-more,
.products .product-more {
  margin-top: auto !important;
}



/* products more link styling */
.products-page .product,
.products .product {
  cursor: pointer !important;
}

.products-page .product-more i,
.products .product-more i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.24);
  font-style: normal;
  line-height: 1;
}



/* product stuffed ppt layout */
.stuffed-hero-ppt {
  padding: 148px 0 80px;
  background: linear-gradient(135deg, #fff7fa 0%, #ffffff 58%, #f7fafb 100%);
  overflow: hidden;
}
.stuffed-hero-inner {
  display: grid;
  /*grid-template-columns: 1.15fr ;*/
  gap: 48px;
  align-items: center;
}
.stuffed-hero-copy span,
.stuffed-section-heading span,
.stuffed-info-card span,
.stuffed-product-text span {
  display: block;
  color: #e46f9c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.stuffed-hero-copy h1 {
  margin: 0 0 22px;
  color: #4a2434;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: .04em;
}
.stuffed-hero-copy p {
  margin: 0;
  color: #6f5360;
  font-size: 17px;
  line-height: 2;
  
}
.stuffed-hero-list {
  position: relative;
  background: rgba(255,255,255,.86);
  border: 1px solid #f5d1df;
  border-radius: 28px;
  padding: 38px 42px;
  box-shadow: 0 24px 80px rgba(217,111,159,.14);
}
.stuffed-hero-list h2 {
  margin: 0 0 20px;
  color: #4a2434;
  font-size: 34px;
  font-weight: 900;
}
.stuffed-hero-list ol {
  margin: 0;
  padding-left: 1.4em;
  color: #4a2434;
  display: grid;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
}
.stuffed-overview-ppt {
  padding: 82px 0;
  background: #fff;
}
.stuffed-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 28px;
}
.stuffed-info-card {
  padding: 42px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #f1d5df;
  box-shadow: 0 18px 50px rgba(217,111,159,.10);
}
.stuffed-info-card.accent {
  background: linear-gradient(145deg, #fff7fa, #fff);
}
.stuffed-info-card h2 {
  margin: 0 0 24px;
  color: #4a2434;
  font-size: 32px;
  font-weight: 900;
}
.stuffed-info-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.stuffed-info-card li {
  position: relative;
  padding-left: 22px;
  color: #6f5360;
  line-height: 1.9;
  font-size: 15px;
}
.stuffed-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e46f9c;
}
.stuffed-flow-ppt {
  padding: 92px 0;
  background: #fdf7fa;
}
.stuffed-section-heading {
  text-align: center;
  margin-bottom: 48px;
}
.stuffed-section-heading h2 {
  margin: 0;
  color: #4a2434;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .04em;
}
.stuffed-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 24px;
}
.stuffed-flow-grid article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(217,111,159,.12);
}
.stuffed-flow-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.stuffed-flow-grid h3 {
  margin: 0;
  padding: 18px 12px 20px;
  text-align: center;
  color: #4a2434;
  font-size: 18px;
  font-weight: 900;
}
.stuffed-products-ppt {
  padding: 96px 0 100px;
  background: #fff;
}
.stuffed-product-block {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0,1fr);
  gap: 52px;
  align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid #f1d5df;
}
.stuffed-product-block:first-of-type {
  padding-top: 0;
}
.stuffed-product-block.reverse .stuffed-product-image {
  order: 2;
}
.stuffed-product-image img {
  display: block;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(74,36,52,.13);
}
.stuffed-product-image:not(.dual):not(.collage) img {
  aspect-ratio: 1/1;
}
.stuffed-product-image.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stuffed-product-image.dual img {
  aspect-ratio: 1/1;
}
.stuffed-product-image.collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stuffed-product-image.collage img {
  aspect-ratio: 1/1;
}
.stuffed-product-text h3 {
  margin: 0 0 22px;
  color: #4a2434;
  font-size: clamp(34px, 3.8vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .03em;
}
.stuffed-product-text h4 {
  margin: 24px 0 10px;
  color: #e46f9c;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 900;
}
.stuffed-product-text p {
  margin: 0 0 12px;
  color: #6f5360;
  font-size: 16px;
  line-height: 2;
}
.stuffed-cta-ppt {
  padding: 78px 0;
  background: linear-gradient(135deg, #f7edf1, #fff7fa);
  text-align: center;
}
.stuffed-cta-ppt h2 {
  margin: 0 0 18px;
  color: #4a2434;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
}
.stuffed-cta-ppt p {
  margin: 0 auto 28px;
  max-width: 760px;
  color: #6f5360;
  line-height: 1.9;
}
.stuffed-cta-ppt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 56px;
  border-radius: 999px;
  background: #e46f9c;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(228,111,156,.26);
}
@media (max-width: 980px) {
  .stuffed-hero-inner,
  .stuffed-overview-grid,
  .stuffed-product-block {
    grid-template-columns: 1fr;
  }
  .stuffed-product-block.reverse .stuffed-product-image {
    order: 0;
  }
  .stuffed-flow-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .stuffed-hero-ppt { padding: 120px 0 58px; }
  .stuffed-hero-list,
  .stuffed-info-card { padding: 28px 22px; }
  .stuffed-flow-grid,
  .stuffed-product-image.dual,
  .stuffed-product-image.collage {
    grid-template-columns: 1fr;
  }
  .stuffed-product-block { gap: 28px; padding: 40px 0; }
  .stuffed-product-text h3 { font-size: 30px; }
  .stuffed-product-text p { font-size: 14.5px; }
}



/* product-stuffed mobile production flow: 2 columns */
@media (max-width: 768px) {
  .stuffed-flow-grid,
  .production-flow-grid,
  .product-flow-grid,
  .flow-grid,
  .stuffed-process-grid,
  .process-grid,
  .flow-steps,
  .stuffed-flow {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .stuffed-flow-grid > *,
  .production-flow-grid > *,
  .product-flow-grid > *,
  .flow-grid > *,
  .stuffed-process-grid > *,
  .process-grid > *,
  .flow-steps > *,
  .stuffed-flow > * {
    width: auto !important;
    min-width: 0 !important;
  }
}







/* stuffed product detail list button section */
.stuffed-detail-button-section {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff7fa 0%, #fff1f6 100%);
  text-align: center;
}

.stuffed-detail-button-section .container {
  display: flex;
  justify-content: center;
}

.stuffed-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 0 38px;
  border-radius: 999px;
  background: #e46f9c;
  color: #fff !important;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(228, 111, 156, .28);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.stuffed-detail-button:hover {
  transform: translateY(-2px);
  background: #d95c8e;
  box-shadow: 0 18px 38px rgba(228, 111, 156, .36);
}

@media (max-width: 768px) {
  .stuffed-detail-button-section {
    padding: 46px 0;
  }

  .stuffed-detail-button {
    min-width: 220px;
    min-height: 52px;
    font-size: 15px;
  }
}


/* NIMMY Friends goods detail page */
.goods-hero-ppt {
  background:
    linear-gradient(135deg, rgba(255,248,251,.96), rgba(255,241,248,.92)),
    #fff7fb;
}
.goods-material-ppt .stuffed-flow-grid article img {
  object-fit: contain;
  background: #fff;
}
.goods-products-ppt .stuffed-product-image img {
  object-fit: contain;
  background: #fff;
}
.goods-products-ppt .stuffed-product-image {
  background: #fff;
}
@media (max-width: 768px) {
  .goods-material-ppt .stuffed-flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}



/* goods product detail list button section */
.goods-detail-button-section {
  padding: 64px 0;
  background: linear-gradient(180deg, #fff7fa 0%, #fff1f6 100%);
  text-align: center;
}

.goods-detail-button-section .container {
  display: flex;
  justify-content: center;
}

.goods-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 58px;
  padding: 0 38px;
  border-radius: 999px;
  background: #e46f9c;
  color: #fff !important;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(228, 111, 156, .28);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.goods-detail-button:hover {
  transform: translateY(-2px);
  background: #d95c8e;
  box-shadow: 0 18px 38px rgba(228, 111, 156, .36);
}

@media (max-width: 768px) {
  .goods-detail-button-section {
    padding: 46px 0;
  }

  .goods-detail-button {
    min-width: 220px;
    min-height: 52px;
    font-size: 15px;
  }
}







/* VERIFIED index 商品紹介 4 columns */
.home-product-intro-fixed .products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.home-product-intro-fixed .products .product {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: 100% !important;
  grid-template-columns: none !important;
  background: #fff !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: inherit !important;
}

.home-product-intro-fixed .products .product-img {
  width: 100% !important;
  height: 220px !important;
  min-height: 220px !important;
  background-size: cover !important;
  background-position: center !important;
  flex: 0 0 auto !important;
}

.home-product-intro-fixed .products .product-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  padding: 22px !important;
}

.home-product-intro-fixed .products .product-body h3 {
  margin: 0 0 10px !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
}

.home-product-intro-fixed .products .product-body p {
  margin: 0 0 12px !important;
  font-size: 13px !important;
  line-height: 1.85 !important;
}

.home-product-intro-fixed .products .home-product-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  align-self: center !important;
  min-width: 118px !important;
  min-height: 40px !important;
  margin: auto auto 22px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  background: var(--pink) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(228, 111, 156, .26) !important;
}

@media (max-width: 900px) {
  .home-product-intro-fixed .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 560px) {
  .home-product-intro-fixed .products {
    grid-template-columns: 1fr !important;
  }
}

/* ===== ALGO ARTIS inspired first-view layout (2026-07-24) ===== */
.algo-hero {
  --hero-blue: #3856f5;
  height: calc(100svh - 82px) !important;
  min-height: 700px !important;
  margin-top: 0;
  background: #f7f8fa !important;
  color: #202124;
  overflow: hidden;
}
.algo-hero-stage {
  height: 100% !important;
  min-height: 700px !important;
  position: relative;
  overflow: hidden;
  background: #f7f8fa;
}
.algo-line-field {
  position: absolute;
  z-index: 0;
  top: -3%;
  right: -1%;
  width: 73%;
  height: 106%;
  opacity: .82;
  pointer-events: none;
  /*background:
    repeating-linear-gradient(to bottom,
      transparent 0 8px,
      rgba(56,86,245,.82) 8px 9px,
      transparent 9px 17px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);*/
}
/*.algo-line-field::before,
.algo-line-field::after {
  content: "";
  position: absolute;
  background: #f7f8fa;
}
.algo-line-field::before {
  left: 0;
  top: 0;
  width: 28%;
  height: 100%;
  clip-path: polygon(0 0,100% 0,58% 23%,100% 23%,40% 52%,100% 52%,62% 100%,0 100%);
}
.algo-line-field::after {
  right: 8%;
  bottom: -1%;
  width: 22%;
  height: 28%;
  clip-path: polygon(0 0,30% 0,30% 44%,100% 44%,100% 100%,0 100%);
}*/
.algo-hero-copy {
  position: absolute !important;
  z-index: 8 !important;
  left: clamp(48px, 5.1vw, 94px) !important;
  top: auto !important;
  bottom: clamp(70px, 11vh, 132px) !important;
  width: min(48vw, 560px) !important;
  transform: none !important;
  color: #202124 !important;
  text-shadow: none !important;
}
.algo-hero-copy h1 {
  margin: 0 0 34px !important;
  color: #202124 !important;
  font-size: clamp(36px, 4.7vw, 44px) !important;
  font-weight: 800 !important;
  line-height: 1.32 !important;
  letter-spacing: .025em !important;
}
.algo-hero-copy p {
  width: min(760px, 100%) !important;
  margin: 0 !important;
  color: #494c52 !important;
  font-size: clamp(14px, 1.15vw, 20px) !important;
  font-weight: 700;
  line-height: 1.85 !important;
  letter-spacing: .055em !important;
}
.algo-visual {
  position: absolute !important;
  z-index: 3;
  top: 4.2%;
  right: 4.8%;
  width: min(45.5vw, 800px) !important;
  height: 87% !important;
  overflow: hidden;
 
  box-shadow: none;
  isolation: isolate;
}

.algo-visual .igoods-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100%;
  height: 100% !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.15s ease, visibility 1.15s;
}
.algo-visual .igoods-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.algo-visual .igoods-slide::before,
.algo-visual .igoods-slide::after { display: none !important; }
.algo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.03);
  transform: scale(1.08);
  transition: transform 7.2s linear;
}
.algo-visual .igoods-slide.is-active img { transform: scale(1.01); }
.algo-shape {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  border: 1px solid var(--hero-blue);
  background: repeating-linear-gradient(to bottom,
    transparent 0 5px,
    rgba(56,86,245,.96) 5px 6px,
    transparent 6px 11px);
}
.algo-shape-circle {
  right: 21%;
  bottom: 5%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.algo-shape-square {
  right: 7%;
  bottom: 4.2%;
  width: 120px;
  height: 120px;
}
.algo-scroll {
  right: 20px !important;
  bottom: 25px !important;
  z-index: 10 !important;
  color: var(--hero-blue) !important;
  text-shadow: none !important;
}
.algo-scroll::after { background: var(--hero-blue) !important; }

@media (max-width: 1100px) {
  .algo-hero,
  .algo-hero-stage { height: 760px !important; min-height: 760px !important; }
  .algo-visual { right: -7%; width: 59vw !important; height: 82% !important; top: 7%; }
  .algo-hero-copy { left: 38px !important; bottom: 78px !important; width: 48vw !important; }
  .algo-hero-copy h1 { font-size: clamp(43px, 6vw, 66px) !important; }
  .algo-line-field { width: 82%; }
  .algo-shape-circle { right: 23%; }
  .algo-shape-square { right: 4%; }
}

@media (max-width: 760px) {
  .algo-hero,
  .algo-hero-stage { height: 700px !important; min-height: 700px !important; }
  .algo-line-field { top: 0; right: -25%; width: 125%; height: 62%; opacity: .58; }
  .algo-visual {
    top: 26px;
    right: -14%;
    width: 88vw !important;
    height: 60% !important;
    border-radius: 47% 46% 42% 44% / 18% 18% 40% 42%;
  }
  .algo-hero-copy {
    left: 24px !important;
    right: 24px !important;
    bottom: 48px !important;
    width: auto !important;
  }
  .algo-hero-copy h1 {
    margin-bottom: 18px !important;
    font-size: clamp(36px, 10.8vw, 50px) !important;
    line-height: 1.25 !important;
  }
  .algo-hero-copy p { font-size: 13px !important; line-height: 1.75 !important; }
  /*.algo-visual::after { background: linear-gradient(180deg, rgba(56,86,245,.12), rgba(56,86,245,.38)); }*/
  .algo-shape-circle { width: 52px; height: 52px; right: 31%; bottom: 34%; }
  .algo-shape-square { width: 74px; height: 74px; right: 3%; bottom: 32%; }
  .algo-scroll { display: none !important; }
}

/* ==== Modern Pink Theme ==== */
:root{
--primary:#E88DA6;
--primary-dark:#D96F91;
--bg:#FAF8F9;
--text:#2D2D2D;
}
body{background:var(--bg)!important;color:var(--text)!important;}
a:hover,.active{color:var(--primary)!important;}
button,.btn,input[type=submit],.button{
background:var(--primary)!important;border-color:var(--primary)!important;
border-radius:999px!important;color:#fff!important;
transition:.3s!important}
button:hover,.btn:hover,input[type=submit]:hover,.button:hover{
background:var(--primary-dark)!important;transform:translateY(-2px)}
.card,.box,.item,.product,.service,.news-item{
background:#fff!important;border-radius:20px!important;
box-shadow:0 10px 30px rgba(232,141,166,.12)!important;
transition:.3s}
.card:hover,.box:hover,.item:hover,.product:hover,.service:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(232,141,166,.22)!important}
section{padding-top:150px!important;padding-bottom:80px!important}
h1,h2,h3{letter-spacing:.03em}


.view_more{
	margin: 35px;
	color: #B1191B;
}

