@charset "UTF-8";
/* =========================================================
   Charset / Design Tokens
========================================================= */
:root {
  --font-serif-logo: "Playwrite DE LA", cursive;
  --font-base: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  --font-section-en: "Lexend", sans-serif;
  --font-tu: Helvetica Neue, Arial, Hiragino Sans, Hiragino Kaku Gothic ProN, Noto Sans JP, BIZ UDPGothic, Meiryo, sans-serif;
  --color-text: #111;
  --color-muted: #777;
  --color-light: #f1f1f1;
  --color-bg: #fff;
  --color-gray-panel: #ededed;
  --content-width: 1200px;
  --content-width2: 1000px;
  --side-pad: 32px;
}
@media (max-width: 959px) {
  :root {
    --side-pad: 22px;
  }
}

/* =========================================================
   Placeholders (Shared Styles)
========================================================= */
.site-footer__logo, .site-logo {
  margin: 0;
  font-family: var(--font-serif-logo);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media (max-width: 640px) {
  .site-footer__logo, .site-logo {
    padding-right: 0;
    border-right: 0;
  }
}

.btn, .header-contact, .global-nav__contact {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  z-index: 0;
}
.btn::before, .header-contact::before, .global-nav__contact::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: #fff;
  border-radius: inherit;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: -1;
}
.btn:hover, .header-contact:hover, .global-nav__contact:hover, .btn:focus-visible, .header-contact:focus-visible, .global-nav__contact:focus-visible {
  color: #000;
}
.btn:hover::before, .header-contact:hover::before, .global-nav__contact:hover::before, .btn:focus-visible::before, .header-contact:focus-visible::before, .global-nav__contact:focus-visible::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.header-contact:hover, .global-nav__contact:hover, .header-contact:focus-visible, .global-nav__contact:focus-visible {
  border-color: #000;
}

/* =========================================================
   Reset / Base
========================================================= */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 959px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.8;
  }
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================================================
   Utility & Layout Wrappers
========================================================= */
.visible-sm {
  display: none;
}
@media (max-width: 640px) {
  .visible-sm {
    display: block;
  }
}

.hidden-sm {
  display: block;
}
@media (max-width: 640px) {
  .hidden-sm {
    display: none;
  }
}

.wrap {
  width: min(var(--content-width), 100%);
  margin-inline: auto;
}

.wrap2 {
  width: min(var(--content-width2), 100%);
  margin-inline: auto;
}

/* =========================================================
   Header / Global Nav
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}
@media (max-width: 640px) {
  .site-header {
    height: 64px;
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 125px;
  width: 100%;
  margin-inline: auto;
  padding: 0 30px;
}
@media (max-width: 959px) {
  .site-header__inner {
    width: calc(100% - 32px);
    min-height: 63px;
    padding: 0 10px;
  }
}
@media (max-width: 640px) {
  .site-header__inner {
    width: 100%;
    min-height: 64px;
    padding: 0 26px;
  }
}

.site-logo {
  font-family: inherit;
  font-size: 21px;
  position: relative;
  border-right: 0;
  padding-right: 74px;
  -webkit-animation: logoFadeInDown 0.7s ease-out 0.15s both;
          animation: logoFadeInDown 0.7s ease-out 0.15s both;
}
@media (max-width: 959px) {
  .site-logo {
    padding-right: 0;
    border-right: none;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .site-logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .site-logo::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: #a2a2a2;
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top center;
            transform-origin: top center;
    -webkit-animation: logoDividerGrow 0.65s ease-out 0.55s both;
            animation: logoDividerGrow 0.65s ease-out 0.55s both;
  }
}
.site-logo img {
  display: block;
  width: 254px;
  height: auto;
}
@media (max-width: 959px) {
  .site-logo img {
    width: 190px;
  }
}
@media (max-width: 640px) {
  .site-logo img {
    width: clamp(128px, 26.67vw, 158px);
  }
}

@media (max-width: 959px) {
  .global-nav {
    position: fixed;
    top: 58px;
    right: 0;
    left: 0;
    display: none;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #eee;
  }
  .global-nav.is-open {
    display: block;
  }
}
@media (max-width: 640px) {
  .global-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: calc(100svh - 64px);
    margin-left: 0;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    -webkit-transition: none;
    transition: none;
  }
  .global-nav.is-open {
    display: block !important;
    position: fixed !important;
    top: 64px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 999;
    width: 100% !important;
    height: calc(100svh - 64px) !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
.global-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 400;
}
@media (min-width: 960px) {
  .global-nav__list {
    -webkit-animation: fadeInDown 0.7s ease-out 0.3s both;
            animation: fadeInDown 0.7s ease-out 0.3s both;
  }
  .global-nav__list a:not(.global-nav__contact) {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .global-nav__list a:not(.global-nav__contact)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -3px;
    left: 0;
    height: 1px;
    background: currentColor;
    pointer-events: none;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transition: -webkit-transform 0.28s ease;
    transition: -webkit-transform 0.28s ease;
    transition: transform 0.28s ease;
    transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  }
  .global-nav__list a:not(.global-nav__contact):hover::after, .global-nav__list a:not(.global-nav__contact):focus-visible::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@media (max-width: 959px) {
  .global-nav__list {
    display: grid;
    gap: 0;
    padding: 14px 24px 24px;
  }
  .global-nav__list a {
    display: block;
    padding: 4px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: center;
    line-height: 1.2;
  }
}
@media (max-width: 640px) {
  .global-nav .global-nav__list {
    display: grid;
    gap: 0;
    width: calc(100% - 64px);
    margin: 0 auto;
    padding: 64px 0 56px;
  }
  .global-nav .global-nav__list li {
    display: block;
    border-bottom: 1px solid #d8d8d8;
  }
  .global-nav .global-nav__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 78px;
    padding: 0 24px;
    font-size: clamp(16px, 2.7vw, 26px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .global-nav .global-nav__list a:active, .global-nav .global-nav__list a:focus {
    background: transparent;
    outline: none;
  }
  .global-nav .global-nav__list a::after {
    content: "›";
    margin-left: 24px;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
  }
}
.global-nav__privacy {
  display: none;
}
@media (max-width: 640px) {
  .global-nav .global-nav__privacy {
    display: block;
  }
}
@media (max-width: 640px) {
  .global-nav__contact-item, .global-nav .global-nav__contact-item {
    display: none !important;
  }
}
.global-nav__contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 112px;
  min-height: 34px;
  padding: 0 18px;
  color: #fff;
  background: #000;
  border: 1px solid transparent;
  border-radius: 999px;
  isolation: isolate;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 959px) {
  .global-nav__contact {
    margin-top: 0;
    padding-inline: 24px;
  }
}

.header-contact {
  display: none;
}
@media (max-width: 959px) {
  .header-contact {
    -webkit-animation: fadeInDown 0.7s ease-out 0.35s both;
            animation: fadeInDown 0.7s ease-out 0.35s both;
  }
}
@media (max-width: 640px) {
  .header-contact {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: clamp(105px, 21.8vw, 140px);
    min-height: 26px;
    margin-left: auto;
    padding: 0 17px;
    color: #fff;
    background: #000;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: clamp(11px, 1.45vw, 14px);
    font-weight: 500;
    -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
}

.nav-toggle {
  display: none;
}
@media (max-width: 959px) {
  .nav-toggle {
    -webkit-animation: fadeInDown 0.7s ease-out 0.5s both;
            animation: fadeInDown 0.7s ease-out 0.5s both;
    display: grid;
    gap: 7px;
    width: 34px;
    padding: 8px 4px;
    background: transparent;
    border: 0;
  }
  .nav-toggle span {
    display: block;
    height: 1px;
    background: #111;
  }
}
@media (max-width: 640px) {
  .nav-toggle {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 9px;
    width: 30px;
    height: 34px;
    margin-left: 15px;
    padding: 0;
  }
  .nav-toggle span {
    width: 100%;
    height: 1px;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  }
  .nav-toggle[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  .nav-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded=true] span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
}

/* =========================================================
   Footer
========================================================= */
.site-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 44px 24px 42px;
  background: #f6f6f6;
  text-align: center;
}
@media (max-width: 640px) {
  .site-footer {
    padding: 42px 22px 32px;
    text-align: left;
  }
}
.site-footer__logo {
  font-size: 18px;
  margin-bottom: 26px;
}
@media (max-width: 959px) {
  .site-footer__logo {
    border: none;
    padding: 0;
  }
}
.site-footer__logo img {
  display: block;
  width: 234px;
  height: auto;
  margin-inline: auto;
}
@media (max-width: 959px) {
  .site-footer__logo img {
    width: 200px;
    margin-inline: 0;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .site-footer__logo img {
    width: 194px;
  }
}

.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px 32px;
  font-size: 13px;
  font-weight: 400;
}
@media (max-width: 959px) {
  .footer-nav ul {
    display: grid;
    gap: 15px;
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .footer-nav ul {
    gap: 14px;
    margin-top: 30px;
  }
}
.footer-nav a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.footer-nav a:hover {
  opacity: 0.55;
}
.footer-nav a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.copyright {
  margin: 24px 0 0;
  font-size: 14px;
}
@media (max-width: 640px) {
  .copyright {
    font-size: 11px;
    text-align: center;
  }
}

/* =========================================================
   Animations
========================================================= */
@-webkit-keyframes logoFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes logoFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes heroCharFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes heroCharFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes visionTitleReveal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 54px, 0);
            transform: translate3d(0, 54px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes visionTitleReveal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 54px, 0);
            transform: translate3d(0, 54px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes visionTextReveal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 36px, 0);
            transform: translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes visionTextReveal {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 36px, 0);
            transform: translate3d(0, 36px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes serviceFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 34px, 0);
            transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes serviceFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 34px, 0);
            transform: translate3d(0, 34px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes serviceImageFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 58px, 0);
            transform: translate3d(0, 58px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes serviceImageFadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 58px, 0);
            transform: translate3d(0, 58px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes logoDividerGrow {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes logoDividerGrow {
  from {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  to {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
/* =========================================================
   Reduced Motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  .site-logo,
  .site-logo::after,
  .global-nav__list,
  .header-contact,
  .nav-toggle,
  .hero__copy .hero__char,
  .hero__copy p:last-child,
  .section-en--vision .vision-title-char,
  .vision__text .section-label,
  .vision__text h2,
  .vision__text p:last-child,
  .service__heading .section-en,
  .service__heading .section-label,
  .service-intro__image,
  .service-intro__text .tag,
  .service-intro__text h2,
  .service-intro__text > p:not(.tag),
  .natural-water__image,
  .natural-water__body .tag,
  .natural-water__body h2,
  .natural-water__body > p:not(.tag),
  .product-card__panel,
  .hero-news {
    -webkit-animation: none;
            animation: none;
  }
  .site-logo::after {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .hero__copy {
    -webkit-transform: var(--hero-copy-transform);
            transform: var(--hero-copy-transform);
  }
  .hero__copy .hero__char,
  .hero__copy p:last-child {
    opacity: 1;
  }
  .section-en--vision .vision-title-char,
  .vision__text .section-label,
  .vision__text h2,
  .vision__text p:last-child,
  .service__heading .section-en,
  .service__heading .section-label,
  .service-intro__image,
  .service-intro__text .tag,
  .service-intro__text h2,
  .service-intro__text > p:not(.tag),
  .natural-water__image,
  .natural-water__body .tag,
  .natural-water__body h2,
  .natural-water__body > p:not(.tag),
  .product-card__panel,
  .hero-news,
  .global-nav__list,
  .header-contact,
  .nav-toggle {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
  .hero-news__item,
  .hero-news__button,
  .hero-news__button::before,
  .section-en--vision .vision-title-char,
  .vision__text .section-label,
  .vision__text h2,
  .vision__text p:last-child,
  .vision__main,
  .vision__photo {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
  }
}
/* =========================================================
   Image Boxes
========================================================= */
.image-box {
  position: relative;
  overflow: hidden;
  background: #e7e7e7 center/cover no-repeat;
}
.image-box::after {
  content: attr(data-name);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.25);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.image-box--hero {
  background-image: url("/img/top/hero.jpg");
  background-size: 111%;
  background-position: 100% 4%;
}
.image-box--vision-main {
  background-image: url("/img/top/vision-water.jpg");
  background-position: 50% 50%;
}
.image-box--vision-sub01 {
  background-image: url("/img/top/vision-life-01.jpg");
}
.image-box--vision-sub02 {
  background-image: url("/img/top/vision-life-02.jpg");
}
@media (max-width: 640px) {
  .image-box--vision-sub02 {
    background-image: url("/img/top/vision-life-02_sp.jpg");
  }
}
.image-box--vision-sub03 {
  background-image: url("/img/top/vision-life-03.jpg");
}
.image-box--service01 {
  background-image: url("/img/top/service01.jpg");
}
@media (max-width: 640px) {
  .image-box--service01 {
    background-image: url("/img/top/service01_sp.jpg");
  }
}
.image-box--product-stilis {
  background-image: url("/img/top/product-stilis.jpg");
}
.image-box--product-stilis.product-card {
  background-image: none;
}
@media (max-width: 640px) {
  .image-box--product-stilis {
    background-image: url("/img/top/product-stilis_sp.jpg");
  }
}
.image-box--product-noah {
  background-image: url("/img/top/product-noah.jpg");
}
.image-box--product-noah.product-card {
  background-image: none;
}
@media (max-width: 640px) {
  .image-box--product-noah {
    background-image: url("/img/top/product-noah_sp.jpg");
  }
}
.image-box--natural {
  background-image: url("/img/top/service02.jpg");
}
@media (max-width: 640px) {
  .image-box--natural {
    background-image: url("/img/top/service02_sp.jpg");
  }
}
.image-box--company {
  background-image: url("/img/top/bnr-company.jpg");
}
.image-box--company.link-panel {
  background-image: none;
}
.image-box--contact {
  background-image: url("/img/top/bnr-contact.jpg");
}
.image-box--contact.link-panel {
  background-image: none;
}

/* =========================================================
   Hero
========================================================= */
.hero h2 {
  font-family: var(--font-tu);
  margin: 0 0 22px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: 1.45;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  letter-spacing: 0.08em;
  font-weight: 500;
  word-break: keep-all;
}
@media (max-width: 959px) {
  .hero h2 {
    font-size: clamp(24px, 6.4vw, 40px);
  }
}
.hero__inner {
  --hero-left-space: clamp(80px, 10.42vw, 150px);
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding-left: var(--hero-left-space);
}
@media (min-width: 1201px) {
  .hero__inner {
    --hero-left-space: min(360px, calc(150px + (100vw - 1200px) / 2));
  }
}
@media (max-width: 959px) {
  .hero__inner {
    width: 100%;
    padding-left: 0;
  }
}
.hero__image {
  width: 100%;
  min-height: 0;
  height: auto;
  aspect-ratio: 1050/680;
  background-color: #eee8e2;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 959px) {
  .hero__image {
    min-height: calc(100svh - 63px);
    background-position: 96% 50%;
  }
}
@media (max-width: 640px) {
  .hero__image {
    min-height: 0;
    height: clamp(440px, 107.47vw, 520px);
    background-position: 95% 50%;
  }
}
.hero__sub {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 22px;
}
@media (max-width: 959px) {
  .hero__sub {
    margin: 0 0 0 12px;
    font-size: 16px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}
.hero__copy {
  --hero-copy-transform: translateY(-48%);
  position: absolute;
  left: calc(var(--hero-left-space) + 7.2%);
  top: 42%;
  -webkit-transform: var(--hero-copy-transform);
          transform: var(--hero-copy-transform);
  max-width: 520px;
}
@media (max-width: 959px) {
  .hero__copy {
    left: 8%;
    top: 72px;
    max-width: none;
    height: 370px;
    --hero-copy-transform: translate(0, 0);
    -webkit-transform: var(--hero-copy-transform);
            transform: var(--hero-copy-transform);
  }
}
@media (max-width: 640px) {
  .hero__copy {
    left: 42px;
    top: 24px;
    max-width: 190px;
    height: auto;
  }
}
.hero__copy .hero__char {
  display: inline-block;
  opacity: 0;
}
.hero__copy.is-text-reveal-ready .hero__char {
  -webkit-animation: heroCharFadeIn 3.5s ease-out both;
          animation: heroCharFadeIn 3.5s ease-out both;
  -webkit-animation-delay: var(--char-delay);
          animation-delay: var(--char-delay);
}
@media (max-width: 959px) {
  .hero__copy h2 {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}
@media (max-width: 640px) {
  .hero__copy h2 {
    margin-top: 22px;
    padding-left: 12px;
    font-size: clamp(24px, 4.53vw, 30px);
    line-height: 1.72;
  }
}
@media (max-width: 959px) {
  .hero__copy h2 .quote-open {
    -webkit-margin-start: -0.5em;
            margin-inline-start: -0.5em;
    -webkit-margin-end: -0.05em;
            margin-inline-end: -0.05em;
  }
}
@media (max-width: 959px) {
  .hero__copy h2 .quote-close {
    -webkit-margin-start: -0.05em;
            margin-inline-start: -0.05em;
    -webkit-margin-end: -0.5em;
            margin-inline-end: -0.5em;
  }
}
.hero__copy p:last-child {
  font-family: var(--font-tu);
  margin: 0;
  font-size: clamp(14px, 1.12vw, 18px);
  line-height: 2;
  font-weight: 400;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media (max-width: 959px) {
  .hero__copy p:last-child {
    max-width: 450px;
    margin-top: 62px;
    font-size: clamp(13px, 3.47vw, 15px);
    line-height: 1.6;
  }
}
@media (max-width: 640px) {
  .hero__copy p:last-child {
    max-width: 190px;
    margin-top: 26px;
    font-size: clamp(10px, 2.67vw, 13px);
    line-height: 1.65;
  }
}
.hero__copy.is-text-reveal-pending p:last-child {
  opacity: 0;
}
.hero__copy.is-text-reveal-ready p:last-child {
  -webkit-animation: heroCharFadeIn 3.5s ease-out 1.2s both;
          animation: heroCharFadeIn 3.5s ease-out 1.2s both;
}

.quote-open,
.quote-close {
  display: inline-block;
}

/* =========================================================
   Hero News Slider
========================================================= */
.hero-news {
  position: absolute;
  left: calc(var(--hero-left-space) + 7.2%);
  bottom: 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(540px, 60%);
  min-height: 82px;
  padding: 6px 14px 6px 22px;
  background: #fff;
  -webkit-box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
          box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  border-radius: 8px;
  -webkit-animation: fadeInUp 1.05s ease-out 1.2s both;
          animation: fadeInUp 1.05s ease-out 1.2s both;
}
@media (max-width: 959px) {
  .hero-news {
    left: 8%;
    right: 8%;
    bottom: 46px;
    width: auto;
    max-width: 460px;
    margin: auto;
    gap: 8px 12px;
    padding: 12px 12px 12px 16px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .hero-news {
    right: 40px;
    left: 40px;
    bottom: 20px;
    min-height: 64px;
    padding: 10px 14px;
    gap: 3px 10px;
    font-size: clamp(10px, 2.67vw, 12px);
    border-radius: 4px;
  }
}
.hero-news__label {
  font-weight: 500;
  padding-right: 15px;
  border-right: 1px solid #a2a2a2;
  line-height: 1;
}
@media (max-width: 640px) {
  .hero-news__label {
    padding-right: 10px;
  }
}
.hero-news__viewport {
  position: relative;
  height: 64px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .hero-news__viewport {
    height: 42px;
  }
}
.hero-news__list {
  position: relative;
  height: 64px;
}
@media (max-width: 640px) {
  .hero-news__list {
    height: 42px;
  }
}
.hero-news__item {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  -ms-flex-line-pack: center;
      align-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, -webkit-transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition: opacity 0.45s ease, transform 0.45s ease, -webkit-transform 0.45s ease;
}
@media (max-width: 640px) {
  .hero-news__item {
    gap: 1px;
  }
}
.hero-news__item.is-active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-news.is-prev .hero-news__item {
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
}
.hero-news.is-prev .hero-news__item.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-news.is-prev .hero-news__item.is-leaving {
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  opacity: 0;
  pointer-events: none;
}
.hero-news.is-next .hero-news__item {
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
}
.hero-news.is-next .hero-news__item.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.hero-news.is-next .hero-news__item.is-leaving {
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
}
.hero-news time {
  display: block;
  color: #777;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}
@media (max-width: 640px) {
  .hero-news time {
    font-size: 10px;
  }
}
.hero-news a {
  overflow: hidden;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-news__controls {
  display: grid;
  gap: 4px;
}
.hero-news__button {
  position: relative;
  display: grid;
  place-items: center;
  width: 28px;
  height: 24px;
  padding: 0;
  color: #111;
  background: transparent;
  border: 0px solid #d8d8d8;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
@media (max-width: 640px) {
  .hero-news__button {
    width: 24px;
    height: 22px;
  }
}
.hero-news__button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.hero-news__button:first-child::before {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.hero-news__button:first-child:hover::before, .hero-news__button:first-child:focus-visible::before {
  -webkit-transform: translateY(-1px) rotate(45deg);
          transform: translateY(-1px) rotate(45deg);
}
.hero-news__button:first-child:disabled::before, .hero-news__button:first-child:disabled:hover::before, .hero-news__button:first-child:disabled:focus-visible::before {
  -webkit-transform: translateY(2px) rotate(45deg);
          transform: translateY(2px) rotate(45deg);
}
.hero-news__button:last-child::before {
  -webkit-transform: translateY(-2px) rotate(225deg);
          transform: translateY(-2px) rotate(225deg);
}
.hero-news__button:last-child:hover::before, .hero-news__button:last-child:focus-visible::before {
  -webkit-transform: translateY(1px) rotate(225deg);
          transform: translateY(1px) rotate(225deg);
}
.hero-news__button:last-child:disabled::before, .hero-news__button:last-child:disabled:hover::before, .hero-news__button:last-child:disabled:focus-visible::before {
  -webkit-transform: translateY(-2px) rotate(225deg);
          transform: translateY(-2px) rotate(225deg);
}
.hero-news__button:disabled {
  color: #b8b8b8;
  border-color: #e5e5e5;
  cursor: default;
  opacity: 0.65;
}
.hero-news__button:disabled:hover::before, .hero-news__button:disabled:focus-visible::before {
  -webkit-transition: none;
  transition: none;
}

/* =========================================================
   Vision Background
========================================================= */
.section-water-bg {
  position: relative;
  overflow: hidden;
}
.section-water-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/top/vision_bg.jpg") no-repeat;
  opacity: 0.8;
  pointer-events: none;
  background-position: top right;
  background-size: contain;
}

/* =========================================================
   Vision
========================================================= */
.vision {
  padding: 110px 0 135px;
}
@media (max-width: 959px) {
  .vision {
    padding: 76px 0 110px;
  }
}
@media (max-width: 640px) {
  .vision {
    padding: 8px 0 74px;
  }
}
@media (min-width: 1201px) {
  .vision {
    padding-top: clamp(110px, 9.17vw, 147px);
    padding-bottom: clamp(135px, 11.25vw, 180px);
  }
}
.vision.section-water-bg {
  overflow: visible;
}
.vision.is-revealed .section-en--vision .vision-title-char {
  -webkit-animation: visionTitleReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
          animation: visionTitleReveal 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
  -webkit-animation-delay: calc(var(--vision-char-index) * 0.045s);
          animation-delay: calc(var(--vision-char-index) * 0.045s);
}
.vision.is-revealed .vision__text .section-label,
.vision.is-revealed .vision__text h2,
.vision.is-revealed .vision__text p:last-child {
  -webkit-animation: visionTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
          animation: visionTextReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.vision.is-revealed .vision__text .section-label {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}
.vision.is-revealed .vision__text h2 {
  -webkit-animation-delay: 0.42s;
          animation-delay: 0.42s;
}
.vision.is-revealed .vision__text p:last-child {
  -webkit-animation-delay: 0.56s;
          animation-delay: 0.56s;
}
.vision__inner {
  position: relative;
  display: grid;
  grid-template-columns: 35% 1fr;
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
  width: min(1200px, 100% - 0px);
  margin-inline: unset;
  margin: auto;
}
@media (max-width: 959px) {
  .vision__inner {
    display: grid;
    grid-template-columns: 38% 1fr;
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    row-gap: 22px;
    width: calc(100% - 0px);
  }
}
@media (max-width: 640px) {
  .vision__inner {
    grid-template-columns: 26.5% 1fr;
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
    row-gap: 18px;
  }
}
@media (min-width: 1201px) {
  .vision__inner {
    width: 100%;
    grid-template-columns: clamp(420px, 35vw, 560px) minmax(0, 1040px);
    -webkit-column-gap: clamp(90px, 7.5vw, 120px);
       -moz-column-gap: clamp(90px, 7.5vw, 120px);
            column-gap: clamp(90px, 7.5vw, 120px);
  }
}
@media (min-width: 1601px) {
  .vision__inner {
    width: 1600px;
    margin-inline: auto;
  }
}
.vision__main {
  width: min(420px, 100%);
  aspect-ratio: 3/4;
  margin-top: 110px;
  background-size: cover;
  background-position: 50% 50%;
  will-change: transform;
}
@media (max-width: 959px) {
  .vision__main {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    grid-column: 2;
    align-self: end;
    width: 100%;
    aspect-ratio: 4/3;
    margin-top: 0;
  }
}
@media (max-width: 640px) {
  .vision__main {
    aspect-ratio: 1.28/0.8;
    -ms-flex-item-align: center;
        align-self: center;
    top: 44%;
  }
}
@media (min-width: 1201px) {
  .vision__main {
    width: 100%;
    margin-top: clamp(110px, 9.17vw, 147px);
  }
}
.vision__text {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding-top: 0px;
  top: -40px;
}
@media (max-width: 959px) {
  .vision__text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    grid-column: 1/-1;
    width: 86%;
    margin-left: auto;
    padding-top: 0;
  }
}
@media (max-width: 640px) {
  .vision__text {
    width: calc(100% - 88px);
    margin: 0 auto;
    top: 16%;
  }
}
@media (min-width: 641px) and (max-width: 959px) {
  .vision__text {
    width: min(640px, 100% - 88px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1201px) {
  .vision__text {
    max-width: clamp(600px, 50vw, 720px);
    padding-left: clamp(0px, (100vw - 1200px) * 0.18, 72px);
    top: clamp(-54px, -3.33vw, -40px);
  }
}
.vision__text .section-label,
.vision__text h2,
.vision__text p:last-child {
  opacity: 0;
  -webkit-transform: translate3d(0, 36px, 0);
          transform: translate3d(0, 36px, 0);
  will-change: opacity, transform;
}
.vision__text h2 {
  font-family: var(--font-tu);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-weight: 600;
  margin: 80px 0 24px;
  font-size: clamp(30px, 3.66vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media (max-width: 959px) {
  .vision__text h2 {
    margin: 50px 0 20px;
    font-size: clamp(28px, 3.12vw, 32px);
    line-height: 1.65;
  }
}
@media (max-width: 640px) {
  .vision__text h2 {
    margin: 30px 0 10px;
    font-size: clamp(25px, 3.12vw, 28px);
    line-height: 1.7;
    font-weight: 500;
  }
}
@media (min-width: 1201px) {
  .vision__text h2 {
    font-size: clamp(40px, 3.29vw, 53px);
  }
}
.vision__text p:last-child {
  font-size: 14px;
  line-height: 2.75;
}
@media (max-width: 959px) {
  .vision__text p:last-child {
    font-size: clamp(15px, 1.875vw, 18px);
  }
}
@media (max-width: 640px) {
  .vision__text p:last-child {
    font-size: clamp(15px, 2vw, 20px);
  }
}
@media (min-width: 1201px) {
  .vision__text p:last-child {
    font-size: clamp(14px, 1.2vw, 19px);
  }
}
.vision__photo {
  position: relative;
  z-index: 2;
  -webkit-box-shadow: 0 18px 35px rgba(0, 0, 0, 0.04);
          box-shadow: 0 18px 35px rgba(0, 0, 0, 0.04);
  will-change: transform;
}
.vision__photo--01 {
  width: clamp(180px, 18.3vw, 220px);
  aspect-ratio: 1/1;
  left: 46.5%;
  bottom: clamp(-150px, -12.5vw, -80px);
  background-position: 52% 50%;
}
@media (max-width: 959px) {
  .vision__photo--01 {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    grid-column: 1;
    align-self: end;
    width: 62%;
    top: -28%;
  }
}
@media (max-width: 640px) {
  .vision__photo--01 {
    justify-self: end;
    width: 100%;
    top: 0;
    left: 114%;
  }
}
@media (min-width: 1201px) {
  .vision__photo--01 {
    left: 46.5%;
    bottom: clamp(-200px, -12.5vw, -150px);
    width: clamp(220px, 18.3vw, 293px);
  }
}
.vision__photo--02 {
  width: clamp(200px, 21.2vw, 254px);
  aspect-ratio: 0.65/1;
  left: 21.5%;
  bottom: clamp(-150px, -10vw, -120px);
  background-position: 50% 50%;
}
@media (max-width: 959px) {
  .vision__photo--02 {
    position: relative;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    grid-column: 1;
    align-self: end;
    width: 57%;
    aspect-ratio: 0.542/1;
    top: 28%;
    left: 0;
  }
}
@media (max-width: 640px) {
  .vision__photo--02 {
    justify-self: start;
    width: 78%;
    top: 69%;
    left: 0;
  }
}
@media (min-width: 1201px) {
  .vision__photo--02 {
    left: 21.5%;
    bottom: clamp(-160px, -10vw, -120px);
    width: clamp(254px, 21.2vw, 339px);
  }
}
.vision__photo--03 {
  position: absolute;
  width: clamp(180px, 18.3vw, 220px);
  aspect-ratio: 1/1;
  right: 0%;
  top: clamp(560px, 51.6vw, 620px);
  background-position: 50% 50%;
}
@media (max-width: 959px) {
  .vision__photo--03 {
    position: static;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    grid-column: 2;
    justify-self: end;
    width: 38%;
    margin-top: 34px;
  }
}
@media (max-width: 640px) {
  .vision__photo--03 {
    position: relative;
    width: 37%;
    top: 36px;
  }
}
@media (min-width: 1201px) {
  .vision__photo--03 {
    top: clamp(620px, 51.6vw, 826px);
    width: clamp(220px, 18.3vw, 293px);
  }
}

/* =========================================================
   Shared Components (Typography & Animation Wrappers)
========================================================= */
.section-en {
  margin: 0;
  color: rgba(0, 0, 0, 0.075);
  font-family: var(--font-section-en);
  font-size: clamp(94px, 10.833vw, 130px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}
@media (max-width: 640px) {
  .section-en {
    margin-bottom: 5px;
    font-size: clamp(63px, 9.3vw, 90px);
    letter-spacing: 0;
  }
}
.section-en--vision {
  position: relative;
  margin-bottom: 24px;
}
@media (max-width: 959px) {
  .section-en--vision {
    position: static;
    grid-column: 1/-1;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 8px;
  }
}
@media (max-width: 640px) {
  .section-en--vision {
    margin-top: 2px;
    white-space: nowrap;
    font-size: clamp(56px, 9.3vw, 90px);
  }
}
@media (min-width: 1201px) {
  .section-en--vision {
    font-size: clamp(117px, 9.75vw, 156px);
    white-space: nowrap;
  }
}
.section-en--vision .vision-title-char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate3d(0, 54px, 0);
          transform: translate3d(0, 54px, 0);
  will-change: opacity, transform;
}

.section-label {
  margin: 0 0 32px;
  font-size: clamp(16px, 1.833vw, 22px);
  font-weight: 500;
}
@media (max-width: 959px) {
  .section-label {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  .section-label {
    margin-bottom: 18px;
    font-size: clamp(11px, 1.67vw, 15px);
  }
}

.service {
  padding: 96px 0 0;
  scroll-margin-top: 145px;
}
@media (max-width: 959px) {
  .service {
    scroll-margin-top: 82px;
    padding-top: 72px;
  }
}
@media (max-width: 640px) {
  .service {
    padding-top: 126px;
  }
}
.service h2 {
  font-size: clamp(28.8px, 3vw, 36px);
  line-height: 1.4;
  letter-spacing: 0em;
  margin: 20px 0 30px;
}
@media (max-width: 959px) {
  .service h2 {
    font-size: clamp(28px, 3.12vw, 32px);
    line-height: 1.65;
    margin: 30px 0 20px;
  }
}
@media (max-width: 640px) {
  .service h2 {
    margin: 30px 0 10px;
    font-size: clamp(25px, 3.12vw, 28px);
    line-height: 1.7;
    font-weight: 500;
  }
}
.service p {
  font-size: clamp(16px, 1.66vw, 19px);
  font-weight: 500;
}
@media (max-width: 640px) {
  .service p {
    font-size: clamp(15px, 2vw, 20px);
    line-height: 2;
  }
}
@media (max-width: 959px) {
  .service p.tag {
    min-width: 230px;
    margin: auto;
    margin-bottom: 14px;
    padding: 3px 14px 4px;
    font-size: clamp(14px, 1.875vw, 18px);
  }
}
.service p.tag {
  display: table;
}
.service {
  /* -----------------------------------------
     Service Heading
  ----------------------------------------- */
}
.service__heading {
  margin-bottom: 32px;
}
@media (max-width: 959px) {
  .service__heading {
    margin-bottom: 24px;
  }
}
@media (max-width: 640px) {
  .service__heading {
    width: calc(100% - 44px);
    margin-bottom: 60px;
    padding-left: 7%;
  }
}
@media (min-width: 1201px) {
  .service__heading {
    width: 100%;
  }
}
@media (min-width: 1601px) {
  .service__heading {
    width: 1600px;
    margin-inline: auto;
  }
}
.service__heading .section-en {
  font-size: clamp(74px, 8.6vw, 104px);
  font-weight: 400;
  margin-bottom: 10px;
  padding-left: 100px;
}
@media (max-width: 640px) {
  .service__heading .section-en {
    padding-left: 0;
    margin-bottom: 6px;
    font-size: clamp(48px, 7.5vw, 72px);
    line-height: 1;
  }
}
@media (min-width: 1201px) {
  .service__heading .section-en {
    font-size: clamp(104px, 8.6vw, 138px);
    padding-left: clamp(100px, 8.33vw, 133px);
  }
}
.service__heading .section-label {
  padding-left: 100px;
  font-size: clamp(11px, 1.66vw, 16px);
}
@media (max-width: 640px) {
  .service__heading .section-label {
    padding-left: 0;
  }
}
@media (min-width: 1201px) {
  .service__heading .section-label {
    padding-left: clamp(100px, 8.33vw, 133px);
  }
}
.service__heading--right {
  width: min(1200px, 100%);
  display: block;
}
@media (max-width: 959px) {
  .service__heading--right {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .service__heading--right {
    width: calc(100% - 44px);
    margin-bottom: 60px;
    padding-right: 7%;
  }
}
.service__heading--right .section-en {
  font-size: clamp(104px, 8.6vw, 138px);
  padding-right: clamp(100px, 8.33vw, 133px);
  padding-left: 0;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .service__heading--right .section-en {
    font-size: clamp(74px, 8.6vw, 104px);
    padding-right: 100px;
    text-align: right;
  }
}
@media (max-width: 640px) {
  .service__heading--right .section-en {
    font-size: clamp(48px, 7.5vw, 72px);
    padding-right: 0;
  }
}
.service__heading--right .section-label {
  padding-right: clamp(100px, 8.33vw, 133px);
  padding-left: 0;
}
@media (max-width: 959px) {
  .service__heading--right .section-label {
    padding-right: 100px;
    text-align: right;
  }
}
@media (max-width: 640px) {
  .service__heading--right .section-label {
    padding-right: 0;
  }
}
.service__heading__wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin-left: 50%;
}
@media (max-width: 959px) {
  .service__heading__wrap {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }
}
.service__heading .section-en,
.service__heading .section-label {
  will-change: opacity, transform;
}
.service__heading.is-reveal-ready .section-en,
.service__heading.is-reveal-ready .section-label {
  opacity: 0;
  -webkit-transform: translate3d(0, 34px, 0);
          transform: translate3d(0, 34px, 0);
}
.service__heading.is-revealed .section-en,
.service__heading.is-revealed .section-label {
  -webkit-animation: serviceFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: serviceFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.service__heading.is-revealed .section-label {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}

.service-intro__image,
.service-intro__text .tag,
.service-intro__text h2,
.service-intro__text > p:not(.tag),
.natural-water__image,
.natural-water__body .tag,
.natural-water__body h2,
.natural-water__body > p:not(.tag),
.product-card__panel {
  will-change: opacity, transform;
}

.is-reveal-ready.service-intro__text .tag, .is-reveal-ready.service-intro__text h2, .is-reveal-ready.service-intro__text > p:not(.tag), .is-reveal-ready.natural-water__body .tag, .is-reveal-ready.natural-water__body h2, .is-reveal-ready.natural-water__body > p:not(.tag), .is-reveal-ready .product-card__panel {
  opacity: 0;
  -webkit-transform: translate3d(0, 34px, 0);
          transform: translate3d(0, 34px, 0);
}
.is-reveal-ready.service-intro__image, .is-reveal-ready.natural-water__image {
  opacity: 0;
  -webkit-transform: translate3d(0, 58px, 0);
          transform: translate3d(0, 58px, 0);
}

.is-revealed.service-intro__text .tag, .is-revealed.service-intro__text h2, .is-revealed.service-intro__text > p:not(.tag), .is-revealed.natural-water__body .tag, .is-revealed.natural-water__body h2, .is-revealed.natural-water__body > p:not(.tag), .is-revealed .product-card__panel {
  -webkit-animation: serviceFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: serviceFadeInUp 1s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.is-revealed.service-intro__image, .is-revealed.natural-water__image {
  -webkit-animation: serviceImageFadeInUp 1.05s cubic-bezier(0.19, 1, 0.22, 1) both;
          animation: serviceImageFadeInUp 1.05s cubic-bezier(0.19, 1, 0.22, 1) both;
}
.is-revealed.service-intro__text h2 {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.is-revealed.natural-water__body h2 {
  -webkit-animation-delay: 0.14s;
          animation-delay: 0.14s;
}
.is-revealed .product-card__panel {
  -webkit-animation-delay: 0.22s;
          animation-delay: 0.22s;
}
.is-revealed.service-intro__text > p:not(.tag), .is-revealed.natural-water__body > p:not(.tag) {
  -webkit-animation-delay: 0.28s;
          animation-delay: 0.28s;
}

/* =========================================================
   Service 01
========================================================= */
.service-contents {
  margin-top: 80px;
  background: var(--color-gray-panel);
}
@media (max-width: 959px) {
  .service-contents {
    margin-top: 100px;
  }
}
@media (max-width: 640px) {
  .service-contents {
    margin-top: 42px;
  }
}

.service-intro__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 48%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 410px;
}
@media (max-width: 959px) {
  .service-intro__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    min-height: auto;
  }
}
@media (min-width: 1201px) {
  .service-intro__inner {
    width: 100%;
    grid-template-columns: 1fr clamp(576px, 48vw, 768px);
    min-height: clamp(410px, 34.17vw, 547px);
  }
}
@media (min-width: 1601px) {
  .service-intro__inner {
    width: 1600px;
    margin-inline: auto;
  }
}
.service-intro__text {
  padding: 80px 0 0px 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 959px) {
  .service-intro__text {
    width: calc(100% - 200px);
    padding: 40px 0 50px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .service-intro__text {
    width: calc(100% - 88px);
    padding: 18px 0 42px;
  }
}
@media (min-width: 1201px) {
  .service-intro__text {
    padding-top: clamp(80px, 6.67vw, 107px);
    padding-left: clamp(100px, 8.33vw, 133px);
  }
}
.service-intro__image {
  position: absolute;
  aspect-ratio: 1.2/1;
  width: clamp(400px, 44.8vw, 538px);
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 410px;
  top: -50px;
  right: 0;
}
@media (max-width: 959px) {
  .service-intro__image {
    position: relative;
    width: calc(100% - 100px);
    min-height: 0;
    margin: 0 0 0 auto;
    aspect-ratio: 331/210;
    background-size: cover;
    background-position: center center;
    top: -32px;
  }
}
@media (max-width: 640px) {
  .service-intro__image {
    width: calc(100% - 44px);
  }
}
@media (min-width: 1201px) {
  .service-intro__image {
    width: clamp(538px, 44.8vw, 717px);
    min-height: clamp(410px, 34.17vw, 547px);
    top: clamp(-67px, -4.17vw, -50px);
  }
}

.tag {
  display: inline-block;
  min-width: 320px;
  margin: 0 0 24px;
  padding: 4px 16px;
  color: #fff;
  background: #777;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 959px) {
  .tag {
    min-width: 170px;
    font-size: 11px;
  }
}

/* =========================================================
   Product Cards
========================================================= */
.product-list {
  padding: 90px 0 110px;
}
@media (max-width: 959px) {
  .product-list {
    width: calc(100% - 200px);
    padding: 0 0 80px;
  }
}
@media (max-width: 640px) {
  .product-list {
    width: calc(100% - 88px);
    padding: 0px 0 58px;
  }
}

.product-card {
  position: relative;
  width: min(1000px, 100%);
  min-height: 800px;
  margin-inline: auto;
  padding: 0;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  --product-bg-size: cover;
  --product-bg-position: center center;
}
@media (max-width: 959px) {
  .product-card {
    width: 100%;
    min-height: 0;
    display: block;
    padding: 0 0px 34px;
    background-color: #f1f1f1;
    background-size: 100% auto;
    background-position: center top;
    --product-bg-size: 100% auto;
    --product-bg-position: center top;
  }
}
@media (max-width: 640px) {
  .product-card {
    padding: 0 0 0px;
  }
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: var(--product-bg-position);
  background-size: var(--product-bg-size);
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.product-card:hover::before, .product-card:focus-within::before {
  -webkit-transform: scale(1.045);
          transform: scale(1.045);
}
.product-card + .product-card {
  margin-top: 100px;
}
@media (max-width: 959px) {
  .product-card + .product-card {
    margin-top: 34px;
  }
}
@media (max-width: 640px) {
  .product-card + .product-card {
    margin-top: 56px;
  }
}
.product-card__panel {
  position: absolute;
  top: 120px;
  width: min(334px, 100% - 44px);
  padding: 44px 30px 38px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  -webkit-box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
          box-shadow: 0 14px 35px rgba(0, 0, 0, 0.05);
  z-index: 1;
}
@media (max-width: 959px) {
  .product-card__panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin: 80% auto 0;
    padding: 30px 24px 28px;
    background-color: #fff;
  }
}
@media (max-width: 640px) {
  .product-card__panel {
    padding: 24px 22px 22px;
  }
}
.product-card__panel > p:not(.product-card__brand) {
  margin: 0 0 30px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-family: var(--font-tu);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media (max-width: 959px) {
  .product-card__panel > p:not(.product-card__brand) {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.55;
  }
}
@media (max-width: 640px) {
  .product-card__panel > p:not(.product-card__brand) {
    margin-bottom: 18px;
    font-size: clamp(16px, 4.27vw, 18px);
    line-height: 1.45;
  }
}
.product-card__brand {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 959px) {
  .product-card__brand {
    margin-bottom: 14px;
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .product-card__brand {
    margin-bottom: 10px;
    font-size: 11px;
  }
}
.product-card h3 {
  margin: 0 0 28px;
  font-family: Georgia, serif;
  font-size: 46px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 959px) {
  .product-card h3 {
    font-size: 38px;
  }
}
.product-card h3 span {
  font-family: var(--font-base);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.product-card h3.product-logo {
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  .product-card h3.product-logo {
    margin-bottom: 22px;
  }
}
@media (max-width: 640px) {
  .product-card h3.product-logo {
    margin-bottom: 18px;
  }
}
.product-card h3.product-logo span {
  display: none;
}
.product-card--dark {
  background-position: 50% 50%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 8.8%;
}
@media (max-width: 959px) {
  .product-card--dark {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.product-card--dark::before {
  background-image: url("/img/top/product-stilis.jpg");
}
.product-card--dark .product-card__panel {
  right: clamp(82px, 15.6%, 156px);
}
@media (max-width: 959px) {
  .product-card--dark .product-card__panel {
    right: auto;
    margin-top: 312px;
  }
}
.product-card--dark .product-logo img {
  width: 205px;
}
@media (max-width: 959px) {
  .product-card--dark .product-logo img {
    width: 190px;
  }
}
@media (max-width: 640px) {
  .product-card--dark .product-logo img {
    width: clamp(150px, 40vw, 190px);
  }
}
.product-card--dark .product-btn {
  right: clamp(82px, 15.6%, 156px);
  width: min(334px, 100% - 44px);
  text-align: center;
}
@media (max-width: 959px) {
  .product-card--dark .product-btn {
    position: static;
    width: 100%;
    margin: 24px auto 0;
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  .product-card--dark .product-btn {
    margin-top: 18px;
  }
}
.product-card--light {
  background-position: 50% 50%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 8.4%;
}
@media (max-width: 959px) {
  .product-card--light {
    padding-left: 22px;
    padding-right: 22px;
  }
}
.product-card--light::before {
  background-image: url("/img/top/product-noah.jpg");
}
.product-card--light .product-card__panel {
  left: clamp(82px, 15.6%, 156px);
}
@media (max-width: 959px) {
  .product-card--light .product-card__panel {
    left: auto;
  }
}
.product-card--light .product-logo img {
  width: 220px;
}
@media (max-width: 959px) {
  .product-card--light .product-logo img {
    width: 205px;
  }
}
@media (max-width: 640px) {
  .product-card--light .product-logo img {
    width: clamp(160px, 42.67vw, 205px);
  }
}
.product-card--light .product-btn {
  left: clamp(82px, 15.6%, 156px);
  width: min(334px, 100% - 44px);
  text-align: center;
}
@media (max-width: 959px) {
  .product-card--light .product-btn {
    position: static;
    width: 100%;
    margin: 24px auto 0;
    max-width: 300px;
  }
}
@media (max-width: 640px) {
  .product-card--light .product-btn {
    margin-top: 18px;
  }
}

.product-logo {
  margin: 0 0 20px;
  font-family: inherit;
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
}
.product-logo img {
  display: block;
  height: auto;
  margin-inline: auto;
}

.point {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 6px 10px 7px;
  color: #fff;
  background: #777;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.04em;
  font-family: var(--font-tu);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media (max-width: 959px) {
  .point {
    max-width: 300px;
    padding: 5px 8px 6px;
    font-size: 13px;
  }
}
@media (max-width: 640px) {
  .point {
    font-size: clamp(11px, 2.93vw, 13px);
  }
}
.point + .point {
  margin-top: 8px;
}
.point span {
  font-size: 13px;
}

.caution-text {
  margin-top: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (max-width: 959px) {
  .caution-text {
    margin-top: 16px;
    font-size: 10px;
  }
}

.product-btn {
  position: absolute;
  bottom: 62px;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 250px;
  min-height: 76px;
  padding: 0 42px 0 48px;
  color: #fff;
  background: #000;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 500;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
  font-family: var(--font-tu);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media (max-width: 959px) {
  .btn {
    width: 100%;
    min-width: min(250px, 100%);
    min-height: 58px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .btn {
    min-width: 220px;
    min-height: 42px;
    padding: 0 32px;
    font-size: clamp(13px, 3.47vw, 15px);
  }
}
.btn::before {
  border-radius: inherit;
}
.btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
  z-index: 1;
}
@media (max-width: 959px) {
  .btn::after {
    width: 10px;
    height: 10px;
  }
}
.btn:hover::after {
  -webkit-transform: translateX(6px) rotate(45deg);
          transform: translateX(6px) rotate(45deg);
}

/* =========================================================
   Service 02 / Natural Water
========================================================= */
.service--02 {
  padding-top: 200px;
  background: #fff;
}
@media (max-width: 959px) {
  .service--02 {
    padding-top: 140px;
  }
}
@media (max-width: 640px) {
  .service--02 {
    padding-top: 38px;
  }
}
.service--02 .service__heading {
  margin-bottom: 60px;
}
@media (max-width: 959px) {
  .service--02 .service__heading {
    margin-bottom: 15px;
    padding-left: 0;
  }
}
@media (max-width: 640px) {
  .service--02 .service-contents {
    margin-top: 60px;
  }
}

.natural-water {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: min(1200px, 100%);
  min-height: 520px;
  margin-inline: auto;
  padding-bottom: 70px;
  background: var(--color-gray-panel);
}
@media (max-width: 959px) {
  .natural-water {
    display: block;
    width: 100%;
    min-height: 0;
    padding-bottom: 50px;
  }
}
@media (max-width: 640px) {
  .natural-water {
    padding-bottom: 60px;
  }
}
@media (min-width: 1201px) {
  .natural-water {
    width: 100%;
    grid-template-columns: 50% 50%;
    min-height: clamp(520px, 43.33vw, 693px);
  }
}
@media (min-width: 1601px) {
  .natural-water {
    width: 1600px;
    margin-inline: auto;
  }
}
.natural-water__image {
  width: min(538px, 100%);
  aspect-ratio: 1.2/1;
  min-height: 0;
  background-size: cover;
  background-position: 50% 50%;
  top: -50px;
}
@media (max-width: 959px) {
  .natural-water__image {
    position: relative;
    width: calc(100% - 100px);
    min-height: 0;
    margin: 0;
    aspect-ratio: 331/210;
    background-size: cover;
    background-position: center center;
    top: -50px;
    left: 0;
  }
}
@media (max-width: 640px) {
  .natural-water__image {
    width: calc(100% - 44px);
    margin: 0 auto 0 0;
    top: -40px;
  }
}
@media (min-width: 1201px) {
  .natural-water__image {
    width: clamp(538px, 44.8vw, 717px);
    top: clamp(-67px, -4.17vw, -50px);
  }
}
.natural-water__body {
  width: min(430px, 100% - 90px);
  max-width: 430px;
  padding: 82px 0 0;
  -ms-flex-item-align: start;
      align-self: start;
  justify-self: center;
}
@media (max-width: 959px) {
  .natural-water__body {
    width: calc(100% - 200px);
    max-width: none;
    padding: 42px 22px 0;
  }
}
@media (max-width: 640px) {
  .natural-water__body {
    width: calc(100% - 88px);
    padding: 0px 0 0;
    margin: 0 auto;
  }
}
@media (min-width: 1201px) {
  .natural-water__body {
    padding-top: clamp(82px, 6.83vw, 109px);
  }
}
@media (max-width: 959px) {
  .natural-water__body .btn {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-top: 28px;
  }
}
.natural-water__body .btn:hover::after {
  -webkit-transform: translateX(6px) rotate(45deg);
          transform: translateX(6px) rotate(45deg);
}
.natural-water .product-btn {
  grid-column: 1/-1;
  grid-row: 2;
  position: static;
  width: 100%;
  margin-top: 48px;
  padding-bottom: 0px;
  text-align: center;
}
@media (max-width: 640px) {
  .natural-water .product-btn {
    margin: auto;
    margin-top: 24px;
    width: calc(100% - 88px);
  }
}

/* =========================================================
   Link Area Background
========================================================= */
.section-link-bg {
  position: relative;
  overflow: hidden;
}
.section-link-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/top/link_bg.png") no-repeat;
  background-position: top left;
  background-size: contain;
  opacity: 0.8;
  pointer-events: none;
}

/* =========================================================
   Link Area
========================================================= */
.link-area {
  padding: 150px 0 100px;
}
@media (max-width: 959px) {
  .link-area {
    padding: 64px 0;
  }
}
@media (max-width: 640px) {
  .link-area {
    padding: 62px 0;
  }
}
.link-area__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  max-width: 896px;
}
@media (max-width: 959px) {
  .link-area__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    width: calc(100% - 100px);
  }
}
@media (max-width: 640px) {
  .link-area__inner {
    width: calc(100% - 88px);
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    gap: 50px;
  }
}
@media (min-width: 641px) and (max-width: 959px) {
  .link-area__inner {
    width: min(640px, 100% - 88px);
    margin-right: auto;
    margin-left: auto;
  }
}

.link-panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 190px;
  color: #fff;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
@media (max-width: 959px) {
  .link-panel {
    min-height: 126px;
    max-width: 400px;
    margin: auto;
  }
}
@media (max-width: 640px) {
  .link-panel {
    width: 100%;
    max-width: 100%;
    min-height: 100px;
  }
}
@media (min-width: 641px) and (max-width: 959px) {
  .link-panel {
    width: 100%;
  }
}
.link-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  z-index: -3;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 1.25s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.link-panel.image-box--company::before {
  background-image: url("/img/top/bnr-company.jpg");
}
.link-panel.image-box--contact::before {
  background-image: url("/img/top/bnr-contact.jpg");
}
.link-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: -1;
}
.link-panel span,
.link-panel small {
  position: relative;
  z-index: 1;
}
.link-panel__hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  pointer-events: none;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-transition: -webkit-transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86), -webkit-transform 0.65s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 0;
}
.link-panel:hover::before, .link-panel:focus-visible::before {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.link-panel:hover .link-panel__hover, .link-panel:focus-visible .link-panel__hover {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.link-panel:hover small::after, .link-panel:focus-visible small::after {
  -webkit-transform: translateX(4px) rotate(45deg);
          transform: translateX(4px) rotate(45deg);
}
.link-panel span {
  font-family: var(--font-section-en);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 300;
}
@media (max-width: 640px) {
  .link-panel span {
    font-size: 22px;
  }
}
.link-panel small {
  display: block;
  margin-top: 0px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .link-panel small {
    font-size: 11px;
  }
}
.link-panel small::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  vertical-align: 1px;
  -webkit-transition: -webkit-transform 0.28s ease;
  transition: -webkit-transform 0.28s ease;
  transition: transform 0.28s ease;
  transition: transform 0.28s ease, -webkit-transform 0.28s ease;
}
@media (max-width: 640px) {
  .link-panel small::after {
    width: 5px;
    height: 5px;
    margin-left: 4px;
  }
}

/* =========================================================
   Responsive: Header / Nav / Footer (Tablet Fine Tuning)
========================================================= */
@media (min-width: 960px) and (max-width: 1200px) {
  .site-logo img {
    width: clamp(203px, 203px + (100vw - 960px) * 0.2125, 254px);
  }
}
@media (min-width: 641px) and (max-width: 959px) {
  .site-header__inner {
    width: 100%;
    min-height: 64px;
    padding: 0 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-right: 0;
    border-right: 0;
  }
  .site-logo img {
    width: clamp(158px, 22vw, 210px);
  }
  .header-contact {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: clamp(140px, 1.6vw, 156px);
    min-height: 34px;
    margin-left: auto;
    padding: 0 22px;
    color: #fff;
    background: #000;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: clamp(14px, 1.56vw, 15px);
    font-weight: 500;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    z-index: 0;
    -webkit-transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86), border-color 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  }
  .nav-toggle {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 34px;
    height: 34px;
    margin-left: 28px;
    padding: 0;
    gap: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: #111;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  }
  .nav-toggle[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded=true] span:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
  .global-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: calc(100svh - 64px);
    margin-left: 0;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: #fff;
    -webkit-transition: none;
    transition: none;
  }
  .global-nav.is-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .global-nav .global-nav__list {
    display: grid;
    gap: 0;
    width: min(640px, 100% - 88px);
    margin: 0 auto;
    padding: 72px 0 56px;
  }
  .global-nav .global-nav__list li {
    display: block;
    border-bottom: 1px solid #d8d8d8;
  }
  .global-nav .global-nav__privacy {
    display: block;
  }
  .global-nav .global-nav__contact-item {
    display: none !important;
  }
  .global-nav .global-nav__list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 82px;
    padding: 0 24px;
    font-size: clamp(20px, 2.7vw, 26px);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .global-nav .global-nav__list a:active, .global-nav .global-nav__list a:focus {
    background: transparent;
    outline: none;
  }
  .global-nav .global-nav__list a::after {
    content: "›";
    margin-left: 24px;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
  }
}