* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #2f2d29;
  background: #e7fbfc;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.9;
}

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

a {
  color: inherit;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ------------------------------
   固定ヘッダー
------------------------------ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 92px;

  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  backdrop-filter: blur(10px);
}

.site-logo {
  display: block;
  width: min(360px, 62vw);
  line-height: 0;
}

.site-logo img {
  width: 100%;
  height: auto;
}

/* ------------------------------
   ヒーロー
------------------------------ */

.hero {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 85vh;
  padding-top: 92px;

  color: #ffffff;

  background-image: url("img/kukuli_shop1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
}

.hero__content {
  position: relative;
  z-index: 1;

  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  margin: 0;

  color: #1619f8;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  letter-spacing: 0.08em;
}

.hero__text {
  margin: 28px 0 0;

  color: #1619f8;
  font-size: clamp(18px, 2vw, 24px);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 2;
}

/* ------------------------------
   共通セクション
------------------------------ */

.section {
  padding: 110px 0;
}

.section h2 {
  margin: 0 0 40px;

  font-size: clamp(26px, 5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.hero__label,
.section__label,
.card__label {
  margin: 0 0 16px;

  font-size: 12px;
  letter-spacing: 0.22em;
}

.section__label {
  font-weight: 500;
}

.section__intro {
  max-width: 700px;
  margin-bottom: 50px;
}

/* ------------------------------
   メッセージ
------------------------------ */

.message {
  text-align: center;
}

.message .container {
  max-width: 760px;
}

.message p {
  margin: 0 0 24px;
}

/* ------------------------------
   画像スライダー
------------------------------ */

.section.image-section {
  padding: 0;
}

.slider {
  position: relative;

  width: 100%;
  aspect-ratio: 1920 / 920;

  overflow: hidden;
  background: #d9eeee;
}

.slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  opacity: 0;

  transition: opacity 1.5s ease;
}

.slide.active {
  opacity: 1;
}

/* ------------------------------
   商品案内
------------------------------ */

.destination {
  background: #ebe6dc;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.card {
  overflow: hidden;
  background: #ffffff;
}

.card__image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card__body {
  padding: 38px;
}

.card h3,
.maker h3 {
  margin: 0 0 20px;

  font-size: 28px;
  font-weight: 500;
}

.card address {
  margin: 26px 0;
  font-style: normal;
}

/* ------------------------------
   ボタン
------------------------------ */

.button {
  display: inline-block;

  min-width: 210px;
  margin-top: 18px;
  padding: 14px 24px;

  color: #ffffff;
  background: #39352e;
  border: 1px solid #39352e;

  text-align: center;
  text-decoration: none;

  transition:
    color 0.3s,
    background 0.3s;
}

.button:hover {
  color: #39352e;
  background: transparent;
}

.button--outline {
  color: #39352e;
  background: transparent;
}

.button--outline:hover {
  color: #ffffff;
  background: #39352e;
}

.shop-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.shop-links .button {
  margin-top: 0;
  min-width: 180px;
}

/* ------------------------------
   メーカー一覧
------------------------------ */

.makers {
  background: #f7f5f0;
}

.maker-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.maker {
  padding: 32px;

  background: #ffffff;
  border-left: 3px solid #9b8562;
}

.maker p {
  margin: 0 0 18px;
}

.maker a {
  color: #715d40;
  text-underline-offset: 5px;
}

/* ------------------------------
   英語案内
------------------------------ */

.english {
  color: #ffffff;
  background: #34322e;
}

.english .container {
  max-width: 820px;
}

.english .section__label {
  color: #aebcff;
}

/* ------------------------------
   フッター
------------------------------ */

.footer {
  padding: 35px 0;

  color: #a7a199;
  background: #22211f;

  text-align: center;
  font-size: 12px;
  letter-spacing: 0.15em;
}

.footer p {
  margin: 0;
}

/* ------------------------------
   タブレット・スマートフォン
------------------------------ */

@media (max-width: 900px) {
  .section {
    padding: 80px 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .maker-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1100px);
  }

  .site-header {
    height: 70px;
  }

  .site-logo {
    width: min(270px, 72vw);
  }

  .hero {
    min-height: 70vh;
    padding-top: 70px;
    background-position: center;
  }

  .hero__content {
    padding: 45px 18px;
  }

  .hero h1 {
    font-size: clamp(25px, 8vw, 36px);
  }

  .hero__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.9;
  }

  .section {
    padding: 65px 0;
  }

  .section h2 {
    margin-bottom: 30px;
    font-size: clamp(26px, 5vw, 48px);
  }

  .section.image-section {
    padding: 0;
  }

  .slider {
    height: 60vw;
    aspect-ratio: auto;
  }

  .card__body {
    padding: 28px 24px 32px;
  }

  .maker {
    padding: 26px 22px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}
