@charset "utf-8";



.gift {
  font-family: 'Shippori Mincho', serif;
}

/* メインビジュアル */
.gift-main-image {
  width: 100%;
  height: 100vh;
  background-image: url("https://gigaplus.makeshop.jp/isimaruudon/dokuji/test/2026gift.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 600px) {
  .gift-main-image {
    height: 80vh;
  }
}

/* メインタイトル（7文字） */
.gift-title {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 0.1em;
  color: white;
  letter-spacing: 0.15em;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, 6vw, 5.5rem);
}

/* 文字アニメーション */
.gift-title span {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.8s ease-out forwards;
}
.gift-title span:nth-child(1) { animation-delay: 0.1s; }
.gift-title span:nth-child(2) { animation-delay: 0.25s; }
.gift-title span:nth-child(3) { animation-delay: 0.4s; }
.gift-title span:nth-child(4) { animation-delay: 0.55s; }
.gift-title span:nth-child(5) { animation-delay: 0.7s; }
.gift-title span:nth-child(6) { animation-delay: 0.85s; }
.gift-title span:nth-child(7) { animation-delay: 1.0s; }

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

/* サブタイトル */
.gift-subtitle {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(.8rem, 2.8vw, 1.5rem);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1.6s;
}
@media screen and (max-width: 600px) {
  .gift-subtitle {
    top: 80%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* 先頭リード文 */
.gift-lead {
  max-width: 810px;
  margin: 80px auto;
  padding: 0 30px;
  font-size: 1.3rem;
  line-height: 2;
  color: #333;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
}

@media screen and (max-width: 600px) {
  .gift-lead {
    font-size: 1.1rem;
    line-height: 2.0;
    font-weight: 600;
  }
}



/*早割バナー*/
.gift-lead-banner {
  max-width: 960px;
  width: 90%;
  margin: 40px auto;
  padding-bottom: 40px;
  text-align: center;
}

.gift-lead-banner img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gift-lead-banner-text {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(.8rem, 2vw, 1.2rem);
  margin-top: 10px;
  color: #333;
  letter-spacing: 0.05em;
}




/* 区切り線 */
.gift-divider {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}
.gift-divider img {
  width: 600px;
  opacity: 0.95;
}
@media screen and (max-width: 600px) {
  .gift-divider img {
    width: 100%;
  }
}



/*Ranking スライダー*/
.gift-ranking-slider {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px 0 80px; /* ← pagination のためのスペースを確保 */
  position: relative;
}

@media (max-width: 767px) {
  .gift-ranking-slider {
    max-width: 90%;
    padding: 10px 0 60px; /* ← スマホは少し浅めでOK */
  }
}

/* Ranking スライド */
.gift-ranking-slider .gift-swiper-slide {
  text-align: center;
  position: relative;
}

/* ランクバッジ */
.gift-rank-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #e60033;
  color: #fff;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
  z-index: 10;
}

/* Ranking画像 */
.gift-ranking-slider img {
  width: 100%;
  border-radius: 8px;
}

/* Ranking キャプション */
.gift-ranking-slider .gift-caption {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

/* ★ pagination（●）の正しい配置 */
.gift-ranking-slider .gift-swiper-pagination {
  position: absolute !important;
  bottom: 10px !important; /* ← スライダー内の下部に固定 */
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 20; /* ← 念のため */
}

/* Rankingタイトル */
.gift-ranking-title {
  text-align: center;
  margin: 40px 0 10px;
  font-family: 'Shippori Mincho', serif;
}

.gift-ranking-title h2 {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.gift-ranking-title .gift-ranking-sub {
  font-size: clamp(.6rem, 2vw, .9rem);
  color: #555;
  letter-spacing: 0.1em;
}





/* 人気商品ゾーン */

/* セクション全体 */
.gift-item-section {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
}

@media screen and (max-width: 600px) {
.gift-item-section {
  margin: 50px auto 0;
}
}


/* 小さめ見出し */
.gift-item-label {
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.1em;
  color: #333;
  margin-bottom: 5px;
}

/* 大きめ見出し */
.gift-item-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 600;
  margin-bottom: 40px;
  color: #333;
}
.gift-item-hero {
  max-width: 1200px;
  margin: 0 auto 40px;
}

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

@media screen and (max-width: 600px) {
  .gift-item-hero {
    max-width: 100%;
    margin-bottom: 30px;
  }
}

/* 商品ブロック（PCは横並び） */
.gift-item-box {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: flex-start;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* 商品画像 */
.gift-item-image img {
  width: 350px;
  border-radius: 6px;
}
.gift-item-image {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.gift-item-icon {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 25%;
  max-width: 100px;
}

.gift-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 商品情報 */
.gift-item-info {
  text-align: left;
  max-width: 400px;
}

.gift-item-name {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.gift-item-desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.gift-item-price {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ボタン */
.gift-item-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 0.05em;
  transition: 0.2s;
}

.gift-item-btn:hover {
  background: #555;
}

/* スマホは縦並び */
@media screen and (max-width: 600px) {

  .gift-item-box {
    display: block;
    margin-bottom: 40px;
  }

  .gift-item-image {
    width: 100%;
    margin-bottom: 15px;
  }

  .gift-item-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .gift-item-info {
    text-align: center;
  }

}


/*オリジナルギフトボックス紹介*/
.gift-banner {
  width: 100%;
  background-color: #6f93b2;
  padding: 60px 0;
  text-align: center;
}

.gift-banner img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  margin: 0 auto;
}


/*お客様レビュー*/
.gift-review-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Shippori Mincho', serif;
}

.gift-review-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 40px;
  color: #333;
  letter-spacing: 0.1em;
}
.gift-review-subtitle {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

/* 吹き出しカード */
.gift-review-bubble {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 22px 25px;
  margin-bottom: 25px;
  border-left: 5px solid #6f93b2;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* スマホ */
@media screen and (max-width: 600px) {
  .gift-review-bubble {
    font-size: 1.2rem;
    line-height: 2.1;
    padding: 20px 22px;
    color: #333;
    border-left: 8px solid #6f93b2;
  }
}




/* シーン別のおすすめ */
.gift-scene-bg {
  background-color: #f2f2f2;
  padding: 100px 20px 50px;
  margin: 0px auto 50px;
  width: 100%;
}

.gift-scene-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: #333;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
  position: relative;
  padding-bottom: 30px;
}

.gift-scene-title::after {
  content: "";
  width: 500px;
  height: 50px;
  background-image: url("https://gigaplus.makeshop.jp/isimaruudon/dokuji/img/image_gift-icon_01_230929.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.gift-scene-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  text-align: center;
  color: #333;
  margin: 50px auto 25px;
  letter-spacing: 0.05em;
  padding-bottom: 8px;
  border-bottom: 2px solid #333;
  display: block;
  width: fit-content;
}


/* 商品紹介部分だけ幅を制限 */
.gift-scene-items-wrapper {
  max-width: 900px;
  margin: 0 auto 30px;
}

.gift-scene-image {
  position: relative;
  display: inline-block;
}

/* 商品画像のサイズを制限 */
.gift-scene-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 商品カード（2つ並び） */
.gift-scene-items {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* 各商品 */
.gift-scene-item {
  width: 50%;
  text-align: center;
  color: #333;
}

/* 商品名・価格 */
.gift-scene-name,
.gift-scene-price {
  color: #333;
}

/* ボタン */
.gift-scene-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.2s;
  margin-top: 5px;
}

.gift-scene-btn:hover {
  background: #555;
}
/* スマホ縦並び */
@media screen and (max-width: 600px) {
  .gift-scene-items {
    display: block;
  }
  .gift-scene-item {
    width: 100%;
    margin-bottom: 40px;
  }
} 



/* お中元の豆知識ゾーン */
.gift-knowledge {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
  font-family: 'Shippori Mincho', serif;
}

.gift-knowledge-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: 0.08em;
  color: #333;
}

/* 情報カード（点線枠＋余白調整） */
.gift-knowledge-box {
  border: 2px dotted #b5b5b5;
  padding: 25px 30px;
  margin-bottom: 30px;
  border-radius: 6px;
  background: #fafafa;
}

.gift-knowledge-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
  font-weight: 600;
}

.gift-knowledge-box p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

.gift-knowledge ul {
  margin: 0.8em 0 1.2em;
  padding-left: 1.2em;
  list-style: none;
}

.gift-knowledge ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  line-height: 1.6;
  font-size: 1.2rem;
}

.gift-knowledge ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.7rem;
  color: #d36b2a;
}


/* スマホ最適化 */
@media screen and (max-width: 600px) {
  .gift-knowledge-box {
    padding: 20px 22px;
  }
  .gift-knowledge-box h3 {
    font-size: 1.3rem;
  }
  .gift-knowledge-box p {
    font-size: 1.15rem;
    line-height: 2.1;
  }
}





.gift-attention{
  max-width: 800px;
  text-align: center;
  font-size: clamp(.8rem, 3vw, 1rem);
  color: #555;
  padding: 20px 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .gift-attention{
    width: 90%;
  padding: 0 0 40px;
  margin: 0 auto;
}
}




#gift .fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#gift .fadein.show {
  opacity: 1;
  transform: translateY(0);
}