@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #f5f5f5;
  background-color: #1d1d1d;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  text-decoration: none;
  color: #f5f5f5;
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: baseline;
  object-fit: cover;
}

li {
  list-style: none;
}

p {
  line-height: 1.8;
}

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

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

.tb_br {
  display: none;
}
@media (max-width: 1080px) {
  .tb_br {
    display: flex;
  }
}

.sm_br {
  display: none;
}
@media (max-width: 576px) {
  .sm_br {
    display: flex;
  }
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 200;
  border-bottom: 1px solid #f5f5f5;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 12px 24px;
}
.header .logo {
  max-width: 250px;
  line-height: 1;
}
.header .logo img {
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .header .logo {
    max-width: 150px;
  }
}
.header .logo img {
  width: 100%;
  height: auto;
}
.header .logo .menu-open {
  display: none;
}
@media (max-width: 1080px) {
  .header nav {
    display: none;
  }
}
.header nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header nav ul li {
  text-align: center;
}
.header nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 2.4rem;
}
.header nav ul li.sns-icon {
  border-left: 1px solid #f5f5f5;
  padding-left: 32px;
}
.header nav ul li.sns-icon a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.nav-label {
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 1.6rem;
  line-height: 1;
  text-shadow: 0 -1.5em 0 #f5f5f5, 0 0 0 #f5f5f5;
  transition: text-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
a:hover .nav-label {
  text-shadow: 0 0 0 #f5f5f5, 0 1.5em 0 #f5f5f5;
}

.nav-sub {
  display: block;
  overflow: hidden;
  color: transparent;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 -1.5em 0 #f5f5f5, 0 0 0 #f5f5f5;
  transition: text-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.03s;
}
a:hover .nav-sub {
  text-shadow: 0 0 0 #f5f5f5, 0 1.5em 0 #f5f5f5;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 300;
  position: fixed;
  right: 24px;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 28px;
  background: #f5f5f5;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  width: 28px;
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  width: 28px;
}
@media (max-width: 1080px) {
  .hamburger {
    display: flex;
  }
}

.sp-nav {
  position: fixed;
  inset: 0;
  background: #1d1d1d;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 40px 60px;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 46px) 34px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.55s, clip-path 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp-nav.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at calc(100% - 46px) 34px);
}

.sp-nav__list {
  width: 100%;
}
.sp-nav__list li {
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 245, 245, 0.12);
}
.sp-nav__list li:first-child {
  border-top: 1px solid rgba(245, 245, 245, 0.12);
}
.sp-nav__list li a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  font-size: 2.8rem;
  font-family: "Marcellus", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.sp-nav__list li a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  height: 1px;
  width: 0;
  background: #AF8628;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sp-nav__list li a:hover::after {
  width: 100%;
}
.sp-nav__list li a .ja {
  font-size: 1.1rem;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 500;
  color: #AF8628;
  letter-spacing: 0.06em;
}

.sp-nav.is-open .sp-nav__list li:nth-child(1) a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.14s;
}
.sp-nav.is-open .sp-nav__list li:nth-child(2) a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.2s;
}
.sp-nav.is-open .sp-nav__list li:nth-child(3) a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.26s;
}
.sp-nav.is-open .sp-nav__list li:nth-child(4) a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.32s;
}
.sp-nav.is-open .sp-nav__list li:nth-child(5) a {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.38s;
}

.sp-nav__sns {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.sp-nav__sns a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  color: rgba(245, 245, 245, 0.7);
}
.sp-nav__sns a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.sp-nav.is-open .sp-nav__sns {
  opacity: 1;
  transform: translateY(0);
}

.mv {
  height: 100vh;
  background-image: url(../img/mv-img.webp);
  background-size: cover;
  background-position: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow-x: hidden;
  transition: background-size 0s;
}
.mv--loaded {
  animation: mv-zoom 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes mv-zoom {
  from {
    background-size: 110%;
  }
  to {
    background-size: 120%;
  }
}
.mv__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"), linear-gradient(to bottom, rgba(29, 29, 29, 0) 0%, rgba(29, 29, 29, 0.5) 50%, rgb(29, 29, 29) 100%);
  z-index: 1;
  pointer-events: none;
}
.mv .triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 80%;
  background: rgba(175, 134, 40, 0.8);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}
@media (max-width: 1080px) {
  .mv .triangle {
    width: 70%;
  }
}
.mv .copy {
  max-width: 1000px;
  width: calc(100% - 2rem);
  margin-left: 2rem;
  margin-bottom: 6rem;
  padding-inline: 15px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .mv .copy {
    margin-left: 0;
    width: 100%;
  }
}
.mv .copy h2 {
  font-size: clamp(4rem, 6.4vw, 6.4rem);
  font-weight: 500;
  white-space: nowrap;
}
.mv .copy h2 .large-copy {
  font-size: clamp(4.8rem, 6.4vw, 7.2rem);
}
.mv .copy h2:last-of-type {
  margin-bottom: 40px;
  text-align: right;
}
.mv .copy h2 .mvcopy_br {
  display: none;
}
@media (max-width: 520px) {
  .mv .copy h2 .mvcopy_br {
    display: flex;
  }
}
.mv .copy p {
  font-size: clamp(2rem, 3vw, 3.2rem);
  white-space: nowrap;
}

.strengths .section-title {
  max-width: 1200px;
  margin-inline: auto;
  padding: 15px;
}
.strengths__content-item {
  display: flex;
  align-items: center;
  max-width: 1320px;
  margin-left: auto;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .strengths__content-item {
    flex-direction: column;
  }
}
.strengths__content-item .text {
  width: 38%;
}
@media (max-width: 768px) {
  .strengths__content-item .text {
    width: 100%;
  }
}
.strengths__content-item .text h4 {
  font-size: 3.2rem;
  font-weight: 500;
  border-bottom: 1px solid #AF8628;
  padding-bottom: 16px;
  margin-bottom: 40px;
  margin-left: 2rem;
  position: relative;
  z-index: 10;
}
.strengths__content-item .text h4::before {
  content: "01";
  font-family: "Playfair Display", serif;
  font-size: 17.8rem;
  font-style: italic;
  font-weight: 400;
  position: absolute;
  opacity: 0.4;
  color: #AF8628;
  line-height: 0;
  top: 0;
  left: -2rem;
  z-index: -1;
}
.strengths__content-item .text p {
  padding: 2rem;
}
.strengths__content-item .image {
  width: 62%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .strengths__content-item .image {
    width: 80%;
    display: block;
    margin-left: auto;
  }
}
.strengths__content-item:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 768px) {
  .strengths__content-item:nth-of-type(2) {
    flex-direction: column;
  }
}
.strengths__content-item:nth-of-type(2) .text h4::before {
  content: "02";
  left: inherit;
  right: 0;
}
@media (max-width: 768px) {
  .strengths__content-item:nth-of-type(2) .image {
    margin-right: auto;
    margin-left: 0;
  }
}
.strengths__content-item:nth-of-type(3) .text h4::before {
  content: "03";
}

.reason {
  background-image: url(../img/reason_bavkground.webp);
  background-size: cover;
  padding: 80px 15px;
  position: relative;
}
.reason__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E"), linear-gradient(to bottom, rgb(29, 29, 29) 0%, rgba(29, 29, 29, 0.5) 30%, rgba(29, 29, 29, 0) 50%, rgba(29, 29, 29, 0.5) 70%, rgb(29, 29, 29) 100%);
  z-index: 1;
  pointer-events: none;
}
.reason__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.reason .reason__chart {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url(../img/mark-ring.png);
  background-size: contain;
  background-position: center;
}
.reason .spheres-wrapper {
  position: relative;
  width: 560px;
  height: 580px;
}
@media (max-width: 768px) {
  .reason .spheres-wrapper {
    width: 90vw;
    height: 68vw;
  }
}
.reason .sphere-card {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: radial-gradient(circle at 45% 32%, #ffffff 0%, #e8eaf8 18%, #c0c4e8 42%, #8890d0 70%, #5058a8 100%);
  box-shadow: inset 0 -14px 35px rgba(40, 48, 140, 0.35), 0 0 0 1px rgba(120, 130, 200, 0.25), 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 80px rgba(80, 90, 200, 0.12);
  color: #AF8628;
}
@media (max-width: 768px) {
  .reason .sphere-card {
    width: 34vw;
    height: 34vw;
    padding: 4px;
  }
}
.reason .sphere-card:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 3;
}
.reason .sphere-card:nth-child(2) {
  top: 10%;
  right: 0;
}
.reason .sphere-card:nth-child(3) {
  bottom: 0;
  left: 15%;
  z-index: 2;
}
.reason span {
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .reason span {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }
}

@keyframes scrollLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(var(--scroll-dist, -50%), 0, 0);
  }
}
@keyframes scrollRight {
  from {
    transform: translate3d(var(--scroll-dist, -50%), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.works {
  width: 100%;
  margin-bottom: 160px;
}
.works__wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  margin-bottom: 80px;
}

.slider-area {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}
.slider-area::before, .slider-area::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}
.slider-area::before {
  left: 0;
  background: linear-gradient(90deg, #1d1d1d 0%, transparent 100%);
}
.slider-area::after {
  right: 0;
  background: linear-gradient(-90deg, #1d1d1d 0%, transparent 100%);
}
.slider-area:hover .slider-row {
  animation-play-state: paused;
}

.slider-row {
  display: flex;
  width: max-content;
  gap: 20px;
}
.slider-row--ltr {
  animation: scrollLeft 40s linear infinite;
}
.slider-row--rtl {
  animation: scrollRight 36s linear infinite;
}

.slide-card {
  flex: 0 0 320px;
  height: 210px;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .slide-card {
    flex: 0 0 240px;
    height: 160px;
  }
}
.slide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.slide-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(29, 29, 29, 0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  z-index: 2;
  pointer-events: none;
}
.slide-card:hover img {
  transform: scale(1.06);
}
.slide-card:hover::before {
  border-color: #AF8628;
}

.message__wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .message__wrapper .message__content {
    flex-direction: column;
    gap: 60px;
  }
}
.message__wrapper .message__content .reveal-img {
  width: 35%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .message__wrapper .message__content .reveal-img {
    width: 100%;
    max-width: 420px;
  }
}
.message__wrapper .message__content .reveal-img img {
  width: 100%;
  aspect-ratio: 4/5;
}
.message__wrapper .message__content p {
  font-size: 2.4rem;
  width: 100%;
  line-height: 2;
}
@media (max-width: 768px) {
  .message__wrapper .message__content p {
    font-size: 1.8rem;
    width: 100%;
    max-width: 520px;
  }
}
.message__wrapper .message__content p.message__content-name {
  margin-top: 40px;
  text-align: right;
}

.news__wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
}
@media (max-width: 576px) {
  .news__wrapper {
    flex-direction: column;
  }
}
.news .section-title {
  width: 30%;
}
.news .news-list {
  flex: 1;
  width: auto;
}
@media (max-width: 576px) {
  .news .news-list {
    width: 100%;
  }
}

@keyframes instaScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.insta__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(12.8rem, 6vw, 8rem);
  line-height: 1;
  color: rgba(245, 245, 245, 0.5);
  margin-bottom: 60px;
  padding-left: 15px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media (max-width: 768px) {
  .insta__title {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
    margin-bottom: -10px;
  }
}
.insta__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
  padding-right: 20px;
}

.insta-slider-wrap {
  overflow: hidden;
}

.insta-slider {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 40px 0 50px;
  animation: instaScroll 38s linear infinite;
  will-change: transform;
}
.insta-slider:hover {
  animation-play-state: paused;
}

.insta-card {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  position: relative;
  text-decoration: none;
  box-shadow: 0 10px 10px rgba(245, 245, 245, 0.3), 10px 0 20px rgba(245, 245, 245, 0.3);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.insta-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 32px 70px rgba(0, 0, 0, 0.35);
}
.insta-card:hover .insta-card__overlay {
  opacity: 1;
}
@media (max-width: 768px) {
  .insta-card {
    width: 180px;
    height: 180px;
  }
}
.insta-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.insta-card:hover img {
  transform: scale(1.06);
}
.insta-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(175, 134, 40, 0.18);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.insta-card:nth-of-type(even) {
  margin-top: 40px;
}

.strengths,
.works,
.insta {
  position: relative;
}

.deco-line {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.deco-line.is-visible {
  clip-path: inset(0 0% 0 0);
}
.deco-line img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}
.deco-line--1 {
  top: -10%;
  right: 0;
  width: 65%;
  max-width: 780px;
}
@media (max-width: 768px) {
  .deco-line--1 {
    width: 100%;
    top: 10px;
  }
}
.deco-line--2 {
  top: 25%;
  left: 10%;
  width: 60%;
  max-width: 720px;
  transform: scaleX(-1);
  clip-path: inset(0 0 0 100%);
}
.deco-line--2.is-visible {
  clip-path: inset(0 0 0 0%);
}
@media (max-width: 768px) {
  .deco-line--2 {
    width: 90%;
  }
}
.deco-line--3 {
  top: 58%;
  right: 10%;
  width: 60%;
  max-width: 700px;
}
@media (max-width: 768px) {
  .deco-line--3 {
    width: 90%;
  }
}
.deco-line--4 {
  top: 5%;
  right: 0;
  width: 55%;
  max-width: 660px;
  transform: scaleX(-1);
  clip-path: inset(0 0 0 100%);
}
.deco-line--4.is-visible {
  clip-path: inset(0 0 0 0%);
}
@media (max-width: 768px) {
  .deco-line--4 {
    width: 80%;
  }
}
.deco-line--5 {
  bottom: 5%;
  left: 0;
  width: 55%;
  max-width: 660px;
  transform: scaleX(-1);
  clip-path: inset(0 0 0 100%);
}
.deco-line--5.is-visible {
  clip-path: inset(0 0 0 0%);
}
@media (max-width: 768px) {
  .deco-line--5 {
    width: 80%;
  }
}
.deco-line--6 {
  top: -40%;
  left: 0;
  width: 80%;
  max-width: 780px;
}
@media (max-width: 768px) {
  .deco-line--6 {
    width: 100%;
    top: 10px;
  }
}

.section-title {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title h3 {
  font-size: 4.8rem;
  padding-bottom: 8px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  margin-bottom: 8px;
}
.section-title h3::after {
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #f5f5f5;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .section-title h3 {
    font-size: 3.6rem;
  }
}
.section-title p {
  font-size: 2.4rem;
  color: #AF8628;
}
@media (max-width: 768px) {
  .section-title p {
    font-size: 1.6rem;
  }
}
.section-title.center {
  text-align: center;
}
.section-title.center h3::after {
  margin-inline: auto;
}

.btn-wrapper {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 15px;
  text-align: right;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .btn {
    margin-top: 40px;
  }
}
.btn:hover .btn__circle::before {
  transform: scale(1);
  opacity: 1;
}
.btn:hover .btn__circle {
  color: #1d1d1d;
}
.btn__text {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .btn__text {
    font-size: 1.6rem;
  }
}
.btn__circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .btn__circle {
    width: 48px;
    height: 48px;
  }
}
.btn__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f5f5f5;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.btn__arrow {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.cta {
  width: 90%;
  max-width: 1400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-image: url(../img/cta-background.webp);
  background-size: cover;
  margin-inline: auto;
  padding-block: 120px;
}
.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cta-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(6.4rem, 8vw, 12.8rem);
}
.cta .cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 30%, 220px);
  height: 64px;
  background: #f5f5f5;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta {
  /* Ripple fill on hover */
}
.cta .cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(175, 134, 40, 0.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s;
  border-radius: inherit;
}
.cta .cta-btn:hover::before {
  transform: scaleX(1);
}
.cta .cta-btn:active {
  transform: translateY(0) scale(0.98);
}
.cta {
  /* Arrow icon */
}
.cta .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta .cta-btn:hover .btn-arrow {
  transform: translateX(6px);
}
.cta .btn-arrow svg {
  width: 28px;
  height: 16px;
  stroke: #1d1d1d;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta {
  /* Responsive */
}
@media (max-width: 600px) {
  .cta .cta-inner {
    aspect-ratio: auto;
    padding: 60px 24px;
    min-height: 280px;
  }
}

footer {
  border-top: 1px solid #AF8628;
  padding: 80px 15px 20px;
}
footer .footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  footer .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  footer .footer-left {
    text-align: center;
  }
}
footer .footer-left .logo {
  max-width: 240px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  footer .footer-left .logo {
    max-width: 180px;
  }
}
footer .footer-left .access {
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: left;
}
footer .footer-left .sns {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  footer .footer-left .sns {
    justify-content: center;
  }
}
footer .footer-left .sns .sns-icon a {
  display: flex;
  flex-direction: column;
}
footer .footer-left .sns .sns-icon a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  margin-inline: auto;
}
footer .footer-left .sns .sns-icon a p {
  font-size: 1.4rem;
  overflow: hidden;
  color: transparent;
  line-height: 1.2;
  text-shadow: 0 -1.5em 0 #f5f5f5, 0 0 0 #f5f5f5;
  transition: text-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
footer .footer-left .sns .sns-icon a:hover p {
  text-shadow: 0 0 0 #f5f5f5, 0 1.5em 0 #f5f5f5;
}
footer .footer-right li a {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 24px;
}
footer .footer-right li a:hover .nav-label {
  text-shadow: 0 0 0 #f5f5f5, 0 1.5em 0 #f5f5f5;
}
footer .footer-right li a:hover .nav-sub {
  text-shadow: 0 0 0 #f5f5f5, 0 1.5em 0 #f5f5f5;
}
footer .footer-right li a .nav-label {
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 1.8rem;
  line-height: 1.4;
  text-shadow: 0 -1.5em 0 #f5f5f5, 0 0 0 #f5f5f5;
  transition: text-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
footer .footer-right li a .nav-sub {
  display: block;
  overflow: hidden;
  color: transparent;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 -1.5em 0 #AF8628, 0 0 0 #f5f5f5;
  transition: text-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.03s;
}
footer .footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  font-size: 1.2rem;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  overflow: hidden;
  position: relative;
}
.reveal-img img {
  transform: translateY(-30px) scale(1.06);
  opacity: 0;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  will-change: transform, opacity;
}
.reveal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1d1d1d;
  transform-origin: bottom;
  transform: scaleY(1);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 1;
}
.reveal-img.is-visible img {
  transform: translateY(0) scale(1);
  opacity: 1;
  transition-delay: 0.12s;
}
.reveal-img.is-visible::after {
  transform: scaleY(0);
}

.reveal-line {
  overflow: hidden;
}
.reveal-line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-line.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s !important;
}

.reveal-delay-2 {
  transition-delay: 0.2s !important;
}

.reveal-delay-3 {
  transition-delay: 0.3s !important;
}

.reveal-delay-4 {
  transition-delay: 0.4s !important;
}

.reveal-delay-5 {
  transition-delay: 0.5s !important;
}

.reveal-delay-6 {
  transition-delay: 0.6s !important;
}

.reveal-delay-7 {
  transition-delay: 0.7s !important;
}

.reveal-delay-8 {
  transition-delay: 0.8s !important;
}

.mv .triangle {
  transform: translateY(-100%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv--loaded .triangle {
  transform: translateY(0);
}

.copy h2 .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.8em);
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mv--loaded .copy h2 .char {
  opacity: 1;
  transform: translateY(0);
}

.copy-p--anim {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s ease 1.6s, transform 0.8s ease 1.6s;
}

.mv--loaded .copy-p--anim {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .copy h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.3s;
  }
  .copy h2:nth-of-type(2) {
    transition-delay: 0.6s;
  }
  .mv--loaded .copy h2 {
    opacity: 1;
    transform: translateY(0);
  }
  .copy h2 .char {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .mv,
  .mv--loaded {
    animation: none !important;
    background-size: cover !important;
  }
}
.page-transition {
  position: fixed;
  inset: 0;
  background: #1d1d1d;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.page-transition.is-done {
  display: none;
}
.page-transition.is-out {
  opacity: 1;
  pointer-events: auto;
}

.loading {
  position: fixed;
  inset: 0;
  background: #1d1d1d;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s ease;
}
.loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.loading.is-done {
  display: none;
}
.loading__count {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: clamp(6rem, 12vw, 12rem);
  color: #f5f5f5;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity 0.3s ease, font-size 0.3s ease, letter-spacing 0.3s ease;
}

.page-header {
  position: relative;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-header {
    height: 40vh;
  }
}
.page-header__title {
  font-size: 4.8rem;
  font-weight: 500;
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
  padding-inline: 15px;
  padding-top: 30vh;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 3.6rem;
    padding-top: 20vh;
  }
}
.page-header__title span {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #AF8628;
  display: block;
}
@media (max-width: 768px) {
  .page-header__title span {
    font-size: 1.6rem;
  }
}
.page-header__under {
  margin-top: -5%;
}
@media (max-width: 768px) {
  .page-header__under {
    margin-top: 0;
  }
}
.page-header__mark {
  opacity: 0.6;
  object-fit: contain;
  max-width: 730px;
  width: 45%;
  mix-blend-mode: overlay;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 576px) {
  .page-header__mark {
    width: 80%;
  }
}

.profile {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
.profile__subtitle {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.profile__subtitle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: #AF8628;
  margin-top: 6px;
}
.profile__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 60px;
}
@media (max-width: 768px) {
  .profile__content {
    flex-direction: column;
    gap: 40px;
  }
}
.profile__img {
  width: clamp(200px, 40%, 400px);
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 3/4;
}
@media (max-width: 768px) {
  .profile__img {
    width: 100%;
    max-width: 330px;
  }
}
.profile__story {
  max-width: 700px;
}
.profile__story h4 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

.timeline {
  display: flex;
  flex-direction: column;
}
.timeline__item {
  display: grid;
  grid-template-columns: 120px 20px 1fr;
  align-items: center;
  column-gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .timeline__item {
    grid-template-columns: 80px 20px 1fr;
  }
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: 149px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #AF8628;
}
@media (max-width: 768px) {
  .timeline__item::before {
    left: 109px;
  }
}
.timeline__item:first-child::before {
  top: 50%;
}
.timeline__item:last-child::before {
  bottom: 50%;
}
.timeline__date {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #f5f5f5;
  text-align: left;
  padding-block: 10px;
}
@media (max-width: 768px) {
  .timeline__date {
    font-size: 1.6rem;
  }
}
.timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #AF8628;
  box-shadow: 0 0 6px rgba(175, 134, 40, 0.6);
  justify-self: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.timeline__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #f5f5f5;
  padding-block: 10px;
}
@media (max-width: 768px) {
  .timeline__desc {
    font-size: 1.3rem;
  }
}

.philosophy {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  position: relative;
}
.philosophy .section-title {
  margin-bottom: 60px;
}
.philosophy__body {
  position: relative;
  z-index: 1;
}
.philosophy__body p {
  text-align: center;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  word-break: keep-all;
  line-height: 2;
}
@media (min-width: 769px) {
  .philosophy__body p {
    padding-inline: clamp(160px, 22%, 280px);
  }
}
@media (min-width: 769px) {
  .philosophy__photos {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
}
@media (max-width: 768px) {
  .philosophy__photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
    margin-top: 40px;
  }
}
.philosophy__photo {
  overflow: hidden;
}
.philosophy__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 769px) {
  .philosophy__photo {
    position: absolute;
    pointer-events: auto;
    will-change: transform;
  }
}
@media (min-width: 769px) {
  .philosophy__photo--1 {
    width: clamp(120px, 18%, 200px);
    aspect-ratio: 1/1;
    left: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .philosophy__photo--1 {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1/1;
  }
}
@media (min-width: 769px) {
  .philosophy__photo--2 {
    width: clamp(160px, 20%, 240px);
    aspect-ratio: 4/3;
    left: 0;
    top: 38%;
  }
}
@media (max-width: 768px) {
  .philosophy__photo--2 {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: 4/3;
    margin-top: 32px;
  }
}
@media (min-width: 769px) {
  .philosophy__photo--3 {
    width: clamp(100px, 15%, 160px);
    aspect-ratio: 1/1;
    left: 3%;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .philosophy__photo--3 {
    grid-column: 1;
    grid-row: 2;
    aspect-ratio: 1/1;
    margin-left: 20px;
    margin-top: 24px;
  }
}
@media (min-width: 769px) {
  .philosophy__photo--4 {
    width: clamp(100px, 20%, 240px);
    aspect-ratio: 3/4;
    right: 0;
    top: 0;
  }
}
@media (max-width: 768px) {
  .philosophy__photo--4 {
    grid-column: 2;
    grid-row: 2;
    aspect-ratio: 3/4;
    margin-top: -16px;
    width: 80%;
  }
}
@media (min-width: 769px) {
  .philosophy__photo--5 {
    width: clamp(140px, 18%, 200px);
    aspect-ratio: 4/5;
    right: 2%;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .philosophy__photo--5 {
    grid-column: 1/span 2;
    grid-row: 3;
    width: 55%;
    aspect-ratio: 4/3;
    margin-top: 8px;
  }
}

.company-info {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .company-info {
    flex-direction: column;
  }
}

.company-table {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .company-table {
    margin-top: 40px;
  }
}
.company-table__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 40px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.8);
  padding: 24px 40px;
}
@media (max-width: 768px) {
  .company-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 10px;
  }
}
.company-table__row:first-child {
  border-top: 1px solid rgba(245, 245, 245, 0.8);
}
.company-table__row dt {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  padding-top: 2px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .company-table__row dt {
    font-size: 1.4rem;
  }
}
.company-table__row dd {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .company-table__row dd {
    font-size: 1.4rem;
  }
}
.company-table__row dd span {
  display: block;
  margin-bottom: 8px;
  line-height: 1.4;
}

.access .section-title {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
.access .gmap {
  width: 100%;
  aspect-ratio: 7/3;
}
@media (max-width: 768px) {
  .access .gmap {
    aspect-ratio: 5/4;
  }
}

.news-archive__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .news-archive__inner {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.news-archive__sidebar {
  width: 180px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .news-archive__sidebar {
    width: 100%;
    position: static;
  }
}
.news-archive__sidebar-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.news-archive__cat-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.news-archive__cat-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: rgba(245, 245, 245, 0.5);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 8px 0;
  cursor: pointer;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
}
.news-archive__cat-btn:hover {
  color: #f5f5f5;
}
.news-archive__cat-btn.is-active {
  color: #AF8628;
}
@media (max-width: 768px) {
  .news-archive__cat-btn {
    width: auto;
    font-size: 1.4rem;
  }
}
.news-archive__main {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .news-archive__main {
    width: 100%;
  }
}
.news-archive #news-ajax-wrap {
  transition: opacity 0.3s ease;
}
.news-archive__list {
  list-style: none;
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .news-archive__list {
    margin-top: 0;
  }
}
.news-archive__empty {
  padding: 40px 0;
  color: rgba(245, 245, 245, 0.4);
  font-size: 1.6rem;
}
.news-archive__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.news-archive__pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-archive__pagination li {
  display: flex;
}
.news-archive__pagination a,
.news-archive__pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.6rem;
  border: 1px solid rgba(245, 245, 245, 0.25);
  color: rgba(245, 245, 245, 0.6);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
@media (max-width: 768px) {
  .news-archive__pagination a,
  .news-archive__pagination span {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }
}
.news-archive__pagination a:hover {
  border-color: #AF8628;
  color: #AF8628;
}
.news-archive__pagination .current span,
.news-archive__pagination span.current {
  border-color: #AF8628;
  color: #1d1d1d;
  background-color: #AF8628;
}
.news-archive__pagination .prev a,
.news-archive__pagination .next a {
  font-size: 2rem;
}
.news-archive__pagination .dots span {
  border: none;
  color: rgba(245, 245, 245, 0.3);
}

.news-list {
  width: 100%;
  border-top: none;
}
.news-list__item {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.6);
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .news-list__item {
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}
.news-list__item:first-child {
  border-top: 1px solid rgba(245, 245, 245, 0.6);
}
.news-list__item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: #AF8628;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.news-list__item:hover::after {
  width: 100%;
}
.news-list__date {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.6rem;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .news-list__date {
    font-size: 1.4rem;
  }
}
.news-list__cat {
  border: 1px solid rgba(245, 245, 245, 0.8);
  padding: 4px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news-list__title {
  font-size: 2rem;
  transition: color 0.3s;
}
.news-list__title::before {
  content: "";
  position: absolute;
  inset: 0;
}
.news-list__title:hover {
  color: #AF8628;
}
@media (max-width: 768px) {
  .news-list__title {
    font-size: 1.6rem;
  }
}

.news-single__article {
  margin-block: 160px;
}
@media (max-width: 768px) {
  .news-single__article {
    margin-block: 80px;
  }
}
.news-single__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  max-width: 800px;
}
.news-single__head {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}
.news-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.news-single__date {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: rgba(245, 245, 245, 0.5);
  letter-spacing: 0.05em;
}
.news-single__cat {
  display: inline-block;
  font-size: 1.3rem;
  padding: 4px 12px;
  border: 1px solid rgba(245, 245, 245, 0.4);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.news-single__title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.news-single__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 40px;
}
.news-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-single__content {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .news-single__content {
    font-size: 1.4rem;
  }
}
.news-single__content h2 {
  font-size: 2.4rem;
  margin-top: 60px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}
@media (max-width: 768px) {
  .news-single__content h2 {
    font-size: 2rem;
  }
}
.news-single__content h3 {
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-single__content h3 {
    font-size: 1.8rem;
  }
}
.news-single__content p {
  margin-bottom: 24px;
}
.news-single__content img {
  width: 100%;
  height: auto;
  margin-block: 40px;
}
.news-single__content a {
  display: inline;
  color: #AF8628;
  text-decoration: underline;
}
.news-single__back {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .news-single__back {
    margin-top: 40px;
  }
}

.works-archive__section-title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 3.6rem;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 20px;
  margin-bottom: 60px;
}

.works-pickup {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .works-pickup {
    margin-bottom: 80px;
  }
}
.works-pickup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
}
@media (max-width: 1024px) {
  .works-pickup__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .works-pickup__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
}
.works-pickup__item {
  display: block;
  text-decoration: none;
  color: #f5f5f5;
}
.works-pickup__item:hover .works-pickup__img img {
  transform: scale(1.05);
}
.works-pickup__item:hover .works-pickup__name {
  color: #AF8628;
}
.works-pickup__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 20px;
}
.works-pickup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.works-pickup__info {
  padding: 0 2px;
}
.works-pickup__name {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .works-pickup__name {
    font-size: 1.6rem;
  }
}
.works-pickup__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.works-pickup__meta time {
  font-size: 1.6rem;
  font-family: "Marcellus", serif;
  letter-spacing: 0.05em;
}
.works-pickup__cat {
  display: inline-block;
  font-size: 1.6rem;
  padding: 2px 8px;
  border: 1px solid #f5f5f5;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.works-list-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .works-list-section {
    margin-bottom: 80px;
  }
}
.works-list-section .works-list-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .works-list-section .works-list-wrapper {
    flex-direction: column;
  }
}
.works-list-section .works-list-wrapper small {
  margin-left: 20px;
}
.works-list-section .works-filter {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .works-list-section .works-filter {
    width: 100%;
  }
}
.works-list-section .works-filter h4 {
  font-size: 2.4rem;
  font-weight: 400;
  border-bottom: 1px solid #AF8628;
  padding-bottom: 20px;
}
.works-list-section .works-filter__btn {
  color: #f5f5f5;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.3s ease;
}
.works-list-section .works-filter__btn:hover, .works-list-section .works-filter__btn.is-active {
  color: #AF8628;
}
.works-list-section .works-list {
  width: 90%;
}
@media (max-width: 768px) {
  .works-list-section .works-list {
    width: 100%;
  }
}
.works-list-section__header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.works-list-section__count {
  font-size: 2.4rem;
  color: rgba(245, 245, 245, 0.5);
  font-family: "Marcellus", serif;
  font-weight: 400;
}
.works-list-section__count span {
  font-size: 4rem;
  color: #f5f5f5;
  margin: 0 4px;
}
.works-list-section__more {
  text-align: center;
  margin-top: 40px;
}

.works-list {
  width: 100%;
}
.works-list__row {
  align-items: center;
  gap: 0 40px;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.6);
}
@media (max-width: 768px) {
  .works-list__row {
    grid-template-columns: 1fr;
    gap: 8px 0;
    padding: 20px 8px;
  }
}
.works-list__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.works-list__period {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 1.6rem;
  white-space: nowrap;
  color: rgba(245, 245, 245, 0.7);
}
@media (max-width: 768px) {
  .works-list__period {
    font-size: 1.4rem;
  }
}
.works-list__badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid rgba(245, 245, 245, 0.6);
  font-size: 1.4rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .works-list__badge {
    font-size: 1.2rem;
  }
}
.works-list__title {
  font-size: 2rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .works-list__title {
    font-size: 1.6rem;
  }
}

.works-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 48px;
  background: #AF8628;
  border: 1px solid #AF8628;
  color: #f5f5f5;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
@media (max-width: 768px) {
  .works-more-btn {
    font-size: 1.6rem;
  }
}
.works-more-btn:hover {
  background: transparent;
  color: #AF8628;
  border-color: #AF8628;
}
.works-more-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.works-empty {
  color: rgba(245, 245, 245, 0.4);
  font-size: 1.4rem;
  padding: 40px 0;
  text-align: center;
}

.works-single__article {
  margin-block: 160px;
}
@media (max-width: 768px) {
  .works-single__article {
    margin-block: 80px;
  }
}
.works-single__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
.works-single__head {
  padding-top: 40px;
}
.works-single__archive-label {
  font-size: 2.4rem;
  color: #f5f5f5;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 1px solid #AF8628;
}
.works-single__title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.works-single__sub {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
}
.works-single__sub time {
  font-family: "Marcellus", serif;
}
.works-single__cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.works-single__cat {
  display: inline-block;
  font-size: 1.3rem;
  padding: 4px 12px;
  border: 1px solid rgba(245, 245, 245, 0.6);
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.works-single__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 80px;
  border-bottom: 1px solid #f5f5f5;
  padding-bottom: 60px;
}
.works-single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-single__back {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .works-single__back {
    margin-top: 40px;
  }
}

.works-outline {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .works-outline {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.works-outline__table {
  border-top: 1px solid rgba(245, 245, 245, 0.6);
  width: 45%;
}
@media (max-width: 768px) {
  .works-outline__table {
    width: 100%;
  }
}
.works-outline__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 40px;
  padding: 20px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.6);
}
@media (max-width: 768px) {
  .works-outline__row {
    grid-template-columns: 90px 1fr;
    gap: 0 16px;
    padding: 16px 0;
  }
}
.works-outline__row dt {
  font-size: 1.6rem;
  color: rgba(245, 245, 245, 0.6);
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.works-outline__row dd {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .works-outline__row dd {
    font-size: 1.4rem;
  }
}

.works-content {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .works-content {
    margin-bottom: 48px;
  }
}
.works-content__body .wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}
.works-content__body .wp-block-gallery.is-layout-flex, .works-content__body .wp-block-gallery.is-layout-flow {
  display: grid !important;
  flex-wrap: unset !important;
}
@media (max-width: 768px) {
  .works-content__body .wp-block-gallery {
    gap: 8px !important;
  }
}
.works-content__body .wp-block-gallery figure.wp-block-image {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.works-content__body .wp-block-gallery figure.wp-block-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.works-content .wp-block-image {
  margin: 0 0 12px;
}
.works-content .wp-block-image img {
  width: 100%;
  height: auto;
}
.works-content figcaption {
  font-size: 1.2rem;
  color: rgba(245, 245, 245, 0.4);
  margin-top: 8px;
  text-align: center;
}

.works-voice {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .works-voice {
    margin-bottom: 48px;
  }
}
.works-voice__title-wrap {
  margin-bottom: 40px;
}
.works-voice__en {
  font-family: "Marcellus", serif;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.works-voice__ja {
  font-size: 1.4rem;
  color: #AF8628;
  letter-spacing: 0.08em;
}
.works-voice__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.works-voice__item {
  width: 100%;
}
.works-voice__img {
  width: 60%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .works-voice__img {
    width: 100%;
    aspect-ratio: 3/2;
  }
}
.works-voice__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.works-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #f5f5f5;
}
.works-back-btn:hover .works-back-btn__circle::before {
  transform: scale(1);
  opacity: 1;
}
.works-back-btn:hover .works-back-btn__circle {
  color: #1d1d1d;
}
.works-back-btn__circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .works-back-btn__circle {
    width: 48px;
    height: 48px;
  }
}
.works-back-btn__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f5f5f5;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.works-back-btn__circle svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}
.works-back-btn__text {
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .works-back-btn__text {
    font-size: 1.4rem;
  }
}

.contact-page {
  padding-bottom: 0;
}

.contact-form-section {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .contact-form-section {
    margin-bottom: 80px;
  }
}
.contact-form-section__inner {
  display: flex;
  gap: clamp(40px, 8vw, 120px);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-form-section__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-form-section__lead {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 120px;
}
@media (max-width: 768px) {
  .contact-form-section__lead {
    width: 100%;
    position: static;
  }
}
.contact-form-section__lead p {
  font-size: 1.4rem;
  line-height: 2;
  color: rgba(245, 245, 245, 0.7);
  margin-top: 16px;
}
.contact-form-section__title {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.06em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3);
}
.contact-form-section__form {
  flex: 1;
  min-width: 0;
}

.cf7-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 40px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}
.cf7-row:first-child {
  border-top: 1px solid rgba(245, 245, 245, 0.2);
}
@media (max-width: 768px) {
  .cf7-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 0;
  }
}
.cf7-row p {
  margin: 0;
  display: contents;
}
.cf7-row label {
  font-size: 1.4rem;
  color: rgba(245, 245, 245, 0.8);
  letter-spacing: 0.05em;
}
.cf7-row .req {
  color: #AF8628;
  margin-left: 4px;
}
.cf7-row .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.cf7-row input[type=text],
.cf7-row input[type=email],
.cf7-row input[type=tel] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3);
  color: #f5f5f5;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-size: 1.6rem;
  padding: 8px 4px;
  outline: none;
  transition: border-color 0.3s ease;
}
.cf7-row input[type=text]::placeholder,
.cf7-row input[type=email]::placeholder,
.cf7-row input[type=tel]::placeholder {
  color: rgba(245, 245, 245, 0.25);
}
.cf7-row input[type=text]:focus,
.cf7-row input[type=email]:focus,
.cf7-row input[type=tel]:focus {
  border-color: #AF8628;
}
.cf7-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3);
  color: #f5f5f5;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-size: 1.6rem;
  padding: 8px 4px;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease;
}
.cf7-row textarea::placeholder {
  color: rgba(245, 245, 245, 0.25);
}
.cf7-row textarea:focus {
  border-color: #AF8628;
}
.cf7-row--privacy {
  border-bottom: none;
  display: flex;
  gap: 0;
  padding: 24px 0;
  font-size: 1.3rem;
  color: rgba(245, 245, 245, 0.6);
}
.cf7-row--privacy .wpcf7-form-control-wrap {
  width: inherit;
}
.cf7-row--privacy .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-right: 20px;
}
.cf7-row--privacy p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cf7-row--privacy a {
  display: inline;
  text-decoration: underline;
}
.cf7-row--privacy input[type=checkbox] {
  accent-color: #AF8628;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}

.cf7-radio p {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.cf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.cf7-radio .wpcf7-list-item input[type=radio] {
  accent-color: #AF8628;
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.cf7-radio .wpcf7-list-item label {
  font-size: 1.6rem;
  color: #f5f5f5;
  cursor: pointer;
}

.cf7-submit {
  margin-top: 40px;
}
.cf7-submit .wpcf7-spinner {
  display: none;
}

.cf7-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #f5f5f5;
}
.cf7-btn:hover .cf7-btn__circle::before {
  transform: scale(1);
  opacity: 1;
}
.cf7-btn:hover .cf7-btn__circle {
  color: #1d1d1d;
}
.cf7-btn__text {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .cf7-btn__text {
    font-size: 1.6rem;
  }
}
.cf7-btn__circle {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f5f5;
  overflow: hidden;
  flex-shrink: 0;
  transition: color 0.4s ease;
}
@media (max-width: 768px) {
  .cf7-btn__circle {
    width: 48px;
    height: 48px;
  }
}
.cf7-btn__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f5f5f5;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
}
.cf7-btn__circle svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

.wpcf7-submit {
  background: transparent !important;
  border: none !important;
  color: #f5f5f5 !important;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif !important;
  font-size: 2.4rem !important;
  letter-spacing: 0.06em !important;
  cursor: pointer !important;
  padding: 0 !important;
}

.wpcf7-response-output {
  margin-top: 24px;
  padding: 12px 16px;
  font-size: 1.4rem;
  border-radius: 2px;
}
.wpcf7-response-output:empty {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #e05a5a;
  font-size: 1.2rem;
  margin-top: 4px;
  display: block;
}

.contact-sns {
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  margin-bottom: 0;
}
.contact-sns__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  align-items: stretch;
  padding-block: 60px;
}
@media (max-width: 768px) {
  .contact-sns__inner {
    flex-direction: column;
    gap: 40px;
    padding-block: 40px;
  }
}
.contact-sns__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-inline: 40px;
}
.contact-sns__item:first-child {
  padding-left: 0;
}
@media (max-width: 768px) {
  .contact-sns__item {
    padding-inline: 0;
  }
}
.contact-sns__divider {
  width: 1px;
  background: rgba(245, 245, 245, 0.15);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact-sns__divider {
    width: 100%;
    height: 1px;
  }
}
.contact-sns__label {
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.contact-sns__links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-sns__links img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.contact-sns__coming-soon {
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: rgba(245, 245, 245, 0.4);
}
.contact-sns__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.4);
  transition: border-color 0.3s ease;
}
.contact-sns__arrow:hover {
  border-color: #AF8628;
}
.contact-sns__arrow svg {
  width: 24px;
  height: 14px;
  stroke: #f5f5f5;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.contact-modal__box {
  position: relative;
  z-index: 1;
  background: #1d1d1d;
  border: 1px solid rgba(175, 134, 40, 0.4);
  padding: 60px 48px;
  width: min(480px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  transform: translateY(16px);
  transition: transform 0.4s ease;
}
.contact-modal.is-open .contact-modal__box {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-modal__box {
    padding: 40px 28px;
  }
}
.contact-modal__icon {
  color: #AF8628;
  width: 56px;
  height: 56px;
}
.contact-modal__icon svg {
  width: 100%;
  height: 100%;
}
.contact-modal__en {
  font-family: "Marcellus", serif;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  color: #AF8628;
}
.contact-modal__ja {
  font-size: 1.5rem;
  line-height: 2;
  color: rgba(245, 245, 245, 0.8);
}
.contact-modal__close {
  margin-top: 8px;
  font-family: "Marcellus", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #f5f5f5;
  background: none;
  border: 1px solid rgba(245, 245, 245, 0.4);
  padding: 10px 40px;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-modal__close:hover {
  border-color: #AF8628;
  color: #AF8628;
}

.privacy__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
.privacy__lead {
  font-size: 1.8rem;
  line-height: 2;
  border-left: 2px solid #AF8628;
  padding-left: 24px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .privacy__lead {
    font-size: 1.4rem;
    padding-left: 16px;
    margin-bottom: 48px;
  }
}
.privacy__section {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.4);
}
.privacy__section:last-of-type {
  border-bottom: none;
}
@media (max-width: 768px) {
  .privacy__section {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
}
.privacy__section-title {
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", "Noto Serif JP", serif;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .privacy__section-title {
    font-size: 1.8rem;
    gap: 12px;
  }
}
.privacy__section-num {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #AF8628;
  flex-shrink: 0;
}
.privacy__text {
  line-height: 2;
}
.privacy__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 0;
  counter-reset: privacy-counter;
}
.privacy__list-item {
  counter-increment: privacy-counter;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  line-height: 2;
}
.privacy__list-item::before {
  content: counter(privacy-counter);
  font-family: "Marcellus", serif;
  color: #AF8628;
  font-size: 1.8rem;
}
.privacy__list-item p {
  grid-column: 2;
  margin: 0;
  line-height: 2;
}
@media (max-width: 768px) {
  .privacy__list-item {
    font-size: 1.4rem;
  }
}
.privacy__list-label {
  grid-column: 2;
  font-size: 1.8rem;
}
.privacy__list-sub {
  grid-column: 2;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.privacy__list-sub li {
  position: relative;
  padding-left: 20px;
}
.privacy__list-sub li::before {
  content: "—";
  position: absolute;
  left: 0;
  font-size: 1rem;
  top: 4px;
}
.privacy__company-name {
  font-size: 2rem;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .privacy__company-name {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=style.css.map */
