/* ==============================================================
   index-beauty.css - Warm Beauty for Nokaso (beauty-demo page)
   Generated by merging 7 section CSS files.
   Mobile-first. Uses CSS Custom Properties.
============================================================== */

/* =======================================================
   Google Fonts - Warm Beauty for Nokaso
======================================================= */

@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Libre+Caslon+Display&family=Noto+Sans+JP:wght@500&family=Noto+Serif+JP:wght@400;500;600;700&family=Poppins:wght@500&display=swap");

/* =======================================================
   1. Design Tokens / CSS Variables
======================================================= */

:root {
  /* ----- Fonts ----- */
  --wb-font-jp: "Noto Serif JP", serif;
  --wb-font-jp-sans: "Noto Sans JP", sans-serif;
  --wb-font-title: "Libre Caslon Display", serif;
  --wb-font-latin: "Libre Baskerville", serif;
  --wb-font-poppins: "Poppins", serif;

  /* ----- Brand colors ----- */
  --wb-color-text: #6A5F55;
  --wb-color-black: #000000;
  --wb-color-white: #FFFFFF;
  --wb-color-title: #A88B62;
  --wb-color-accent: #B09064;
  --wb-color-soft-gold: #A38559;
  --wb-color-green: #B5BDA7;
  --wb-color-bg-light: #EDE9E5;
  --wb-color-bg-soft: #F1E9DC;
  --wb-color-bg-warm: #D9C8B2;
  --wb-color-line: #C9B79B;

  /* ----- Spacing ----- */
  --wb-section-pad-y-mobile: 48px;
  --wb-section-pad-y-tablet: 64px;
  --wb-section-pad-y-desktop: 80px;
  --wb-container-pad-x: 16px;
}

/* =======================================================
   2. Hero Section
======================================================= */

.wb-hero {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vw, 675px);
  overflow: hidden;
}

.wb-hero__media {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.wb-hero__media img,
.wb-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.wb-hero__text {
  position: absolute;
  bottom: 5%;
  z-index: 2;
  padding: 0 56px;
  color: var(--wb-color-soft-gold);
}
.wb-hero__text br:nth-child(2),
.wb-hero__text br:first-child{
  display: none;
}

.wb-hero__title {
  margin: 0 0 14px;
  color: var(--wb-color-soft-gold);
  font-family: var(--wb-font-title);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.wb-hero__subtitle {
  margin: 0;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* =======================================================
   3. Concept Section
======================================================= */

.wb-concept {
  position: relative;
  overflow: hidden;
  padding: 56px 0 30px;
  background-color: var(--wb-color-bg-light);
}

.wb-concept__inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 0;
  text-align: center;
}

/* ---------- Concept: decorative water drop ---------- */

.wb-concept__dropcap {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 70px;
  height: auto;
  margin-left: -165px;
}

/* ---------- Concept: text layer ---------- */

.wb-concept__title,
.wb-concept__subtitle,
.wb-concept__lead {
  position: relative;
  z-index: 2;
}

/* ---------- Concept: title ---------- */

.wb-concept__title {
  margin: 0;
  color: var(--wb-color-accent);
  font-family: var(--wb-font-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
}

.wb-concept__subtitle {
  margin: 0 0 61px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
}

/* ---------- Concept: body text ---------- */

.wb-concept__lead {
  margin: 0 0 89px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.05em;
}

/* =======================================================
   4. Slide Text / Marquee  (chuyen dong dieu khien bang JS)
======================================================= */
.wb-slide-text {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background-color: var(--wb-color-bg-light);
  white-space: nowrap;
}

.wb-slide-track {
  display: inline-flex;
  gap: 120px;
  white-space: nowrap;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.wb-slide-item,
.wb-slide-text-p {
  display: inline-block;
  min-width: max-content;
  margin: 0;
  color: transparent;
  font-family: "Libre Caslon Display", serif !important;
  font-size: 180px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    #c78739 0%,
    #ffe182 10%,
    #fcdd7f 20%,
    #f5d276 30%,
    #eac269 40%,
    #fbdc7e 50%,
    #f7d679 60%,
    #ecc66d 70%,
    #ebc46b 80%,
    #dda64a 90%,
    #f4bf6e 95%,
    #ffcc80 100%
  );
  background-size: 100% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .wb-slide-track { transform: none !important; }
}

/* =======================================================
   5. Service Section
======================================================= */

.wb-service {
  isolation: isolate;
  position: relative;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
  background-color: var(--wb-color-bg-light);
  background-image: url("/system_panel/uploads/images/20260617121252944063.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 1400px;
}

.wb-water__image {
  position: absolute;
  z-index: 1;
  display: block;
  width: 80px;
  height: auto;
  opacity: 0.9;
  user-select: none;
  animation: wbWaterFloat 4s ease-in-out infinite;
}

.wb-water__shape--1 {
  top: 110px;
  left: 2%;
}

.wb-water__shape--2 {
  top: 75px;
  right: 2%;
  animation-delay: 1s;
}

.wb-water__shape--3 {
  right: 3%;
  bottom: 60px;
  animation-delay: 2s;
}

@keyframes wbWaterFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ---------- Service: content layout ---------- */

.wb-service__container {
  position: relative;
  z-index: auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wb-service__title {
  margin: 0;
  color: var(--wb-color-accent);
  font-family: var(--wb-font-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
}

.wb-service__subtitle {
  margin: 0 auto 70px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
}

.wb-service__body {
  max-width: 738px;
  margin: 0 auto 36px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
  letter-spacing: 0.05em;
}

.wb-service__body br {
  display: none;
}

.wb-service__container .wb-service__grid > .wb-service__card::before,
.wb-service__container .wb-service__grid > .wb-service__card::after {
  display: none;
  content: none;
}

.wb-service__container
  .wb-service__grid
  > .wb-service__card
  > .wb-service__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: cover;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.wb-service__container
  .wb-service__grid
  > .wb-service__card
  > .wb-service__subtitle {
  margin: 8px 0 0;
  padding: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.05em;
  background: transparent;
}

.wb-service__container .wb-service__card.wow {
  backface-visibility: hidden;
}

/* ---------- Service: CTA button ---------- */

.wb-service__cta {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  margin: 40px auto 0;
}

.wb-service__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 10px 40px;
  gap: 10px;
  color: var(--wb-color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background: #ad9169;
  transition: opacity 0.25s ease;
}

.wb-service__cta-link:hover {
  color: var(--wb-color-white);
  text-decoration: none;
  opacity: 0.82;
}

.wb-service__cta-link .fa {
  display: none;
}

.wb-service__cta-link::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 23px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='23' viewBox='0 0 20 23' fill='none'><path d='M18.8326 9.87201L7.76562 20.9141L8.93189 22.0777L19.9989 11.0357L18.8326 9.87201Z' fill='white'/><path d='M8.93189 0.000423778L7.76562 1.16406L18.8326 12.2061L19.9989 11.0425L8.93189 0.000423778Z' fill='white'/><path d='M18.7193 10.2188H0V11.8656H18.7193V10.2188Z' fill='white'/></svg>") center / contain no-repeat;
  transition: transform 0.25s ease;
}

.wb-service__container .wb-service__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 105px;
    max-width: 900px;
    margin: 0 auto;
}

.wb-service__container .wb-service__card {
    position: static;
    width: auto;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.wb-service__container .wb-service__grid .wb-service__card .wb-service__image.img-service-sp {
 display: none !important;
}
.wb-service__container .wb-service__image {
    display: block;
    width: 100%;
    height: auto;
}

.wb-service__container .wb-service__card:nth-child(1) {
    grid-column: 1 / 3;
    width: 690px;
    justify-self: center;
}

.wb-service__container .wb-service__card:nth-child(2) {
    justify-self: end;
    width: 355px;
    margin-top: 100px;
}

.wb-service__container .wb-service__card:nth-child(3) {
    width: 458px;
    justify-self: start;
}

.wb-service__container .wb-service__card:nth-child(4) {
    grid-column: 1 / 3;
    width: 594px;
    justify-self: center;
}
@media (max-width: 991px) {
 .wb-service__container .wb-service__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 40px;
  }
  .wb-service__container .wb-service__card:nth-child(1) {
    width: 100%;
 }
  .wb-service__container .wb-service__card:nth-child(2) {
    justify-self: start;
    width: 85%;
    margin-top: 85px;
  }
  .wb-service__container .wb-service__card:nth-child(3) {
    width: 120%;
    margin-left: -20%;
  }
  .wb-service__container .wb-service__card:nth-child(4) {
    width: 100%;
  }
  .wb-service__container .wb-service__grid > .wb-service__card > .wb-service__subtitle {
    font-size: 10px;
  }
}

/* =======================================================
   6. Message Section
======================================================= */

.wb-message {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background-color: var(--wb-color-bg-light);
}

/* ---------- Message: decorative text ---------- */

.wb-message__hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-bottom: 28px;
  overflow: hidden;
  text-align: center;
}

.wb-message__hero p {
  display: inline-block;
  margin: 0;
  padding: 0 24px 12px;
  color: transparent;
  font-family: var(--wb-font-title);
  font-size: 50px;
  font-weight: 400;
  line-height: 1.5;
  background: linear-gradient(
    90deg,
    #c78739 0%,
    #ffe182 12%,
    #f5d276 28%,
    #eac269 45%,
    #fbdc7e 58%,
    #ecc66d 72%,
    #dda64a 88%,
    #ffcc80 100%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Message: inner container ---------- */

.wb-message__inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Message: heading ---------- */

.wb-message__heading {
  position: relative;
  margin: 0 0 32px;
  text-align: center;
}

.wb-message__title {
  position: relative;
  z-index: 2;
  display: inline-block;
}

/* ---------- Message: sparkle image ---------- */

.wb-message__deco {
  position: absolute;
  top: 20px;
  left: 51px;
  z-index: -1;
  width: 210px;
  height: auto;
  opacity: 1;
  transform: translate(-45%, -45%);
}

.wb-message__subtitle {
  position: relative;
  z-index: 2;
  margin: 0 0 32px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
}

/* ---------- Message: content layout ---------- */

.wb-message__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-top: 20px;
}

/* ---------- Message: photo ---------- */

.wb-message__photo {
  flex: 0 0 auto;
  width: 240px;
  max-width: 80%;
}

.wb-message__photo img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  background: var(--wb-color-bg-light);
  border: 10px solid var(--wb-color-bg-warm);
  border-radius: 200px 200px 0 0;
}

/* ---------- Message: info ---------- */

.wb-message__info {
  flex: 1 1 auto;
  width: 100%;
  max-width: 480px;
  text-align: left;
}

.wb-message__name {
  margin: 0 0 6px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.wb-message__role {
  margin: 0 0 29px;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.wb-message__body {
  margin: 0;
  color: var(--wb-color-black);
  font-family: var(--wb-font-jp);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* ---------- Message: WOW.js animation timing ---------- */

.wb-message__wrap .wow {
  animation-duration: 2.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

.wb-message__wrap .wb-message__photo.wow {
  animation-delay: 0s;
}

.wb-message__wrap .wb-message__name.wow {
  animation-delay: 0.2s;
}

.wb-message__wrap .wb-message__role.wow {
  animation-delay: 0.4s;
}

.wb-message__wrap .wb-message__body.wow {
  animation-delay: 0.6s;
}

/* =======================================================
   7. User Guide Section
======================================================= */

.wb-userguide {
  position: relative;
  width: 100%;
  padding: 56px 0;
  overflow: hidden;
  background-color: #f4e6cf;
  background-image: url("/system_panel/uploads/images/20260617122145765901.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.wb-userguide__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- User Guide: heading ---------- */

.wb-userguide__heading {
  margin: 0 0 28px;
  text-align: left;
}

.wb-userguide__title {
  display: block;
  margin: 0 0 12px;
  color: var(--wb-color-accent);
  font-family: var(--wb-font-title);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
}

.wb-userguide__desc-link,
.wb-userguide__desc-link:visited,
.wb-userguide__desc-link:hover,
.wb-userguide__desc-link:active,
.wb-userguide__desc-link:focus {
  text-decoration: none;
}

.wb-userguide__desc-link .wb-userguide__desc {
  text-decoration: none;
}

.wb-userguide__desc-link:hover .wb-userguide__desc {
  text-decoration: none;
}

.wb-userguide__desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--wb-color-black);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-align: left;
}

/* ---------- User Guide: list ---------- */

.wb-userguide__list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
}

.wb-userguide__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 3 / 4;
}

.wb-userguide__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.wb-userguide__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ---------- User Guide: overlay ---------- */

.wb-userguide__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.50);
  transition: background-color 0.35s ease;
}

/* ---------- User Guide: shine hover ---------- */

.wb-userguide__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 3;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.wb-userguide__link:hover::before,
.wb-userguide__link:focus-visible::before {
  left: 125%;
}

.wb-userguide__link:hover::after,
.wb-userguide__link:focus-visible::after {
  background: rgba(0, 0, 0, 0.3);
}

.wb-userguide__link:hover .wb-userguide__image,
.wb-userguide__link:focus-visible .wb-userguide__image {
  transform: scale(1.05);
}

/* ---------- User Guide: caption ---------- */

.wb-userguide__caption {
  position: absolute;
  inset: 50% 0 auto;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 12px;
  text-align: center;
  transform: translateY(-50%);
}

.wb-userguide__title-en {
  display: block;
  color: #ffffff;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.wb-userguide__title-jp {
  display: block;
  color: #ffffff;
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* =======================================================
   8. Recommended Menu Section
======================================================= */

.wb-menu {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background: var(--wb-color-bg-light);
}

.wb-menu__container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ---------- Recommended Menu: heading ---------- */

.wb-menu__title {
  margin: 0 0 18px;
  color: var(--wb-color-accent);
  font-family: var(--wb-font-title);
  font-size: 48px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0;
}

.wb-menu__subtitle {
  margin: 0 0 28px;
  color: #000000;
  font-family: var(--wb-font-jp);
  font-size: 14px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 0.05em;
}

/* ---------- Recommended Menu: grid ---------- */

.wb-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ---------- Recommended Menu: card ---------- */

.wb-menu__card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

.wb-menu__image {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  object-fit: cover;
  border-radius: 2px;
  aspect-ratio: 1 / 1;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.wb-menu__image:hover {
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(61, 53, 48, 0.18);
  transform: translateY(-4px) scale(1.03);
}

.wb-menu__name {
  margin: 0 0 15px;
  font-family: var(--wb-font-jp);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.wb-menu__desc {
  margin: 0;
  font-family: "Noto Serif JP", serif !important;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
}

.wb-menu__cta-label {
  font-family: var(--wb-font-title);
  font-size: 20px;
  font-weight: 500;
  line-height: 40px;
}

.wb-menu__cta {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 1100px;
  margin: 50px auto 0;
}

.wb-menu__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  padding: 10px 40px;
  gap: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  background: #ad9169;
  transition: opacity 0.25s ease;
}

.wb-menu__cta-link:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.82;
}

.wb-menu__cta-link .fa {
  display: none;
}

.wb-menu__cta-link::after {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 23px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='23' viewBox='0 0 20 23' fill='none'><path d='M18.8326 9.87201L7.76562 20.9141L8.93189 22.0777L19.9989 11.0357L18.8326 9.87201Z' fill='white'/><path d='M8.93189 0.000423778L7.76562 1.16406L18.8326 12.2061L19.9989 11.0425L8.93189 0.000423778Z' fill='white'/><path d='M18.7193 10.2188H0V11.8656H18.7193V10.2188Z' fill='white'/></svg>") center / contain no-repeat;
  transition: transform 0.25s ease;
}

/* =======================================================
   9. News Section
======================================================= */

.wb-news {
  position: relative;
  padding-bottom: 56px;
  overflow: hidden;
  background: var(--wb-color-bg-light);
}

.wb-news__container {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wb-news__btn-wrap {
  margin-top: 40px;
}

/* =======================================================
   10. Video Box Frame
   Centered video container
   Dimensions: 683 x 384 px
======================================================= */

.video-box-frame {
  display: block;
  width: 100%;
  max-width: 683px;
  margin: 24px auto;
  padding: 0 16px;
}

.video-box-frame video,
.video-box-frame iframe {
  display: block;
  width: 100%;
  max-width: 683px;
  height: auto;
  margin: 0 auto;
  border: 0;
  aspect-ratio: 683 / 384;
}

.wb-hero__media .sp-banner{
        display:none;
  }

.wb-userguide__title-en {
	  font-family: var(--wb-font-title);
}
.news-list-content .news-list-more,
  .wb-service__cta-link .wb-menu__cta-label,
  .wb-menu__cta-link .wb-menu__cta-label,
  .wb-service__cta-link .wb-menu__cta-label {
    font-family: var(--wb-font-poppins);
  }

  .wb-message__name {
    font-family: var(--wb-font-jp);
    font-weight: 500;
  }

/* =======================================================
   11. Responsive - Tablet / PC >= 769px
======================================================= */

@media (min-width: 769px) {
  .wb-hero__title {
    font-size: clamp(40px, 6vw, 80px);
    line-height: 1.05;
    letter-spacing: 0;
  }

  .wb-hero__subtitle {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .wb-concept {
    padding: 50px 0;
  }

  .wb-concept__inner {
    padding: 60px 32px 0;
  }

  .wb-concept__dropcap {
    top: 50px;
    width: 125px;
    height: auto;
    margin-left: -270px;
  }

  .wb-concept__title {
    font-size: 48px;
  }

  .wb-concept__lead {
    font-size: 20px;
  }

  .wb-slide-text {
    padding: 0;
  }

  .wb-water__image {
    width: 100px;
  }

  .wb-water__shape--1 {
    top: 145px;
    left: 8%;
    width: 153px;
  }

  .wb-water__shape--2 {
    top: 95px;
    right: 10%;
  }

  .wb-water__shape--3 {
    right: 11%;
    bottom: 80px;
    width: 127px;
  }

  .wb-service {
    background-size: 100% 1850px;
  }

  .wb-service__container {
    padding: 0 32px;
  }

  .wb-service__body {
    font-size: 14px;
    text-align: center;
  }

  .wb-service__body br {
    display: initial;
  }

  .wb-service__title {
    font-size: 48px;
  }

  .wb-message {
    padding: 72px 0;
  }

  .wb-message__hero {
    margin-bottom: 0;
  }

  .wb-message__hero p {
    padding: 0 32px 0;
    font-size: clamp(72px, 14vw, 200px);
  }

  .wb-message__inner {
    padding: 0 32px;
  }

  .wb-message__heading {
    margin: 0 0 62px;
  }

  .wb-message__deco {
    width: 160px;
  }

  .wb-message__subtitle {
    margin: 0 0 36px;
    letter-spacing: 0.12em;
  }

  .wb-message__wrap {
    flex-direction: row;
    align-items: center;
    gap: 110px;
    margin-top: 8px;
  }

  .wb-message__photo {
    width: 300px;
    max-width: none;
  }

  .wb-message__photo img {
    border: 20px solid var(--wb-color-bg-warm);
  }

  .wb-message__info {
    max-width: 460px;
    padding-top: 8px;
  }

  .wb-message__name {
    font-size: 24px;
  }

  .wb-message__role {
    margin: 0 0 59px;
    font-size: 13px;
  }

  .wb-message__body {
    font-size: 14px;
  }

  .wb-userguide {
    padding: 68px 0;
  }

  .wb-userguide__inner {
    padding: 0 32px;
  }

  .wb-userguide__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
    text-align: left;
  }

  .wb-userguide__title {
    margin: 0;
  }

  .wb-userguide__desc {
    max-width: 520px;
    margin: 0;
  }

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

  .wb-menu {
    padding: 72px 0;
  }

  .wb-menu__container {
    padding: 0 32px;
  }

  .wb-menu__title {
    font-size: 48px;
  }

  .wb-menu__subtitle {
    margin-bottom: 69px;
    font-size: 14px;
  }

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

  .wb-menu__card {
    max-width: none;
  }

  .wb-menu__name {
    font-size: 24px;
  }

  .wb-menu__desc {
    font-size: 16px;
  }

  .wb-news {
    padding-bottom: 64px;
  }

  .wb-news__container {
    padding: 0 32px;
  }

  .wb-news__btn-wrap {
    margin-top: 60px;
  }

  .video-box-frame {
    margin: 30px auto;
  }
}

/* =======================================================
   12. Responsive - Desktop >= 1024px
======================================================= */

@media (min-width: 1024px) {
  .wb-service {
    background-size: 100% 1960px;
  }

  .wb-concept {
    padding: 50px 0;
  }

  .wb-service__cta {
    margin: 90px auto 40px;
  }

  .wb-message {
    padding: 88px 0 140px;
  }

  .wb-userguide {
    padding: 68px 0;
  }

  .wb-userguide__inner {
    padding: 0 48px;
  }

  .wb-userguide__heading {
    text-align: center;
  }

  .wb-userguide__list {
    gap: 24px;
  }

  .wb-userguide__title-en {
    font-size: 22px;
  }

  .wb-userguide__title-jp {
    font-size: 16px;
  }

  .wb-menu {
    padding: 88px 0;
  }

  .wb-menu__container {
    padding: 0 48px;
  }

  .wb-menu__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .wb-news {
    padding-bottom: 94px;
  }

  .wb-news__btn-wrap {
    margin-top: 80px;
  }
}

/* =======================================================
   13. Responsive - Large Desktop >= 1200px
======================================================= */

@media (min-width: 1200px) {
  .wb-hero__title {
    font-size: 80px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .wb-hero__subtitle {
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}

/* =======================================================
   14. Responsive - Wide Desktop >= 1280px
======================================================= */

@media (min-width: 1280px) {
  .wb-message__deco {
    width: 516px;
  }
}

@media (max-width: 1300px) {
  .wb-hero__text .wb-hero__title{
        font-size: 9vw;
  }
}

@media (max-width: 750px) {
  .wb-hero__media .pc-banner{
        display:none;
  }
  .wb-hero__media .sp-banner{
        display:block;
  }
  .wb-hero {
  	height: auto;
  }
  .wb-hero__text {
    bottom: 40vw;
    left: 20px;
    max-width: 100%;
    padding: 0;
  }
  .wb-hero__text .wb-hero__title {
        font-size: 15vw;
    }
  .wb-hero__subtitle {
    font-size: 3vw;
  }
  .wb-hero__text br:first-child{
    display: inline;
  }
  .wb-concept__lead {
    max-width: 350px;
    margin: 0 auto 40px !important;
  }
  .wb-slide-text .wb-slide-item {
  	font-size: 20vw;
  }
  .wb-service__body {
    margin-bottom: 35px !important;
  }
      .wb-service__container .wb-service__grid > .wb-service__card > .wb-service__subtitle {
        font-size: 2.6vw;
    }
  .wb-service__container .wb-service__grid {
    gap: 10px;
        display: flex;
        flex-wrap: wrap;
  }
  .wb-service__container .wb-service__card:nth-child(3),
      .wb-service__container .wb-service__card:nth-child(2) {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }
  .wb-menu__title {
    font-size: 42px;
  }
  .wb-userguide__title-en {
    font-size: 7.5vw;
  }
  .wb-userguide__title-jp {
    font-size: 3.5vw; 
  }
    .wb-menu__cta {
    justify-content: center;
  }
  .wb-service__cta-link,
  .wb-menu__cta-link,
  .wb-service__cta-link {
  	    width: 80%;
    max-width: 500px;
    font-family: var(--wb-font-poppins);
  }
  .wb-water__shape--2 {
    top: -2px;
    width: 50px;
    right: 12%;
 }
  .wb-message__hero p {
  font-size: 13vw;
  }
  .wb-userguide {
  	background-image: url(/system_panel/uploads/images/20260602152149491118.png);
  }
  .wb-service__container .wb-service__grid .wb-service__card .wb-service__image.img-service-sp {
   display: block !important;
  }
  .wb-service__container .wb-service__grid .wb-service__card .wb-service__image.img-service-pc {
   display: none !important;
  }
}

