/* =========================
   Mercury LP Style
========================= */

:root {
  --base: #f4efe3;
  --ink: #17110f;
  --text: #2b2520;
  --gold: #a98443;
  --deep-blue: #102b36;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body{

    font-family:"Noto Sans JP",sans-serif;
    color:#2b2520;

    background:
    linear-gradient(
    rgba(255,255,255,.65),
    rgba(255,255,255,.65)),
    url("../images/washi.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    background-attachment:fixed;

}



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

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

.container {
  width: min(1100px, 88%);
  margin: 0 auto;
}

/*=========================
Instagram
=========================*/

.instagram-area{

    margin-top:40px;

    text-align:center;

}

.instagram-text{

    font-family:"Noto Serif JP",serif;

    font-size:18px;

    color:#444;

    letter-spacing:.08em;

    margin-bottom:20px;

}

.instagram-link{

    display:inline-block;

    transition:.4s;

}

.instagram-link img{

    width:60px;

    height:60px;

}

.instagram-link:hover{

    transform:translateY(-5px) scale(1.08);

    opacity:.85;

}
/* =========================
   HERO
========================= */

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.5), transparent 25%),
    radial-gradient(circle at 50% 70%, rgba(16,43,54,.12), transparent 35%);
  animation: waterMove 12s ease-in-out infinite alternate;
}

.overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(244,239,227,.95),
      rgba(244,239,227,.72),
      rgba(244,239,227,.95)
    );
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo {
  width: min(460px, 74vw);
  margin: 0 auto;
  opacity: 0;
  filter: drop-shadow(0 18px 35px rgba(0,0,0,.18));
  animation: logoFade 2.4s ease 0.4s forwards;
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: -180px;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .24em;
  opacity: 0;
  animation: scrollFade 1.4s ease 2.8s forwards;
}

.scroll span {
  display: block;
  width: 1px;
  height: 54px;
  margin: 0 auto 14px;
  background: var(--gold);
  animation: scrollLine 1.8s ease-in-out infinite;
}

/* =========================
   ABOUT
========================= */

.about {
  padding: 130px 0 110px;
}

.about h2,
.shop h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: .12em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 42px;
}

.about p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 16px;
  letter-spacing: .06em;
  background: rgba(255,255,255,.45);
  padding: 42px;
  border: 1px solid rgba(169,132,67,.22);
  box-shadow: 0 24px 60px rgba(54,42,28,.08);
}

/* =========================
   RENEW
========================= */

.renew {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(rgba(16,43,54,.88), rgba(16,43,54,.88)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.25), transparent 35%);
  overflow: hidden;
}

.renew::before {
  content: "";
  position: absolute;
  inset: -50%;
  background:
    repeating-radial-gradient(
      ellipse at center,
      rgba(255,255,255,.08) 0,
      rgba(255,255,255,.08) 1px,
      transparent 2px,
      transparent 16px
    );
  animation: waterRipple 18s linear infinite;
}

.renew .container {
  position: relative;
  z-index: 2;
}

.renew h3 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(34px, 7vw, 78px);
  letter-spacing: .18em;
  color: var(--gold);
  line-height: 1.2;
}

.renew h4 {
  margin-top: 18px;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: .16em;
  font-weight: 300;
}

.renew p {
  margin-top: 28px;
  font-size: 15px;
  letter-spacing: .12em;
}

/* =========================
   SHOP
========================= */

.shop {
  padding: 130px 0 120px;
}

.shop-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
}

.shop-image {
  min-height: 420px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(169,132,67,.22);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(54,42,28,.08);
}

.shop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-info {
  background: rgba(255,255,255,.58);
  padding: 42px;
  border: 1px solid rgba(169,132,67,.24);
  box-shadow: 0 24px 60px rgba(54,42,28,.08);
}

.shop-info h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: .12em;
  margin-bottom: 28px;
}

.shop-info p {
  margin-bottom: 24px;
  font-size: 16px;
  letter-spacing: .06em;
}

.shop-info a {
  color: var(--deep-blue);
  font-size: 22px;
  border-bottom: 1px solid var(--gold);
}

.map {
  margin-top: 30px;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(169,132,67,.28);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================
   FOOTER
========================= */

footer {
  padding: 38px 20px;
  text-align: center;
  color: rgba(255,255,255,.72);
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .12em;
}

/* =========================
   SCROLL ANIMATION
========================= */

.fade {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   ANIMATION
========================= */

@keyframes logoFade {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollFade {
  to {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

@keyframes waterMove {
  from {
    transform: translate(-3%, -2%) scale(1);
  }
  to {
    transform: translate(3%, 2%) scale(1.04);
  }
}

@keyframes waterRipple {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.08);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .hero {
    min-height: 560px;
  }

  .logo {
    width: 78vw;
  }

  .scroll {
    bottom: -150px;
  }

  .about {
    padding: 90px 0 80px;
  }

  .about p {
    padding: 28px 24px;
    font-size: 15px;
  }

  .renew {
    padding: 92px 0;
  }

  .renew h3 {
    letter-spacing: .1em;
  }

  .renew h4 {
    letter-spacing: .08em;
  }

  .shop {
    padding: 90px 0;
  }

  .shop-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .shop-image {
    min-height: 260px;
  }

  .shop-info {
    padding: 30px 24px;
  }

  .shop-info h3 {
    font-size: 23px;
  }

  .map {
    height: 240px;
  }
  .instagram-text{

      font-size:16px;

  }

  .instagram-link img{

      width:52px;

      height:52px;

  }

}
