@charset "utf-8";

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Times New Roman", serif;
  color: #333;
  line-height: 1.8;
  background-color: #f2f1ed;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover { opacity: 0.8; }

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.sans-en { font-family: "Jost", sans-serif; }


/* =========================================
   GRID SYSTEM
   ========================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-right: 5px;
  padding-left: 5px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-4,
.col-md-3,
.col-md-2,
.col-6,
.col-12,
.cat-text-col,
.cat-img-col {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
  .only_sp { display: none !important; }
}

@media (max-width: 767px) {
  .only_pc, .only_pc_tb { display: none !important; }
}

.justify-content-center { justify-content: center; }
.text-center { text-align: center; }


/* =========================================
   HEADER & NAVIGATION
   ========================================= */
#global-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-logo {
  margin: 0;
  line-height: 1;
  z-index: 1001;
  position: relative;
}

.brand-logo img {
  height: 28px;
  width: auto;
  display: block;
}

.global-nav { display: block; }

.nav-list {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  padding: 10px 0;
}

.nav-link { 
  font-family: "EB Garamond", "Times New Roman", "Noto Serif JP", serif; 
  font-size: 1.1rem; 
  color: #111; 
  font-weight: 500;
  text-decoration: none; 
  letter-spacing: 0.08em; 
  transition: color 0.3s; 
}

.nav-link:hover { color: #8c7f76; }

/* PC版ドロップダウン */
@media (min-width: 768px) {
  .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 10px 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 2px;
  }
  
  .nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  
  .dropdown a {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: #444;
    text-align: center;
    white-space: nowrap;
  }
  
  .dropdown a:hover {
    background: #fcfcfc;
    color: #8c7f76;
  }
}

/* ハンバーガーアイコン */
.hamburger {
  display: none;
  width: 32px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 9999;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* ハンバーガー下のMENUテキスト */
.hamburger::after {
  content: "MENU";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #222;
  font-family: "EB Garamond", "Times New Roman", serif;
  font-weight: 500;
}

/* スマホ版（ハンバーガー展開時）の調整 */
@media (max-width: 767px) {
  .hamburger {
    display: block;
    margin-top: 5px;
  }
  
  .header-inner {
    padding: 15px 20px 25px 20px;
  }
  
  .hamburger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.is-active span:nth-child(2) { opacity: 0; }
  .hamburger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
  .hamburger.is-active::after { content: "CLOSE"; }

  .global-nav { 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; 
    background-color: rgba(242, 241, 237, 0.98);
    overflow-y: auto;
    padding: 80px 0 40px; 
    opacity: 0; 
    visibility: hidden; 
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000; 
  }
  
  .global-nav.is-active { 
    opacity: 1; 
    visibility: visible; 
    pointer-events: auto;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 5px 0;
  }
  
  .nav-link {
    font-size: 1.4rem;
    display: block;
  }
  
  /* スマホ版ドロップダウンは常に表示（階層化） */
  .dropdown {
    position: static;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 5px 0 10px 0;
  }
  
  .dropdown a {
    display: block;
    padding: 8px 0;
    font-size: 1rem;
    color: #666;
  }
  
  body.no-scroll { overflow: hidden; }
}


/* =========================================
   FOOTER FLOATING MENU (スマホ用)
   ========================================= */
.floating-menu { display: none; }

@media (max-width: 767px) {
  .floating-menu {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
    z-index: 999;
    border-top: 1px solid #e5e5e5;
  }
  
  .floating-menu a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
    color: #444;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-right: 1px solid #e5e5e5;
    transition: background-color 0.3s;
  }
  
  .floating-menu a:last-child { border-right: none; }
  
  .floating-menu a:active,
  .floating-menu a:hover {
    background-color: #f9f9f9;
    color: #8c7f76;
  }
  
  body { padding-bottom: 50px; }
}


/* =========================================
   MAIN CONTENT
   ========================================= */

/* --- HERO --- */
.gift-top { width: 100%; position: relative; }
.gift-top:nth-of-type(2) { background-color: #eef3f8; }

.gift-hero-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.95);
}

.gift-hero-overlay {
  position: absolute;
  top: 50%;
  left: 47%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 500px;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.gift-message-area {
  padding: 40px 20px;
  text-align: center;
}

.gift-message-area h2 {
  font-family: "EB Garamond", "Times New Roman", serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.gift-message-area p {
  max-width: 750px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #555;
  line-height: 2;
}

.catch-highlight { color: #a53d3d; font-weight: bold; }

/* --- SERVICE BANNER --- */
#gift-service {
  background: #faf9f6;
  padding: 30px 0;
  border-top: 1px solid #ecebea;
  border-bottom: 1px solid #ecebea;
}

.service-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  text-align: center;
  flex-wrap: wrap;
}

.service-item {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-text-wrap { text-align: left; }

.service-title {
  font-weight: bold;
  font-size: 1rem;
  display: block;
  color: #444;
}

.service-desc { font-size: 0.8rem; color: #777; }

.service-icon-wrap {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 767px) {
  .service-icon-wrap { width: 70px; height: 70px; }
}


/* --- WRAPPING SECTION --- */
#gift-wrapping-area {
  padding: 80px 0;
  background-color: #f2f1ed;
}

.wrapping-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrapping-text-block {
  text-align: center;
  margin-bottom: 50px;
}

.wrapping-text-block h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  margin: 0 0 10px 0;
  letter-spacing: 0.05em;
  color: #333;
}

.wrapping-text-block .jp-sub {
  display: block;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.wrapping-message {
  font-size: 1.05rem;
  line-height: 2.2;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.wrapping-carousel {
  margin: 0 -10px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
}

.wrapping-carousel.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.wrapping-img-item {
  padding: 0 10px;
  outline: none;
}

.wrapping-img-item img {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: block;
  border-radius: 4px;
}

.slick-prev,
.slick-next {
  z-index: 1;
  width: 40px;
  height: 40px;
}

.slick-prev:before,
.slick-next:before {
  font-size: 40px;
  color: #333;
  opacity: 0.7;
}

.slick-prev { left: -50px; }
.slick-next { right: -50px; }

.slick-prev:hover:before,
.slick-next:hover:before { opacity: 1; }

.slick-dots { bottom: -40px; }

.slick-dots li button:before {
  font-size: 12px;
  color: #ccc;
  opacity: 1;
}

.slick-dots li.slick-active button:before { color: #8c7f76; }


/* --- NOSHI SECTION --- */
#gift-noshi-area {
  padding: 80px 0;
  background-color: #fff;
  border-top: 1px solid #ecebea;
  scroll-margin-top: 60px;
}

.noshi-img-wrap {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.noshi-img-wrap img {
  width: 100%;
  height: auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 4px;
  display: block;
}

.noshi-sub-text {
  display: block;
  margin-top: -20px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #666;
  letter-spacing: 0.1em;
}


/* --- GIFT SCENE & PRICE NAV --- */
#gift-scene {
  padding: 80px 0 60px;
  background-color: #fff;
  scroll-margin-top: 60px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.en-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  color: #333;
}

.jp-title {
  font-size: 0.9rem;
  color: #888;
  display: block;
  margin-top: 5px;
  letter-spacing: 0.1em;
}

.scene-box {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.scene-box a {
  display: block;
  position: relative;
  color: #fff;
}

.scene-box img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  filter: brightness(0.55);
}

.scene-box a:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.scene-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  width: 100%;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 2;
  letter-spacing: 0.05em;
}

.scene-label { 
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  margin-top: 12px; 
  font-size: 0.9rem; 
  color: #333; 
  font-weight: 500; 
  width: 100%;
}

/* 長方形のあしらい */
.scene-label::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}

.label-wedding::before { background-color: #b5ccd2; } 
.label-house::before   { background-color: #b3c4ad; } 
.label-birthday::before{ background-color: #d5bd91; } 
.label-petit::before   { background-color: #f1efdf; } 

/* 価格から選ぶナビゲーション */
.price-nav-container {
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.price-nav-title {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.price-nav-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.price-nav-btn {
  display: block;
  flex: 1;
  min-width: 220px;
  padding: 18px 20px;
  background: #fdfdfd;
  border: 1px solid #dcdcdc;
  color: #333;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border-radius: 2px;
}

.price-nav-btn:hover {
  background: #8c7f76;
  border-color: #8c7f76;
  color: #fff;
}


/* --- CAMPAIGN SECTION --- */
#campaign-area { 
  padding: 90px 0;
  background-color: #e8e8e5; 
}

.campaign-text-block { 
  text-align: center; 
  margin-bottom: 20px;
}

.campaign-note { 
  font-size: 1.05rem;
  color: #333; 
  line-height: 2; 
  margin: 0; 
  letter-spacing: 0.05em;
}

.campaign-img-wrap { 
  max-width: 900px; 
  margin: 0 auto 80px;
  text-align: center; 
}

.campaign-img-wrap:last-child {
  margin-bottom: 0;
}

.campaign-img-wrap img { 
  width: 100%; 
  height: auto; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 767px) {
  #campaign-area { padding: 60px 20px; }
  .campaign-text-block { margin-bottom: 15px; }
  .campaign-note { font-size: 0.95rem; }
  .campaign-img-wrap { margin-bottom: 60px; }
}


/* --- カテゴリ詳細（背景画像＋ブレンドモード適用） --- */
.category-section {
  padding: 90px 0;
  border-top: 1px solid #fff;
  background-repeat: repeat; 
  background-size: auto;     
  background-position: top left; 
}

.bg-wedding {
  background-color: #b5ccd2;
  background-image: url('https://www.a-depeche.jp/s/page/gift/images/assets1.png');
  background-blend-mode: multiply;
  scroll-margin-top: 60px;
}

.bg-house {
  background-color: #b3c4ad;
  background-image: url('https://www.a-depeche.jp/s/page/gift/images/assets2.png');
  background-blend-mode: multiply;
  scroll-margin-top: 60px;
}

.bg-birthday {
  background-color: #d5bd91;
  background-image: url('https://www.a-depeche.jp/s/page/gift/images/assets3.png');
  background-blend-mode: multiply;
  scroll-margin-top: 60px;
}

.bg-petit {
  background-color: #f1efdf;
  background-image: url('https://www.a-depeche.jp/s/page/gift/images/assets4.png');
  background-blend-mode: multiply;
  scroll-margin-top: 60px;
}

.cat-header {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.cat-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cat-text-col {
  flex: 1;
  text-align: left;
}

.cat-title-wrapper {
  position: relative;
  display: block;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
  width: 100%;
}

.cat-title-en {
  font-family: "EB Garamond", "Times New Roman", "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: normal;
  margin: 0 0 5px 0;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

/* ベースのアイコン設定（共通部分のみ） */
.cat-icon {
  position: absolute;
}

/* --- PC版：各カテゴリごとのアイコンサイズと位置調整 --- */
.bg-wedding .cat-icon {
  width: 130px;
  top: -60px;
  right: 25%;
  filter: brightness(0) invert(1);
}

.bg-house .cat-icon {
  width: 110px;  
  top: -60px;
  right: 35%;
  filter: brightness(0) invert(1);
}

.bg-birthday .cat-icon {
  width: 80px;
  top: -60px;
  right: 30%;
  filter: brightness(0) invert(1);
}

.bg-petit .cat-icon {
  width: 100px;
  top: -65px;
  right: 25%;
  filter: brightness(0) opacity(0.7);
}

.cat-title-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 500;
}

.cat-desc {
  font-size: 0.95rem;
  line-height: 2.2;
  margin: 0;
}

.cat-img-col { width: 40%; }
.cat-img-col img { width: 100%; height: auto; box-shadow: 15px 15px 0 rgba(0,0,0,0.05); }


/* 各カテゴリの色設定 */
/* wedding */
.bg-wedding .cat-title-en,
.bg-wedding .cat-title-jp { color: #fff; }
.bg-wedding .cat-desc { color: #333; }
.bg-wedding .cat-title-wrapper { border-bottom-color: #fff; }
.bg-wedding .cat-icon { filter: brightness(0) invert(1); }

/* housewarming */
.bg-house .cat-title-en,
.bg-house .cat-title-jp { color: #fff; }
.bg-house .cat-desc { color: #333; }
.bg-house .cat-title-wrapper { border-bottom-color: #fff; }
.bg-house .cat-icon { filter: brightness(0) invert(1); }

/* birthday */
.bg-birthday .cat-title-en,
.bg-birthday .cat-title-jp { color: #fff; }
.bg-birthday .cat-desc { color: #333; }
.bg-birthday .cat-title-wrapper { border-bottom-color: #fff; }
.bg-birthday .cat-icon { filter: brightness(0) invert(1); }

/* petit gift */
.bg-petit .cat-title-en,
.bg-petit .cat-title-jp { color: #555; }
.bg-petit .cat-desc { color: #555; }
.bg-petit .cat-title-wrapper { border-bottom-color: #555; }
.bg-petit .cat-icon { filter: brightness(0) opacity(0.7); }


/* 商品リスト */
.product-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.gift-product-item {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  gap: 40px;
  transition: transform 0.3s;
}

.gift-product-item:hover { transform: translateY(-5px); }

.gift-prod-img {
  flex: 0 0 45%;
  overflow: hidden;
}

.gift-prod-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.5s;
}

.gift-product-item:hover .gift-prod-img img { transform: scale(1.05); }

.gift-prod-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gift-prod-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #222;
}

.gift-prod-price {
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #555;
  font-weight: 400;
}

.gift-prod-desc {
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #555;
}

.btn-primary {
  display: inline-block;
  background: #63554d;
  color: #fff;
  padding: 14px 35px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.3s;
  letter-spacing: 0.05em;
  text-align: center;
  width: fit-content;
}

.btn-primary:hover {
  background: #4a3e37;
  opacity: 1;
  box-shadow: 0 5px 10px rgba(0,0,0,0.15);
}

.btn-category-link {
  display: block;
  width: 320px;
  margin: 60px auto 0;
  padding: 18px;
  background: #8c7f76;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  letter-spacing: 0.1em;
}

.btn-category-link:hover {
  background: #6f635b;
  opacity: 1;
  transform: translateY(-2px);
}

/* --- 価格から探す（PRICE SEARCH） --- */
#gift-price {
  padding: 90px 0;
  background-color: #fff;
  scroll-margin-top: 60px;
}

.price-block {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
  text-align: center;
}

.price-block:last-child { margin-bottom: 0; }
.price-anchor { scroll-margin-top: 100px; }

.price-range-header {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
  margin-bottom: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #634b35;
  letter-spacing: 0.1em;
}

.price-item {
  display: block;
  text-align: left;
  margin-bottom: 30px;
  text-decoration: none;
  color: inherit;
}

.price-item-img-wrap {
  margin-bottom: 15px;
  transition: opacity 0.3s;
}

.price-item:hover .price-item-img-wrap { opacity: 0.7; }

.price-item-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.price-item-title {
  font-size: 0.95rem;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  line-height: 1.4;
  color: #111;
}

.price-item-price {
  color: #555;
  font-family: "Times New Roman", "Georgia", serif;
  font-size: 1.1rem;
}

.price-item-tax {
  font-size: 0.75rem;
  font-weight: normal;
  margin-left: 2px;
}

.btn-more {
  display: inline-block;
  background-color: #8c7f76;
  color: #fff;
  width: 320px;
  max-width: 100%;
  padding: 16px 0;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.95rem;
  margin-top: 20px;
  letter-spacing: 0.1em;
}

.btn-more:hover {
  background: #75685f;
  opacity: 1;
  color: #fff;
}


/* --- 全てを見るボタン（petitセクション内に配置） --- */
.btn-all-gift { 
  display: block; 
  width: 380px;
  margin: 80px auto 0; 
  padding: 30px 20px; 
  background: #63554d; 
  color: #fff; 
  text-align: center; 
  border-radius: 2px; 
  text-decoration: none; 
  font-weight: bold; 
  transition: 0.3s; 
  letter-spacing: 0.1em; 
  font-size: 1.1rem;
}

.btn-all-gift:hover { 
  background: #4a3e37; 
  opacity: 1; 
  transform: translateY(-2px); 
  box-shadow: 0 5px 10px rgba(0,0,0,0.15); 
}


/* レスポンシブ調整 */
@media (min-width: 768px) {
  .gift-product-item:nth-child(even) { flex-direction: row-reverse; }
}

@media (max-width: 767px) {
  .gift-message-area { padding: 60px 20px; }
  .gift-message-area h2 { font-size: 1.6rem; }
  
  .gift-hero-overlay {
    width: 65%;
    left: 44%;
  }

  .bg-wedding { background-color: #a6c9d2; }
  .bg-house   { background-color: #a5c39a; }
  .bg-birthday{ background-color: #d5ba87; }
  .bg-petit   { background-color: #f2eed0; }

  /* シーン部分の余白調整 */
  #gift-scene .row {
    margin-right: -5px;
    margin-left: -5px;
  }
  
  #gift-scene .col-6 {
    padding-right: 5px;
    padding-left: 5px;
  }

  /* カテゴリヘッダーのスマホ版並べ替え (Flexbox Order) */
  .cat-content-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .cat-text-col {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .cat-img-col {
    width: 100%;
    order: 2;
    margin-bottom: 15px;
  }
  
  .cat-title-wrapper { 
    order: 1; 
    max-width: 100%; 
    margin-bottom: 20px; 
  }
  
  .cat-title-en { font-size: 3rem; }
  
  .bg-wedding .cat-icon { width: 85px; top: -20px; right: 0; }
  .bg-house .cat-icon { width: 75px; top: -15px; right: 0; }
  .bg-birthday .cat-icon { width: 70px; top: -25px; right: 0; }
  .bg-petit .cat-icon { width: 70px; top: -10px; right: 0; }
  
  .cat-desc { order: 4; }
  .cat-desc br { display: none; } /* 説明文の変な改行を防ぐ */

  .gift-product-item {
    flex-direction: column;
    padding: 30px 20px;
    text-align: left;
  }
  
  .gift-prod-img { width: 100%; }
  .btn-primary { width: 100%; display: block; }
  .btn-category-link { width: 90%; }
  
  .price-nav-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .price-nav-btn { width: 100%; }
  .btn-more { width: 100%; }
  
  .slick-prev { left: -10px; }
  .slick-next { right: -10px; }
  .slick-prev:before, .slick-next:before { font-size: 30px; }

  .btn-all-gift { width: 90%; }
}

/* Footer */
#footer_area {
  background: #222;
  color: #aaa;
  padding: 30px;
  text-align: center;
  font-size: 0.8rem;
}

#footer_area a { color: #fff; }