

:root {

  --color-base-dark: #16120c;
  --color-base-cream: #f7f1e6;
  --color-text-dark: #333333;
  --color-text-cream: #f7f1e6;
  --color-cta-dark: #1b1814;
  --color-cta-red: #8f1712;
  --color-accent-gold: #fdd889;
  --color-divider-tan: #d8c799;

  --color-white: #ffffff;
  --color-fv-heading: #002f5d;
  --color-fv-subtext: #0a3558;
  --color-fv-tagline: #173a56;
  --color-fv-nav: #1e2f46;
  --color-fv-shadow: #abb8c7;
  --color-label-blue: #0e5ca8;
  --color-accent-diamond: #c9a76a;
  --color-products-bg: #1768aa;
  --color-products-bg-base: #f8f7f3;

  --color-card-white: #fdfefe;
  --color-section-lead: #334a62;
  --color-badge-bg: #f1f8fc;
  --color-badge-border: #c7ddea;
  --color-badge-text: #0a4a78;
  --color-feature-text: #23496e;
  --color-gallery-heading: #052856;
  --color-company-label: #00508a;
  --color-company-data: #4a4a4a;
  --color-access-bg-start: #eaf5fb;
  --color-access-label: #0d4678;
  --color-navy-text: #0b2a4a;
  --color-navy-deep: #20345e;

  --font-main: "Noto Serif JP", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-sub: "Noto Sans JP", sans-serif;

  --header-height: 80px;
  --header-offset-top: 22px;
  --content-max-width: 1440px;
}

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

body {
  font-family: var(--font-main);
  color: var(--color-text-dark);
  background-color: var(--color-base-cream);
  overflow-x: hidden;
}

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

img {
  display: block;
}

html {
  scroll-behavior: smooth;
}

main section {
  scroll-margin-top: calc(var(--header-height) + var(--header-offset-top) * 2);
}

.section-frame {

  display: contents;
}

@media (min-width: 1440px) {
  .section-frame {
    display: block;
    position: absolute;
    inset: 0;
    max-width: var(--content-max-width);
    margin: 0 auto;
  }
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.375rem;
  line-height: 33px;
  letter-spacing: 0.2em;
  color: var(--color-label-blue);
  white-space: nowrap;
}

.section-label--light {
  color: var(--color-white);
}

.section-label-line {
  position: absolute;
  width: 1px;
  background-color: var(--color-divider-tan);
}

.section-diamond {
  display: block;
  fill: var(--color-accent-diamond);
}

.section-heading {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 3.3125rem;
  line-height: 33px;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.section-heading--light {
  color: var(--color-white);
}

.section-heading-line {
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--color-divider-tan);
}

.section-label--factory {
  color: var(--color-products-bg);
}

.section-label--access {
  color: var(--color-access-label);
}

.section-lead {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 40px;
  letter-spacing: 2px;
  color: var(--color-section-lead);
}

.section-heading-lg {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 73px;
  letter-spacing: 5.6px;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.section-heading-lg--white {
  color: var(--color-white);
}

.section-divider-sm {
  display: block;
  width: 56px;
  height: 2px;
  background-color: var(--color-divider-tan);
}

.site-header {
  position: fixed;
  top: var(--header-offset-top);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 44px);
  max-width: 1132px;
  height: var(--header-height);
  background-color: var(--color-white);
  border-radius: 20px;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 64px;
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
}

.site-header__logo-image {
  width: 251px;
  height: 68px;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 56px;
}

.site-header__nav-list a {
  font-family: var(--font-main);
  font-size: 1rem;
  letter-spacing: 1.6px;
  color: var(--color-fv-nav);
  white-space: nowrap;
}

.site-header__nav-list a:hover,
.site-header__nav-list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-dark);
  border-radius: 1px;
}

.fv {
  position: relative;
  width: 100%;

  height: 100vh;
  overflow: hidden;
  background-color: var(--color-white);
  background-color: var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.fv__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 92%;
  overflow: hidden;
  animation: fv-photo-fade 1.6s ease-out 0.15s both;
}

@keyframes fv-photo-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fv__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.fv__gradient-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 100%
  );
}

.fv__gradient-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 686px;
  height: 100%;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.75) 95.192%
  );
}

.fv__copy {
  position: absolute;
  left: 74px;
  top: 273px;
  width: 808px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fv__title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 3.75rem;
  line-height: 78px;
  letter-spacing: 2.4px;
  color: var(--color-fv-heading);
  text-shadow:
    0 2px 6px rgba(23, 50, 74, 0.15),
    0 0 2px var(--color-fv-shadow);
}

.fv__company {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 33px;
  letter-spacing: 1.54px;
  color: var(--color-fv-subtext);
  text-shadow: 0 0 4px var(--color-fv-shadow);
  white-space: nowrap;
}

.fv__divider {
  display: block;
  width: 70px;
  height: 2px;
  background-color: var(--color-divider-tan);
}

.fv__tagline {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.1875rem;
  line-height: 30px;
  letter-spacing: 0.76px;
  color: var(--color-fv-tagline);
  text-shadow: 0 0 2px var(--color-fv-shadow);
}

.philosophy {
  position: relative;
  width: 100%;

  min-height: 975px;
  overflow-x: clip;
  background-color: var(--color-white);
}

.philosophy__wave {
  position: absolute;
  left: 0;

  top: calc(-8vh - 8.14vw);
  width: 100%;
  pointer-events: none;
}

.philosophy__wave-image {
  display: block;
  width: 100%;
  height: auto;
}

.philosophy__map {
  position: absolute;
  left: 12.0833%;
  top: 137px;
  width: 38.0556%;
  aspect-ratio: 548 / 663.617;
}

.philosophy__map-outline {
  width: 100%;
  height: 100%;
}

.philosophy__label {
  position: absolute;
  left: 70px;
  top: 104px;
  width: 33px;
  height: 174px;
}

.philosophy__label-line {
  left: 85px;
  top: 294px;
  height: 130px;
}

.philosophy__diamond {
  position: absolute;
  left: 80px;
  top: 428px;
}

.philosophy__text {
  position: absolute;
  left: 170px;
  top: 220px;
  width: 585px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.philosophy__body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.3125rem;
  line-height: 40px;
  letter-spacing: 2.1px;
  color: var(--color-text-dark);
}

.philosophy__body p + p {
  margin-top: 24px;
}

.philosophy__photo {
  position: absolute;
  left: 787px;
  top: 257px;
  width: 543px;
  height: 398px;
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.philosophy__photo img {

  width: 100%;
  height: calc(100% + 80px);
  margin-top: -40px;
  object-fit: cover;
  object-position: bottom;
  will-change: transform;
}

.philosophy__ship {
  position: absolute;

  right: 0;
  left: auto;
  top: 656px;
  width: min(597px, 46.6vw);
  height: auto;
  pointer-events: none;
}

.products {
  position: relative;
  width: 100%;

  min-height: 1370px;
  overflow: hidden;
  background-color: var(--color-products-bg-base);
  padding-bottom: 120px;
}

.products__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.products__illustration {
  position: absolute;
  height: auto;
  pointer-events: none;
}

.products__illustration--squid {
  left: -130px;
  top: 74px;
  width: 798px;
  aspect-ratio: 1 / 1;
  opacity: 0.15;
}

.products__illustration--01 {
  left: 955px;
  top: 802px;
  width: 393px;
  aspect-ratio: 393 / 159;
  opacity: 0.2;
}

.products__illustration--02 {
  left: 1027px;
  top: 899px;
  width: 363px;
  aspect-ratio: 363 / 259;
  opacity: 0.2;
}

.products__label {
  position: absolute;
  left: 70px;
  top: 80px;
  width: 33px;
  height: 144px;
}

.products__label-line {
  left: 85px;
  top: 236px;
  height: 130px;
}

.products__diamond {
  position: absolute;
  left: 80px;
  top: 370px;
}

.products__text {
  position: absolute;
  left: 170px;
  top: 116px;
  width: 619px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.products__item {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 190px auto 0;
  display: flex;
  align-items: center;
  gap: 72px;
}

.products__item + .products__item {
  margin-top: 90px;
}

.products__item--reverse {
  flex-direction: row-reverse;
}

.products__gallery {
  position: relative;
  flex: 0 0 504px;
  width: 504px;
  height: 420px;
}

.products__figure {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  background-color: #ddd;
}

.products__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__figure--main {
  left: 0;
  top: 0;
  width: 74%;
  height: 300px;
}

.products__figure--sub-a {
  left: 58%;
  bottom: 40px;
  width: 42%;
  height: 170px;
}

.products__figure--sub-b {
  left: 14%;
  bottom: 0;
  width: 34%;
  height: 140px;
}

.products__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  z-index: 1;
}

.products__eyebrow {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 28.5px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.88);
}

.products__name {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 2.625rem;
  line-height: 79.8px;
  letter-spacing: 6.72px;
  color: var(--color-white);
}

.products__desc {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 28.5px;
  letter-spacing: 0.64px;
  color: rgba(255, 255, 255, 0.88);
}

.products__note {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 28.5px;
  letter-spacing: 0.64px;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.factory,
.company,
.access {
  position: relative;
  width: 100%;

}

.factory {
  min-height: 1545px;
  overflow: hidden;
  background-color: var(--color-products-bg-base);
}

.factory__label {
  position: absolute;
  left: 71px;
  top: 80px;
  width: 33px;
  height: 274px;
}

.factory__label-line {
  left: 86px;
  top: 371px;
  height: 130px;
}

.factory__diamond {
  position: absolute;
  left: 81px;
  top: 505px;
}

.factory__card {
  position: absolute;
  left: 120px;
  top: 123px;
  width: 1200px;
  height: 812px;
  overflow: hidden;
  background-color: var(--color-card-white);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(138, 169, 196, 0.25);
}

.factory__text {
  position: absolute;
  left: 48px;
  top: 47px;
  width: 507px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.factory__title {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 3.125rem;
  line-height: 73px;
  letter-spacing: 5px;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.factory__lead {
  white-space: normal;
}

.factory__photo-grid {
  position: static;
}

.factory__photo {
  position: absolute;
  width: 300px;
  height: 295px;
  border-radius: 10px;
  box-shadow: 0 10px 32px rgba(111, 143, 168, 0.1);
  overflow: visible;
}

.factory__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.factory__photo--clean { left: 518px; top: 116px; }
.factory__photo--airshower { left: 840px; top: 116px; }
.factory__photo--breakroom { left: 840px; top: 454px; }
.factory__photo--freezer { left: 521px; top: 454px; }

.factory__badge {
  position: absolute;
  left: 10px;
  top: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 21px;
  background-color: var(--color-badge-bg);
  border: 1px solid var(--color-badge-border);
  border-radius: 10px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.64px;
  color: var(--color-badge-text);
  white-space: nowrap;
}

.factory__divider {
  position: absolute;
  left: 60px;
  top: 520px;
  width: 424px;
  height: 1px;
  background-color: var(--color-divider-tan);
}

.factory__divider-v {
  position: absolute;
  left: 276px;
  width: 1px;
  height: 57px;
  background-color: var(--color-divider-tan);
}

.factory__divider-v--01 { top: 446px; }
.factory__divider-v--02 { top: 537px; }

.factory__feature {
  position: absolute;
  width: 196px;
}

.factory__feature--clean { left: 60px; top: 432px; width: 210px; }
.factory__feature--hygiene { left: 300px; top: 432px; width: 195px; }
.factory__feature--temp { left: 60px; top: 534px; width: 180px; }
.factory__feature--safety { left: 300px; top: 534px; width: 150px; }

.factory__feature-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 26px;
  letter-spacing: 0.72px;
  color: var(--color-feature-text);
  white-space: nowrap;
}

.factory__feature-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

.factory__feature-desc {
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 23px;
  color: var(--color-feature-text);
}

.factory__illustration {
  position: absolute;
  left: 73px;
  top: 673px;
  width: 396px;
  height: auto;
  opacity: 1;
  pointer-events: none;
}

.factory__watermark {
  position: absolute;
  left: 578px;
  top: 1089px;
  transform: translate(-50%, -50%);
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 12.5rem;
  color: rgba(23, 104, 170, 0.03);
  white-space: nowrap;
  pointer-events: none;
}

.factory__gallery-heading {
  position: absolute;
  left: 168px;
  top: 1089px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.875rem;
  letter-spacing: 3px;
  color: var(--color-gallery-heading);
  white-space: nowrap;
}

.factory__gallery-wrap {
  position: absolute;
  left: 244px;
  right: 0;
  top: 1138px;
}

@media (min-width: 1440px) {
  .factory__gallery-wrap {

    left: max(244px, calc((100vw - 1440px) / 2 + 244px));
  }
}

.factory__gallery-viewport {
  overflow: hidden;
  height: 283px;
}

.factory__gallery-track {
  display: flex;
  gap: 26px;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}

.factory__gallery-slide {
  flex: 0 0 420px;
  width: 420px;
  height: 283px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.factory__gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory__gallery-nav {
  position: absolute;
  right: 24px;
  top: calc(283px + 20px);
  display: none;
  gap: 12px;
}

.factory__gallery-btn {
  display: none;
}

.factory__gallery-btn:hover,
.factory__gallery-btn:focus-visible {
  background-color: var(--color-navy-deep);
  color: var(--color-white);
  outline: none;
}

.factory__gallery-btn:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 2px;
}

.factory__gallery-btn svg {
  display: block;
}

.company {
  min-height: 1623px;
  overflow: hidden;

  background-color: var(--color-white);
}

.company__banner {
  position: relative;
  height: 457px;
  overflow: hidden;
}

.company__banner-image {

  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  width: 100%;
  height: calc(100% + 100px);
  object-fit: cover;
  will-change: transform;
}

.company__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(32, 52, 94, 0.9), rgba(32, 52, 94, 0.54));
}

.company__text {
  position: absolute;
  left: 168px;
  top: 115px;
  width: 558px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.company__body {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 40px;
  letter-spacing: 2px;
  color: var(--color-white);
}

.company__circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.company__circle--01 { left: 1111px; top: 704px; width: 259px; height: 259px; border: 1px solid rgba(23, 104, 170, 0.1); }
.company__circle--02 { right: 98px; top: 1389px; width: 204px; height: 204px; background-color: rgba(246, 249, 252, 0.6); }
.company__circle--03 { left: 981px; top: 1429px; width: 259px; height: 259px; border: 1px solid rgba(23, 104, 170, 0.07); }
.company__circle--04 { right: -3px; top: 447px; width: 362px; height: 362px; border: 1px solid rgba(23, 104, 170, 0.16); }
.company__circle--05 { right: -181px; top: 601px; width: 362px; height: 362px; background-color: rgba(246, 249, 252, 0.8); }

.company__watermark-wrap {
  position: absolute;

  left: -312px;
  top: -106px;
  width: 399px;
  height: 1091.88px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.company__watermark {
  transform: rotate(90deg);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 11.25rem;
  letter-spacing: 3.6px;
  color: rgba(23, 104, 170, 0.04);
  white-space: nowrap;
}

.company__table-wrap {
  position: absolute;
  left: 311px;
  top: 607px;
  width: 710px;
}

.company__table {
  position: relative;
  z-index: 1;
  width: 100%;
  border-collapse: collapse;
}

.company__table th,
.company__table td {
  text-align: left;
  vertical-align: top;
  padding: 21px 16px 21px 0;
  border-bottom: 1px solid rgba(23, 104, 170, 0.18);
  font-weight: 400;
}

.company__table th {
  width: 190px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 26.6px;
  letter-spacing: 1.68px;
  color: var(--color-company-label);
  white-space: nowrap;
}

.company__table td {
  width: 520px;
  font-family: var(--font-sub);
  font-size: 0.875rem;
  line-height: 26.6px;
  letter-spacing: 0.64px;
  color: var(--color-company-data);
}

.access {
  min-height: 871px;
  background: linear-gradient(to bottom, var(--color-access-bg-start) 45.673%, var(--color-white) 100%);
}

.access__label {
  position: absolute;
  left: 70px;
  top: 80px;
  width: 33px;
  height: 101px;
}

.access__label-line {
  left: 85px;
  top: 196px;
  height: 109px;
}

.access__diamond {
  position: absolute;
  left: 80px;
  top: 309px;
}

.access__text {
  position: absolute;
  left: 164px;
  top: 75px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.access__heading {
  text-shadow: 0 10px 10px var(--color-white);
}

.access__lead {
  width: 548px;
  text-shadow: 0 10px 10px var(--color-white);
}

.access__map-frame {
  position: absolute;
  left: 120px;
  right: 120px;
  top: 175px;
}

.access__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 37px 0 60px;
  padding: 24px 24px 32px;
  background-color: var(--color-card-white);
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.access__map-embed {
  display: block;
  width: 100%;
  height: 357px;
  border: 0;
  border-radius: 20px;
}

.access__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 16px;
}

.access__address {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 40px;
  letter-spacing: 2px;
  color: var(--color-navy-text);
}

.access__button {
  width: 308px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--color-navy-deep);
  border-radius: 80px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 2px;
  color: var(--color-navy-text);
  white-space: nowrap;
}

.access__button:hover,
.access__button:focus-visible {
  background-color: rgba(11, 42, 74, 0.05);
}

.footer {
  position: relative;
  width: 100%;
  overflow-x: clip;
  background-color: var(--color-white);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--content-max-width);
  margin: 0 auto;

  padding: 90px clamp(48px, 6.5vw, 93px) 31px clamp(48px, 12.5vw, 180px);
}

.footer__logo {
  width: 228px;
  margin-bottom: 14px;
}

.footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer__address {
  font-style: normal;
  font-family: var(--font-sub);
  font-weight: 400;
  font-size: 1rem;
  line-height: 27px;
  color: var(--color-navy-text);
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.footer__nav-list li:not(:last-child) {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__nav-list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 24px;
  background-color: rgba(11, 42, 74, 0.25);
}

.footer__nav-list a {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  letter-spacing: 0.72px;
  color: var(--color-navy-text);
  white-space: nowrap;
}

.footer__nav-list a:hover,
.footer__nav-list a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer__bottom {
  position: relative;
  z-index: 50;
  width: 100%;

  overflow: hidden;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: min(90px, 12vw);
  background: url("assets/images/footer-wave-tile.svg?v=20260731r68") repeat-x;
  background-size: 50% 100%;
  animation: footer-wave-flow 12s linear infinite;
  pointer-events: none;
}

.footer__bottom::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(min(90px, 12vw) - 1px);
  bottom: 0;
  background-color: var(--color-access-label);
}

@keyframes footer-wave-flow {
  to { transform: translateX(-50%); }
}

.footer__bottom-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 79px clamp(48px, 13vw, 188px) 73px;
}

.footer__copyright {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  letter-spacing: 0.72px;
  color: var(--color-white);
}

.footer__totop {
  position: fixed;
  right: 28px;
  bottom: 24px;
  width: 100px;
  display: block;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.footer__totop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer__totop img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 131 / 167;
}

.footer__totop:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 4px;
  border-radius: 8px;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-parallax {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .js-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .fv__bg,
  .footer__bottom::before {
    animation: none;
  }

  .site-header__nav,
  .site-header__nav-list li {
    transition: none;
  }

  .js-parallax {
    transform: none !important;
  }

  .footer__totop {
    transition: none;
  }

  .factory__gallery-track {
    transition: none;
  }
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .products__item,
  .products__item--reverse {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    max-width: 720px;
    padding: 0 48px 0 120px;
  }

  .products__gallery {
    align-self: center;
  }
}

@media (min-width: 600px) and (max-width: 1439px) {

  .fv__copy {
    top: min(273px, calc(92vh - 8.14vw - 421px));
  }

  .site-header__inner {
    padding: 0 32px;
  }

  .site-header__logo-image {
    width: 190px;
    height: 51px;
  }

  .site-header__nav-list {
    gap: 24px;
  }

  .site-header__nav-list a {
    font-size: 0.9375rem;
  }

  .philosophy__row {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px;
    padding: 220px 40px 64px 170px;
  }

  .philosophy__text {
    position: static;
    width: auto;
    flex: 1 1 320px;
    max-width: 585px;
  }

  .philosophy__photo {
    position: static;
    flex: 1 1 260px;
    max-width: 543px;
    width: 100%;
    height: auto;
    aspect-ratio: 543 / 398;
  }

  .access__text {
    right: 40px;
    width: auto;
  }

  .access__lead {
    width: auto;
    max-width: 420px;
  }

  .access__card {
    margin: 0;
  }

  .factory__card {
    transform-origin: top left;
  }

  .footer__nav-list {
    left: 420px;
    right: 24px;
    width: auto;
    flex-wrap: wrap;
    row-gap: 12px;
  }

}

@media (max-width: 599px) {
  :root {
    --header-height: 60px;
    --header-offset-top: 12px;
  }

  .site-header__inner {
    padding: 0 20px;
  }

  .site-header__logo-image {
    width: 168px;
    height: 45px;
  }

  .site-header__nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: block;
    background-color: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .site-header__nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-header__nav-list li {
    width: 100%;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .site-header__nav-list a {
    display: block;
    width: 100%;
    padding: 6px 0;
  }

  .site-header__nav.is-open .site-header__nav-list li {
    opacity: 1;
    transform: none;
  }

  .site-header__nav.is-open .site-header__nav-list li:nth-child(2) { transition-delay: 0.06s; }
  .site-header__nav.is-open .site-header__nav-list li:nth-child(3) { transition-delay: 0.12s; }
  .site-header__nav.is-open .site-header__nav-list li:nth-child(4) { transition-delay: 0.18s; }
  .site-header__nav.is-open .site-header__nav-list li:nth-child(5) { transition-delay: 0.24s; }

  .site-header__toggle {
    display: flex;
  }

  .fv {
    height: auto;
    min-height: 100vh;
  }

  .fv__gradient-left {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.55) 50%,
      rgba(255, 255, 255, 0.75) 100%
    );
  }

  .fv__copy {
    left: 24px;
    right: 24px;
    top: auto;

    bottom: 16%;
    width: auto;
    gap: 16px;
  }

  .fv__title {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  .fv__company {
    font-size: 1rem;
    line-height: 1.6;
  }

  .fv__tagline {
    font-size: 0.875rem;
    line-height: 1.7;
  }

}

@media (max-width: 1023px) {

  .philosophy {
    min-height: 0;

    padding: 96px 24px 0;
  }

  .philosophy__map {
    display: block;
    position: absolute;
    left: auto;
    right: -2%;
    top: 85px;
    width: min(390px, 46vw);
    height: auto;
    aspect-ratio: 548 / 664;
  }

  .philosophy__label,
  .philosophy__label-line,
  .philosophy__diamond {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    margin-bottom: 12px;
  }

  .philosophy__label {
    display: block;
    letter-spacing: 0.2em;
  }

  .philosophy__label-line {
    display: block;
    width: 40px;
    height: 1px;
  }

  .philosophy__row {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 56px;
    margin-left: min(40px, 4.8vw);
    padding: 0;
  }

  .philosophy__text {
    position: static;
    width: 100%;
    gap: 20px;
  }

  .section-heading {
    font-size: 2rem;
    white-space: normal;
  }

  .philosophy__body {
    font-size: 1rem;
    line-height: 1.9;
    letter-spacing: 0.05em;
  }

  .philosophy__photo {
    position: static;
    width: 100%;
    max-width: 515px;
    height: auto;
    aspect-ratio: 543 / 398;
    margin-top: 64px;
  }

  .philosophy__ship {
    position: static;
    display: block;
    width: min(520px, 58vw);
    height: auto;
    margin: 48px -32px 0 auto;
    opacity: 1;
  }

  .products {
    min-height: 0;
    padding: 96px 24px 80px;
  }

  .products__illustration--squid {
    left: -20vw;
    top: 120px;
    width: min(105vw, 640px);
    opacity: 0.4;
  }

  .products__illustration--01 {
    left: auto;
    top: auto;
    right: -12vw;
    bottom: 280px;
    width: min(64vw, 400px);
    opacity: 0.45;
  }

  .products__illustration--02 {
    left: auto;
    top: auto;
    right: -5vw;
    bottom: 60px;
    width: min(60vw, 380px);
    opacity: 0.45;
  }

  .products__label.section-label {
    position: absolute;
    left: 24px;
    top: 64px;
    width: auto;
    height: auto;
    transform: none;
    writing-mode: vertical-rl;
    z-index: 1;
  }

  .products__label-line.section-label-line {
    position: absolute;
    display: block;
    left: 36px;
    top: 232px;
    width: 1px;
    height: 130px;
    margin: 0;
    z-index: 1;
  }

  .products__diamond.section-diamond {
    position: absolute;
    display: block;
    left: 31px;
    top: 370px;
    margin: 0;
    z-index: 1;
  }

  .products__text {
    position: static;
    width: auto;
    gap: 20px;
    margin-left: min(60px, 7.3vw);
    margin-bottom: 48px;
  }

  .products__info {
    margin-left: min(60px, 7.3vw);
  }

  .products__item,
  .products__item + .products__item {
    max-width: none;
    margin: 0 0 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .products__item--reverse {
    flex-direction: column;
  }

  .products__item:last-child {
    margin-bottom: 0;
  }

  .products__desc br,
  .products__note br {
    display: none;
  }

  .products__info {

    width: auto;
    order: -1;
  }

  .products__gallery {
    position: relative;

    flex: 0 0 auto;
    width: 100%;
    height: auto;
  }

  .products__item--reverse .products__gallery {
    aspect-ratio: 772 / 430;
  }

  .products__item--reverse .products__figure--main {
    left: 4%;
    top: 0;
    bottom: auto;
    width: 56%;
    height: auto;
    aspect-ratio: 375 / 300;
    z-index: 1;
  }

  .products__item--reverse .products__figure--sub-a {
    left: 52%;
    top: 10%;
    bottom: auto;
    width: 30%;
    height: auto;
    aspect-ratio: 5 / 4;
    z-index: 2;
  }

  .products__item--reverse .products__figure--sub-b {
    left: 40%;
    top: 58%;
    bottom: auto;
    width: 24%;
    height: auto;
    aspect-ratio: 5 / 4;
    z-index: 3;
  }

  .products__item:not(.products__item--reverse) .products__gallery {
    aspect-ratio: 772 / 450;
  }

  .products__item:not(.products__item--reverse) .products__figure--main {
    left: 4%;
    top: 0;
    bottom: auto;
    width: 56%;
    height: auto;
    aspect-ratio: 370 / 300;
    z-index: 1;
  }

  .products__item:not(.products__item--reverse) .products__figure--sub-a {
    left: 52%;
    top: 34%;
    bottom: auto;
    width: 30%;
    height: auto;
    aspect-ratio: 5 / 4;
    z-index: 2;
  }

  .products__item:not(.products__item--reverse) .products__figure--sub-b {
    left: 30%;
    top: 62%;
    bottom: auto;
    width: 24%;
    height: auto;
    aspect-ratio: 5 / 4;
    z-index: 3;
  }

  .products__name {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
  }

  .section-heading-lg {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .section-lead,
  .company__body {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }

  .factory {
    min-height: 0;
    padding: 64px 24px 80px;
  }

  .factory__label,
  .factory__label-line,
  .factory__diamond {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    margin-bottom: 12px;
  }

  .factory__label {
    display: block;
    letter-spacing: 0.2em;
  }

  .factory__label-line {
    display: block;
    width: 40px;
    height: 1px;
  }

  .factory__card {
    position: static;
    width: 100%;
    height: auto;
    margin-top: 40px;
    padding: 32px 20px;
  }

  .factory__text {
    position: static;
    width: 100%;
    gap: 20px;
  }

  .factory__title {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .factory__photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px 16px;
    margin-top: 32px;
  }

  .factory__photo {
    position: relative;

    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    height: auto;
  }

  .factory__photo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .factory__badge {
    position: absolute;
    left: 10px;
    top: auto;
    bottom: -14px;
    height: auto;
    padding: 6px 14px;
    font-size: 0.8125rem;
    line-height: 1.6;
    white-space: nowrap;
  }

  .factory__divider,
  .factory__divider-v {
    display: none;
  }

  .factory__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .factory__feature {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 24px 24px 24px 0;
  }

  .factory__feature:nth-child(even) {
    padding-left: 24px;
    padding-right: 0;
  }

  .factory__feature:nth-child(odd) {
    position: relative;
    left: auto;
    top: auto;
  }

  .factory__feature:nth-child(odd)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 57px;
    background-color: var(--color-divider-tan);
  }

  .factory__feature:nth-child(-n+2) {
    border-bottom: 1px solid var(--color-divider-tan);
  }

  .factory__feature-title {
    gap: 10px;
  }

  .factory__feature-desc br {
    display: none;
  }

  .factory__illustration {
    position: static;
    width: 70%;
    height: auto;
    margin: 32px auto 0;
  }

  .factory__watermark {
    position: static;
    transform: none;
    margin: 48px 0 0;
    font-size: min(10rem, 18vw);
    line-height: 1;
    text-align: center;
  }

  .factory__gallery-heading {
    position: relative;
    left: auto;
    top: auto;
    display: block;

    margin: calc(-0.5 * min(10rem, 18vw) - 17px) 0 20px;
    font-size: 1.5rem;
    white-space: normal;
  }

  .factory__gallery-wrap {
    position: static;
    margin-top: 8px;

    margin-left: min(76px, 9.3vw);
  }

  .factory__gallery-viewport {
    height: auto;
  }

  .factory__gallery-track {
    gap: 16px;
  }

  .factory__gallery-slide {
    flex: 0 0 240px;
    width: 240px;
    height: 161px;
  }

  .factory__gallery-nav {
    position: static;
    justify-content: flex-end;
    margin: 16px 0 0;
  }

  .company {
    min-height: 0;
  }

  .company__banner {
    height: auto;
    min-height: 320px;
    padding: 64px 24px 40px;
    display: flex;
    align-items: center;
  }

  .company__text {
    position: static;
    width: 100%;
    gap: 20px;
  }

  .company__circle {
    display: none;
  }

  .company__watermark-wrap {
    left: -4.6vw;
    top: 40px;
    width: min(150px, 18vw);
    height: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .company__watermark {
    font-size: min(8.75rem, 17vw);
    line-height: 1;
    transform: none;
    writing-mode: vertical-rl;
  }

  .company__table-wrap {
    position: relative;
    left: auto;
    top: auto;
    z-index: 1;
    width: 100%;
    padding: 40px 24px 40px min(150px, 18vw);
  }

  .company__table,
  .company__table tbody,
  .company__table tr,
  .company__table th,
  .company__table td {
    display: block;
    width: 100%;
  }

  .company__table th,
  .company__table td {
    padding: 4px 0;
    border-bottom: none;
    white-space: normal;
  }

  .company__table tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(23, 104, 170, 0.18);
  }

  .company__table tr:first-child {
    padding-top: 0;
  }

  .access {
    min-height: 0;
    padding: 64px 24px 80px;
  }

  .access__label.section-label {
    position: absolute;
    left: 24px;
    top: 48px;
    width: auto;
    height: auto;
    transform: none;
    writing-mode: vertical-rl;
    z-index: 1;
  }

  .access__label-line.section-label-line {
    position: absolute;
    display: block;
    left: 36px;
    top: 190px;
    width: 1px;
    height: 115px;
    margin: 0;
    z-index: 1;
  }

  .access__diamond.section-diamond {
    position: absolute;
    display: block;
    left: 31px;
    top: 313px;
    margin: 0;
    z-index: 1;
  }

  .access__text {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-left: min(90px, 11vw);
  }

  .access__heading {
    text-shadow: none;
  }

  .access__lead {
    width: auto;
    text-shadow: none;
  }

  .access__map-frame {
    position: static;
    width: 100%;
    margin-top: 32px;
  }

  .access__card {
    margin: 0 0 0 min(70px, 8.5vw);
    padding: 16px 16px 28px;
    gap: 20px;
    border-radius: 24px;
  }

  .access__map-embed {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .access__card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .access__address {
    font-size: 1rem;
    line-height: 1.8;
  }

  .access__button {
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 14px 28px;
    font-size: 1rem;
  }

  .footer {
    min-height: 0;
  }

  .footer__inner {
    align-items: flex-start;
    justify-content: space-evenly;
    gap: 32px;
    padding: 48px 24px 40px;
  }

  .footer__logo {
    width: 168px;
    margin-bottom: 20px;
  }

  .footer__address {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  .footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__nav-list li:not(:last-child)::after {
    display: none;
  }

  .footer__bottom-inner {

    padding: calc(min(90px, 12vw) + 16px) 24px 40px;
  }

  .footer__copyright {
    text-align: center;
    font-size: 1rem;
  }

  .footer__totop {
    right: 16px;
    bottom: 184px;
    width: 64px;
  }

  .section-lead br,
  .company__body br {
    display: none;
  }

  .products__text,
  .products__info,
  .company__text {
    position: relative;

    left: auto;
    top: auto;
    z-index: 1;
  }

  .philosophy__label,
  .factory__label {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin: 0 16px 0 0;
  }

  .section-label-line {
    display: inline-block;
    width: 160px;
    height: 1px;
    vertical-align: middle;
    margin: 0;
  }

  .section-diamond {
    display: inline-block;
    width: 10px;
    height: 10px;
    vertical-align: middle;
    margin: 0 0 0 8px;
  }
}

@media (max-width: 599px) {
  .philosophy {
    padding-top: 64px;
  }

  .section-label-line {
    width: 72px;
  }

  .philosophy__row {
    margin-left: 0;
  }

  .philosophy__body br {
    display: none;
  }

  .philosophy__map {
    width: min(390px, 60vw);
  }

  .philosophy__ship {
    width: min(520px, 82vw);
  }

  .products {
    padding-top: 64px;
  }

  .products__label.section-label { top: 32px; left: 4px; }
  .products__label-line.section-label-line { top: 200px; left: 16px; }
  .products__diamond.section-diamond { top: 338px; left: 11px; }

  .products__gallery {
    width: auto;
    margin-left: -24px;
    margin-right: -24px;
  }

  .products__item--reverse .products__gallery,
  .products__item:not(.products__item--reverse) .products__gallery {
    aspect-ratio: 375 / 504;
  }

  .products__item--reverse .products__figure--main,
  .products__item:not(.products__item--reverse) .products__figure--main {
    left: 6.3%;
    top: 0;
    width: 87.7%;
    aspect-ratio: 3 / 2;
  }

  .products__item--reverse .products__figure--sub-a,
  .products__item--reverse .products__figure--sub-b,
  .products__item:not(.products__item--reverse) .products__figure--sub-a,
  .products__item:not(.products__item--reverse) .products__figure--sub-b {
    width: 50.5%;
    aspect-ratio: 800 / 641;
  }

  .products__item--reverse .products__figure--sub-b {
    left: 6.2%;
    top: 47.8%;
    z-index: 2;
  }

  .products__item--reverse .products__figure--sub-a {
    left: 43.2%;
    top: 69.9%;
    z-index: 3;
  }

  .products__item:not(.products__item--reverse) .products__figure--sub-a {
    left: 43.3%;
    top: 47.8%;
    z-index: 2;
  }

  .products__item:not(.products__item--reverse) .products__figure--sub-b {
    left: 6.3%;
    top: 69.9%;
    z-index: 3;
  }

  .products {
    padding-bottom: 160px;
  }

  .products__illustration--01 {
    left: auto;
    right: -10vw;
    top: 55%;
    bottom: auto;
    width: min(62vw, 300px);
  }

  .products__illustration--02 {
    left: auto;
    right: -3vw;
    top: 61%;
    bottom: auto;
    width: min(58vw, 280px);
  }

  .footer__totop {
    bottom: 72px;
  }

  .access__label.section-label { left: 4px; }
  .access__label-line.section-label-line { left: 16px; }
  .access__diamond.section-diamond { left: 11px; }

  .access__address-seg {
    display: block;
  }

  .access__address br,
  .access__address-sep {
    display: none;
  }
}

@media (max-width: 479px) {
  .footer__inner {
    flex-direction: column;
  }

  .footer__nav-list {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }

  .factory__features {
    grid-template-columns: 1fr;
  }

  .factory__feature:nth-child(odd)::after {
    display: none;
  }

  .factory__feature:nth-child(odd) {
    padding-right: 0;
    margin-right: 0;
  }

  .factory__feature:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
  }

  .factory__feature:nth-child(-n+2) {
    border-bottom: none;
  }
}
