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

/* -------------------------
  FADE UP
------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}
.fade-up.active {
  animation: fadeUp 1.2s ease-out forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------------
  FADE LEFT
------------------------- */
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
}
.fade-left.active {
  animation: fadeLeft 1.2s ease-out forwards;
}
@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------
  FADE RIGHT
------------------------- */
.fade-right {
  opacity: 0;
  transform: translateX(50px);
}
.fade-right.active {
  animation: fadeRight 1.2s ease-out forwards;
}
@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------------
  ZOOM IN
------------------------- */
.zoom-in {
  opacity: 0;
  transform: scale(0.8);
}
.zoom-in.active {
  animation: zoomIn 1.2s ease-out forwards;
}
@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -------------------------
  ZOOM OUT
------------------------- */
.zoom-out {
  opacity: 0;
  transform: scale(1.2);
}
.zoom-out.active {
  animation: zoomOut 1.2s ease-out forwards;
}
@keyframes zoomOut {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* -------------------------
  DELAYS
------------------------- */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

body,
html {
  height: 100%;
  width: 100%;
  color: #fff;
  background-color: #000;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

header {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.logo {
  font-size: 1.2em;
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button {
  font-weight: 300;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #fff;
  transition: background 0.3s;
  font-family: "Libertinus Mono", monospace;
}

.menu-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.dot {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
}


/* --- Menu Overlay --- */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: #fff;
  color: #000;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 9999;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Libertinus Mono", monospace;
}

.menu-overlay.active {
  transform: translateX(0);
}

.menu-overlay .menu-close {
  background: none;
  border: none;
  font-size: 1em;
  color: #000;
  cursor: pointer;
  margin-bottom: 40px;
  text-align: right;
  width: 100%;
}

.menu-overlay .menu-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-overlay .menu-nav li {
  margin-bottom: 30px;
}

.menu-overlay .menu-nav a {
  color: #000;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: 300;
  transition: color 0.3s;
}

.menu-overlay .menu-nav a:hover {
  color: rgba(0,0,0,0.5);
}

.menu-overlay .menu-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.9em;
  font-weight: 300;
}

.menu-overlay .menu-bottom a {
  color: #000;
  text-decoration: none;
  border: 1px solid #000;
  padding: 8px 12px;
  border-radius: 30px;
  transition: background 0.3s;
}

.menu-overlay .menu-bottom a:hover {
  background: rgba(0,0,0,0.1);
}


.menu-overlay {
  font-family: "Libertinus Mono", monospace;
  font-weight: 300;
}

.menu-overlay .menu-close {
  font-family: "Libertinus Mono", monospace;
  font-size: 1em;
}

.menu-overlay .menu-nav a {
  font-family: "Libertinus Mono", monospace;
  font-weight: 300;
  font-size: 1.4em;
}

.menu-overlay .menu-bottom a {
  font-family: "Libertinus Mono", monospace;
}

.hero {
  position: relative;
  height: 120vh;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding-top: 200px;
  padding-right:  20px;
  padding-left: 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4em);
  font-family: "Libertinus Mono", monospace;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.0s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  padding: 10px 30px;
  max-width: 700px;
  font-size: clamp(1rem, 2.5vw, 1.2em);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.7);
}

/* Hero下にグラデーション */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  z-index: 1;
  pointer-events: none;
}

/* スマホでは非表示 */
@media (max-width: 768px) {
  .hero-description {
    display: none;
  }
}


.scroll-indicator {
  width: 200px;
  height: 200px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator span {
  font-size: 0.9em;
}

.scroll-indicator .arrow {
  font-size: 1.2em;
  margin-top: 5px;
}

/**/

.about {
  background-color: #000000;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.about-eyebrow {
  font-size: 0.8em;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 30px;
}

.about-content h2 {
  font-size: 2em;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 50px;
  font-family: "Libertinus Mono", monospace;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 300;
  transition: color 0.3s;
}

.explore-link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.explore-link .dot {
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
}

/**/

.about-us {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000;
  padding: 80px 20px;
  background: url("images/background.png") center center / cover no-repeat;
}

.about-us-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.about-us-left {
  flex: 1 1 40%;
}

.about-us-right {
  flex: 1 1 50%;
}

.eyebrow {
  font-size: 0.8em;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 20px;
}

.about-main-text {
  font-size: 1.1em;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
  
}

.explore-link {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 300;
  transition: color 0.3s;
}

.explore-link .dot {
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
}

.explore-link:hover {
  color: rgba(0, 0, 0, 0.5);
}

.about-us-right p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6;
}

.about-us-right p strong {
  font-weight: 600;
}

/**/
.video-gallery {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #ededed;
}

.video-wrapper {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  transition: width 2.5s ease, height 2.5s ease;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.5);
  transform: scale(1);
  transition: transform 2.5s ease, filter 2.5s ease;
  z-index: 2;
  position: relative;
}

.video-gallery .photo {
  position: absolute;
  width: 180px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 1;
  transition: all 2.5s ease;
  z-index: 1;
}

/* 初期位置 */
.video-gallery .photo-1 {
  top: -130px;
  left: -250px;
}

.video-gallery .photo-2 {
  top: -130px;
  right: -250px;
}

.video-gallery .photo-3 {
  bottom: -10px;
  left: -250px;
}

.video-gallery .photo-4 {
  bottom: -10px;
  right: -250px;
}

/* アニメ後 */
.video-gallery.active .photo-1,
.video-gallery.active .photo-2,
.video-gallery.active .photo-3,
.video-gallery.active .photo-4 {
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%) scale(0.1);
  opacity: 0.5;
  z-index: 0;
}


.video-wrapper.active {
  width: 100vw;
  height: 100vh;
}

.video-wrapper.active video {
  transform: scale(1.3);
  filter: brightness(0.8);
}


/**/

.production {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000;
  position: relative;
  padding: 80px 20px;
  overflow: visible;
  background: url("images/background.png") center center / cover no-repeat;
}

.production-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.production-left {
  flex: 1 1 45%;
}

.production-left h2 {
  font-size: 2em;
  font-weight: 300;
  margin-bottom: 30px;
  font-family: "Libertinus Mono", monospace;
}

.production-left p {
  font-size: 1em;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 30px;
}

.production-right {
  flex: 1 1 50%;
  position: relative;
}

.production-right img {
  width:50%;
  height: auto;
  display: block;
  position: absolute;
  bottom: -240px; /* はみ出し量調整 */
  right: 0;
}

.explore-link {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 300;
  transition: color 0.3s;
}

.explore-link .dot {
  width: 10px;
  height: 10px;
  background-color: #080808;
  border-radius: 50%;
}

.explore-link:hover {
  color: rgba(0, 0, 0, 0.5);
}

/**/

.inspirations {
  background: #000;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}

.inspirations-inner {
  max-width: 940px;
  margin: 0 auto;
}

.inspirations .eyebrow {
  font-size: 0.8em;
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 30px;
}

.inspirations h2 {
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 50px;
  font-family: "Libertinus Mono", monospace;
}

.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: 300;
  transition: color 0.3s;
}

.explore-link .dot {
  width: 10px;
  height: 10px;
  background-color: #000000;
  border-radius: 50%;
}

.explore-link:hover {
  color: rgba(255, 255, 255, 0.5);
}


/**/
.carousel-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 30px;
}

.carousel-controls button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2em;
  transition: background 0.3s;
}

.carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.2);
}


.carousel-section {
  position: relative;
  background: #000;
  padding: 60px 20px;
}

.carousel-inner {
  width: 1300px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 400px;
  margin:0 20px ;
  border-radius: 8px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}


/* ★ ポップアップ用 */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.popup.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 8px;
  text-align: center;
  font-family: "Libertinus Mono", monospace;
}

.popup-content button {
  margin-top: 10px;
  margin-right: 10px;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
  font-family: "Libertinus Mono", monospace;
}

.popup-content button:hover {
  background: #333;
}


.carousel-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.carousel-item img {
  display: block;
  width: 100%;
  height: auto;
}

.carousel-item .item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-family: "Libertinus Mono", monospace;
  font-size: 1.4em;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.carousel-item:hover .item-info {
  opacity: 1;
  transform: translateY(0);
}



/**/



.footer {
  background: #f2f2f2;
  color: #000;
  padding: 60px 20px;
  font-family: "Libertinus Mono", monospace;
  font-weight: 300;
  background: url("images/background.png") center center / cover no-repeat;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-title {
  font-weight: 400;
  font-size: 1.5em;
  margin-bottom: 20px;
}

.footer-socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.footer-socials a {
  color: #000;
  text-decoration: none;
  font-size: 0.9em;
}

.footer-socials a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 1em;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 0.9em;
  line-height: 1.5;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 0.9em;
}

.footer-newsletter .privacy {
  font-size: 0.8em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-newsletter button {
  padding: 10px 20px;
  border: 1px solid #000;
  background: none;
  border-radius: 30px;
  font-size: 0.9em;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: rgba(0, 0, 0, 0.1);
}

.footer-support .footer-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-support .footer-buttons a {
  border: 1px solid #000;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.9em;
  text-decoration: none;
  color: #000;
  transition: background 0.3s;
}

.footer-support .footer-buttons a:hover {
  background: rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.8em;
  color: #666;
}

.menu-button{  font-weight: 300;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #fff;
  transition: background 0.3s;
  text-decoration: none;
  color: #fff;
  font-family: "Libertinus Mono", monospace;}

.cart-button {
  font-weight: 300;
  cursor: pointer;
  padding: 8px 16px;
  border: 1px solid #fff;
  transition: background 0.3s;
  text-decoration: none;
  color: #fff;
  font-family: "Libertinus Mono", monospace;
}

.cart-button:hover {
  background: rgba(255, 255, 255, 0.2);
}



.cart-page {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  font-family: "Libertinus Mono", monospace;
}

.cart-page h1 {
  text-align: center;
  font-size: 3em;
  font-weight: 300;
  margin-bottom: 40px;
}

.cart-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cart-table th,
.cart-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #333;
  font-weight: 300;
  font-size: 1em;
}

.cart-table th {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9em;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-table input[type="number"] {
  width: 60px;
  padding: 8px;
  font-family: "Libertinus Mono", monospace;
  font-size: 1em;
  text-align: center;
  background: #111;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
}

.remove-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5em;
  cursor: pointer;
}

.remove-btn:hover {
  color: #f66;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #333;
  padding-top: 30px;
}

.total-label {
  font-size: 1.2em;
}

.total-price {
  font-size: 1.8em;
  font-weight: 300;
}

.checkout-btn {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 30px;
  font-size: 1em;
  font-family: "Libertinus Mono", monospace;
  cursor: pointer;
  transition: background 0.3s;
}

.checkout-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}