/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

html {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  height: 100%;
}

body {
  background-color: #ffffff;
  color: #323232;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05emem;
  word-break: break-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-style: normal;
  height: 100%;
}

iframe {
  border: 0;
}

address, dl, fieldset, figure, ol, p, pre, ul {
  margin-bottom: 2rem;
}
address:last-child, dl:last-child, fieldset:last-child, figure:last-child, ol:last-child, p:last-child, pre:last-child, ul:last-child {
  margin-bottom: 0;
}

* + address, * + dl, * + fieldset, * + figure, * + ol, * + p, * + pre, * + ul {
  margin-top: 2rem;
}

table tr th, table tr td {
  line-height: 2;
}

a {
  text-decoration: none;
}

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

i, svg {
  display: block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  max-width: 100%;
  height: auto;
}

pre {
  color: #666;
  overflow: auto;
  padding: 25px;
  background-color: #242424;
  color: #f0f0f0;
  border-radius: 0;
}

hr {
  border-color: #e5e5e5;
  overflow: visible;
  text-align: inherit;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

:not(pre) code {
  font-family: "Roboto Mono", monospace;
  background-color: #000000;
  color: #fff;
  white-space: nowrap;
  padding: 2px 4px 3px;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

ul, ol {
  padding-left: 3rem;
}

.content__header {
  position: relative;
  background-color: #acacac;
}
.content__header .container {
  position: relative;
}
.content__title {
  padding: 6.4rem 0;
  text-align: center;
}
.content__body {
  margin: 6.4rem 0;
}
.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.align-center {
  text-align: center !important;
}
.align-center img {
  display: inline-block;
}
.align-center > * {
  margin-left: auto;
  margin-right: auto;
}

.align-right {
  text-align: right !important;
}

.background {
  background-color: #acacac;
}
.background-primary {
  background-color: #584F4F;
}
.background-secondary {
  background-color: #40A8C9;
}
.background-dark {
  background-color: #000000;
}
.background-warning {
  background-color: #DFCD29;
}
.background-modest {
  background-color: #dcdcdc;
}
.background-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.background-light {
  background-color: #fff;
}

.background-parallax {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.background-parallax__mask {
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  z-index: -100;
  background-size: cover;
  background-position: center;
}
.background-parallax__mask-image,
.background-parallax__mask img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.4rem 3rem;
  border: 2px solid #40A8C9;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #40A8C9;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: transparent;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(64, 168, 201, 0.1), transparent);
  transition: left 0.6s ease;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  border-color: #2c8aa6;
  color: #2c8aa6;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(64, 168, 201, 0.2);
}

/* 按钮变体 */
.button-primary {
  border-color: #40A8C9;
  color: #40A8C9;
  background: linear-gradient(135deg, rgba(64, 168, 201, 0.02) 0%, rgba(64, 168, 201, 0.05) 100%);
}

.button-secondary {
  border-color: #584F4F;
  color: #584F4F;
  background: linear-gradient(135deg, rgba(88, 79, 79, 0.02) 0%, rgba(88, 79, 79, 0.05) 100%);
}

.button-secondary:hover {
  border-color: #3d3636;
  color: #3d3636;
  box-shadow: 0 8px 25px rgba(88, 79, 79, 0.15);
}
.button-default {
  color: #222;
  border: 1px solid #aaaaaa;
  background-color: transparent;
  background-color: #fff;
}
.button-default:hover {
  border-color: #919191;
}
.button-primary {
  background-color: #584F4F;
  color: #fff;
  border: 1px solid transparent;
}
.button-primary:hover {
  background-color: #4b4343;
}
.button-secondary {
  background-color: #40A8C9;
  color: #fff;
  border: 1px solid transparent;
}
.button-secondary:hover {
  background-color: #359abb;
}
.button-tertiary {
  background-color: #A540C9;
  color: #fff;
  border: 1px solid transparent;
}
.button-tertiary:hover {
  background-color: #9835bb;
}
.button-danger {
  background-color: #DD3737;
  color: #fff;
  border: 1px solid transparent;
}
.button-danger:hover {
  background-color: #d62424;
}
.button-text {
  padding: 0;
  line-height: 1.5;
  color: #222;
  position: relative;
  border: none;
}
.button-text::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 100%;
  border-bottom: 1px solid currentColor;
  -webkit-transition: right 0.3s ease-out;
  transition: right 0.3s ease-out;
}
.button-text:hover::before {
  right: 0;
}
.button:disabled, .button[aria-disabled=true] {
  background-color: transparent;
  color: #bbb;
  border-color: #bbb;
  cursor: auto;
}
.button-small {
  padding: 0.4rem 1.2rem;
}
.button-large {
  padding: 1.6rem 3rem;
}

.button-group {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.card-default {
  background-color: #fff;
}
.card-primary {
  background-color: #584F4F;
}
.card-secondary {
  background-color: #40A8C9;
}
.card-dark {
  background-color: #000000;
}
.card-modest {
  background-color: #dcdcdc;
}
.card-border {
  border: 1px solid #e5e5e5;
}
.card-border .card__header {
  border-bottom: 1px solid #e5e5e5;
}
.card__header {
  padding: 1rem 3rem;
}
.card-xsmall .card__header {
  padding: 0.6rem 1rem;
}
.card-small .card__header {
  padding: 0.8rem 2rem;
}
.card-large .card__header {
  padding: 1.4rem 4rem;
}
.card-xlarge .card__header {
  padding: 1.6rem 5rem;
}
.card__body {
  padding: 3rem;
}
.card-xsmall .card__body {
  padding: 1rem;
}
.card-small .card__body {
  padding: 2rem;
}
.card-large .card__body {
  padding: 4rem;
}
.card-xlarge .card__body {
  padding: 5rem;
}

.card-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
  width: 100%;
}
.container-fluid {
  max-width: 100% !important;
}
.display-none {
  display: none !important;
}

.display-inline-block {
  display: inline-block !important;
}

.display-inline {
  display: inline !important;
}

.display-block {
  display: block !important;
}

.drawer-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0.9rem;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none !important;
  top: 1.6rem;
  right: 1rem;
  z-index: 1000;
}
.drawer-button__line {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
}
.drawer-button__line::before, .drawer-button__line::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #323232;
  width: 20px;
  height: 2px;
  left: 2px;
  top: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.drawer-button__line::before {
  margin-top: -0.4rem;
}
.menu-open .drawer-button__line::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0;
}
.drawer-button__line::after {
  margin-top: 0.2rem;
}
.menu-open .drawer-button__line::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: 0;
}
.drawer-button__text {
  font-size: 9;
  letter-spacing: 0.05em;
}

.drawer-content {
  z-index: 999;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  visibility: hidden;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  opacity: 0;
  padding-top: 6.4rem;
}
.menu-open .drawer-content {
  visibility: visible;
  opacity: 1;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.drawer-content__inner {
  padding: 0 2.4rem;
}

.entry-archive__item {
  margin-bottom: 2rem;
}
.entry-archive__item:last-child {
  margin-bottom: 0;
}
.entry-archive__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.entry-archive__link:hover * {
  text-decoration: none;
}
.entry-archive__media + .entry-archive__text {
  display: grid;
  padding-left: 2rem;
}
.entry-archive__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
}
.entry-archive__title {
  text-decoration: underline;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.flex-stretch {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.flex-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.flex-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.flex-align-between {
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
}
.flex-align-around {
  -webkit-box-align: space-around;
      -ms-flex-align: space-around;
          align-items: space-around;
}
.flex-align-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-align-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-xsmall {
  margin-left: -1.2rem;
}
.flex-xsmall > div {
  padding-left: 1.2rem;
}
.flex-small {
  margin-left: -2.4rem;
}
.flex-small > div {
  padding-left: 2.4rem;
}
.flex-medium {
  margin-left: -4.8rem;
}
.flex-medium > div {
  padding-left: 4.8rem;
}
.flex-large {
  margin-left: -6rem;
}
.flex-large > div {
  padding-left: 6rem;
}
.flex-xlarge {
  margin-left: -8rem;
}
.flex-xlarge > div {
  padding-left: 8rem;
}

.flex-column > *:first-child {
  margin-top: 0 !important;
}

.frame-googlemap {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
}
.frame-googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.heading {
  font-weight: bold;
  line-height: 1.5;
}
.heading-h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 9.6rem;
  letter-spacing: 0.05em;
}
.heading-h3 {
  text-align: center;
  font-size: 5.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 3.2rem;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 2rem 0;
  font-weight: bold;
  color: #323232;
  text-transform: none;
  line-height: 1.5;
}
.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child,
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

* + .h1, * + .h2, * + .h3, * + .h4, * + .h5, * + .h6,
* + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
  margin-top: 4rem;
}

.h1, h1 {
  font-size: 32.3px;
  font-size: 3rem;
  letter-spacing: 0.05em;
}

.h2, h2 {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.h3, h3 {
  font-size: 2rem;
  letter-spacing: 0.05em;
}

.h4, h4 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.h5, h5 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.h6, h6 {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.height-xsmall {
  height: 150px;
}
.height-small {
  height: 300px;
}
.height-large {
  height: 400px;
}
.height-xlarge {
  height: 500px;
}

/* Hero 黄金比例大气设计 */
.hero {
  overflow: hidden;
  position: relative;
  height: 90vh;
  min-height: 680px;
  max-height: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.hero .container {
  max-width: 1440px;
}
.hero__background {
  background-repeat: no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 100%);
  z-index: -100;
  background-size: cover;
  background-position: center;
}
.hero__background img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  /* 禁用任何transform效果 */
  transform: none !important;
  transition: none !important;
}
.hero-parallax .hero__background img {
  /* 禁用视差效果 */
  /* position: fixed;
  top: 0;
  left: 0; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  padding-top: 16rem;
  padding-bottom: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero__content-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.hero__content-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero__content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero__headline {
  font-size: 2rem;
  display: block;
}
.hero__subheadline {
  color: #666;
}
.hero__wrap {
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero-align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.hero-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero-xsmall {
  height: 200px;
}
.hero-small {
  height: 500px;
}
.hero-medium {
  height: 600px;
}
.hero-large {
  height: 800px;
}
.hero-xlarge {
  height: 1000px;
}

.image-responsive,
.image-fluid {
  width: 100%;
  height: auto;
}

.image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.link {
  font-weight: 500;
  display: inline-block;
}

.link-zoom {
  position: relative;
  display: inline-block;
}
.link-zoom::after {
  content: "";
  display: block;
  background-image: url(../img/common/icon_zoom.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: 20px auto;
  width: 30px;
  height: 30px;
}

.margin {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.margin-top {
  margin-top: 2rem !important;
}
.margin-bottom {
  margin-bottom: 2rem !important;
}
.margin-left {
  margin-left: 2rem !important;
}
.margin-right {
  margin-right: 2rem !important;
}
.margin-xsmall {
  margin-top: 1.2rem !important;
  margin-bottom: 1.2rem !important;
}
.margin-xsmall-top {
  margin-top: 1.2rem !important;
}
.margin-xsmall-bottom {
  margin-bottom: 1.2rem !important;
}
.margin-xsmall-left {
  margin-left: 1.2rem !important;
}
.margin-xsmall-right {
  margin-right: 1.2rem !important;
}
.margin-small {
  margin-top: 2.4rem !important;
  margin-bottom: 2.4rem !important;
}
.margin-small-top {
  margin-top: 2.4rem !important;
}
.margin-small-bottom {
  margin-bottom: 2.4rem !important;
}
.margin-small-left {
  margin-left: 2.4rem !important;
}
.margin-small-right {
  margin-right: 2.4rem !important;
}
.margin-medium {
  margin-top: 4.8rem !important;
  margin-bottom: 4.8rem !important;
}
.margin-medium-top {
  margin-top: 4.8rem !important;
}
.margin-medium-bottom {
  margin-bottom: 4.8rem !important;
}
.margin-medium-left {
  margin-left: 4.8rem !important;
}
.margin-medium-right {
  margin-right: 4.8rem !important;
}
.margin-large {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}
.margin-large-top {
  margin-top: 6rem !important;
}
.margin-large-bottom {
  margin-bottom: 6rem !important;
}
.margin-large-left {
  margin-left: 6rem !important;
}
.margin-large-right {
  margin-right: 6rem !important;
}
.margin-xlarge {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}
.margin-xlarge-top {
  margin-top: 8rem !important;
}
.margin-xlarge-bottom {
  margin-bottom: 8rem !important;
}
.margin-xlarge-left {
  margin-left: 8rem !important;
}
.margin-xlarge-right {
  margin-right: 8rem !important;
}
.margin-reset {
  margin: 0 !important;
}
.margin-reset-top {
  margin-top: 0rem !important;
}
.margin-reset-right {
  margin-right: 0 !important;
}
.margin-reset-left {
  margin-left: 0 !important;
}
.margin-reset-bottom {
  margin-bottom: 0 !important;
}
.margin-reset-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.margin-reset-horizontal {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.nav li {
  margin-left: 2rem;
  position: relative;
}
.nav__header {
  font-weight: 500;
}

.nav-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-left: 0;
}
.nav-vertical .nav__header {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  margin-top: 2rem;
  font-weight: 700;
}
.nav-vertical .nav__header:first-child {
  margin-top: 0;
}
.nav-vertical li {
  padding-left: 0;
}
.nav-vertical li a {
  padding: 0.4rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #efefef;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  min-height: 80px;
}

.navbar-center {
  -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;
}

.navbar-expand {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.padding {
  padding: 2rem !important;
}
.padding-top {
  padding-top: 2rem !important;
}
.padding-bottom {
  padding-bottom: 2rem !important;
}
.padding-left {
  padding-left: 2rem !important;
}
.padding-right {
  padding-left: 2rem !important;
}
.padding-horizontal {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.padding-vertical {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.padding-xsmall {
  padding: 1.2rem !important;
}
.padding-xsmall-top {
  padding-top: 1.2rem !important;
}
.padding-xsmall-bottom {
  padding-bottom: 1.2rem !important;
}
.padding-xsmall-left {
  padding-left: 1.2rem !important;
}
.padding-xsmall-right {
  padding-left: 1.2rem !important;
}
.padding-xsmall-horizontal {
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
}
.padding-xsmall-vertical {
  padding-top: 1.2rem !important;
  padding-bottom: 1.2rem !important;
}

.padding-small {
  padding: 1.6rem !important;
}
.padding-small-top {
  padding-top: 1.6rem !important;
}
.padding-small-bottom {
  padding-bottom: 1.6rem !important;
}
.padding-small-left {
  padding-left: 1.6rem !important;
}
.padding-small-right {
  padding-left: 1.6rem !important;
}
.padding-small-horizontal {
  padding-left: 1.6rem !important;
  padding-right: 1.6rem !important;
}
.padding-small-vertical {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}

.padding-large {
  padding: 4rem !important;
}
.padding-large-top {
  padding-top: 4rem !important;
}
.padding-large-bottom {
  padding-bottom: 4rem !important;
}
.padding-large-left {
  padding-left: 4rem !important;
}
.padding-large-right {
  padding-left: 4rem !important;
}
.padding-large-horizontal {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}
.padding-large-vertical {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.padding-xlarge {
  padding: 6rem !important;
}
.padding-xlarge-top {
  padding-top: 6rem !important;
}
.padding-xlarge-bottom {
  padding-bottom: 6rem !important;
}
.padding-xlarge-left {
  padding-left: 6rem !important;
}
.padding-xlarge-right {
  padding-left: 6rem !important;
}
.padding-xlarge-horizontal {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}
.padding-xlarge-vertical {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.padding-reset {
  padding: 0 !important;
}
.padding-reset-top {
  padding-top: 0rem !important;
}
.padding-reset-right {
  padding-right: 0rem !important;
}
.padding-reset-left {
  padding-left: 0rem !important;
}
.padding-reset-bottom {
  padding-bottom: 0rem !important;
}
.padding-reset-vertical {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}
.padding-reset-horizontal {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

/* 专业商务section间距系统 */
.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.section-xsmall {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section-large {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.section-xlarge {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

/* 移动端优化 - 增强版 */
@media screen and (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-xlarge {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  
  .footer {
    margin-top: 0;
    padding: 3rem 0 2rem;
  }
  
  .footer__logo {
    padding: 1.5rem 0;
  }
  
  .footer__logo img {
    margin-bottom: 2rem;
    max-width: 200px;
  }
  
  .footer__logo p {
    font-size: 1.2rem;
  }
  
  /* 移动端Business Card优化 */
  .business-card {
    grid-template-columns: 1fr !important;
    margin-bottom: 2rem !important;
  }
  
  .business-card--reverse {
    grid-template-columns: 1fr !important;
  }
  
  .business-card__body {
    padding: 2rem !important;
  }
  
  .business-card__title {
    font-size: 2rem !important;
  }
  
  /* 移动端Contact优化 */
  .contact-buttons {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  
  .contact-button-group {
    min-width: 100% !important;
    max-width: 100% !important;
  }
  
  /* 移动端导航优化 */
  .navbar__toggle {
    position: relative !important;
  }
  
  .drawer-content {
    width: 85% !important;
    max-width: 320px !important;
  }
  
  /* 移动端Hero优化 */
  .hero__background img {
    height: 60vh !important;
    object-fit: cover !important;
  }
  
  /* 移动端数字动画优化 */
  .number-animate {
    font-size: 3.2rem !important;
  }
  
  /* 移动端按钮优化 */
  .button-premium {
    padding: 1rem 2rem !important;
    font-size: 1.4rem !important;
  }
  
  /* 移动端卡片间距优化 */
  .card {
    margin-bottom: 1.5rem !important;
  }
  
  /* 移动端触摸优化 */
  .business-card,
  .card,
  .button {
    min-height: 44px !important;
    touch-action: manipulation !important;
  }
  
  /* 移动端滚动优化 */
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

/* 超小屏幕优化 */
@media screen and (max-width: 480px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  .heading__title--en {
    font-size: 4rem !important;
  }
  
  .heading__title--ja {
    font-size: 1.2rem !important;
  }
  
  .business-card__body {
    padding: 1.5rem !important;
  }
  
  .contact-button {
    padding: 1.5rem !important;
  }
  
  .number-animate {
    font-size: 2.8rem !important;
  }
}

/* 平板端优化 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .business-card {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .business-card--reverse {
    grid-template-columns: 1fr 1fr !important;
  }
  
  .business-card__body {
    padding: 2.5rem !important;
  }
  
  .contact-buttons {
    gap: 2rem !important;
  }
  
  .contact-button-group {
    min-width: 280px !important;
    max-width: 350px !important;
  }
}

/* 大屏幕优化 */
@media screen and (min-width: 1441px) {
  .container {
    max-width: 1400px !important;
  }
  
  .business-card__body {
    padding: 4rem !important;
  }
  
  .number-animate {
    font-size: 5.6rem !important;
  }
}

/* 横屏优化 */
@media screen and (orientation: landscape) and (max-height: 600px) {
  .hero {
    min-height: 80vh !important;
  }
  
  .section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .section-xlarge {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* 高分辨率屏幕优化 */
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi) {
  .navbar__logo img,
  .footer__logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* 可访问性优化 */
@media (prefers-reduced-motion: reduce) {
  .business-card,
  .card,
  .button {
    transition: none !important;
  }
  
  .float-animation,
  .pulse-animation {
    animation: none !important;
  }
}

@media screen and (max-width: 480px) {
  .footer {
    margin-top: 0;
    padding: 3rem 0 2rem;
  }
  
  .footer__logo img {
    max-width: 180px;
  }
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 2rem;
}
.table caption {
  font-weight: normal;
  color: #888;
}
.table th {
  padding: 1.6rem;
  text-align: left;
  font-weight: 500;
}
.table td {
  font-weight: 400;
  padding: 1.6rem;
}
.table-stripe tbody tr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.table-stripe tbody tr:nth-child(odd) {
  background: #f8f8f8;
}
.table-border tbody tr {
  border-top: 1px solid #e5e5e5;
}
.table-small th, .table-small td {
  padding: 1.2rem;
}
.table-large th, .table-large td {
  padding: 2.4rem;
}

.table-scroller {
  overflow-x: auto;
}
.table-scroller table {
  min-width: 750px;
}

.text-primary {
  color: #584F4F;
}
.text-secondary {
  color: #40A8C9;
}
.text-tertiary {
  color: #A540C9;
}
.text-warning {
  color: #DFCD29;
}
.text-danger {
  color: #DD3737;
}
.text-modest {
  color: #dcdcdc;
}
.text-dark {
  color: #000000;
}
.text-white, .text-light {
  color: #fff;
}
.text-white *, .text-light * {
  color: #fff;
}
.text-xsmall {
  font-size: -2.4rem;
  letter-spacing: 0.05em;
}
.text-small {
  font-size: -0.4rem;
  letter-spacing: 0.05em;
}
.text-default {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.text-large {
  font-size: 5.6rem;
  letter-spacing: 0.05em;
}
.text-xlarge {
  font-size: 9.6rem;
  letter-spacing: 0.05em;
}
.text-light {
  font-weight: 300;
}
.text-normal {
  font-weight: 400;
}
.text-medium {
  font-weight: 500;
}
.text-bold {
  font-weight: 700;
}
.text-exbold {
  font-weight: 900;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}

.visible {
  visibility: visible !important;
}

.hidden {
  visibility: hidden !important;
}

[class*=width] {
  width: 100%;
  max-width: 100%;
}

.width-1-1 {
  width: 100%;
}

.width-1-2 {
  width: 50%;
}

.width-1-3 {
  width: 33.3333333333%;
}

.width-2-3 {
  width: 66.6666666667%;
}

.width-1-4 {
  width: 25%;
}

.width-3-4 {
  width: 75%;
}

.width-1-5 {
  width: 20%;
}

.width-2-5 {
  width: 40%;
}

.width-3-5 {
  width: 60%;
}

.width-4-5 {
  width: 80%;
}

.width-1-6 {
  width: 16.6666666667%;
}

.width-5-6 {
  width: 83.3333333333%;
}

.width-1-12 {
  width: 8.3333333333%;
}

.width-2-12 {
  width: 16.6666666667%;
}

.width-3-12 {
  width: 25%;
}

.width-4-12 {
  width: 33.3333333333%;
}

.width-5-12 {
  width: 41.6666666667%;
}

.width-6-12 {
  width: 50%;
}

.width-7-12 {
  width: 58.3333333333%;
}

.width-8-12 {
  width: 66.6666666667%;
}

.width-9-12 {
  width: 75%;
}

.width-10-12 {
  width: 83.3333333333%;
}

.width-11-12 {
  width: 91.6666666667%;
}

.width-xsmall {
  width: 100px;
}

.width-small {
  width: 200px;
}

.width-medium {
  width: 400px;
}

.width-large {
  width: 600px;
}

.width-xlarge {
  width: 750px;
}

.width-thumbnail {
  width: 300px;
}

.width-auto {
  width: auto;
}

.width-fluid {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 1px;
}

.inview-fadeup {
  opacity: 0;
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-property: opacity transform;
  transition-property: opacity transform;
}
.inview-fadeup.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.inview {
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.inview[aria-visible=true] {
  -webkit-animation-name: fade;
          animation-name: fade;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.inview-slide-up[aria-visible=true] {
  -webkit-animation-name: fade, slide-up;
          animation-name: fade, slide-up;
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.inview-slide-down[aria-visible=true] {
  -webkit-animation-name: fade, slide-down;
          animation-name: fade, slide-down;
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.inview-slide-left[aria-visible=true] {
  -webkit-animation-name: fade, slide-left;
          animation-name: fade, slide-left;
}

@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slide-left {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.inview-scale-up[aria-visible=true] {
  -webkit-animation-name: fade, scale-up;
          animation-name: fade, scale-up;
}
.inview-scale-up-small[aria-visible=true] {
  -webkit-animation-name: fade, scale-up-small;
          animation-name: fade, scale-up-small;
}
.inview-scale-up-large[aria-visible=true] {
  -webkit-animation-name: fade, scale-up-large;
          animation-name: fade, scale-up-large;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scale-up-small {
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-small {
  0% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scale-up-large {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-up-large {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.inview-scale-down[aria-visible=true] {
  -webkit-animation-name: fade, scale-down;
          animation-name: fade, scale-down;
}
.inview-scale-down-small[aria-visible=true] {
  -webkit-animation-name: fade, scale-down-small;
          animation-name: fade, scale-down-small;
}
.inview-scale-down-large[aria-visible=true] {
  -webkit-animation-name: fade, scale-down-large;
          animation-name: fade, scale-down-large;
}

@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scale-down {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scale-down-small {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-down-small {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes scale-down-large {
  0% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale-down-large {
  0% {
    -webkit-transform: scale(0.25);
            transform: scale(0.25);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.slick-arrow {
  text-align: center;
  width: 26px;
  height: 33px;
}
.slick-arrow::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center top;
}
.slick-arrow.slick-next::before {
  background-image: url(../img/arrow_next.svg);
}
.slick-arrow.slick-prev::before {
  background-image: url(../img/arrow_prev.svg);
}

body {
  padding-top: 80px;
}

.header {
  background-color: rgba(255, 255, 255, 0.75);
}
.header .navbar__logo {
  display: block;
}
.header .nav li:first-child {
  margin-left: 0;
}

.drawer-button {
  right: 2rem;
}
.drawer-button__line {
  -webkit-transform: skewX(-30deg);
          transform: skewX(-30deg);
}
.drawer-button__line::before, .drawer-button__line::after {
  width: 30px;
  height: 3px;
  left: 0;
}
.menu-open .drawer-button__line {
  -webkit-transform: skewX(0deg);
          transform: skewX(0deg);
}
.menu-open .drawer-button__line::before, .menu-open .drawer-button__line::after {
  background-color: rgba(255, 255, 255, 0.65);
}

.drawer-content {
  background-color: #584F4F;
  width: 200px;
  right: -200px;
}
.menu-open .drawer-content {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.menu-open .drawer-overlay {
  opacity: 0.5;
  visibility: visible;
}

.footer {
  background-color: #584F4F;
  text-align: center;
}

.heading {
  display: block;
  line-height: 1.5;
}
.heading__title {
  margin: 0;
}
.heading__title--en {
  font-family: "Jura", sans-serif;
}
.heading-style2 .heading__title--en {
  letter-spacing: 0.1em;
}

.heading-style2 {
  text-align: center;
  position: relative;
  margin-bottom: 4rem;
}
.heading-style2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0%, #40A8C9 20%, #40A8C9 50%, #40A8C9 80%, transparent 100%);
  margin-top: 2rem;
  border-radius: 2px;
}

/* 标题文字增强 */
.heading__title--en {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: #40A8C9;
  margin-bottom: 0.5rem;
}

.heading__title--ja {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 0.05em;
}
.heading-style2.inview::after {
  height: 0;
  -webkit-transition: 0.4s 0.4s;
  transition: 0.4s 0.4s;
}

.hero {
  display: grid;
}
.hero__wrap {
  background-color: transparent;
}
.hero__content, .hero__background {
  grid-area: 1/1;
  position: static;
}
.hero__content {
  padding: 0 0 4rem;
}
.hero .slick-slider,
.hero .slick-list,
.hero .slick-track {
  height: 100%;
}
.about__h2 {
  font-family: "Jura", sans-serif;
  font-size: 4.8rem;
  letter-spacing: 0.05em;
}
.about__catch {
  line-height: 1.5;
}
.about__description {
  position: relative;
}

.recruit {
  position: relative;
}
.recruit .heading__title {
  color: #efefef;
}
.recruit::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3d3737;
  opacity: 0.75;
}
.recruit .container {
  position: relative;
  color: #efefef;
}
.recruit__table {
  border-top: 1px solid #888;
  border-left: 1px solid #888;
  background-color: rgba(61, 55, 55, 0.75);
}
.recruit__table th, .recruit__table td {
  border-bottom: 1px solid #888;
  border-right: 1px solid #888;
  line-height: 1.75;
}
.recruit__table th {
  font-weight: 500;
}
.recruit__table td {
  font-weight: 400;
}
.business-card:last-child {
  margin-bottom: 0;
}
.business-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
}
.business-hillstone-card__media {
  background-color: rgba(17, 39, 57, 0.05);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.business-hillstone-card__body {
  background-color: #112739;
  color: #efefef;
  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;
}
.business-hillstone-card__title {
  color: #fff;
  margin-bottom: 0;
}

.contact .button {
  border: 1px solid #584F4F;
  font-family: "Jura", sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 1.6rem;
  padding-top: 1.6rem;
}
.company .table th {
  border-bottom: 1px solid #584F4F;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .card-horizontal--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .display-pc {
    display: none !important;
  }
  .display-none--sp {
    display: none !important;
  }
  .display-inline-block--sp {
    display: inline-block !important;
  }
  .display-inline--sp {
    display: inline !important;
  }
  .display-block--sp {
    display: block !important;
  }
  .entry-archive__media {
    width: 100px;
  }
  .entry-archive__text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-column--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-between--sp {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-center--sp {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex-xsmall--sp {
    margin-left: -1.2rem;
  }
  .flex-xsmall--sp > div {
    padding-left: 1.2rem;
  }
  .flex-small--sp {
    margin-left: -2.4rem;
  }
  .flex-small--sp > div {
    padding-left: 2.4rem;
  }
  .flex-medium--sp {
    margin-left: -4.8rem;
  }
  .flex-medium--sp > div {
    padding-left: 4.8rem;
  }
  .flex-large--sp {
    margin-left: -6rem;
  }
  .flex-large--sp > div {
    padding-left: 6rem;
  }
  .flex-xlarge--sp {
    margin-left: -8rem;
  }
  .flex-xlarge--sp > div {
    padding-left: 8rem;
  }
  .height-xsmall--sp {
    height: 150px;
  }
  .height-small--sp {
    height: 300px;
  }
  .height-large--sp {
    height: 400px;
  }
  .height-xlarge--sp {
    height: 500px;
  }
  .margin--sp {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .margin-top--sp {
    margin-top: 2rem !important;
  }
  .margin-bottom--sp {
    margin-bottom: 2rem !important;
  }
  .margin-left--sp {
    margin-left: 2rem !important;
  }
  .margin-right--sp {
    margin-right: 2rem !important;
  }
  .margin-xsmall--sp {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .margin-xsmall-top--sp {
    margin-top: 1.2rem !important;
  }
  .margin-xsmall-bottom--sp {
    margin-bottom: 1.2rem !important;
  }
  .margin-xsmall-left--sp {
    margin-left: 1.2rem !important;
  }
  .margin-xsmall-right--sp {
    margin-right: 1.2rem !important;
  }
  .margin-small--sp {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .margin-small-top--sp {
    margin-top: 2.4rem !important;
  }
  .margin-small-bottom--sp {
    margin-bottom: 2.4rem !important;
  }
  .margin-small-left--sp {
    margin-left: 2.4rem !important;
  }
  .margin-small-right--sp {
    margin-right: 2.4rem !important;
  }
  .margin-medium--sp {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
  .margin-medium-top--sp {
    margin-top: 4.8rem !important;
  }
  .margin-medium-bottom--sp {
    margin-bottom: 4.8rem !important;
  }
  .margin-medium-left--sp {
    margin-left: 4.8rem !important;
  }
  .margin-medium-right--sp {
    margin-right: 4.8rem !important;
  }
  .margin-large--sp {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .margin-large-top--sp {
    margin-top: 6rem !important;
  }
  .margin-large-bottom--sp {
    margin-bottom: 6rem !important;
  }
  .margin-large-left--sp {
    margin-left: 6rem !important;
  }
  .margin-large-right--sp {
    margin-right: 6rem !important;
  }
  .margin-xlarge--sp {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .margin-xlarge-top--sp {
    margin-top: 8rem !important;
  }
  .margin-xlarge-bottom--sp {
    margin-bottom: 8rem !important;
  }
  .margin-xlarge-left--sp {
    margin-left: 8rem !important;
  }
  .margin-xlarge-right--sp {
    margin-right: 8rem !important;
  }
  .margin-reset-top--sp {
    margin-top: 0rem !important;
  }
  .nav-vertical--sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-left: 0;
  }
  .padding--sp {
    padding: 2rem !important;
  }
  .padding-top--sp {
    padding-top: 2rem !important;
  }
  .padding-bottom--sp {
    padding-bottom: 2rem !important;
  }
  .padding-left--sp {
    padding-left: 2rem !important;
  }
  .padding-right--sp {
    padding-left: 2rem !important;
  }
  .padding-horizontal--sp {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .padding-vertical--sp {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .padding-xsmall--sp {
    padding: 1.2rem !important;
  }
  .padding-xsmall-top--sp {
    padding-top: 1.2rem !important;
  }
  .padding-xsmall-bottom--sp {
    padding-bottom: 1.2rem !important;
  }
  .padding-xsmall-left--sp {
    padding-left: 1.2rem !important;
  }
  .padding-xsmall-right--sp {
    padding-left: 1.2rem !important;
  }
  .padding-xsmall-horizontal--sp {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .padding-xsmall-vertical--sp {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .padding-small--sp {
    padding: 1.6rem !important;
  }
  .padding-small-top--sp {
    padding-top: 1.6rem !important;
  }
  .padding-small-bottom--sp {
    padding-bottom: 1.6rem !important;
  }
  .padding-small-left--sp {
    padding-left: 1.6rem !important;
  }
  .padding-small-right--sp {
    padding-left: 1.6rem !important;
  }
  .padding-small-horizontal--sp {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .padding-small-vertical--sp {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .padding-large--sp {
    padding: 4rem !important;
  }
  .padding-large-top--sp {
    padding-top: 4rem !important;
  }
  .padding-large-bottom--sp {
    padding-bottom: 4rem !important;
  }
  .padding-large-left--sp {
    padding-left: 4rem !important;
  }
  .padding-large-right--sp {
    padding-left: 4rem !important;
  }
  .padding-large-horizontal--sp {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .padding-large-vertical--sp {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .padding-xlarge--sp {
    padding: 6rem !important;
  }
  .padding-xlarge-top--sp {
    padding-top: 6rem !important;
  }
  .padding-xlarge-bottom--sp {
    padding-bottom: 6rem !important;
  }
  .padding-xlarge-left--sp {
    padding-left: 6rem !important;
  }
  .padding-xlarge-right--sp {
    padding-left: 6rem !important;
  }
  .padding-xlarge-horizontal--sp {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .padding-xlarge-vertical--sp {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .padding-reset-top--sp {
    padding-top: 0rem !important;
  }
  .padding-reset-right--sp {
    padding-right: 0rem !important;
  }
  .padding-reset-left--sp {
    padding-left: 0rem !important;
  }
  .padding-reset-bottom--sp {
    padding-bottom: 0rem !important;
  }
  .padding-reset-vertical--sp {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .padding-reset-horizontal--sp {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .section--sp {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-xsmall--sp {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .section-small--sp {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section-large--sp {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section-xlarge--sp {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .table-responsive {
    display: block;
  }
  .table-responsive caption,
.table-responsive tbody,
.table-responsive th, .table-responsive td, .table-responsive tr {
    display: block;
  }
  .table-responsive th:not(:last-child), .table-responsive td:not(:last-child) {
    padding-bottom: 0.8rem;
  }
  .table-responsive th:not(:first-child), .table-responsive td:not(:first-child) {
    padding-top: 0.8rem;
  }
  .table-scroller {
    margin-left: -6.4vw;
    margin-right: -6.4vw;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .text-center--sp {
    text-align: center !important;
  }
  .text-right--sp {
    text-align: right !important;
  }
  .text-left--sp {
    text-align: left !important;
  }
  .visible--sp {
    visibility: visible !important;
  }
  .hidden--sp {
    visibility: hidden !important;
  }
  .width-1-1--sp {
    width: 100%;
  }
  .width-1-2--sp {
    width: 50%;
  }
  .width-1-3--sp {
    width: 33.3333333333%;
  }
  .width-2-3--sp {
    width: 66.6666666667%;
  }
  .width-1-4--sp {
    width: 25%;
  }
  .width-3-4--sp {
    width: 75%;
  }
  .width-1-5--sp {
    width: 20%;
  }
  .width-2-5--sp {
    width: 40%;
  }
  .width-3-5--sp {
    width: 60%;
  }
  .width-4-5--sp {
    width: 80%;
  }
  .width-1-6--sp {
    width: 16.6666666667%;
  }
  .width-5-6--sp {
    width: 83.3333333333%;
  }
  .width-1-12--sp {
    width: 8.3333333333%;
  }
  .width-2-12--sp {
    width: 16.6666666667%;
  }
  .width-3-12--sp {
    width: 25%;
  }
  .width-4-12--sp {
    width: 33.3333333333%;
  }
  .width-5-12--sp {
    width: 41.6666666667%;
  }
  .width-6-12--sp {
    width: 50%;
  }
  .width-7-12--sp {
    width: 58.3333333333%;
  }
  .width-8-12--sp {
    width: 66.6666666667%;
  }
  .width-9-12--sp {
    width: 75%;
  }
  .width-10-12--sp {
    width: 83.3333333333%;
  }
  .width-11-12--sp {
    width: 91.6666666667%;
  }
  .width-xsmall--sp {
    width: 100px;
  }
  .width-small--sp {
    width: 200px;
  }
  .width-medium--sp {
    width: 400px;
  }
  .width-large--sp {
    width: 600px;
  }
  .width-xlarge--sp {
    width: 750px;
  }
  .width-thumbnail--sp {
    width: 300px;
  }
  .width-auto--sp {
    width: auto;
  }
  .width-fluid--sp {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
  .footer {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .heading {
    margin-bottom: 4rem;
  }
  .heading-style2 {
    padding-bottom: 1.2rem;
    margin-bottom: 5.2rem;
  }
  .heading-style2::after {
    height: 3.2rem;
  }
  .heading-style2.inview[aria-visible=true]::after {
    height: 2px;
  }
  .about {
    padding-top: 10rem;
  }
  .about__body {
    padding-bottom: 4rem;
  }
  .about__catch {
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-bottom: 4rem;
  }
  .recruit__catch {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: center;
  }
  .recruit__table {
    margin-top: 4rem;
  }
  .recruit__table th, .recruit__table td {
    padding: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
  .recruit__table th {
    width: 90px;
  }
  .business-card {
    margin-bottom: 6.4rem;
  }
  .business-card__media {
    margin-left: auto;
    margin-right: auto;
  }
  .business-card__body {
    margin-top: 2rem;
  }
  .business-card__title {
    background-color: #fff;
    position: relative;
    text-align: center;
  }
  .business-hillstone-card__media {
    padding: 4rem;
  }
  .business-hillstone-card__media img {
    max-width: 80%;
  }
  .contact .button {
    margin-bottom: 1rem;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .company .table {
    font-size: 1.5rem;
  }
  .company .table th {
    padding-left: 0;
    width: 120px;
    line-height: 1.5;
  }
  .company .table td {
    padding-right: 0;
    line-height: 1.5;
  }
}
@media screen and (min-width: 767.99px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .align-center--pc {
    text-align: center !important;
  }
  .card__header {
    padding: 2rem 4rem;
  }
  .card-xsmall .card__header {
    padding: 1.2rem 2rem;
  }
  .card-small .card__header {
    padding: 1.6rem 3rem;
  }
  .card-large .card__header {
    padding: 3rem 6rem;
  }
  .card-xlarge .card__header {
    padding: 4rem 8rem;
  }
  .card__body {
    padding: 4rem;
  }
  .card-xsmall .card__body {
    padding: 1.6rem;
  }
  .card-small .card__body {
    padding: 3rem;
  }
  .card-large .card__body {
    padding: 6rem;
  }
  .card-xlarge .card__body {
    padding: 8rem;
  }
  .card-horizontal--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .container {
    max-width: 1385px;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .container-xsmall {
    max-width: 830px;
  }
  .container-small {
    max-width: 1060px;
  }
  .container-large {
    max-width: 1340px;
  }
  .container-xlarge {
    max-width: 1520px;
  }
  .display-sp {
    display: none !important;
  }
  .display-none--pc {
    display: none !important;
  }
  .display-inline-block--pc {
    display: inline-block !important;
  }
  .display-inline--pc {
    display: inline !important;
  }
  .display-block--pc {
    display: block !important;
  }
  .drawer-button {
    display: none;
  }
  .drawer-content {
    display: none !important;
  }
  .entry-archive__media {
    width: 160px;
  }
  .entry-archive__media + .entry-archive__text {
    padding-left: 4rem;
  }
  .entry-archive__time {
    margin-right: 4rem;
  }
  .flex-column--pc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex-between--pc {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-center--pc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex-xsmall--pc {
    margin-left: -1.2rem;
  }
  .flex-xsmall--pc > div {
    padding-left: 1.2rem;
  }
  .flex-small--pc {
    margin-left: -2.4rem;
  }
  .flex-small--pc > div {
    padding-left: 2.4rem;
  }
  .flex-medium--pc {
    margin-left: -4.8rem;
  }
  .flex-medium--pc > div {
    padding-left: 4.8rem;
  }
  .flex-large--pc {
    margin-left: -6rem;
  }
  .flex-large--pc > div {
    padding-left: 6rem;
  }
  .flex-xlarge--pc {
    margin-left: -8rem;
  }
  .flex-xlarge--pc > div {
    padding-left: 8rem;
  }
  .heading-h2 {
    font-size: 21.6rem;
    letter-spacing: 0.05em;
  }
  .heading-h3 {
    font-size: 9.6rem;
    letter-spacing: 0.05em;
  }
  .h1, h1 {
    font-size: 3.6rem;
    letter-spacing: 0.05em;
  }
  .h2, h2 {
    font-size: 2.88rem;
    letter-spacing: 0.05em;
  }
  .h3, h3 {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
  }
  .h4, h4 {
    font-size: 2.16rem;
    letter-spacing: 0.05em;
  }
  .h5, h5 {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
  .h6, h6 {
    font-size: 1.68rem;
    letter-spacing: 0.05em;
  }
  .height-xsmall--pc {
    height: 150px;
  }
  .height-small--pc {
    height: 300px;
  }
  .height-large--pc {
    height: 400px;
  }
  .height-xlarge--pc {
    height: 500px;
  }
  .hero__headline {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
  }
  .link {
    font-size: 1.4rem;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
  }
  .link-zoom:hover::after {
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .link-zoom::after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .margin--pc {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .margin-top--pc {
    margin-top: 2rem !important;
  }
  .margin-bottom--pc {
    margin-bottom: 2rem !important;
  }
  .margin-left--pc {
    margin-left: 2rem !important;
  }
  .margin-right--pc {
    margin-right: 2rem !important;
  }
  .margin-xsmall--pc {
    margin-top: 1.2rem !important;
    margin-bottom: 1.2rem !important;
  }
  .margin-xsmall-top--pc {
    margin-top: 1.2rem !important;
  }
  .margin-xsmall-bottom--pc {
    margin-bottom: 1.2rem !important;
  }
  .margin-xsmall-left--pc {
    margin-left: 1.2rem !important;
  }
  .margin-xsmall-right--pc {
    margin-right: 1.2rem !important;
  }
  .margin-small--pc {
    margin-top: 2.4rem !important;
    margin-bottom: 2.4rem !important;
  }
  .margin-small-top--pc {
    margin-top: 2.4rem !important;
  }
  .margin-small-bottom--pc {
    margin-bottom: 2.4rem !important;
  }
  .margin-small-left--pc {
    margin-left: 2.4rem !important;
  }
  .margin-small-right--pc {
    margin-right: 2.4rem !important;
  }
  .margin-medium--pc {
    margin-top: 4.8rem !important;
    margin-bottom: 4.8rem !important;
  }
  .margin-medium-top--pc {
    margin-top: 4.8rem !important;
  }
  .margin-medium-bottom--pc {
    margin-bottom: 4.8rem !important;
  }
  .margin-medium-left--pc {
    margin-left: 4.8rem !important;
  }
  .margin-medium-right--pc {
    margin-right: 4.8rem !important;
  }
  .margin-large--pc {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }
  .margin-large-top--pc {
    margin-top: 6rem !important;
  }
  .margin-large-bottom--pc {
    margin-bottom: 6rem !important;
  }
  .margin-large-left--pc {
    margin-left: 6rem !important;
  }
  .margin-large-right--pc {
    margin-right: 6rem !important;
  }
  .margin-xlarge--pc {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }
  .margin-xlarge-top--pc {
    margin-top: 8rem !important;
  }
  .margin-xlarge-bottom--pc {
    margin-bottom: 8rem !important;
  }
  .margin-xlarge-left--pc {
    margin-left: 8rem !important;
  }
  .margin-xlarge-right--pc {
    margin-right: 8rem !important;
  }
  .margin-reset-top--pc {
    margin-top: 0rem !important;
  }
  .nav-vertical--pc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-left: 0;
  }
  .padding--pc {
    padding: 2rem !important;
  }
  .padding-top--pc {
    padding-top: 2rem !important;
  }
  .padding-bottom--pc {
    padding-bottom: 2rem !important;
  }
  .padding-left--pc {
    padding-left: 2rem !important;
  }
  .padding-right--pc {
    padding-left: 2rem !important;
  }
  .padding-horizontal--pc {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .padding-vertical--pc {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .padding-xsmall--pc {
    padding: 1.2rem !important;
  }
  .padding-xsmall-top--pc {
    padding-top: 1.2rem !important;
  }
  .padding-xsmall-bottom--pc {
    padding-bottom: 1.2rem !important;
  }
  .padding-xsmall-left--pc {
    padding-left: 1.2rem !important;
  }
  .padding-xsmall-right--pc {
    padding-left: 1.2rem !important;
  }
  .padding-xsmall-horizontal--pc {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
  .padding-xsmall-vertical--pc {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
  .padding-small--pc {
    padding: 1.6rem !important;
  }
  .padding-small-top--pc {
    padding-top: 1.6rem !important;
  }
  .padding-small-bottom--pc {
    padding-bottom: 1.6rem !important;
  }
  .padding-small-left--pc {
    padding-left: 1.6rem !important;
  }
  .padding-small-right--pc {
    padding-left: 1.6rem !important;
  }
  .padding-small-horizontal--pc {
    padding-left: 1.6rem !important;
    padding-right: 1.6rem !important;
  }
  .padding-small-vertical--pc {
    padding-top: 1.6rem !important;
    padding-bottom: 1.6rem !important;
  }
  .padding-large--pc {
    padding: 4rem !important;
  }
  .padding-large-top--pc {
    padding-top: 4rem !important;
  }
  .padding-large-bottom--pc {
    padding-bottom: 4rem !important;
  }
  .padding-large-left--pc {
    padding-left: 4rem !important;
  }
  .padding-large-right--pc {
    padding-left: 4rem !important;
  }
  .padding-large-horizontal--pc {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
  .padding-large-vertical--pc {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .padding-xlarge--pc {
    padding: 6rem !important;
  }
  .padding-xlarge-top--pc {
    padding-top: 6rem !important;
  }
  .padding-xlarge-bottom--pc {
    padding-bottom: 6rem !important;
  }
  .padding-xlarge-left--pc {
    padding-left: 6rem !important;
  }
  .padding-xlarge-right--pc {
    padding-left: 6rem !important;
  }
  .padding-xlarge-horizontal--pc {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
  .padding-xlarge-vertical--pc {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }
  .padding-reset-top--pc {
    padding-top: 0rem !important;
  }
  .padding-reset-right--pc {
    padding-right: 0rem !important;
  }
  .padding-reset-left--pc {
    padding-left: 0rem !important;
  }
  .padding-reset-bottom--pc {
    padding-bottom: 0rem !important;
  }
  .padding-reset-vertical--pc {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .padding-reset-horizontal--pc {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section--pc {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .section-xsmall {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .section-xsmall--pc {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .section-small {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .section-small--pc {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .section-large {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .section-large--pc {
    padding-top: 9rem;
    padding-bottom: 9rem;
  }
  .section-xlarge {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .section-xlarge--pc {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .text-xsmall {
    font-size: -2.4rem;
    letter-spacing: 0.05em;
  }
  .text-small {
    font-size: -0.4rem;
    letter-spacing: 0.05em;
  }
  .text-default {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .text-large {
    font-size: 5.6rem;
    letter-spacing: 0.05em;
  }
  .text-xlarge {
    font-size: 9.6rem;
    letter-spacing: 0.05em;
  }
  .text-center--pc {
    text-align: center !important;
  }
  .text-right--pc {
    text-align: right !important;
  }
  .text-left--pc {
    text-align: left !important;
  }
  .visible--pc {
    visibility: visible !important;
  }
  .hidden--pc {
    visibility: hidden !important;
  }
  .width-1-1--pc {
    width: 100%;
  }
  .width-1-2--pc {
    width: 50%;
  }
  .width-1-3--pc {
    width: 33.3333333333%;
  }
  .width-2-3--pc {
    width: 66.6666666667%;
  }
  .width-1-4--pc {
    width: 25%;
  }
  .width-3-4--pc {
    width: 75%;
  }
  .width-1-5--pc {
    width: 20%;
  }
  .width-2-5--pc {
    width: 40%;
  }
  .width-3-5--pc {
    width: 60%;
  }
  .width-4-5--pc {
    width: 80%;
  }
  .width-1-6--pc {
    width: 16.6666666667%;
  }
  .width-5-6--pc {
    width: 83.3333333333%;
  }
  .width-1-12--pc {
    width: 8.3333333333%;
  }
  .width-2-12--pc {
    width: 16.6666666667%;
  }
  .width-3-12--pc {
    width: 25%;
  }
  .width-4-12--pc {
    width: 33.3333333333%;
  }
  .width-5-12--pc {
    width: 41.6666666667%;
  }
  .width-6-12--pc {
    width: 50%;
  }
  .width-7-12--pc {
    width: 58.3333333333%;
  }
  .width-8-12--pc {
    width: 66.6666666667%;
  }
  .width-9-12--pc {
    width: 75%;
  }
  .width-10-12--pc {
    width: 83.3333333333%;
  }
  .width-11-12--pc {
    width: 91.6666666667%;
  }
  .width-xsmall--pc {
    width: 100px;
  }
  .width-small--pc {
    width: 200px;
  }
  .width-medium--pc {
    width: 400px;
  }
  .width-large--pc {
    width: 600px;
  }
  .width-xlarge--pc {
    width: 750px;
  }
  .width-thumbnail--pc {
    width: 300px;
  }
  .width-auto--pc {
    width: auto;
  }
  .width-fluid--pc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 1px;
  }
  .slick-arrow {
    width: 40px;
    height: 50px;
  }
  .slick-arrow::before {
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    background-size: 18px auto;
  }
  .slick-arrow.slick-next:hover::before {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
  .slick-arrow.slick-prev:hover::before {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  .header .navbar__item--left {
    margin-right: 4rem;
  }
  .header .nav a {
    font-family: "Jura", sans-serif;
    font-weight: 700;
    position: relative;
  }
  .header .nav a::after {
    content: "";
    display: block;
    background-color: #584F4F;
    width: 0;
    height: 2px;
    position: absolute;
    top: 100%;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .footer {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .heading {
    margin-bottom: 6.8rem;
  }
  .heading__title--en {
    font-size: 3.6rem;
    letter-spacing: 0.05em;
  }
  .heading__title--ja {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .heading-style2 .heading__title--ja {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .heading-style2 {
    padding-bottom: 3.2rem;
    margin-bottom: 8rem;
  }
  .heading-style2::after {
    height: 4rem;
  }
  .heading-style2.inview[aria-visible=true]::after {
    height: 2px;
  }
  .hero__headline {
    font-size: 4.2rem;
  }
  .about {
    padding-top: 12rem;
  }
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .about__body {
    width: 43.065%;
    padding-top: 5.4rem;
  }
  .about__catch {
    font-size: 3.2rem;
    letter-spacing: 0;
    margin-bottom: 9.2rem;
  }
  .about__image {
    width: 40.46%;
  }
  .recruit__catch {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  .recruit__table th, .recruit__table td {
    padding: 1.6rem;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  .recruit__table th {
    width: 120px;
  }
  .business-card {
    gap: 2.4rem;
    margin-bottom: 10rem;
    max-width: 1086px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .business-card--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .business-card__media {
    width: 48.8950276243%;
  }
  .business-hillstone-card__media {
    width: 50%;
    padding: 7.2rem 4rem;
  }
  .business-hillstone-card__body {
    width: 50%;
  }
  .contact .button {
    font-size: 2.8rem;
    letter-spacing: 0.05em;
  }
  .company .table th {
    width: 140px;
  }
}
@media (hover: hover) {
  .link:hover {
    text-decoration: underline;
    color: #584F4F;
  }
  .nav-vertical li a:hover {
    color: #584F4F;
  }
  .contact .button:hover {
    background-color: #584F4F;
    color: #fff;
  }
}
@media screen and (min-width: 767.99px) and (hover: hover) {
  .header .nav a:hover::after {
    width: 100%;
  }
}

/* ========================================
   专业美化样式 - 株式会社海東
======================================== */

/* 页面整体优化 */
body {
  font-size: 1.6rem;
  color: #333;
  overflow-x: hidden;
}

/* Header 美化 */
.header {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.navbar {
  padding: 1rem 0;
}

.navbar__logo img {
  transition: transform 0.3s ease;
}

.navbar__logo:hover img {
  transform: scale(1.05);
}

.nav li a {
  position: relative;
  padding: 0.8rem 0;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* Hero 区块美化 */
.hero {
  position: relative;
  height: 75vh;
  min-height: 500px;
  max-height: 800px;
}

.hero__background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}

/* Section 标题美化 */
.heading {
  text-align: center;
  position: relative;
  margin-bottom: 6rem;
}

.heading__title--en {
  display: block;
  font-family: 'Jura', sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: #584F4F;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #584F4F 0%, #40A8C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heading__title--ja {
  display: block;
  font-size: 1.8rem;
  color: #666;
  letter-spacing: 0.2em;
  font-weight: 400;
}

.heading-style2 {
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 6rem;
}

.heading-style2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #584F4F 0%, #40A8C9 100%);
  border-radius: 2px;
}

/* About 区块美化 */
.about {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 10rem 0;
}

.about__h2 {
  font-size: 3.6rem;
  color: #584F4F;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about__catch {
  font-size: 2.4rem;
  line-height: 1.8;
  color: #40A8C9;
  font-weight: 500;
  margin-bottom: 3rem;
}

.about__description {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
}

.about__description h3 {
  color: #584F4F;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  border-left: 4px solid #40A8C9;
}

.about__description ul {
  list-style: none;
  padding-left: 0;
}

.about__description ul li {
  padding: 0.8rem 0 0.8rem 2.5rem;
  position: relative;
  color: #555;
}

.about__description ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #40A8C9;
  font-weight: bold;
  font-size: 1.8rem;
}

.about__image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about__image:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about__image:hover img {
  transform: scale(1.05);
}

/* Card 美化 */
.card {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: #ffffff;
}

.card-border {
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card-border:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #40A8C9;
}

.card__body {
  padding: 3rem;
}

.card__body h3 {
  color: #584F4F;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.card__body p {
  color: #666;
  line-height: 1.9;
}

.card__body ul {
  list-style: none;
  padding-left: 0;
}

.card__body ul li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: #555;
}

.card__body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #40A8C9;
  font-weight: bold;
}

/* Business Card 美化 */
.business-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  margin-bottom: 6rem;
  transition: all 0.4s ease;
}

.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.business-card__media {
  overflow: hidden;
  position: relative;
}

.business-card__media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(88,79,79,0.1) 0%, rgba(64,168,201,0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.business-card:hover .business-card__media::after {
  opacity: 1;
}

.business-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.business-card:hover .business-card__media img {
  transform: scale(1.08);
}

.business-card__body {
  padding: 4rem;
}

.business-card__title {
  font-size: 2.8rem;
  color: #584F4F;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 1.5rem;
}

.business-card__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #584F4F 0%, #40A8C9 100%);
  border-radius: 2px;
}

/* Button 美化 */
.button {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  transition: left 0.5s ease;
  z-index: -1;
}

.button:hover::before {
  left: 100%;
}

.button-primary {
  background: linear-gradient(135deg, #584F4F 0%, #6b5f5f 100%);
  box-shadow: 0 4px 15px rgba(88,79,79,0.3);
}

.button-primary:hover {
  background: linear-gradient(135deg, #6b5f5f 0%, #584F4F 100%);
  box-shadow: 0 6px 25px rgba(88,79,79,0.4);
  transform: translateY(-2px);
}

.button-large {
  padding: 1.8rem 4rem;
  font-size: 1.8rem;
}

/* Table 美化 */
.table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.table-border tbody tr {
  transition: background-color 0.3s ease;
}

.table-border tbody tr:hover {
  background-color: #f8f9fa;
}

.table th {
  background: linear-gradient(135deg, #584F4F 0%, #6b5f5f 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 2rem 1.6rem;
}

.table td {
  padding: 1.8rem 1.6rem;
  color: #555;
}

.table td a {
  color: #40A8C9;
  font-weight: 500;
  transition: color 0.3s ease;
}

.table td a:hover {
  color: #584F4F;
  text-decoration: underline;
}

/* Section 背景美化 */
.section {
  position: relative;
}

.section-xlarge {
  padding: 10rem 0;
}

.background-modest {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.background-modest::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(64,168,201,0.3) 50%, transparent 100%);
}

/* Footer 美化 */
.footer {
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(64, 168, 201, 0.3) 10%, #40A8C9 50%, rgba(64, 168, 201, 0.3) 90%, transparent 100%);
  z-index: 10;
  box-shadow: 0 2px 10px rgba(64, 168, 201, 0.2);
}

.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(64, 168, 201, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(64, 168, 201, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(64, 168, 201, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #40A8C9 20%, #40A8C9 50%, #40A8C9 80%, transparent 100%);
  z-index: 10;
  width: 100%;
}

.footer__logo {
  text-align: center;
  position: relative;
  z-index: 20;
  padding: 2rem 0;
}

.footer__logo img {
  margin-bottom: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.2) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.footer__logo:hover img {
  opacity: 0.9;
  transform: scale(1.03) translateY(-2px);
  filter: brightness(1.3) drop-shadow(0 4px 12px rgba(64, 168, 201, 0.4));
}

.footer__logo p {
  font-family: 'Helvetica Neue', 'Arial', 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #a8b2c1;
  font-size: 1.4rem;
  margin: 0;
  position: relative;
}

.footer__logo p::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #40A8C9, transparent);
}

.footer__logo:hover img {
  opacity: 0.8;
}

.footer__logo p {
  color: #999;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

/* Contact 区块美化 */
.contact .button {
  background: #ffffff;
  border: 2px solid #584F4F;
  color: #584F4F;
  font-size: 2rem;
  padding: 2rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact .button:hover {
  background: #584F4F;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(88,79,79,0.3);
}

/* Google Map 美化 */
.frame-googlemap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.frame-googlemap:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

/* 响应式优化 */
@media screen and (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .about__image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767.98px) {
  .heading__title--en {
    font-size: 4rem;
  }
  
  .heading__title--ja {
    font-size: 1.2rem;
  }
  
  .about {
    padding: 8rem 0;
  }
  
  .about__h2 {
    font-size: 2.8rem;
    padding-left: 1.5rem;
  }
  
  .about__h2::before {
    width: 3px;
  }
  
  .about__description h3 {
    font-size: 1.8rem;
  }
  
  .about__description ul li {
    padding: 1.2rem 1.5rem 1.2rem 5rem;
    font-size: 1.4rem;
  }
  
  .business-card {
    margin-bottom: 5rem;
  }
  
  .business-card__body {
    padding: 3rem;
  }
  
  .business-card__title {
    font-size: 2.4rem;
  }
  
  .card__body {
    padding: 2.5rem;
  }
  
  .card__body h3 {
    font-size: 1.8rem;
  }
  
  .section-xlarge {
    padding: 8rem 0;
  }
  
  .contact .button {
    font-size: 1.5rem;
    padding: 2rem 3rem;
  }
  
  .table th,
  .table td {
    padding: 1.8rem 1.5rem;
    font-size: 1.4rem;
  }
  
  .hero {
    height: 70vh;
    min-height: 500px;
  }
}

/* 专业商务滚动动画 */
.inview {
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.inview[aria-visible=false] {
  opacity: 0;
  transform: translateY(40px);
}

.inview[aria-visible=true] {
  opacity: 1;
  transform: translateY(0);
}

/* 微妙的页面加载动画 */
body {
  animation: pageLoad 0.8s ease-out;
}

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

/* Footer进入视口动画 */
.footer {
  animation: footerSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Footer装饰性光效 */
.footer::before {
  animation: shimmerLine 3s ease-in-out infinite alternate;
}

@keyframes shimmerLine {
  0% {
    opacity: 0.6;
    box-shadow: 0 2px 10px rgba(64, 168, 201, 0.2);
  }
  100% {
    opacity: 1;
    box-shadow: 0 2px 20px rgba(64, 168, 201, 0.4);
  }
}

/* 专业contact模块样式 */
.contact-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0 0 0;
}

.contact-description {
  margin-bottom: 4rem;
}

.contact-description p {
  font-size: 1.8rem;
  color: #5a6c7d;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

.contact-buttons {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-button-group {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
}

.contact-button {
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
  border: 2px solid #e1e8ed;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 100px;
  width: 100%;
}

.contact-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(64, 168, 201, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-button:hover::before {
  opacity: 1;
}

.contact-button:hover {
  border-color: #40A8C9;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(64, 168, 201, 0.15);
}

.contact-button__icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-button--email .contact-button__icon {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-button--phone .contact-button__icon {
  background: linear-gradient(135deg, #fff0f5 0%, #ffe0ec 100%);
}

.contact-button__icon span {
  font-size: 2.4rem;
}

.contact-button--email .contact-button__icon span {
  color: #40A8C9;
}

.contact-button--phone .contact-button__icon span {
  color: #E91E63;
}

.contact-button__content {
  text-align: left;
  flex: 1;
}

.contact-button__label {
  font-size: 1.2rem;
  color: #8895a7;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.contact-button__value {
  font-size: 1.6rem;
  color: #2c3e50;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .contact-content {
    padding: 1rem 0;
  }
  
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .contact-button-group {
    width: 100%;
    max-width: 400px;
  }
  
  .contact-button {
    padding: 2rem 1.5rem;
    min-height: 90px;
  }
  
  .contact-button__icon {
    width: 50px;
    height: 50px;
    margin-right: 1.2rem;
  }
  
  .contact-button__icon span {
    font-size: 2rem;
  }
  
  .contact-description p {
    font-size: 1.6rem;
  }
  
  .contact-description {
    margin-bottom: 3rem;
  }
}





/* 加载动画 */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

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

/* 悬浮效果增强 */
.card-hover-effect {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-effect:hover {
  transform: translateY(-12px) scale(1.02);
}

/* 文字渐变效果 */
.text-gradient {
  background: linear-gradient(135deg, #1a1a1a 0%, #584F4F 50%, #40A8C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* 数字装饰 */
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #584F4F 0%, #40A8C9 100%);
  color: #ffffff;
  font-family: 'Jura', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 
    0 8px 24px rgba(88,79,79,0.2),
    0 16px 48px rgba(64,168,201,0.15);
  margin-bottom: 2rem;
}

/* 分隔线装饰 */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  margin: 6rem 0;
}

/* 平滑滚动 */
html {
  scroll-behavior: smooth;
}

/* 选中文字样式 */
::selection {
  background: rgba(64,168,201,0.2);
  color: #1a1a1a;
}

::-moz-selection {
  background: rgba(64,168,201,0.2);
  color: #1a1a1a;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #584F4F 0%, #40A8C9 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #40A8C9 0%, #584F4F 100%);
}

/* ========================================
   黄金比例高端商务布局
======================================== */

/* 专业商务容器系统 */
.container {
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  padding-left: 6rem !important;
  padding-right: 6rem !important;
  position: relative;
}

/* 响应式容器调整 */
@media screen and (max-width: 1200px) {
  .container {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* 确保所有section容器宽度一致 */
.section .container,
.about .container,
.business .container,
.hero .container,
.contact .container,
.footer .container {
  max-width: 1440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}





/* Business Card 高端商务样式 */
.business-card {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 3rem !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.business-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12) !important;
  border-color: rgba(64, 168, 201, 0.3) !important;
}

.business-card__media {
  position: relative !important;
  overflow: hidden !important;
}

.business-card__media::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(135deg, rgba(64, 168, 201, 0.1) 0%, transparent 100%) !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.business-card:hover .business-card__media::after {
  opacity: 1 !important;
}

.business-card__media img {
  transition: transform 0.5s ease !important;
}

.business-card:hover .business-card__media img {
  transform: scale(1.05) !important;
}

.business-card__body {
  padding: 3rem !important;
  position: relative !important;
}

.business-card__title {
  font-size: 2.4rem !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  color: #584F4F !important;
  position: relative !important;
}

.business-card__title::after {
  content: '' !important;
  position: absolute !important;
  bottom: -0.5rem !important;
  left: 0 !important;
  width: 50px !important;
  height: 3px !important;
  background: linear-gradient(90deg, #40A8C9, #584F4F) !important;
  border-radius: 2px !important;
}

/* About 区块黄金比例布局 */
.about__container {
  grid-template-columns: 1.618fr 1fr !important;
  gap: 6rem !important;
}

/* Business Card 均等布局 */
.business-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
}

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

.business-card__media {
  width: 100% !important;
}

.business-card__body {
  width: 100% !important;
}

/* 标题字体黄金比例 */
.heading__title--en {
  font-size: 6.472rem !important;
  line-height: 1.618 !important;
}

.heading__title--ja {
  font-size: 1.4rem !important;
  margin-top: 1rem !important;
}

/* Section 间距黄金比例 */
.section-xlarge {
  padding: 14.544rem 0 !important;
}

/* 卡片间距黄金比例 */
.card__body {
  padding: 4.854rem !important;
}



/* 响应式调整 */
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1200px !important;
  }
}

@media screen and (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr !important;
    gap: 4rem !important;
  }
  
  .business-card,
  .business-card--reverse {
    grid-template-columns: 1fr !important;
  }
}

@media screen and (max-width: 767.98px) {
  .container {
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
  
  .heading__title--en {
    font-size: 4rem !important;
  }
  
  .section-xlarge {
    padding: 9rem 0 !important;
  }
  
  .card__body {
    padding: 3rem !important;
  }
}

/* 专业商务字体系统 */
body {
  font-size: 1.6rem !important;
  line-height: 1.618 !important;
  font-family: 'Helvetica Neue', 'Arial', 'Noto Sans JP', sans-serif !important;
  font-weight: 400;
  color: #2c3e50;
  letter-spacing: 0.01em;
}

h1, .h1 {
  font-size: 4.854rem !important;
  line-height: 1.618 !important;
  margin-bottom: 3rem !important;
}

h2, .h2 {
  font-size: 3rem !important;
  line-height: 1.618 !important;
  margin-bottom: 2.4rem !important;
}

h3, .h3 {
  font-size: 2.4rem !important;
  line-height: 1.618 !important;
  margin-bottom: 1.618rem !important;
}

p {
  line-height: 1.618 !important;
  margin-bottom: 1.618rem !important;
}

/* 黄金比例间距系统 */
.margin-small {
  margin: 1.618rem !important;
}

.margin-medium {
  margin: 3rem !important;
}

.margin-large {
  margin: 4.854rem !important;
}

.margin-xlarge {
  margin: 7.854rem !important;
}

/* 黄金比例卡片悬浮效果 */
.card-border:hover {
  transform: translateY(-14.544px) scale(1.02) !important;
}

.business-card:hover {
  transform: translateY(-19.416px) scale(1.01) !important;
}

/* 黄金比例按钮 */
.button {
  padding: 1.2rem 3rem !important;
  border-radius: 50px !important;
}

/* 黄金比例图片容器 */
.about__image {
  border-radius: 24.27px !important;
}

/* Contact section - 消除与footer之间的空白 */
.contact {
  padding: 6rem 0 2rem 0;
  margin: 0;
}

/* ===== 高端商务风格优化 ===== */

/* 全局阴影系统 */
.shadow-elegant {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.shadow-soft {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.shadow-strong {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* 高级渐变背景 */
.gradient-premium {
  background: linear-gradient(135deg, #584F4F 0%, #2A2525 100%);
}

.gradient-accent {
  background: linear-gradient(135deg, #40A8C9 0%, #2E7A8E 100%);
}

.gradient-subtle {
  background: linear-gradient(135deg, rgba(88,79,79,0.03) 0%, rgba(64,168,201,0.03) 100%);
}

/* 精致边框系统 */
.border-elegant {
  border: 1px solid rgba(88, 79, 79, 0.1);
}

.border-accent {
  border: 1px solid rgba(64, 168, 201, 0.2);
}

/* 高级卡片样式 */
.card-premium {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  border-color: rgba(64, 168, 201, 0.3);
}

/* 标题样式优化 */
.heading-premium {
  position: relative;
  padding-bottom: 1.5rem;
}

.heading-premium::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #40A8C9, #584F4F);
  border-radius: 2px;
}

/* 按钮高级样式 */
.button-premium {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.button-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.button-premium:hover::before {
  left: 100%;
}

/* 数字动画样式 */
.number-animate {
  font-size: 4.8rem;
  font-weight: 700;
  color: #40A8C9;
  font-family: 'Jura', sans-serif;
  line-height: 1;
  margin-bottom: 1rem;
}

/* 背景装饰 */
.bg-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
}

.bg-decoration--large {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #40A8C9 0%, transparent 70%);
}

.bg-decoration--medium {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #584F4F 0%, transparent 70%);
}

/* 高级分隔线 */
.divider-premium {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(88,79,79,0.2), transparent);
  margin: 4rem 0;
}

/* 文字渐变效果 */
.text-gradient-premium {
  background: linear-gradient(135deg, #584F4F 0%, #40A8C9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 高级动画CSS样式 ===== */

/* 滚动进度条 */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #40A8C9, #584F4F);
  width: 0%;
  transition: width 0.1s ease;
}

/* 页面加载动画 */
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

/* 初始动画状态 */
.hero,
.heading,
.navbar {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 高级悬停效果 */
.card-hover-lift {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 磁性按钮效果 */
.button,
.contact-button {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: transform;
}

/* 脉冲动画 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* 淡入动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* 光晕效果 */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(64, 168, 201, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glow-effect:hover::before {
  opacity: 1;
}

/* 文字打字机效果 */
@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.typewriter {
  overflow: hidden;
  white-space: nowrap;
  animation: typewriter 3s steps(40, end);
}

/* 浮动动画 */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

/* 响应式动画优化 */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== 专业色彩系统优化 ===== */

/* 主色调系统 - 更精致的商务色彩 */
:root {
  /* 主要品牌色 */
  --primary-dark: #2A2525;
  --primary-medium: #584F4F;
  --primary-light: #8B8080;
  
  /* 辅助商务色 */
  --secondary-dark: #2E7A8E;
  --secondary-medium: #40A8C9;
  --secondary-light: #6FC5E8;
  
  /* 强调色 */
  --accent-primary: #A540C9;
  --accent-secondary: #C940A5;
  
  /* 中性色系 */
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-400: #A3A3A3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  
  /* 语义化颜色 */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;
  
  /* 渐变色 */
  --gradient-primary: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-dark) 0%, var(--secondary-medium) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  
  /* 阴影色 */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* 应用新色彩系统到现有元素 */
.background-primary {
  background: var(--gradient-primary) !important;
}

.background-secondary {
  background: var(--gradient-secondary) !important;
}

/* 更新文字颜色 */
.text-primary {
  color: var(--primary-medium) !important;
}

.text-secondary {
  color: var(--secondary-medium) !important;
}

.text-accent {
  color: var(--accent-primary) !important;
}

/* 高级按钮色彩系统 */
.button-premium {
  background: var(--gradient-secondary) !important;
  color: white !important;
  border: none !important;
  box-shadow: var(--shadow-lg) !important;
}

.button-premium:hover {
  background: var(--gradient-accent) !important;
  box-shadow: var(--shadow-xl) !important;
  transform: translateY(-2px) !important;
}

/* 卡片色彩优化 */
.card-premium {
  background: white !important;
  border: 1px solid var(--neutral-200) !important;
  box-shadow: var(--shadow-md) !important;
}

.card-premium:hover {
  border-color: var(--secondary-light) !important;
  box-shadow: var(--shadow-xl) !important;
}

/* 导航栏色彩优化 */
.header {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid var(--neutral-200) !important;
}

.navbar__logo img {
  filter: brightness(0) saturate(100%) !important;
}

/* Hero区域背景优化 */
.hero {
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--neutral-100) 100%) !important;
}

/* Footer色彩优化 */
.footer {
  background: var(--neutral-900) !important;
  color: var(--neutral-300) !important;
}

/* ===== 现代化Footer样式 ===== */
.footer__content {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 4rem !important;
  margin-bottom: 3rem !important;
}

.footer__section {
  margin-bottom: 2rem !important;
}

.footer__section--brand {
  max-width: 350px !important;
}

.footer__logo {
  margin-bottom: 2rem !important;
}

.footer__logo img {
  margin-bottom: 1.5rem !important;
  filter: brightness(0) invert(1) !important;
}

.footer__description {
  color: var(--neutral-400) !important;
  line-height: 1.6 !important;
  margin-bottom: 2rem !important;
  font-size: 0.95rem !important;
}

.footer__social {
  display: flex !important;
  gap: 1rem !important;
}

.footer__social-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  color: var(--neutral-400) !important;
  transition: all 0.3s ease !important;
}

.footer__social-link:hover {
  background: var(--secondary-medium) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

.footer__title {
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-bottom: 1.5rem !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.footer__nav {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2rem !important;
}

.footer__nav-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer__nav-list li {
  margin-bottom: 0.8rem !important;
}

.footer__nav-link {
  color: var(--neutral-400) !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  transition: color 0.3s ease !important;
}

.footer__nav-link:hover {
  color: var(--secondary-medium) !important;
}

.footer__contact-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
}

.footer__contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
}

.footer__contact-icon {
  color: var(--secondary-medium) !important;
  flex-shrink: 0 !important;
}

.footer__contact-link,
.footer__contact-text {
  color: var(--neutral-400) !important;
  text-decoration: none !important;
  font-size: 0.95rem !important;
  line-height: 1.4 !important;
}

.footer__contact-link:hover {
  color: var(--secondary-medium) !important;
}

.footer__legal-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
}

.footer__company-name {
  color: white !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem !important;
}

.footer__ceo,
.footer__established {
  color: var(--neutral-400) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.footer__bottom {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding-top: 2rem !important;
  border-top: 1px solid var(--neutral-800) !important;
}

.footer__copyright {
  color: var(--neutral-500) !important;
  font-size: 0.9rem !important;
}

.footer__back-to-top-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 50% !important;
  color: var(--neutral-400) !important;
  transition: all 0.3s ease !important;
}

.footer__back-to-top-link:hover {
  background: var(--secondary-medium) !important;
  color: white !important;
  transform: translateY(-2px) !important;
}

/* Footer响应式设计 */
@media screen and (max-width: 1024px) {
  .footer__content {
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
  }
  
  .footer__section--brand {
    grid-column: 1 / -1 !important;
    max-width: none !important;
  }
}

@media screen and (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .footer__nav {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .footer__bottom {
    flex-direction: column !important;
    gap: 1rem !important;
    text-align: center !important;
  }
}

/* 联系按钮色彩优化 */
.contact-button--email {
  background: linear-gradient(135deg, var(--secondary-medium), var(--secondary-dark)) !important;
  color: white !important;
}

.contact-button--phone {
  background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark)) !important;
  color: white !important;
}

/* 数字动画色彩 */
.number-animate {
  color: var(--secondary-medium) !important;
  text-shadow: 0 2px 4px rgba(64, 168, 201, 0.2) !important;
}

/* 标题下划线色彩 */
.heading-premium::after {
  background: var(--gradient-secondary) !important;
}

/* 滚动进度条色彩 */
.scroll-progress-bar {
  background: var(--gradient-secondary) !important;
}

/* 深色主题支持 */
@media (prefers-color-scheme: dark) {
  :root {
    --neutral-50: #171717;
    --neutral-100: #262626;
    --neutral-200: #404040;
    --neutral-300: #525252;
    --neutral-400: #737373;
    --neutral-500: #A3A3A3;
    --neutral-600: #D4D4D4;
    --neutral-700: #E5E5E5;
    --neutral-800: #F5F5F5;
    --neutral-900: #FAFAFA;
  }
  
  body {
    background: var(--neutral-100) !important;
    color: var(--neutral-800) !important;
  }
  
  .card-premium {
    background: var(--neutral-200) !important;
    border-color: var(--neutral-300) !important;
  }
  
  .header {
    background: rgba(23, 23, 23, 0.95) !important;
    border-bottom-color: var(--neutral-300) !important;
  }
}

/* ===== 高级UI组件和视觉效果 ===== */

/* 玻璃态效果 */
.glass-effect {
  background: rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
}

/* 霓虹光效 */
.neon-glow {
  position: relative !important;
  overflow: hidden !important;
}

.neon-glow::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(64, 168, 201, 0.4), transparent) !important;
  transition: left 0.5s ease !important;
}

.neon-glow:hover::before {
  left: 100% !important;
}

/* 高级徽章组件 */
.badge {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.25rem 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.025em !important;
}

.badge--primary {
  background: var(--gradient-secondary) !important;
  color: white !important;
}

.badge--secondary {
  background: var(--neutral-200) !important;
  color: var(--neutral-700) !important;
}

.badge--accent {
  background: var(--gradient-accent) !important;
  color: white !important;
}

/* 高级统计卡片 */
.stats-card {
  background: white !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  box-shadow: var(--shadow-lg) !important;
  border: 1px solid var(--neutral-200) !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.stats-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 4px !important;
  height: 100% !important;
  background: var(--gradient-secondary) !important;
}

.stats-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-xl) !important;
}

.stats-card__number {
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: var(--secondary-medium) !important;
  margin-bottom: 0.5rem !important;
}

.stats-card__label {
  font-size: 1rem !important;
  color: var(--neutral-600) !important;
  font-weight: 500 !important;
}

/* 高级时间线组件 */
.timeline {
  position: relative !important;
  padding-left: 3rem !important;
}

.timeline::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: var(--gradient-secondary) !important;
}

.timeline-item {
  position: relative !important;
  margin-bottom: 3rem !important;
}

.timeline-item::before {
  content: '' !important;
  position: absolute !important;
  left: -3.4rem !important;
  top: 0.5rem !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: var(--secondary-medium) !important;
  border: 2px solid white !important;
  box-shadow: 0 0 0 4px rgba(64, 168, 201, 0.2) !important;
}

.timeline-item__content {
  background: white !important;
  padding: 1.5rem !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow-md) !important;
  border: 1px solid var(--neutral-200) !important;
}

/* 高级标签云 */
.tag-cloud {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}

.tag {
  display: inline-block !important;
  padding: 0.5rem 1rem !important;
  background: var(--neutral-100) !important;
  border: 1px solid var(--neutral-200) !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  color: var(--neutral-700) !important;
  transition: all 0.2s ease !important;
}

.tag:hover {
  background: var(--secondary-medium) !important;
  color: white !important;
  border-color: var(--secondary-medium) !important;
  transform: translateY(-2px) !important;
}

/* 高级进度条 */
.progress-bar {
  width: 100% !important;
  height: 8px !important;
  background: var(--neutral-200) !important;
  border-radius: 4px !important;
  overflow: hidden !important;
  position: relative !important;
}

.progress-bar__fill {
  height: 100% !important;
  background: var(--gradient-secondary) !important;
  border-radius: 4px !important;
  transition: width 1s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.progress-bar__fill::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
  animation: shimmer 2s infinite !important;
}

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

/* 高级提示框 */
.tooltip {
  position: relative !important;
  display: inline-block !important;
}

.tooltip__content {
  position: absolute !important;
  bottom: 125% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: var(--neutral-900) !important;
  color: white !important;
  padding: 0.5rem 1rem !important;
  border-radius: 6px !important;
  font-size: 0.875rem !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  z-index: 1000 !important;
}

.tooltip__content::after {
  content: '' !important;
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 5px solid transparent !important;
  border-top-color: var(--neutral-900) !important;
}

.tooltip:hover .tooltip__content {
  opacity: 1 !important;
  visibility: visible !important;
}

/* 高级加载动画 */
.loading-spinner {
  width: 40px !important;
  height: 40px !important;
  border: 3px solid var(--neutral-200) !important;
  border-top: 3px solid var(--secondary-medium) !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* 高级分割线 */
.divider-fancy {
  display: flex !important;
  align-items: center !important;
  margin: 3rem 0 !important;
}

.divider-fancy::before,
.divider-fancy::after {
  content: '' !important;
  flex: 1 !important;
  height: 1px !important;
  background: var(--gradient-secondary) !important;
}

.divider-fancy span {
  padding: 0 2rem !important;
  color: var(--neutral-600) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

/* Strengths Section Styles */
.strengths-section {
  margin-top: 3rem;
}

.strengths-section .card {
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}

.strengths-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border-color: rgba(64,168,201,0.2);
}

.strengths-section .card:hover .number-animate {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.strengths-section .number-animate {
  transition: transform 0.3s ease;
  letter-spacing: -2px;
}

.strengths-section h3 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 3.6rem;
}

.strengths-section p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: #666666;
  font-weight: 400;
}

/* Mobile optimization for strengths section */
@media screen and (max-width: 768px) {
  .strengths-section .flex {
    flex-wrap: wrap;
  }

  .strengths-section .width-1-5--pc {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .strengths-section .number-animate {
    font-size: 3rem !important;
  }

  .strengths-section h3 {
    font-size: 1.2rem !important;
  }

  .strengths-section p {
    font-size: 1rem !important;
  }
}

/* Warehouse-China Section Styles */
.warehouse-china .card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.warehouse-china .card-premium:hover .warehouse-china__title {
  color: #40A8C9;
}

.warehouse-china .warehouse-china__title {
  transition: color 0.3s ease;
}

.warehouse-china li:hover {
  color: #40A8C9;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Mobile optimization for warehouse-china section */
@media screen and (max-width: 768px) {
  .warehouse-china .flex {
    flex-wrap: wrap;
  }

  .warehouse-china .width-1-2--pc {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .warehouse-china .card-premium {
    padding: 2rem !important;
  }

  .warehouse-china .warehouse-china__title {
    font-size: 1.5rem !important;
  }

  .warehouse-china ul {
    font-size: 1.1rem !important;
  }

  .warehouse-china .flex > div {
    min-width: calc(50% - 0.75rem) !important;
  }
}

/* 全局样式优化 */
a {
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
  color: #40A8C9 !important;
  transform: translateY(-2px);
}

/* 表格链接hover效果 */
table a:hover {
  color: #6FC5E8 !important;
  transform: translateY(-2px);
}

/* 优化heading样式 */
.heading-style2 .heading__title--en {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.heading-style2 .heading__title--ja {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

/* 优化about区块布局 */
.about__container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.about__body {
  flex: 1;
}

.about__image {
  flex: 1;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

/* 移动端优化 */
@media screen and (max-width: 768px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .about__container {
    flex-direction: column;
    gap: 3rem;
  }

  .about__body,
  .about__image {
    flex: 1;
    width: 100%;
  }

  .company .flex {
    flex-wrap: wrap;
  }

  .company .width-1-2--pc {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .heading-style2 .heading__title--ja {
    font-size: 2rem;
  }
}
