@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  color: #111111;
  background: #FAFAF8;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  /* 反対色にするため、ベース色を白に変更 */
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  mix-blend-mode: difference;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px;
  height: 56px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 500;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  transition: background 0.3s;
}
@media (max-width: 768px) {
  .nav {
    padding: 0 10px;
  }
}
.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.98);
  box-shadow: 0 2px 20px rgba(17, 17, 17, 0.06);
}
.nav__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: #FAFAF8;
  padding: 10px 30px;
  background-color: #111111;
  border-radius: 50px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav__logo {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .nav__menu {
    display: none;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #111111;
  position: relative;
  padding-bottom: 2px;
  border-radius: 50px;
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #111111;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover::after {
  width: 100%;
}
.nav__link--accent {
  background: #111111;
  color: #FAFAF8;
  padding: 4px 12px 4px;
  letter-spacing: 0.08em;
  font-weight: 200;
}
.nav__link--accent::after {
  display: none;
}
.nav__link--accent:hover {
  background: #FAFAF8;
  color: #111111;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 768px) {
  .nav__burger {
    display: flex;
  }
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: #111111;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
  padding-top: 56px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
}
.hero__left {
  background: #111111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 40px 120px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero__left {
    padding: 0px 30px 0px;
    min-height: 52vh;
  }
}
.hero__company {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #FAFAF8;
  margin-bottom: 48px;
}
.hero__body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.06em;
  color: #FAFAF8;
}
.hero__right {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.hero__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__door {
  position: fixed;
  top: 56px;
  left: 33.333%;
  right: 0;
  height: calc(100vh - 56px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero__door {
    left: 0;
    width: 100%;
    top: 56px;
    height: 100vh;
  }
}
.hero__plastic {
  position: fixed;
  top: 56px;
  left: 33.333%;
  right: 0;
  height: calc(100vh - 56px);
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.38;
  pointer-events: none;
  z-index: 1;
  animation: plasticDrift 12s ease-in-out infinite alternate;
}
@media (max-width: 768px) {
  .hero__plastic {
    left: 0;
    right: 0;
    height: 100vh;
  }
}
@keyframes plasticDrift {
  0% {
    transform: translate(0, 0) scale(1.02);
  }
  33% {
    transform: translate(1%, -0.5%) scale(1.04);
  }
  66% {
    transform: translate(-1%, 1%) scale(1.03);
  }
  100% {
    transform: translate(0.5%, 0%) scale(1.05);
  }
}
.hero__headline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 0 32px 20px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero__headline {
    padding: 0 16px 20px;
  }
}
.hero__h1 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  font-size: 22vw;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: #FAFAF8;
  line-height: 1;
  text-shadow: 0 2px 40px rgba(17, 17, 17, 0.4), 0 0 1px rgba(17, 17, 17, 0.2);
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 768px) {
  .hero__h1 {
    text-align: center;
    font-size: clamp(2.1rem, 10vw, 5rem);
    white-space: normal;
    letter-spacing: 0.13em;
    line-height: 1;
  }
}

.about {
  padding: 120px 40px 0px;
  background: #FAFAF8;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .about {
    padding: 80px 24px;
  }
}
.about__inner {
  max-width: 680px;
  margin: 0 auto;
}
.about__title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  line-height: 1.9;
  margin-bottom: 36px;
  color: #111111;
}
@media (max-width: 768px) {
  .about__title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.about__text {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.06em;
  color: rgba(17, 17, 17, 0.72);
}
@media (max-width: 768px) {
  .about__text {
    letter-spacing: 0.05em;
  }
}

.services {
  padding: 100px 40px 0px;
  background: #FAFAF8;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .services {
    padding: 40px 20px 0px;
  }
}
.services__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .services__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.services__content {
  padding-top: 0;
}
.services__label {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #111111;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.services__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111111;
}
.services__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 52px;
}
.services__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.services__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid #E8E6E0;
  position: relative;
  overflow: hidden;
}
.services__item:first-child {
  border-top: 1px solid #E8E6E0;
}
.services__item .services__accent {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  background: #111111;
  margin-right: 20px;
  align-self: stretch;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__item:hover .services__accent {
  transform: scaleY(1);
}
.services__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  color: #111111;
  margin-bottom: 6px;
}
.services__item-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
}
.services__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.services__photo img {
  width: 100%;
  height: 75%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__photo:hover img {
  transform: scale(1.04);
}
.services__photo-frame {
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__photo:hover .services__photo-frame {
  transform: translate(8px, 8px);
}

.flow {
  padding: 100px 40px 120px;
  background: #FAFAF8;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .flow {
    padding: 0px 20px 80px;
  }
}
.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .flow__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.flow__content {
  padding-top: 0;
}
.flow__label {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #111111;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.flow__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111111;
}
.flow__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 52px;
}
.flow__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid #E8E6E0;
  position: relative;
  overflow: hidden;
}
.flow__item:first-child {
  border-top: 1px solid #E8E6E0;
}
.flow__item .services__accent {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  background: #111111;
  margin-right: 20px;
  align-self: stretch;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.flow__item:hover .services__accent {
  transform: scaleY(1);
}
.flow__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #111111;
  margin-bottom: 6px;
}
.flow__item-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
}
.flow__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.flow__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.flow__photo:hover img {
  transform: scale(1.04);
}
.flow__photo-frame {
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.flow__photo:hover .flow__photo-frame {
  transform: translate(8px, 8px);
}

/*gsapwon*/
.containerwon {
  display: flex;
  justify-content: center;
}

.won {
  margin: 10px;
  text-align: center;
}

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

/* PC画面では元のスタイルを維持し、スマホ画面だけで切り替えます */
@media (max-width: 768px) { /* 💡ブレイクポイント */
  .flow .containerwon {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 💡スマホだけで2列にする */
    gap: 16px;
    padding: 0 16px;
    padding-top: 20px;
  }
  .flow .won {
    text-align: center;
    margin: 0; /* PC版のmarginが邪魔しないようにリセット */
  }
  .flow .won img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.career {
  padding: 100px 40px 120px;
  background: #FAFAF8;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .career {
    padding: 0px 20px 80px;
  }
}
.career__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 80px;
  align-items: start;
}
@media (max-width: 768px) {
  .career__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.career__content {
  padding-top: 0;
}
.career__label {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #111111;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.career__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111111;
}
@media (max-width: 768px) {
  .career__label {
    margin-bottom: 15px;
  }
}
.career__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.7);
  margin-bottom: 52px;
}
.career__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.career__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid #E8E6E0;
  position: relative;
  overflow: hidden;
}
.career__item:first-child {
  border-top: 1px solid #E8E6E0;
}
.career__item .services__accent {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  background: #111111;
  margin-right: 20px;
  align-self: stretch;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.career__item:hover .services__accent {
  transform: scaleY(1);
}
.career__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #111111;
  margin-bottom: 6px;
}
.career__item-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
}
.career__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.career__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.career__photo:hover img {
  transform: scale(1.04);
}
.career__photo-frame {
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.career__photo:hover .career__photo-frame {
  transform: translate(8px, 8px);
}

.containerboxxx-bg {
  background-color: #ffff00;
  width: 800px;
  height: 800px;
  position: absolute;
}

.containerboxxx {
  content: "";
  top: 50px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .containerboxxx {
    display: flex;
    flex-direction: column;
    gap: 16px;
    top: 0;
    overflow: hidden;
  }
}

.boxxx {
  position: relative;
}
@media (max-width: 768px) {
  .boxxx {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    z-index: auto !important;
  }
}

.boxxx img {
  width: 100%;
  display: block;
}

/* 要素1：画像 右寄り */
.boxxx:nth-child(1) {
  width: 900px;
  margin-left: 170px;
}

/* 要素2：画像 左寄り、要素1に重なる */
.boxxx:nth-child(2) {
  width: 700px;
  margin-top: -80px;
  margin-bottom: 100px;
  z-index: 2;
}

/* ═══════════════════════════════
   COMPANY
   ═══════════════════════════════ */
.company {
  padding: 0px 0px 120px;
  background: #FAFAF8;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .company {
    padding: 0px 20px 80px;
  }
}
.company__inner {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  gap: 0;
  align-items: start;
  border: 1px solid #000000;
  border-left: none;
  box-shadow: 2px 2px;
  padding: 80px;
  margin-left: 0px;
  padding-left: 250px;
}
@media (max-width: 768px) {
  .company__inner {
    grid-template-columns: 1fr;
    max-width: 100%;
    padding: 40px 20px;
    margin-left: 0;
    padding-left: 20px; /* 他セクションと揃えて20pxに */
  }
}
.company__content {
  padding-top: 0;
}
.company__label {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: #111111;
  margin-bottom: 36px;
  position: relative;
  display: inline-block;
}
.company__label::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111111;
}
@media (max-width: 768px) {
  .company__label {
    margin-bottom: 15px;
  }
}
.company__lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: rgba(17, 17, 17, 0.7);
}
.company__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.company__item {
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid #E8E6E0;
  position: relative;
  overflow: hidden;
}
.company__item:first-child {
  border-top: 1px solid #E8E6E0;
}
.company__item .services__accent {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  background: #111111;
  margin-right: 20px;
  align-self: stretch;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.company__item:hover .services__accent {
  transform: scaleY(1);
}
.company__item-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #111111;
  margin-bottom: 6px;
}
.company__item-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.6);
  line-height: 1.6;
}

.company_box {
  margin-top: 48px;
  background: #FAFAF8;
  position: relative;
  z-index: 10;
}

.company_boxInner {
  max-width: 700px;
  margin-left: 300px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .company_boxInner {
    padding: 0;
    margin-left: 20px;
  }
}

.company__data-row--top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  max-width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .company__data-row--top {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }
}

.company__dl {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .company__dl {
    gap: 10px;
  }
}

.company__dt-dd dt {
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: #111111;
  margin-bottom: 4px;
}
.company__dt-dd dd {
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: rgba(17, 17, 17, 0.65);
  margin: 0;
}

.company__photo {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1100px;
  margin: 48px auto 0;
  z-index: 10;
  background: #FAFAF8;
}
.company__photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.company__photo-border {
  display: none;
}
@media (max-width: 768px) {
  .company__photo {
    width: 100%;
  }
}

.access-section {
  padding: 100px 40px 120px;
  background: #FAFAF8; /* 背景は最初から常に表示されます */
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .access-section {
    padding: 60px 24px 80px;
  }
}

/* ⬇️ 新設：インナー要素にだけフェードアニメーションを適用 */
.access-inner {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  /* JSで親（.access-section）に .is-visible が付く場合を想定 */
}
.access-section.is-visible .access-inner {
  opacity: 1;
  transform: translateY(0);
}
.access-inner {
  /* もしJSで直接 .access-inner にクラスを付ける場合はこちらを使用 */
}
.access-inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.access-header {
  max-width: 1100px;
  margin: 0 auto 48px;
}
@media (max-width: 768px) {
  .access-header {
    margin-bottom: 28px;
  }
}

.access-title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  color: #111111;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.access-title-en::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #111111;
}
@media (max-width: 768px) {
  .access-title-en {
    font-size: 1.7rem;
  }
}

.access-title-line {
  margin: 16px 0 10px;
  width: 40px;
  height: 1px;
  background: #111111;
  display: none;
}

.access-title-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.6);
  margin-top: 20px;
  display: block;
}
@media (max-width: 768px) {
  .access-title-ja {
    font-size: 1.1rem;
  }
}

.access-map-wrapper {
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .access-map-wrapper {
    margin-bottom: 24px;
  }
}

.access-map {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
  /* グレースケール */
  filter: grayscale(100%) brightness(99.9%) contrast(130%);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.access-map.is-loaded {
  opacity: 1;
}
@media (max-width: 768px) {
  .access-map {
    height: 240px;
  }
}

.access-info {
  max-width: 1100px;
  margin: 0 auto;
}

.access-label {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #111111;
  margin-bottom: 8px;
}

.access-address {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.7);
  font-style: normal;
}
@media (max-width: 768px) {
  .access-address {
    font-size: 1.2rem;
  }
}

.contact-form-wrapper {
  max-width: 1100px;
  margin: 56px auto 0;
}
@media (max-width: 768px) {
  .contact-form-wrapper {
    margin-top: 40px;
  }
}

.contact-form {
  max-width: 640px;
  margin-top: 20px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.contact-form__row label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #111111;
}
.contact-form__row input,
.contact-form__row textarea {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: #111111;
  background: #FAFAF8;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  padding: 10px 4px;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: none;
  border-bottom-color: #111111;
}
.contact-form__row textarea {
  resize: vertical;
  line-height: 1.7;
}

.contact-form__required {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  background: #111111;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}

.contact-form__submit {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #FAFAF8;
  background: #111111;
  border: none;
  padding: 14px 40px;
  cursor: pointer;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-form__submit:hover {
  background: #FAFAF8;
  color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.contact-form__note {
  font-family: "Noto Serif JP", serif;
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.55);
  margin-top: 14px;
  letter-spacing: 0.03em;
}

.footer {
  background: #111111;
  color: #FAFAF8;
  z-index: 100;
  position: relative;
  padding: 60px 40px 40px;
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 24px 32px;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 200;
  letter-spacing: 0.18em;
  margin-bottom: 36px;
  color: #111111;
  background-color: #FAFAF8;
  padding: 10px 40px;
  display: inline-block;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .footer__logo {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin-bottom: 48px;
}
.footer__nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.55);
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: #FAFAF8;
}
.footer__copy {
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 248, 0.3);
  border-top: 1px solid rgba(250, 250, 248, 0.1);
  padding-top: 24px;
}

.js-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js-reveal-headline {
  opacity: 0;
  transform: translateY(16px);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: #FAFAF8;
  padding: 24px 28px 32px;
  z-index: 499;
  border-bottom: 1px solid #E8E6E0;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}
.nav__mobile.is-open {
  display: block;
}
.nav__mobile a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0.12em;
  padding: 14px 0;
  border-bottom: 1px solid #E8E6E0;
  color: #111111;
}
.nav__mobile a:last-child {
  border-bottom: none;
}
.nav__mobile a:hover {
  color: #FAFAF8;
}/*# sourceMappingURL=style_2.css.map */