@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;
  }
}
/* =========================================================
   Contact Page
========================================================= */
.contact-page {
  padding: 30px 0 80px;
  background: #f6f6f6;
}
@media (max-width: 959px) {
  .contact-page {
    padding: 24px 0 64px;
  }
}
@media (max-width: 640px) {
  .contact-page {
    padding: 22px 0 48px;
  }
}

.contact-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: min(1000px, 100% - 64px);
  margin: 0 auto;
  color: #555;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .contact-breadcrumb {
    width: calc(100% - 44px);
    font-size: 11px;
  }
}

.contact-card {
  width: min(1000px, 100% - 64px);
  margin: 68px auto 0;
  padding: 70px 100px 84px;
  background: #fff;
}
@media (max-width: 959px) {
  .contact-card {
    width: calc(100% - 64px);
    margin-top: 48px;
    padding: 54px 56px 70px;
  }
}
@media (max-width: 640px) {
  .contact-card {
    width: calc(100% - 44px);
    margin-top: 34px;
    padding: 38px 24px 54px;
  }
}

.contact-header {
  position: relative;
  margin-bottom: 62px;
  padding-bottom: 36px;
  text-align: center;
  border-bottom: 1px solid #cfcfcf;
}
@media (max-width: 640px) {
  .contact-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }
}
.contact-header__en {
  margin: 0;
  color: rgba(0, 0, 0, 0.08);
  font-family: var(--font-section-en);
  font-size: 52px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
@media (max-width: 640px) {
  .contact-header__en {
    font-size: clamp(34px, 10vw, 48px);
  }
}
.contact-header h1 {
  position: relative;
  z-index: 1;
  margin: -18px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .contact-header h1 {
    margin-top: -16px;
    font-size: 15px;
  }
}

.contact-form {
  width: min(600px, 100%);
  margin: 0 auto;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 30pt;
  letter-spacing: 0.08em;
}
@media (max-width: 959px) {
  .contact-form {
    width: min(600px, 100%);
  }
}
@media (max-width: 640px) {
  .contact-form {
    font-size: 13px;
    line-height: 2.15;
  }
}
.contact-form p {
  margin: 0;
}
.contact-form__title {
  font-size: 16px;
  text-align: center;
}
.contact-form__text {
  font-size: 14px;
  text-align: center;
}
.contact-form__lead {
  margin-bottom: 70px !important;
}
@media (max-width: 640px) {
  .contact-form__lead {
    margin-bottom: 48px !important;
  }
}
.contact-form__note {
  display: none;
}
.contact-form__field + .contact-form__field {
  margin-top: 34px;
}
@media (max-width: 640px) {
  .contact-form__field + .contact-form__field {
    margin-top: 28px;
  }
}
.contact-form__label {
  margin-bottom: 6px !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .contact-form__label {
    font-size: 15px;
  }
}
.contact-form__input-group {
  display: block;
}
.contact-form__input-group br {
  display: none;
}
.contact-form__input-group--name {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 8px 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  .contact-form__input-group--name {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.contact-form__name-label {
  display: inline-block;
  margin: 0 8px 0 0;
  color: #777;
  font-size: 12px;
}
@media (max-width: 640px) {
  .contact-form__name-label {
    margin: 0;
  }
}
.contact-form input[type=text],
.contact-form textarea {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid #999;
  border-radius: 0;
  background: #fff;
  color: #111;
  font: inherit;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 640px) {
  .contact-form input[type=text],
  .contact-form textarea {
    min-height: 54px;
    padding: 0 14px;
  }
}
.contact-form input[type=text]::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder {
  color: #8c8c8c;
}
.contact-form input[type=text]::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #8c8c8c;
}
.contact-form input[type=text]:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
  color: #8c8c8c;
}
.contact-form input[type=text]::-ms-input-placeholder, .contact-form textarea::-ms-input-placeholder {
  color: #8c8c8c;
}
.contact-form input[type=text]::placeholder,
.contact-form textarea::placeholder {
  color: #8c8c8c;
}
.contact-form input[name=field_5909333_mcon] {
  display: block;
  margin-top: 12px;
}
.contact-form textarea {
  display: block;
  min-height: 200px;
  padding-top: 16px;
  resize: vertical;
}
@media (max-width: 640px) {
  .contact-form textarea {
    min-height: 176px;
    padding-top: 14px;
  }
}
.contact-form__privacy {
  margin-top: 36px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (max-width: 640px) {
  .contact-form__privacy {
    margin-top: 30px;
  }
}
.contact-form__privacy-title, .contact-form__privacy-text {
  display: none;
}
.contact-form__checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  cursor: pointer;
}
.contact-form__checkbox input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
}
.contact-form__checkbox a {
  border-bottom: 1px solid currentColor;
}
.contact-form__submit {
  margin-top: 46px !important;
  text-align: center;
}
@media (max-width: 640px) {
  .contact-form__submit {
    margin-top: 38px !important;
  }
}
.contact-form__submit-button {
  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: 244px;
  min-height: 68px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 999px;
  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);
}
.contact-form__submit-button::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;
}
.contact-form__submit-button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  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;
}
.contact-form__submit-button:hover, .contact-form__submit-button:focus-within {
  color: #000;
}
.contact-form__submit-button:hover::before, .contact-form__submit-button:focus-within::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.contact-form__submit-button:hover::after, .contact-form__submit-button:focus-within::after {
  -webkit-transform: translateX(6px) rotate(45deg);
          transform: translateX(6px) rotate(45deg);
}
.contact-form input[type=submit] {
  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: 244px;
  min-height: 68px;
  padding: 0 48px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: opacity 0.35s ease;
  transition: opacity 0.35s ease;
}
.contact-form input[type=submit]:hover {
  opacity: 0.72;
}
.contact-form input[type=submit] {
  z-index: 1;
  min-width: auto;
  min-height: auto;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 640px) {
  .contact-form input[type=submit] {
    min-width: 160px;
    min-height: 60px;
    font-size: 18px;
  }
}

.required {
  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: 34px;
  min-height: 18px;
  margin-left: 6px;
  padding: 0 5px;
  color: #fff;
  background: #f00;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  vertical-align: 2px;
}