
/** -----------------------------------
    メインビジュアル
-------------------------------------**/
/* ===== ローディング ===== */
#loading {
  position: fixed;
  inset: 0;
  background: #D9EBF4;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#loading img {
  width: 240px;
  height: auto;
  animation: loadingFade 0.8s ease forwards;
}

@keyframes loadingFade {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 850px) {
  #loading img {
  width: 160px;
  height: auto;
  animation: loadingFade 0.8s ease forwards;
}
}


/* ===== メインビジュアル ===== */
#mainvisual {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.mv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: mvZoom 20s ease-in-out infinite alternate;
}

@keyframes mvZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.mv-copy {
  position: absolute;
    top: 32%;
  right: 5%;
  text-align: left;
    animation: mvFadeIn .4s ease forwards;
  animation-delay: .5s;
  opacity: 0;
}

@keyframes mvFadeIn {
  0%   { opacity: 0; transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mv-copy__text {
  font-size:27px;
    /* color: #fff;
        text-shadow: 1px 1px 8px #7e8388; */
                    color: #3b4145;
    text-shadow: 1px 1px 8px #ffffff;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media (max-width: 850px) {
  .mv-copy {
top: 14%;
        left: 9%;
  }

  .mv-copy__text {
    font-size: 16px;
            color: #3b4145;
    text-shadow: 1px 1px 8px #ffffff;
  }
}



/* ===== 共通 ===== */
.section-label {
  font-size: 11px;
  color: #6F8FA6;
  letter-spacing: 0.15em;
  margin-bottom: -1rem;
}

.section-heading {
  font-size: clamp(20px, 2vw, 28px);
  color: #444444;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.top-btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: #D9EBF4;
  color: #686868;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-btn:hover {
  opacity: 0.75;
}

.top-btn--ghost {
  background: transparent;
  border: 0.5px solid #2F4A6D;
}

/* ===== Brand Concept ===== */
#top-concept {
  padding: 6rem 4rem;
  background: #F7F9FB;
}

.concept-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.concept-img {
  width: 45%;
  flex-shrink: 0;
}

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

.concept-text {
  flex: 1;
}

.concept-heading {
  font-size: clamp(22px, 2.2vw, 30px);
  color: #444;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.concept-body {
  font-size: 14px;
  color: #444;
  line-height: 2.2;
  margin-bottom: 2.5rem;
}

/* ===== Products ===== */
#top-products {
  padding: 6rem 0;
  background: #fff;
}


.products-head {
  text-align: center;
  margin-bottom: 3rem;
}

.products-head .section-label {
  text-align: center;
}

.products-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 0.5px solid #C7D6E2;
  color: #2F4A6D;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: opacity 0.2s;
}

.scroll-btn:hover {
  opacity: 0.7;
}

.scroll-btn--prev {
  left: 0;
}

.scroll-btn--next {
  right: 0;
}

.products-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 4rem 2rem 6rem;
  scrollbar-width: none;
  transform: translateZ(0);
}


.products-scroll::-webkit-scrollbar {
  display: none;
}

.product-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 0.5px solid #C7D6E2;
  padding-bottom: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}



.product-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__desc {
  font-size: 12px;
  color: #999999;
  line-height: 1.8;
  padding: 0 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card__name {
  font-size: 18.4px;
  color: #444;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.product-card__more {
  font-size: 12px;
  color: #adc9d6;
  letter-spacing: 0.1em;
  padding: 0 1.25rem;
  display: block;
  text-align: right;
  margin-top: 32px;
}

.products-footer {
  text-align: center;
  margin-top: 2rem;
}


/* ===== Salon List ===== */
#top-salon {
  padding: 6rem 4rem;
  background: #F7F9FB;
}

.salon-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.salon-section-text {
  flex: 1;
}

.salon-section-body {
  font-size: 14px;
  line-height: 2.2;
  margin-bottom: 2.5rem;
}

.salon-section-img {
  width: 45%;
  flex-shrink: 0;
}

.salon-section-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {


    .mv-bg {
    background-position: 42% center; 
  }

  #top-concept,
  #top-salon {
    padding: 4rem 1.5rem;
  }

  .concept-inner,
  .salon-section-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .concept-img,
  .salon-section-img {
    width: 100%;
  }

  .products-scroll {
    padding: 0 1.5rem 2rem;
  }

  .product-card {
    width: 260px;
  }

  .magic-banner {
    margin: 0 1.5rem;
  }
}
