@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
/* ==========================================================================
   Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #2B2B2B;
  background: #FAFAEC;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
}

h1,
h2,
h3,
h4,
p,
dl,
dd,
ul,
figure {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

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

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

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #FFFFFF;
  color: #36280B;
  padding: 8px 16px;
  z-index: 1000;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
}

/* single-file exported icon (assets/img/*.svg) sized to its slot */
.icon-visual {
  display: block;
  flex-shrink: 0;
}
.icon-visual--28 {
  width: 28px;
  height: 28px;
}
.icon-visual--60 {
  width: 60px;
  height: 60px;
}

/* ==========================================================================
   Common / Layout
   ========================================================================== */
.section__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
}

.section-head__tag {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}
.section-head__num {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2B2B2B;
  margin-right: 10px;
}
.section-head__en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2B2B2B;
  margin-left: 4px;
  white-space: nowrap;
}
.section-head__tag--gray .section-head__num, .section-head__tag--gray .section-head__en {
  color: #C8C8C8;
}
.section-head__divider {
  width: 2px;
  height: 40px;
  background: #FF8104;
  flex-shrink: 0;
}
.section-head__jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #A18E26;
  white-space: nowrap;
}
.section-head__jp--big {
  font-size: 40px;
  color: #36280B;
}
.section-head__jp--xl {
  font-size: 40px;
  letter-spacing: -0.48px;
  color: #36280B;
}
.section-head__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  color: #36280B;
}

/* icon circle wrapper used by card icons */
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #EAE9A1;
  flex-shrink: 0;
}
.icon-circle--dark {
  background: #36280B;
}
.icon-circle--orange {
  background: #FF8104;
}

/* ==========================================================================
   Header
   ========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 86px;
  background: #36280B;
}
.l-header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
}
.l-header__logo {
  align-self: center;
  margin-left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.l-header__logo-mark img {
  width: 72px;
  height: 42px;
}
.l-header__logo-text img {
  display: block;
  width: 178px;
  height: 18px;
}
.l-header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-header__nav {
  align-self: center;
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
}
.l-header__nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  line-height: 1.75;
  color: #FFFFFF;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.l-header__nav a img {
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.l-header__nav a:hover img, .l-header__nav a:focus-visible img {
  opacity: 1;
  transform: translateY(6px);
}
.l-header__tel {
  flex-shrink: 0;
  width: 204px;
  height: 100%;
  padding-top: 7px;
  background: #FF8104;
  text-align: center;
}
.l-header__tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}
.l-header__tel-icon img {
  width: 16px;
  height: 16px;
}
.l-header__tel-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #FFFFFF;
  margin-bottom: 4px;
}
.l-header__tel-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.l-header__tel-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #FAFAEC;
  white-space: nowrap;
}
.l-header__tel-time {
  margin-top: 4px;
  padding-top: 3px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  color: #2B2B2B;
}

/* ==========================================================================
   Hero (MV)
   ========================================================================== */
.l-hero {
  position: relative;
  margin-top: 86px;
  height: 720px;
  overflow: hidden;
  background: #D1C741;
}
.l-hero__bg {
  position: absolute;
  inset: 0;
}
.l-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 240px;
}
.l-hero__lead {
  padding-top: 134px;
}
.l-hero__badge {
  display: inline-block;
  background: rgba(54, 40, 11, 0.8);
  color: #FAFAEC;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.3;
  padding: 12px 36px;
  border-radius: 8px;
  margin: 0 0 12px;
}
.l-hero__title {
  font-weight: 900;
  font-size: 80px;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #36280B;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  margin: 0 0 16px;
}
.l-hero__marks p {
  margin: 0 0 12px;
}
.l-hero__marks span {
  display: inline-block;
  background: #D1C741;
  color: #36280B;
  font-weight: 700;
  font-size: 16px;
  padding: 2px 8px;
}
.l-hero__marks-sp-only {
  display: none;
}
.l-hero__tel {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #FF8104;
  border-radius: 999px;
  padding: 12px 28px;
  box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.2);
}
.l-hero__tel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.l-hero__tel-icon img {
  width: 16px;
  height: 16px;
}
.l-hero__tel-body {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.l-hero__tel-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #FFFFFF;
}
.l-hero__tel-num {
  font-weight: 700;
  font-size: 24px;
  color: #FFFFFF;
}
.l-hero__tel-time {
  font-size: 12px;
  color: #2B2B2B;
}

/* ==========================================================================
   01 CORPORATE PHILOSOPHY
   ========================================================================== */
.section--corporate {
  background: #FFFFFF;
}

.corporate__head {
  position: relative;
  max-width: 600px;
}

.corporate__text {
  max-width: 472px;
  margin-top: 72px;
}

.corporate__catch {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: #2B2B2B;
  margin-bottom: 24px;
}

.corporate__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}
.corporate__desc p + p {
  margin-top: 16px;
}

.corporate__illust {
  position: absolute;
  left: 488px;
  top: 132px;
  width: 464px;
}
.corporate__illust img {
  width: 100%;
}

.card-a-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 72px;
}

.card-a {
  width: calc(25% - 12px);
  min-width: 200px;
  background: #FAFAEC;
  border: 1px solid #A18E26;
  border-radius: 8px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 16px;
  text-align: center;
}
.card-a .icon-circle {
  margin: 0 auto 24px;
}
.card-a__title {
  font-weight: 700;
  font-size: 16px;
  color: #A18E26;
  margin-bottom: 16px;
}
.card-a__text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  text-align: left;
}

/* ==========================================================================
   02 SERVICES
   ========================================================================== */
.section--services {
  background: #FFFFFF;
}
.section--services__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.section--services__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.section--services .section__inner {
  position: relative;
  z-index: 1;
}

.card-b-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
}

.card-b {
  width: calc(33.333% - 11px);
  min-width: 260px;
  background: #FAFAEC;
  border: 1px solid #A18E26;
  border-radius: 8px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 16px;
}
.card-b__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.card-b__title {
  font-weight: 700;
  font-size: 16px;
  color: #36280B;
}
.card-b__text {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.card-b__list {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #A18E26;
}
.card-b__list li {
  position: relative;
  padding-left: 16px;
}
.card-b__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* ==========================================================================
   03 FACILITY
   ========================================================================== */
.section--facility {
  padding: 0;
  background: #FAFAEC;
}

.facility__top {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-areas: "head  photo" "spec  photo";
  gap: 56px 0;
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 1144px) {
  .facility__top {
    grid-template-columns: 50% 50%;
  }
}

.facility__head {
  grid-area: head;
  padding: 80px 40px 0 clamp(40px, 29.76vw - 188.57px, 240px);
}

.facility__photo {
  grid-area: photo;
  min-width: 0;
}
.facility__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility__spec {
  grid-area: spec;
  width: 456px;
  padding: 0 48px 80px;
  margin: 0 0 0 auto;
  box-sizing: content-box;
}

.facility__spec-heading {
  font-weight: 700;
  font-size: 16px;
  color: #36280B;
  margin-bottom: 12px;
}

.facility__row {
  display: flex;
  gap: 19px;
  padding: 12px 0;
  border-top: 1px solid #D1C741;
  font-size: 14px;
}
.facility__row dt {
  flex: 0 0 84px;
  font-weight: 700;
  color: #36280B;
}
.facility__row dd {
  font-family: "Inter", sans-serif;
  line-height: 1.75;
  color: #2B2B2B;
}
.facility__row--last {
  padding: 0;
}

.facility__bottom {
  display: flex;
  align-items: stretch;
  background: #FAFAEC;
  max-width: 1440px;
  margin: 0 auto;
}

.facility__gallery {
  width: 60%;
  display: flex;
  gap: 16px;
  padding-left: 0;
}
@media (min-width: 1144px) {
  .facility__gallery {
    width: 50%;
  }
}

.facility__gallery-item {
  flex: 1 1 0;
  width: 0;
  height: 195px;
  overflow: hidden;
}
.facility__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility__tenant-example {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 32px;
}
@media (min-width: 1144px) {
  .facility__tenant-example {
    width: 50%;
  }
}

.facility__tenant-example-title {
  font-weight: 700;
  font-size: 14px;
  color: #A18E26;
}

.facility__tenant-example-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: #36280B;
  max-width: 546px;
}

/* ==========================================================================
   04 BONDED WAREHOUSE
   ========================================================================== */
.section--bonded {
  background: #F4F4CE;
}

.bonded__lead {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
}

.card-c-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
}

.card-c-list--2col .card-c {
  width: calc(50% - 8px);
}

.card-c-list--3col .card-c {
  width: calc(33.333% - 11px);
}

.card-c {
  position: relative;
  background: #FAFAEC;
  border: 1px solid #A18E26;
  border-radius: 8px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
  padding: 24px;
  min-width: 260px;
}
.card-c__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.card-c__head--60 {
  align-items: center;
  gap: 16px;
}
.card-c__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #36280B;
}
.card-c__text {
  font-size: 16px;
  line-height: 1.75;
}
.card-c__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.card-c__status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF8104;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  padding: 2px 16px;
  border-radius: 14.5px;
}
.card-c__status-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #FF8104;
}
.card-c__tags {
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #A18E26;
  line-height: 1.75;
}
.card-c__tags li {
  position: relative;
  padding-left: 16px;
}
.card-c__tags li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.card-c-list--2col .card-c {
  border-color: #FF8104;
}

.bonded__merit {
  margin-top: 24px;
}

.bonded__merit-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #36280B;
  margin-bottom: 19px;
}

.bonded__merit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px;
}

.bonded__merit-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
  padding: 0 4px;
  border-radius: 14px;
  background: #A18E26;
  color: #F4F4CE;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
}

.bonded__merit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #EAE9A1;
  color: #A18E26;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.bonded__merit-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

/* ==========================================================================
   05 TENANT / USAGE FORM
   ========================================================================== */
.section--tenant {
  background: #FFFFFF;
}

.tenant__lead {
  font-size: 16px;
  line-height: 1.75;
  margin-top: 16px;
}

.card-c-list--3col .card-c__head--60 {
  margin-bottom: 8px;
}

.tenant__genre {
  margin-top: 56px;
}

.tenant__genre-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #36280B;
  margin-bottom: 16px;
}

.tenant__genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.tenant__genre-list li {
  background: #FAFAEC;
  border: 1px solid #D1C741;
  border-radius: 14px;
  padding: 0 16px;
  font-size: 16px;
  color: #A18E26;
  line-height: 1.75;
}

.tenant__genre-note {
  margin-top: 16px;
  font-size: 12px;
  color: #2B2B2B;
}

/* ==========================================================================
   会社情報・アクセス
   ========================================================================== */
.section--access {
  padding: 0;
}

.access__head {
  background: #36280B;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.access__head h2 {
  font-weight: 700;
  font-size: 36px;
  color: #FAFAEC;
}

.access__body {
  background: #FAFAEC;
  padding: 112px 0;
}

.access__lead {
  font-size: 16px;
  line-height: 1.75;
  max-width: 960px;
}

.access__table {
  margin-top: 32px;
  border-top: 1px solid #C8C8C8;
  border-left: 1px solid #C8C8C8;
}

.access__row {
  display: flex;
  border-right: 1px solid #C8C8C8;
  border-bottom: 1px solid #C8C8C8;
}
.access__row dt {
  flex: 0 0 310px;
  padding: 16px 32px;
  background: #FFFFFF;
  font-size: 16px;
  border-right: 1px solid #C8C8C8;
}
.access__row dd {
  flex: 1 1 auto;
  padding: 16px 32px;
  background: #FFFFFF;
  font-size: 16px;
}

.access__map {
  position: relative;
  margin-top: 32px;
  aspect-ratio: 1363/587;
  overflow: hidden;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.25);
}
.access__map iframe {
  display: block;
  position: absolute;
  top: -88px;
  left: 0;
  width: 100%;
  height: calc(100% + 88px);
  border: 0;
  pointer-events: auto;
  filter: grayscale(60%) sepia(30%) saturate(120%) brightness(1.1) contrast(0.88);
}

.access__map-btn {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 45px;
  padding: 0 16px;
  background: #FFFFFF;
  border: 1px solid #A18E26;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #36280B;
}

.access__traffic {
  margin-top: 32px;
  display: flex;
  min-height: 106px;
  background: #FFFFFF;
  border: 1px solid #D1C741;
}

.access__traffic-label {
  flex: 0 0 177px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D1C741;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
}

.access__traffic-list {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  padding: 20px 0px 20px 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

/* ==========================================================================
   INQUIRY
   ========================================================================== */
.l-inquiry {
  background: #36280B;
  padding: 72px 0;
}
.l-inquiry__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 0 20px;
}
.l-inquiry__logo {
  width: 70px;
  height: 40px;
}
.l-inquiry__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.35;
  color: #FFFFFF;
}
.l-inquiry__text {
  font-size: 16px;
  line-height: 1.75;
  color: #FFFFFF;
}
.l-inquiry__tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.l-inquiry__tel img {
  width: 40px;
  height: 40px;
}
.l-inquiry__tel span {
  font-weight: 700;
  font-size: 44px;
  color: #F4F4CE;
}
.l-inquiry__time {
  font-size: 12px;
  color: #FFFFFF;
  margin-top: -16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.l-footer {
  background: #F4F4CE;
}
.l-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: #F4F4CE;
}
.l-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-footer__brand-name {
  font-weight: 700;
  font-size: 14px;
  color: #36280B;
  line-height: 1.5;
}
.l-footer__brand-name span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  color: #A18E26;
  margin-top: 2px;
}
.l-footer__address {
  margin-top: 13px;
  font-size: 12px;
  color: #2B2B2B;
}
.l-footer__copy {
  font-size: 12px;
  color: #2B2B2B;
}
.l-footer__bar {
  height: 8px;
  background: #A18E26;
}

/* ==========================================================================
   Page top button
   ========================================================================== */
.l-pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(54, 40, 11, 0.8);
  border-radius: 8px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.l-pagetop img {
  width: 43px;
  height: 43px;
  transform: rotate(90deg);
}
.l-pagetop.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   404
   ========================================================================== */
.error404 {
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  min-height: 720px;
  margin-top: 86px;
}
.error404__inner {
  width: 576px;
  max-width: 100%;
  padding: 96px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error404__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.error404__eyebrow-line {
  width: 32px;
  height: 1px;
  background: #FF8104;
  flex-shrink: 0;
}
.error404__eyebrow-text {
  font-family: "Archivo", sans-serif;
  font-size: 12px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: #FF8104;
  white-space: nowrap;
}
.error404__code {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 208px;
  line-height: 208px;
  letter-spacing: -10.4px;
  color: #2B2B2B;
  opacity: 0.07;
  margin-top: 32px;
  text-align: center;
}
.error404__divider {
  display: block;
  width: 280px;
  max-width: 100%;
  height: 1px;
  background: #FFAB58;
  margin-top: 32px;
}
.error404__title {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 26.4px;
  line-height: 36.96px;
  letter-spacing: -0.264px;
  color: #36280B;
  text-align: center;
  margin-top: 32px;
}
.error404__text {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 28px;
  color: #36280B;
  text-align: center;
  max-width: 400px;
  margin-top: 20px;
  margin-bottom: 40px;
}
.error404__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FF8104;
  color: #FFFFFF;
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Responsive
   SP breakpoint (max-width: 767px) is now pixel-matched against the
   dedicated Figma SP file (260804_NWL_WEB SP_FIX). The 768px–1200px
   tablet range below is still best-effort, since no dedicated tablet
   design exists.
   ========================================================================== */
/* ==========================================================================
   SP-only components: hamburger button / mobile nav drawer / fixed call
   bar. Hidden by default; each is switched on again at whichever
   breakpoint replaces the thing it stands in for (see below). Declared
   before those breakpoint blocks so the later, more specific rules win
   the cascade instead of being clobbered by this default.
   ========================================================================== */
.l-header__hamburger {
  display: none;
}

.l-mobile-menu {
  display: none;
}

.l-access-bar {
  display: none;
}

@media (max-width: 1200px) {
  .l-header__nav-wrap {
    display: none;
  }
  body.is-menu-open {
    overflow: hidden;
  }
  .l-header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-right: 16px;
  }
  .l-header__hamburger img {
    width: 24px;
    height: 24px;
  }
  /* ---------------- Mobile nav drawer ---------------- */
  .l-mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
    overflow-y: auto;
  }
  .l-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
  }
  .l-mobile-menu__bg {
    position: fixed;
    inset: 0;
    z-index: -1;
  }
  .l-mobile-menu__bg::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .l-mobile-menu__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .l-mobile-menu__close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px;
    color: #FFFFFF;
    font-size: 12px;
  }
  .l-mobile-menu__close img {
    width: 24px;
    height: 24px;
  }
  .l-mobile-menu__brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 89px;
    padding-left: 40px;
  }
  .l-mobile-menu__brand img {
    width: 121px;
    height: 71px;
    object-fit: contain;
  }
  .l-mobile-menu__brand p {
    font-size: 12px;
    color: #D1C741;
  }
  .l-mobile-menu__nav {
    padding: 64px 40px 56px;
  }
  .l-mobile-menu__nav ul {
    display: flex;
    flex-direction: column;
  }
  .l-mobile-menu__nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 2.5;
    color: #FFFFFF;
  }
  .l-mobile-menu__nav a::before {
    content: "▸";
    color: #FF8104;
    font-weight: 700;
  }
}
@media (max-width: 1080px) {
  .l-hero__inner {
    padding: 0 40px;
  }
  .corporate__illust {
    display: none;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
  body {
    padding-bottom: 80px;
  }
  /* ---------------- Header ---------------- */
  .l-header {
    height: 70px;
  }
  .l-header__inner {
    padding: 0 16px;
    align-items: center;
  }
  .l-header__logo {
    margin-left: 0;
    gap: 12px;
  }
  .l-header__logo-mark img {
    width: 60px;
    height: 35px;
  }
  .l-header__logo-text img {
    width: 160px;
    height: auto;
  }
  .l-header__nav-wrap {
    display: none;
  }
  /* ---------------- Fixed bottom call bar ---------------- */
  .l-access-bar {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    width: 100%;
    padding: 12px clamp(12px, 4.27vw, 16px);
    background: #FF8104;
  }
  .l-access-bar__row {
    display: flex;
    align-items: center;
    gap: clamp(6px, 2.7vw, 10px);
  }
  .l-access-bar__label {
    font-weight: 700;
    font-size: clamp(11px, 3.7vw, 14px);
    line-height: 1.5;
    color: #FFFFFF;
    flex-shrink: 0;
  }
  .l-access-bar__divider {
    width: 1px;
    height: clamp(32px, 11.2vw, 42px);
    background: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
  }
  .l-access-bar__tel {
    display: flex;
    align-items: center;
    gap: clamp(4px, 2.1vw, 8px);
    min-width: 0;
  }
  .l-access-bar__tel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 9.6vw, 36px);
    height: clamp(28px, 9.6vw, 36px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.37);
    flex-shrink: 0;
  }
  .l-access-bar__tel-icon img {
    width: 56%;
    height: 56%;
  }
  .l-access-bar__tel-num {
    font-weight: 700;
    font-size: clamp(20px, 8vw, 32px);
    line-height: 1;
    color: #F4F4CE;
    white-space: nowrap;
  }
  .l-access-bar__time {
    margin-top: 4px;
    text-align: right;
    font-size: clamp(10px, 3.2vw, 12px);
    color: #FFFFFF;
  }
  /* ---------------- Hero ---------------- */
  .l-hero {
    margin-top: 70px;
    height: auto;
    min-height: 458px;
    padding-bottom: 40px;
  }
  .l-hero__inner {
    padding: 0 0px 0 15px;
  }
  .l-hero__lead {
    padding-top: 100px;
  }
  .l-hero__badge {
    font-size: 32px;
    line-height: 1;
    padding: 8px 16px;
  }
  .l-hero__title {
    font-size: 60px;
    line-height: 1.3;
    letter-spacing: -2px;
  }
  .l-hero__marks span {
    font-size: 15px;
    padding: 2px 4px;
  }
  .l-hero__marks-pc-only {
    display: none;
  }
  .l-hero__marks-sp-only {
    display: block;
  }
  .l-hero__tel {
    display: none;
  }
  /* ---------------- Section head (shared) ---------------- */
  .section {
    padding: 56px 0;
  }
  .section__inner {
    padding: 0 16px;
  }
  .section-head__tag {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0;
  }
  .section-head__tag:has(.section-head__jp--big, .section-head__jp--xl) {
    gap: 16px;
  }
  .section-head__title {
    margin-top: 32px;
  }
  .section-head__num {
    font-size: 16px;
  }
  .section-head__en {
    font-size: 20px;
  }
  .section-head__divider {
    width: 32px;
    height: 1px;
  }
  .section-head__jp {
    font-size: 14px;
    margin-top: 0;
  }
  .section-head__jp--big {
    font-size: 32px;
  }
  .section-head__jp--xl {
    font-size: 32px;
  }
  .section-head__title {
    font-size: 28px;
  }
  /* ---------------- 01 CORPORATE PHILOSOPHY ---------------- */
  .corporate__catch {
    font-size: 18px;
  }
  .corporate__text {
    max-width: 100%;
    margin-top: 32px;
  }
  .corporate__desc {
    font-size: 16px;
  }
  .corporate__desc p + p {
    margin-top: 24px;
  }
  .corporate__illust {
    display: block;
    position: static;
    width: 100%;
    margin-top: 32px;
  }
  .card-a-list,
  .card-b-list {
    flex-direction: column;
    margin-top: 32px;
  }
  .card-a,
  .card-b {
    width: 100%;
  }
  .card-a .icon-circle {
    margin-bottom: 16px;
  }
  .card-a__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  /* ---------------- 02 SERVICES ---------------- */
  .card-b__title {
    font-size: 18px;
  }
  .card-b__head {
    margin-bottom: 8px;
  }
  .card-b__text {
    margin-bottom: 8px;
  }
  /* ---------------- 03 FACILITY ---------------- */
  .facility__top {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "photo" "spec";
    gap: 32px;
  }
  .facility__head,
  .facility__spec {
    padding: 0 16px;
    max-width: 100%;
  }
  .facility__table {
    margin-bottom: 32px;
  }
  .facility__spec {
    padding-bottom: 0;
    width: auto;
  }
  .facility__photo {
    width: 100%;
    aspect-ratio: 1392/1226;
    height: auto;
  }
  .facility__bottom {
    flex-direction: column;
    padding: 0 16px;
  }
  .facility__gallery {
    width: 100%;
    flex-direction: column;
    padding: 0;
  }
  .facility__gallery-item {
    flex: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 728/390;
  }
  .facility__tenant-example {
    width: 100%;
    padding: 32px 0 0;
  }
  .facility__tenant-example-title {
    font-size: 18px;
  }
  /* ---------------- 04 BONDED WAREHOUSE ---------------- */
  .bonded__lead,
  .tenant__lead {
    margin-top: 32px;
  }
  .card-c {
    padding: 16px;
  }
  .card-c-list {
    margin-top: 32px;
  }
  .card-c-list--2col .card-c,
  .card-c-list--3col .card-c {
    width: 100%;
  }
  .card-c__title {
    font-size: 20px;
  }
  .bonded__merit {
    margin-top: 32px;
  }
  .card-c__text {
    font-size: 14px;
  }
  .bonded__merit-title,
  .tenant__genre-title {
    font-size: 20px;
  }
  .bonded__merit-bar {
    width: 100%;
    justify-content: flex-start;
    padding: 2px 4px;
    height: auto;
    min-height: 28px;
  }
  .card-c__status-badge {
    font-weight: bold;
  }
  .bonded__merit-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* ---------------- 05 TENANT / USAGE FORM ---------------- */
  .card-c-list--3col .card-c__head--60 {
    gap: 16px;
  }
  .tenant__genre {
    margin-top: 32px;
  }
  .tenant__genre-list {
    gap: 16px;
  }
  /* ---------------- 会社情報・アクセス ---------------- */
  .section--access {
    padding-top: 0;
  }
  .access__body {
    padding-top: 32px;
    padding-bottom: 0;
  }
  .access__head h2 {
    font-size: 28px;
  }
  .access__row dt {
    flex: 0 0 104px;
    padding: 8px 16px;
    font-size: 14px;
  }
  .access__row dd {
    padding: 8px 16px;
    font-size: 14px;
  }
  .access__traffic {
    flex-direction: column;
  }
  .access__traffic-label {
    flex: none;
    width: 100%;
    padding: 12px;
    justify-content: start;
  }
  .access__traffic-list {
    flex-wrap: wrap;
    gap: 4px 32px;
  }
  .access__map {
    aspect-ratio: 4/3;
  }
  /* ---------------- INQUIRY / FOOTER ---------------- */
  .l-inquiry__inner {
    gap: 16px;
  }
  .l-inquiry__title {
    font-size: 28px;
  }
  .l-inquiry__tel span {
    font-size: 32px;
  }
  .l-inquiry__time {
    margin-top: -12px;
  }
  .l-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  /* page-top sits above the fixed call bar on SP */
  .l-pagetop {
    right: 16px;
    bottom: 96px;
    width: 48px;
    height: 48px;
  }
  .error404__inner {
    padding: 56px 20px;
  }
  .error404__code {
    font-size: 96px;
    line-height: 96px;
    letter-spacing: -4.8px;
  }
  .error404__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .error404__btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */