@charset "UTF-8";
.global-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  margin-top: 80px;
  background: #082555;
}
.global-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}
.global-cta .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .global-cta .container {
    padding: 0 20px;
  }
}
.global-cta__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
@media (max-width: 1024px) {
  .global-cta__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
}
.global-cta__content {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .global-cta__content {
    max-width: 100%;
  }
}
.global-cta__label {
  display: inline-block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #c8a45c;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.global-cta__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .global-cta__title {
    font-size: 24px;
  }
}
.global-cta__text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin: 0;
}
@media (max-width: 768px) {
  .global-cta__text {
    font-size: 14px;
  }
}
.global-cta__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .global-cta__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .global-cta__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.global-cta__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 18px 32px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn--primary {
  background: #c8a45c;
  color: #ffffff;
}
.global-cta__btn--primary:visited {
  color: #ffffff;
}
.global-cta__btn--primary:hover {
  background: #d4b76e;
  color: #ffffff;
}
.global-cta__btn--primary:hover .global-cta__btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.global-cta__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.global-cta__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.global-cta__btn--secondary .global-cta__btn-icon {
  color: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-icon svg {
  stroke: #ffffff;
}
.global-cta__btn--secondary .global-cta__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.3;
}
.global-cta__btn--secondary .global-cta__btn-text small {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
.global-cta__btn--secondary .global-cta__btn-text strong {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.global-cta__btn-icon {
  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;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.global-cta__btn-icon svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .global-cta__btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 24px;
  }
}

.btn-primary,
.btn-secondary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}

.btn-primary {
  background: #c8a45c;
  color: #082555;
  border: none;
}
.btn-primary:hover {
  background: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn-secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-white {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
  background: #ffffff;
  color: #0e3472;
  border: 1px solid #ffffff;
}
.btn-white:hover {
  background: #c8a45c;
  border-color: #c8a45c;
  color: #082555;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 4px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.08em;
}
.btn--primary {
  background: #c8a45c;
  color: #ffffff;
  border: none;
}
.btn--primary:visited {
  color: #ffffff;
}
.btn--primary:hover {
  background: #082555;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--secondary {
  background: transparent;
  color: #0e3472;
  border: 1px solid #0e3472;
}
.btn--secondary:hover {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}
.btn--lg {
  padding: 20px 44px;
  font-size: 16px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 48px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 224, 224, 0.5);
}
.card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 48px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  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;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-image {
  max-width: 90%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 24px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

.home .site-content {
  padding-top: 0;
}

.front-page {
  overflow: hidden;
}

@media (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  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;
  color: #ffffff;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 80px;
    padding-bottom: 200px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 60px;
    padding-bottom: 180px;
  }
}
.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero .hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-animation: heroZoom 20s ease-out forwards;
          animation: heroZoom 20s ease-out forwards;
}
@-webkit-keyframes heroZoom {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes heroZoom {
  from {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.hero .hero-content .hero-label,
.hero .hero-content .hero-title .title-line,
.hero .hero-content .hero-subtitle,
.hero .hero-content .hero-actions {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-animation: fadeInUp 0.8s ease forwards;
          animation: fadeInUp 0.8s ease forwards;
}
.hero .hero-content .hero-label {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.hero .hero-content .hero-title .title-line:nth-child(1) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.hero .hero-content .hero-title .title-line:nth-child(2) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.hero .hero-content .hero-subtitle {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.hero .hero-content .hero-actions {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.hero .hero-label {
  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;
  gap: 16px;
  margin-bottom: 48px;
}
.hero .hero-label .label-en {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
}
.hero .hero-label .label-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.hero .hero-label .label-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .hero .hero-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .hero .hero-label .label-line {
    width: 30px;
  }
}
.hero .hero-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  white-space: nowrap;
}
.hero .hero-title .title-line {
  display: block;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: clamp(24px, 7vw, 36px);
    white-space: normal;
  }
}
.hero .hero-subtitle {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .hero .hero-subtitle {
    font-size: 16px;
  }
}
.hero .hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero .hero-actions {
    -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;
  }
}
.hero .hero-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero .hero-btn--primary {
  background: #c8a45c;
  color: #082555;
}
.hero .hero-btn--primary:hover {
  background: #ffffff;
}
.hero .hero-btn--primary:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.hero .hero-btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero .hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero .hero-btn .btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .hero .hero-btn {
    width: 100%;
    max-width: 300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.hero .hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 32px;
  -webkit-transform: none;
          transform: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  z-index: 1;
  opacity: 0;
  -webkit-animation: fadeInUp 0.8s ease 1.2s forwards;
          animation: fadeInUp 0.8s ease 1.2s forwards;
}
@media (max-width: 1024px) {
  .hero .hero-scroll {
    display: none;
  }
}
.hero .hero-scroll .scroll-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.hero .hero-scroll .scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero .hero-scroll .scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #c8a45c;
  -webkit-animation: scrollLine 2s ease-in-out infinite;
          animation: scrollLine 2s ease-in-out infinite;
}
@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

.hero-news-float {
  position: absolute;
  bottom: 40px;
  right: 32px;
  z-index: 10;
  max-width: 420px;
  width: calc(100% - 64px);
  opacity: 0;
  -webkit-transform: translateY(30px) translateX(20px);
          transform: translateY(30px) translateX(20px);
  -webkit-animation: heroNewsSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
          animation: heroNewsSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
}
@-webkit-keyframes heroNewsSlideIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}
@keyframes heroNewsSlideIn {
  to {
    opacity: 1;
    -webkit-transform: translateY(0) translateX(0);
            transform: translateY(0) translateX(0);
  }
}
@media (max-width: 1024px) {
  .hero-news-float {
    right: 32px;
    left: 32px;
    max-width: none;
    bottom: 40px;
  }
}
@media (max-width: 768px) {
  .hero-news-float {
    right: 20px;
    left: 20px;
    bottom: 30px;
  }
}

.hero-news-card {
  display: block;
  text-decoration: none;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.hero-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: 12px;
  z-index: 0;
}
.hero-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  border-radius: 12px;
  z-index: 1;
}
.hero-news-card__inner {
  position: relative;
  z-index: 2;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero-news-card__inner {
    padding: 16px 20px;
    gap: 12px;
  }
}
.hero-news-card__border {
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;
  background: -webkit-linear-gradient(315deg, rgba(200, 164, 92, 0.6) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(26, 77, 143, 0.3) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(200, 164, 92, 0.6) 100%);
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.6) 0%, rgba(255, 255, 255, 0.2) 25%, rgba(26, 77, 143, 0.3) 50%, rgba(255, 255, 255, 0.2) 75%, rgba(200, 164, 92, 0.6) 100%);
  background-size: 300% 300%;
  -webkit-animation: borderGlow 4s ease-in-out infinite;
          animation: borderGlow 4s ease-in-out infinite;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: -webkit-linear-gradient(#fff 0 0) content-box, -webkit-linear-gradient(#fff 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 3;
  pointer-events: none;
}
@-webkit-keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
@keyframes borderGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.hero-news-card__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.hero-news-card__label .label-icon {
  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;
  width: 20px;
  height: 20px;
  background: #c8a45c;
  border-radius: 4px;
  color: #082555;
  -webkit-animation: labelPulse 2s ease-in-out infinite;
          animation: labelPulse 2s ease-in-out infinite;
}
@-webkit-keyframes labelPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.4);
            box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 4px rgba(200, 164, 92, 0);
            box-shadow: 0 0 0 4px rgba(200, 164, 92, 0);
  }
}
@keyframes labelPulse {
  0%, 100% {
    -webkit-box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.4);
            box-shadow: 0 0 0 0 rgba(200, 164, 92, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 4px rgba(200, 164, 92, 0);
            box-shadow: 0 0 0 4px rgba(200, 164, 92, 0);
  }
}
.hero-news-card__label .label-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
}
.hero-news-card__label .label-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), to(transparent));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}
.hero-news-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.hero-news-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.hero-news-card__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 4px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  color: #ffffff;
}
.hero-news-card__date .date-day {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-news-card__date .date-day {
    font-size: 24px;
  }
}
.hero-news-card__date .date-month {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.hero-news-card__date .date-year {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.6;
  margin-left: 2px;
}
.hero-news-card__category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.hero-news-card__title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .hero-news-card__title {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}
.hero-news-card__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 6px;
}
.hero-news-card__arrow .arrow-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-news-card__arrow .arrow-icon {
  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;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-news-card:hover .hero-news-card__border {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
.hero-news-card:hover .hero-news-card__title {
  color: #d4b76e;
}
.hero-news-card:hover .hero-news-card__arrow .arrow-text {
  color: #d4b76e;
}
.hero-news-card:hover .hero-news-card__arrow .arrow-icon {
  background: #c8a45c;
  color: #082555;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.section {
  padding: 160px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

.section-header {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}

.section-title-block {
  text-align: center;
}
.section-title-block--left {
  text-align: left;
}

.section-label {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 16px;
}

.section-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
  }
}

.section-subtitle {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0e3472;
  margin: 0 0 16px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .section-subtitle {
    font-size: 16px;
  }
}

.section-desc {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  line-height: 1.9;
  margin: 0;
  max-width: 800px;
}
.section-title-block:not(.section-title-block--left) .section-desc {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .section-desc {
    font-size: 14px;
  }
}

.section-cta {
  text-align: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .section-cta {
    margin-top: 48px;
  }
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.container-wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px;
  }
}

.btn-outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #0a0a0a;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
  background: #0a0a0a;
  border-color: #0a0a0a;
  color: #ffffff;
}
.btn-outline:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn-outline .btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-solid {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  background: #0e3472;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-solid:visited {
  color: #ffffff;
}
.btn-solid:hover {
  background: #c8a45c;
  color: #082555;
}
.btn-solid:hover .btn-icon {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.btn-solid .btn-text {
  color: #ffffff;
}
.btn-solid .btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
}
.btn-solid:hover .btn-text, .btn-solid:hover .btn-icon {
  color: #082555;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  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;
}
.photo-placeholder--dark {
  background: #e8e8e8;
}
.photo-placeholder .placeholder-text {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(90, 90, 90, 0.4);
}

.section--products {
  background: #ffffff;
}

.products-showcase .container-wide {
  max-width: none;
  padding: 0;
}

.products-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e0e0e0;
}
@media (max-width: 1024px) {
  .products-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #ffffff;
}
.product-card .product-card-link {
  display: block;
  text-decoration: none;
  height: 100%;
}
.product-card .product-card-photo {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #f8f8f8;
}
.product-card .product-card-photo .photo-placeholder,
.product-card .product-card-photo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card .product-card-content {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.product-card .product-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  color: #e0e0e0;
  line-height: 1;
  -webkit-transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card .product-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.product-card .product-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 4px;
}
.product-card .product-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
  margin: 0 0 8px;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card .product-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}
.product-card .product-arrow {
  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;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f8f8f8;
  color: #5a5a5a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-photo .photo-placeholder,
.product-card:hover .product-card-photo img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.product-card:hover .product-num {
  color: #c8a45c;
}
.product-card:hover .product-title {
  color: #0e3472;
}
.product-card:hover .product-arrow {
  background: #0e3472;
  color: #ffffff;
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.section--technology {
  padding: 0;
  background: #ffffff;
}

.technology-layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 55%;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .technology-layout {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.technology-photo {
  position: relative;
}
.technology-photo .photo-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
}
@media (max-width: 1024px) {
  .technology-photo .photo-wrapper {
    position: relative;
    height: 50vh;
  }
}
.technology-photo .photo-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, rgba(14, 52, 114, 0.1) 0%, transparent 50%);
  background: linear-gradient(135deg, rgba(14, 52, 114, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.technology-photo .photo-placeholder,
.technology-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.technology-content {
  padding: 120px 80px;
  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;
  background: #ffffff;
}
@media (max-width: 768px) {
  .technology-content {
    padding: 80px 20px;
  }
}

.technology-list {
  list-style: none;
  margin: 24px 0 48px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .technology-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.technology-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f8f8;
  -webkit-transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.technology-item:hover {
  background: #ffffff;
}
@media (min-width: 769px) {
  .technology-item:last-child:nth-child(odd) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.technology-item .tech-num {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 13px;
  font-weight: 600;
  color: #c8a45c;
  width: 28px;
  height: 28px;
  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;
  background: rgba(200, 164, 92, 0.1);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.technology-item .tech-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.technology-item .tech-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5a5a;
  margin-bottom: 2px;
}
.technology-item .tech-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
}

.technology-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .technology-links {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.technology-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 20px;
  background: #0e3472;
  border-radius: 4px;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.technology-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.technology-link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.technology-link:hover::before {
  opacity: 1;
}
.technology-link:hover .technology-link__arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.technology-link__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.technology-link__label {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.technology-link__title {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .technology-link__title {
    font-size: 13px;
  }
}
.technology-link__arrow {
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.section--oem {
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}
.section--oem::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .section--oem::before {
    display: none;
  }
}

.oem-layout {
  position: relative;
  z-index: 1;
}

.oem-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .oem-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

.oem-content {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .oem-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 0 0 80px;
  }
}

.oem-photo {
  position: relative;
}
.oem-photo .photo-wrapper {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.oem-photo .photo-placeholder,
.oem-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .oem-photo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .oem-photo .photo-wrapper {
    aspect-ratio: 16/10;
    border-radius: 12px;
  }
}

.oem-features {
  margin: 48px 0;
}

.oem-subtitle {
  margin: 0 0 16px;
}
.oem-subtitle .subtitle-en {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a45c;
  margin-bottom: 4px;
}
.oem-subtitle .subtitle-jp {
  display: block;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0a0a0a;
}

.oem-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.oem-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1a1a1a;
  line-height: 1.7;
}
.oem-list li:last-child {
  margin-bottom: 0;
}
.oem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #c8a45c;
  border-radius: 50%;
}

.oem-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin: 48px 0;
}
@media (max-width: 768px) {
  .oem-steps {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.oem-steps .step {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 4px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .oem-steps .step {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 6px);
            flex: 0 0 calc(50% - 6px);
    padding: 20px 12px;
  }
}
.oem-steps .step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #e0e0e0;
}
@media (max-width: 768px) {
  .oem-steps .step:not(:last-child)::after {
    display: none;
  }
}
.oem-steps .step-num {
  display: block;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  color: #0e3472;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .oem-steps .step-num {
    font-size: 24px;
  }
}
.oem-steps .step-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .oem-steps .step-text {
    font-size: 13px;
  }
}

@media (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

.section--news {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.section--news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0e3472), color-stop(50%, #c8a45c), to(transparent));
  background: -webkit-linear-gradient(left, #0e3472 0%, #c8a45c 50%, transparent 100%);
  background: linear-gradient(90deg, #0e3472 0%, #c8a45c 50%, transparent 100%);
}

.news-layout {
  position: relative;
  z-index: 1;
}

.news-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
  grid-template-columns: 320px 1fr;
  gap: 120px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1024px) {
  .news-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.news-header {
  position: sticky;
  top: 120px;
}
@media (max-width: 1024px) {
  .news-header {
    position: relative;
    top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .news-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.news-header .section-title-block--left {
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .news-header .section-title-block--left {
    margin-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .news-header .section-desc {
    display: none;
  }
}
@media (max-width: 768px) {
  .news-header .btn-outline--news {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.news-list-wrapper {
  background: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
}
.news-item:last-child {
  border-bottom: none;
}

.news-item-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr auto;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 48px;
  text-decoration: none;
  -webkit-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.news-item-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #0e3472;
  -webkit-transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-item-link:hover {
  background: #ffffff;
}
.news-item-link:hover::before {
  width: 4px;
}
.news-item-link:hover .news-title {
  color: #0e3472;
}
.news-item-link:hover .news-arrow {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
  color: #c8a45c;
}
@media (max-width: 768px) {
  .news-item-link {
    -ms-grid-columns: 1fr auto;
    grid-template-columns: 1fr auto;
    gap: 16px;
    padding: 24px;
  }
  .news-item-link .news-item-meta {
    grid-column: 1/-1;
  }
}

.news-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  min-width: 180px;
}
@media (max-width: 768px) {
  .news-item-meta {
    min-width: auto;
  }
}

.news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
}
.news-date .date-year {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #5a5a5a;
  line-height: 1;
}
.news-date .date-md {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  line-height: 1;
  letter-spacing: 0.02em;
}

.news-category {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 12px;
  background: rgba(14, 52, 114, 0.1);
  border-radius: 100px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #0e3472;
  white-space: nowrap;
}

.news-title {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0;
  line-height: 1.9;
  -webkit-transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news-title {
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
}

.news-arrow {
  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;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  color: #5a5a5a;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-empty {
  padding: 120px;
  text-align: center;
}

.news-empty-text {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  color: #5a5a5a;
  margin: 0;
}

.section--video {
  padding: 160px 0;
  background: #f8f8f8;
}
@media (max-width: 768px) {
  .section--video {
    padding: 120px 0;
  }
}
.section--video .section-title-block {
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .section--video .section-title-block {
    margin-bottom: 80px;
  }
}

.video-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}