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

body {
  background-color: #f9f9f9;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-wrap: break-word;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  line-height: 1.2;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.6;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .Container {
    padding: 0 20px;
  }
}

.Section {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .Section {
    padding: 80px 0;
  }
}
.Section_title {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #222222;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Section_title {
    font-size: 2.2rem;
  }
}
.Section_lead {
  text-align: center;
  margin-bottom: 80px;
  color: #666666;
  font-size: 1.2rem;
  line-height: 2;
}
.Section_subtitle {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  color: #666666;
  margin-bottom: 20px;
}
.Section_desc {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 3rem;
  font-weight: 500;
}

.textCenter {
  text-align: center;
}

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

@media (min-width: 1200px) {
  .mobileOnly {
    display: none;
  }
}

.highlight {
  font-family: "Zen Old Mincho", serif;
  font-size: 2rem;
  color: #8FC2A9;
  margin: 4rem 0 !important;
}

.fadeInUp {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fadeInUp.visible {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fadeInLeft.visible {
  opacity: 1;
  transform: translateX(0);
}

.jsScrollAnim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.jsScrollAnim.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay1 {
  transition-delay: 0.1s;
}

.delay2 {
  transition-delay: 0.2s;
}

.delay3 {
  transition-delay: 0.3s;
}

.delay4 {
  transition-delay: 0.4s;
}

.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) !important;
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
@keyframes parallaxReveal {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(165, 211, 224, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(165, 211, 224, 0.6);
  }
}
.float {
  animation: float 3s ease-in-out infinite;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

.glow {
  animation: glow 2s ease-in-out infinite;
}

.parallax {
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.parallaxSlow {
  transition: transform 0.2s ease-out;
}

.parallaxFast {
  transition: transform 0.05s ease-out;
}

.Loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333333;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 1s cubic-bezier(0.25, 0.1, 0.25, 1) 2.2s forwards;
  pointer-events: none;
}
.Loader_logo {
  width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0;
  animation: logoReveal 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.Header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: #ffffff;
  color: #222222;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.Header-hide {
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  .Header {
    padding: 15px 20px;
  }
}
.Header_logo {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
.Header_logo a {
  display: block;
  line-height: 0;
}
.Header_logo img {
  height: 30px;
  width: auto;
  filter: none;
}
.Header_nav ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .Header_nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: fixed;
    top: 60px;
    right: 0;
    z-index: 2;
    width: 100%;
    max-width: 300px;
    height: calc(100vh - 60px);
    background: #ffffff;
    padding: 60px 40px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
}
@media (max-width: 768px) {
  .Header_nav.isOpen ul {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .Header_nav li {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
  }
}
.Header_nav a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .Header_nav a {
    display: block;
    padding: 20px 0;
    font-size: 1rem;
  }
}
.Header_navBtn {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  border: 1px solid currentColor;
  padding: 8px 20px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .Header_navBtn {
    border: none;
  }
}
.Header_hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}
@media (max-width: 768px) {
  .Header_hamburger {
    display: flex;
  }
}
.Header_hamburger.isActive .Header_hamburgerLine:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.Header_hamburger.isActive .Header_hamburgerLine:nth-child(2) {
  opacity: 0;
}
.Header_hamburger.isActive .Header_hamburgerLine:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.Header_hamburgerLine {
  width: 100%;
  height: 2px;
  background: #222222;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.Header_overlay {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 768px) {
  .Header_overlay {
    display: block;
    pointer-events: none;
  }
}
.Header_overlay.isVisible {
  opacity: 1;
  pointer-events: auto;
}
.Header_cart {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .Header_cart {
    display: none;
  }
}

.Hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  background: #000;
}
.Hero_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
  transform-origin: center center;
  will-change: transform;
  transition: transform 0.1s ease-out;
}
.Hero_slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.Hero_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}
.Hero_slide.-active {
  opacity: 1;
  z-index: 2;
}
.Hero_slide.-active img {
  transform: scale(1.1);
}
.Hero_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s linear;
}
.Hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transition: transform 0.3s ease-out;
}
.Hero_content h1 {
  font-size: 5rem;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: parallaxReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}
@media (max-width: 768px) {
  .Hero_content h1 {
    font-size: 3rem;
  }
}
.Hero_content p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: parallaxReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s backwards;
}
.Hero_btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.1rem;
  pointer-events: auto;
  transition: opacity 0.3s;
  animation: parallaxReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s backwards;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.Hero_btn:hover {
  opacity: 0.8;
}
.Hero_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.Hero_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.Hero_btn:hover::before {
  left: 100%;
}

.Products_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Products_container {
    padding: 60px 20px;
  }
}
.Products_subtitle {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #8FC2A9;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.Products_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Products_title {
    font-size: 2rem;
  }
}
.Products_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .Products_grid {
    grid-template-columns: 1fr;
  }
}
.Products_card {
  position: relative;
  text-align: center;
  flex: 0 1 300px;
  max-width: 350px;
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .Products_card {
    max-width: 100%;
  }
}
.Products_card:nth-child(2) {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}
.Products_card:nth-child(3) {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}
.Products_img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: contain;
  background: #f4f4f4;
  margin-bottom: 20px;
  border-radius: 8px;
  padding: 30px;
  position: relative;
  transition: box-shadow 0.3s ease, transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.3s ease;
  will-change: transform;
}
.Products_img::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(165, 211, 224, 0.1), transparent);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.Products_img:hover::before {
  opacity: 1;
}
.Products_img.-bottle {
  object-fit: contain;
}
.Products_img.-pouch {
  object-fit: contain;
}
.Products_cardTitle {
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.Products_price {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.Products_price small {
  margin-right: 4px;
}
.Products_tax {
  font-size: 0.8rem;
  color: #666666;
  font-family: "Noto Sans JP", sans-serif;
}
.Products_desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .Products_desc {
    text-align: center;
  }
}
.Products_btn {
  display: inline-block;
  background: #111;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: 1px solid #111;
}
.Products_btn:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.Products_btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .Products_btn {
    padding: 12px 30px;
    font-size: 0.85rem;
    width: 100%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.Philosophy_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Philosophy_container {
    padding: 60px 20px;
  }
}
.Philosophy_subtitle {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #8FC2A9;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.Philosophy_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Philosophy_title {
    font-size: 2rem;
  }
}
.Philosophy_content {
  max-width: 700px;
  margin: 0 auto 80px;
  font-size: 1.1rem;
  line-height: 2.2;
}
.Philosophy_content p {
  margin-bottom: 2rem;
  font-weight: 400;
}
.Philosophy_imageWrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
}
.Philosophy_imageFrame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
}
.Philosophy_image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: url(https://d2w53g1q050m78.cloudfront.net/materalianjp/uploads/assets/img/bg_001.webp) no-repeat 50% 50%/cover;
}

.Problem {
  background: linear-gradient(to bottom, #fafbfc 0%, #ffffff 100%);
  position: relative;
}
.Problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(circle at 50% 0%, rgba(165, 211, 224, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.Problem_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Problem_container {
    padding: 60px 20px;
  }
}
.Problem_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Problem_title {
    font-size: 2rem;
  }
}
.Problem_lead {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 60px;
}
.Problem_text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.Problem_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .Problem_grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media (min-width: 769px) {
  .Problem_grid .Problem_item:not(:last-child) {
    position: relative;
  }
  .Problem_grid .Problem_item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
  }
}
.Problem_item {
  position: relative;
  padding: 40px 0;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 768px) {
  .Problem_item {
    padding: 0;
  }
}
.Problem_item:hover {
  transform: translateY(-8px);
}
.Problem_item:hover .Problem_icon {
  transform: scale(1.15);
}
.Problem_item:hover h3 {
  color: #a5d3e0;
}
.Problem_item:nth-child(2) {
  transition-delay: 0.15s;
}
.Problem_item:nth-child(3) {
  transition-delay: 0.3s;
}
.Problem_icon {
  font-size: 4rem;
  margin-bottom: 20px;
  filter: grayscale(0.3);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  display: inline-block;
}
@media (max-width: 768px) {
  .Problem_icon {
    font-size: 3.5rem;
  }
}
.Problem_item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
  letter-spacing: 0.02em;
  transition: color 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .Problem_item h3 {
    font-size: 1.5rem;
  }
}
.Problem_item h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, transparent, #a5d3e0, transparent);
  opacity: 0.6;
}
.Problem_item p {
  font-size: 1rem;
  line-height: 1.9;
  color: #666;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .Problem_item p {
    font-size: 0.95rem;
  }
}

.Solution {
  background-color: #f9fbfd;
}
.Solution_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Solution_container {
    padding: 60px 20px;
  }
}
.Solution_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Solution_title {
    font-size: 2rem;
  }
}
.Solution_lead {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 60px;
}
.Solution_block {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
}
.Solution_block.-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .Solution_block {
    flex-direction: column;
  }
  .Solution_block.-reverse {
    flex-direction: column;
  }
}
.Solution_img {
  flex: 1;
  width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.Solution_content {
  flex: 1;
}
.Solution_content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #a5d3e0;
  display: inline-block;
  padding-bottom: 5px;
}
.Solution_content p {
  line-height: 2;
}

.Voice {
  background: #ffffff;
  border-top: 1px solid #eee;
}
.Voice_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Voice_container {
    padding: 60px 20px;
  }
}
.Voice_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Voice_title {
    font-size: 2rem;
  }
}
.Voice_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .Voice_grid {
    grid-template-columns: 1fr;
  }
}
.Voice_item {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 8px;
  font-style: italic;
}
.Voice_item:nth-child(2) {
  transition-delay: 0.2s;
}
.Voice_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}
.Voice_user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.Voice_icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #8FC2A9;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.Voice_userInfo {
  display: flex;
  flex-direction: column;
}
.Voice_name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.Voice_meta {
  font-size: 0.8rem;
  color: #666666;
}
.Voice_rating {
  display: flex;
  gap: 2px;
}
.Voice_star {
  color: #ffd700;
  font-size: 1rem;
}
.Voice_text {
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}
.Voice_verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #a5d3e0;
  background: rgba(143, 194, 169, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.Voice_verified::before {
  content: "✓";
  font-weight: 700;
}

.Scene {
  padding-top: 0;
  position: relative;
}
.Scene_gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .Scene_gallery {
    grid-template-columns: 1fr;
  }
}
.Scene_gallery img {
  position: relative;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  will-change: transform;
  filter: brightness(0.9);
}
.Scene_gallery img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.Scene_gallery img:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}
.Scene_gallery img:hover::before {
  opacity: 1;
}
.Scene_text {
  text-align: center;
  padding: 60px 20px;
  background: #111;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.Scene_text::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(165, 211, 224, 0.1) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}
.Scene_text h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.Scene_text p {
  position: relative;
  z-index: 1;
}

.Faq {
  background: #f9f9f9;
}
.Faq_container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Faq_container {
    padding: 60px 20px;
  }
}
.Faq_subtitle {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #8FC2A9;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.Faq_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Faq_title {
    font-size: 2rem;
  }
}
.Faq_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.Faq_item {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eee;
}
.Faq_item.-active .Faq_question .Faq_icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.Faq_item.-active .Faq_answer {
  grid-template-rows: 1fr;
  max-height: 5000px;
  overflow: visible;
}
.Faq_question {
  width: 100%;
  padding: 40px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.Faq_question:hover {
  background-image: linear-gradient(0deg, #ffffff, #fafafa);
}
@media (max-width: 768px) {
  .Faq_question {
    padding: 20px;
    font-size: 0.95rem;
  }
}
.Faq_icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.Faq_icon::before, .Faq_icon::after {
  content: "";
  position: absolute;
  background: #222222;
  transition: transform 0.3s ease;
}
.Faq_icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.Faq_icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
[aria-expanded=true] .Faq_icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.Faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.Faq_answer > div {
  padding: 0 40px 40px;
}
@media (max-width: 768px) {
  .Faq_answer > div {
    padding: 0 20px 20px;
  }
}
.Faq_answer p {
  line-height: 1.8;
  color: #666;
}

.Gallery {
  width: 100vw;
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  background: linear-gradient(to bottom, #fff, #f0f8ff);
}
.Gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.Gallery_track {
  display: flex;
  width: max-content;
}
.Gallery_track img {
  object-fit: cover;
  transition-property: opacity, transform;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: grayscale(0.2);
  will-change: transform;
}
.Gallery_track img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0);
  z-index: 2;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.Howto {
  overflow: hidden;
}
.Howto_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Howto_container {
    padding: 60px 20px;
  }
}
.Howto_subtitle {
  display: block;
  text-align: center;
  font-size: 0.9rem;
  color: #8FC2A9;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.Howto_title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Howto_title {
    font-size: 2rem;
  }
}
.Howto_lead {
  text-align: center;
  font-size: 1.1rem;
  color: #666666;
  margin-bottom: 60px;
}
.Howto_grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .Howto_grid {
    flex-direction: column;
    gap: 50px;
  }
}
.Howto_step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
  text-align: center;
  padding-top: 20px;
  min-width: 250px;
  max-width: 360px;
}
@media (max-width: 768px) {
  .Howto_step {
    max-width: 100%;
  }
}
.Howto_step:not(:last-child)::after {
  position: absolute;
  top: 90px;
  right: -50px;
  width: 100px;
  height: 1px;
  background: #a5d3e0;
  z-index: 0;
  display: block;
}
@media (max-width: 768px) {
  .Howto_step:not(:last-child)::after {
    top: auto;
    bottom: -30px;
    left: 50%;
    width: 1px;
    height: 60px;
    transform: translateX(-50%);
  }
}
.Howto_step:not(:last-child) .Howto_step_imgWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%) rotate(45deg);
}
@media (max-width: 768px) {
  .Howto_step:not(:last-child) .Howto_step_imgWrap::after {
    display: none;
  }
}
.Howto_step:hover .Howto_step_imgWrap {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(165, 211, 224, 0.3);
}
.Howto_step h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #222222;
}
.Howto_step p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
}
.Howto_label {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.2rem;
  color: #a5d3e0;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 600;
}
.Howto_label span {
  font-size: 1.4rem;
}
.Howto_imgWrap {
  width: 200px;
  height: 200px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(165, 211, 224, 0.2);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(165, 211, 224, 0.2);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
@media (max-width: 768px) {
  .Howto_imgWrap {
    width: 260px;
    height: 260px;
  }
}
.Howto_imgWrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.Howto_imgFrame {
  width: 60%;
  margin: 20px auto;
  max-width: 180px;
  border-radius: 4px;
}
.Howto_img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.Howto_time {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  color: #8FC2A9;
  margin-bottom: 10px;
}
.Howto_stepTitle {
  margin-top: 20px;
}
.Howto_steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.Howto_note {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  background: #ffffff;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
}
.Howto_imageWrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
  border-radius: 8px;
}
@media (max-width: 768px) {
  .Howto_imageWrapper {
    padding: 20px;
  }
}
.Howto_corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 1.5px solid #a5d3e0;
  z-index: 2;
}
@media (max-width: 768px) {
  .Howto_corner {
    width: 35px;
    height: 35px;
    border-width: 1px;
  }
}
.Howto_corner.-tl {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}
.Howto_corner.-tr {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}
.Howto_corner.-bl {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}
.Howto_corner.-br {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}
.Howto_imageFrame {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .Howto_imageFrame {
    box-shadow: 0 0 0 8px #ffffff, 0 4px 20px rgba(0, 0, 0, 0.1);
  }
}
.Howto_image {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .Howto_image {
    height: 400px;
  }
}

.Shoplist {
  background: #f9f9f9;
  border-top: 1px solid #eee;
}
.Shoplist_list {
  text-align: center;
  list-style: none;
  line-height: 2.2;
  margin-top: 40px;
}
.Shoplist_list li {
  transition-delay: 0.2s;
}
.Shoplist_video {
  max-width: 800px;
  margin: 0 auto 50px;
}
.Shoplist_placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.Footer {
  background-color: #2C2C2C;
  color: #ffffff;
  padding: 60px 0 30px;
  font-size: 0.8rem;
}
.Footer.-simple {
  background: #111;
  text-align: center;
  padding: 30px 30px 100px;
}
.Footer_wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 768px) {
  .Footer_wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .Footer_wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.Footer_left {
  flex: 1;
}
.Footer_logo {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 2rem;
}
.Footer_sns {
  display: flex;
  gap: 20px;
}
.Footer_sns a {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 8px 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
.Footer_sns a:hover {
  background: #ffffff;
  color: #2C2C2C;
  opacity: 1;
}
.Footer_right {
  text-align: right;
}
@media (max-width: 768px) {
  .Footer_right {
    text-align: center;
  }
}
.Footer_menu {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .Footer_menu {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }
}
.Footer_menu a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ccc;
}
.Footer_menu a:hover {
  color: #ffffff;
  opacity: 1;
}
.Footer_copyright {
  font-size: 0.8rem;
  color: #666;
  font-family: "Zen Old Mincho", serif;
  text-align: center;
  margin-top: 40px;
}

.Cta {
  background: linear-gradient(135deg, #f0f8ff 0%, #ffffff 100%);
  text-align: center;
}
.Cta_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 768px) {
  .Cta_container {
    padding: 60px 20px;
  }
}
.Cta_title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Cta_title {
    font-size: 2rem;
  }
}
.Cta_form {
  background: #ffffff;
  padding: 60px;
  border-radius: 8px;
  margin: 60px 0;
  border: 1px solid #eee;
}
.Cta_btn {
  display: inline-block;
  background: #111;
  color: #ffffff;
  padding: 18px 48px;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.Cta_btn:hover {
  background: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .Cta_btn {
    padding: 16px 40px;
    font-size: 1rem;
  }
}

.FixedCta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 20px;
  z-index: 200;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}
.FixedCta-show {
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  .FixedCta {
    padding: 10px 15px;
  }
}
.FixedCta_left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.FixedCta_image {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .FixedCta_image {
    width: 50px;
    height: 50px;
  }
}
.FixedCta_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.FixedCta_badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff5252;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: bold;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: rotate(15deg);
}
@media (max-width: 768px) {
  .FixedCta_badge {
    width: 30px;
    height: 30px;
    font-size: 0.6rem;
  }
}
.FixedCta_text {
  line-height: 1.2;
}
.FixedCta_label {
  font-size: 0.75rem;
  background: #e0f7fa;
  color: #006064;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 2px;
  font-weight: bold;
}
.FixedCta_price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.FixedCta_priceOriginal {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #999;
}
@media (max-width: 768px) {
  .FixedCta_priceOriginal {
    margin-right: auto;
  }
}
.FixedCta_priceCurrent {
  font-size: 1.4rem;
  font-weight: bold;
  color: #d32f2f;
  font-family: "Zen Old Mincho", serif;
}
@media (max-width: 768px) {
  .FixedCta_priceCurrent {
    font-size: 1.2rem;
  }
}
.FixedCta_arrow {
  font-size: 0.8rem;
  color: #666;
}
.FixedCta_tax {
  font-size: 0.7rem;
  color: #555;
}
.FixedCta_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #111;
  font-weight: 500;
}
@media (max-width: 768px) {
  .FixedCta_btn {
    padding: 10px;
  }
}
.FixedCta_btn:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}
.FixedCta_btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.FixedCta_btnSub {
  font-size: 0.7rem;
  opacity: 0.8;
  margin-bottom: 2px;
}
.FixedCta_btnMain {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .FixedCta_btnMain {
    font-size: 0.9rem;
  }
}

#ecf_header_section, #ecf_footer_section {
  display: none !important;
}

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