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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Kaku Gothic New', 'Noto Serif JP', serif, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

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

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

ul {
  list-style: none;
}

.text-pink {
  color: #e57388;
}

.icon-cart03:before {
  content: "\e99d";
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 25px;
  font-size: 15px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  color: #333;
}

.nav .divider {
  color: #ccc;
}

.nav a:hover {
  color: #e57388;
}

.btn-shop {
  background-color: #f1879f;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s;
}

.btn-shop:hover {
  background-color: #d66a82;
}

.hamburger {
  display: none;
}

.mobile-only-btn {
  display: none;
}

/* ----------------------*
 * Hero Section (CSS Carousel)
 * ----------------------*/
.hero-container {
  width: 100%;
  position: relative;
  padding-bottom: 50px; /* ドットのための余白 */
  background-color: #fcf4f5;
}

.hero-carousel {
  /* anchor for position-anchor of buttons */
  anchor-name: --carousel;
  
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  scroll-marker-group: after;
  scrollbar-width: none; /* Hide standard scrollbar */
  margin: 0;
  padding: 0;
}

.hero-carousel::-webkit-scrollbar {
  display: none;
}

/* Prev/Next Buttons using Chrome 135+ feature */
.hero-carousel::scroll-button(*) {
  position: absolute;
  position-anchor: --carousel;
  top: anchor(center);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  z-index: 10;
  transition: background-color 0.2s;
}

.hero-carousel::scroll-button(*):hover {
  background-color: rgba(255, 255, 255, 1);
}

.hero-carousel::scroll-button(left) {
  content: "◀" / "前へ";
  left: anchor(start);
  margin-left: 20px;
}

.hero-carousel::scroll-button(right) {
  content: "▶" / "次へ";
  right: anchor(end);
  margin-right: 20px;
}

/* Indicator Group */
.hero-carousel::scroll-marker-group {
  position: absolute;
  position-anchor: --carousel;
  top: anchor(end); /* 画像の下に配置 */
  left: anchor(center);
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  margin-top: 20px;
  z-index: 10;
}

.hero-item {
  scroll-snap-align: center;
  width: 100%;
}

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

/* Indicator Markers */
.hero-item::scroll-marker {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #f1c7cf;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.hero-item::scroll-marker:target-current {
  background-color: #e57388;
  transform: scale(1.2);
}


/* Concept Section */
.concept-section {
  background-color: #fcf4f5;
  padding: 80px 0 0 0; /* 画像の下の隙間をなくすため下パディングを0に */
}

.concept-top-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 30px;
}

.concept-text-area {
  flex: 1;
}

.concept-image-area {
  flex: 1;
  max-width: 350px;
}

.concept-image-area img {
  border-radius: 8px;
}

.section-eng {
  color: #e57388;
  font-size: 15px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 34px;
  font-family: 'Noto Serif JP', serif;
  color: #e57388;
  margin-bottom: 40px;
  font-weight: 500;
}

.concept-text {
  font-size: 16px;
  line-height: 2.2;
  font-family: 'Noto Serif JP', serif;
}

.concept-text p {
  margin-bottom: 30px;
}

.lifestyle-full-row {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 0;
}

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

.aroma-health-section {
  background-image: url('https://shop-ec.wakasa.jp/img/usr/freepage/sofiarose-brand/rose-bk-1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  width: 100%;
}

.aroma-health {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.aroma-health-title {
  font-size: 28px;
  color: #e57388;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 20px;
  line-height: 1.5;
}

.aroma-health-text p {
  font-size: 16px;
  line-height: 2;
}

.aroma-health-img-wrapper {
  flex-shrink: 0;
  width: 300px;
}

/* Damask Rose Section */
.damask-section {
  background-color: #fdf6f7;
  padding: 80px 0;
}

.damask-header {
  background-color: #f1c7cf;
  padding: 50px 0px 100px;
  margin-top: -80px;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.damask-header-icon {
  width: auto;
  height: 135px;
  object-fit: contain;
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
}

.damask-main-title {
  font-size: 32px;
  color: #fff;
  letter-spacing: 8px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  font-family: serif;
}

.damask-sub-title {
  font-size: 15px;
  color: #fff;
  margin-top: 10px;
}

/* Feature Cards */
.feature-cards {
  display: flex;
  flex-direction: column;
  gap: 100px;
  max-width: 1000px;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: transparent;
  display: flex;
  align-items: center;
  position: relative;
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  background: #fff;
  width: 75%;
  flex-shrink: 0;
  padding: 60px 22% 60px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.feature-card.reverse .feature-text {
  padding: 60px 8% 60px 22%;
}

.feature-img-wrapper {
  width: 40%;
  flex-shrink: 0;
  margin-left: -15%;
  z-index: 2;
  display: flex;
}

.feature-card.reverse .feature-img-wrapper {
  margin-left: 0;
  margin-right: -15%;
}

.feature-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.feature-num-title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.feature-num-title .num {
  font-size: 42px;
  font-family: serif;
  color: #e57388;
  line-height: 1;
  border-right: 1px solid #f1c7cf;
  padding-right: 20px;
}

.feature-num-title .title {
  font-size: 18px;
  color: #e57388;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.5;
  font-weight: 500;
}

.feature-text .desc {
  font-size: 15px;
  line-height: 2;
  color: #444;
}

/* Scroll Animations */
.feature-card .feature-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.feature-card .feature-img-wrapper {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
  transition-delay: 0.4s; /* 画像はテキストより少し遅れて表示 */
}

.feature-card.reverse .feature-img-wrapper {
  transform: translateX(-50px); /* 逆向きのカードは左から右へ */
}

.feature-card.is-animated .feature-text {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.is-animated .feature-img-wrapper {
  opacity: 1;
  transform: translateX(0);
}

/* Line Up Section */
.lineup-section {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #f1c7cf 0%, #f1c7cf 320px, rgba(253, 246, 247, 0) 320px), url('https://shop-ec.wakasa.jp/img/usr/freepage/sofiarose-brand/rose-bk-2.png') repeat;
  background-size: auto;
}

.lineup-header {
  text-align: center;
  margin-bottom: 50px;
}

.lineup-main-title {
  font-size: 36px;
  color: #fff;
  letter-spacing: 12px;
  font-family: serif;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 10px;
}

.lineup-sub-title {
  font-size: 15px;
  color: #555;
  letter-spacing: 2px;
}

.lineup-hero-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
}

.lineup-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.lineup-intro {
  text-align: center;
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 50px;
  color: #333;
}

.lineup-intro .text-pink {
  color: #e57388;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  display: flex;
  max-width: 900px;
  margin: 0 auto 40px;
  overflow: hidden;
  padding: 40px 30px;
  gap: 20px;
}

.product-img-col {
  flex: 0 0 32%;
}

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

.product-info-col {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-badges {
  position: absolute;
  top: -10px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.product-badges .badge {
  background-color: #f1a5b8;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 20px;
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
  width: 100%;
  min-width: 170px;
  box-sizing: border-box;
}

.product-catch {
  font-size: 16px;
  color: #555;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 10px;
  margin-top: 30px;
}

.product-title {
  margin-bottom: 25px;
  line-height: 1.2;
}

.product-title .brand-prefix {
  font-size: 22px;
  color: #e57388;
  font-weight: normal;
}

.product-title .brand-name {
  font-size: 30px;
  color: #e57388;
  font-family: serif;
}

.product-title .brand-suffix {
  font-size: 16px;
  color: #e57388;
  font-weight: normal;
  margin-left: 10px;
}

.product-desc {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 30px;
}

.btn-shop-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #d8899f;
  color: #fff;
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s;
  text-decoration: none;
  align-self: flex-start;
  width: 100%;
  max-width: 340px;
}

.btn-shop-large:hover {
  background-color: #c9758d;
}

.btn-shop-large .cart-icon {
  margin-right: 10px;
}

.btn-shop-large .arrow {
  margin-left: auto;
  font-size: 20px;
}

/* Harvest Section & Gallery */
.harvest-section {
  padding: 80px 0 100px;
  background-color: #fff;
}

.text-center {
  text-align: center;
}

.harvest-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 50px;
  line-height: 2;
}

.gallery-container {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.gallery-container.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.gallery-main {
  width: 100%;
  margin-bottom: 15px;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: opacity 0.2s ease;
  display: block;
}

.gallery-thumbnails {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.thumb-btn {
  flex: 1;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.thumb-btn:hover, .thumb-btn.active {
  opacity: 1;
}

.thumb-btn img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background-color: #fff;
  overflow-x: hidden;
}

.story-header {
  text-align: center;
  margin-bottom: 80px;
}

.story-main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #e57388;
  font-family: serif;
  letter-spacing: 8px;
  margin-bottom: 10px;
}

.story-main-title::before,
.story-main-title::after {
  content: "";
  height: 1px;
  background-color: #f1c7cf;
  width: 80px;
  margin: 0 30px;
}

.story-sub-title {
  font-size: 15px;
  color: #555;
  letter-spacing: 4px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 60px;
  column-gap: 20px;
  max-width: 750px;
  margin: 0 auto 80px;
}

.story-grid.js-scroll-fade {
  transform: translate(-45px, 20px);
}

.story-grid.js-scroll-fade.is-animated {
  transform: translate(-45px, 0);
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.story-item:nth-child(n+4) {
  transform: translateX(calc(50% + 10px));
}

.story-img-bg {
  width: 200px;
  height: 240px;
  background-color: #fdfaf6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.story-img-bg img {
  width: 130px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.08));
}

.story-year {
  font-size: 24px;
  color: #e57388;
  font-family: serif;
  letter-spacing: 2px;
}

.story-year span {
  font-size: 15px;
  margin-left: 5px;
}

.story-footer {
  text-align: center;
  padding-top: 40px;
}

.story-footer-lead {
  font-size: 16px;
  color: #555;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 15px;
}

.story-footer-main {
  font-size: 24px;
  font-weight: 500;
  color: #333;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.story-footer-main .number {
  font-size: 56px;
  font-family: serif;
  margin: 0 5px;
}

.story-footer-note {
  font-size: 13px;
  color: #777;
}

.js-scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.js-scroll-fade.is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Column Section */
.column-section {
  padding: 100px 0;
  background-color: #faf5f2;
}

.column-header {
  text-align: center;
  margin-bottom: 50px;
}

.column-main-title {
  font-size: 36px;
  color: #e57388;
  font-family: serif;
  letter-spacing: 10px;
  margin-bottom: 10px;
}

.column-sub-title {
  font-size: 15px;
  color: #333;
  letter-spacing: 2px;
}

.column-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.column-item {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s;
}

.column-item:hover {
  transform: translateY(-5px);
}

.column-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 10px 0;
  background-color: transparent;
}

.column-cat {
  font-weight: 500;
  font-size: 13px;
  color: #333;
}

.column-date {
  border: 1px solid #ccc;
  padding: 2px 8px;
  font-family: serif;
  color: #666;
  font-size: 13px;
  letter-spacing: 1px;
}

.column-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.column-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.column-item:hover .column-img img {
  transform: scale(1.05);
}

.column-text {
  padding: 20px;
  flex-grow: 1;
  background-color: #fff;
}

.column-title {
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
  color: #333;
}

/* Campaign Section */
.campaign-section {
  padding: 100px 0;
  background-color: #fff;
}

.campaign-header {
  text-align: center;
  margin-bottom: 50px;
}

.campaign-year {
  font-size: 20px;
  color: #e57388;
  font-family: serif;
  letter-spacing: 10px;
  margin-bottom: 0;
}

.campaign-main-title {
  font-size: 42px;
  color: #e57388;
  font-family: serif;
  letter-spacing: 12px;
  margin-bottom: 15px;
}

.campaign-sub-title {
  font-size: 15px;
  color: #333;
  letter-spacing: 2px;
}

.campaign-banner-wrapper {
  max-width: 900px;
  margin: 0 auto 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

.campaign-date-bar {
  background-color: #f2557e;
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 26px;
  font-family: serif;
  letter-spacing: 4px;
}

.campaign-desc {
  text-align: center;
  font-size: 15px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.8;
}

.campaign-action {
  text-align: center;
}

.btn-campaign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #de8597;
  color: #fff;
  padding: 20px 60px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-campaign:hover {
  background-color: #c97081;
}

.btn-campaign .arrow {
  margin-left: 15px;
  font-size: 22px;
}

/* Bottom Banner */
.bottom-banner {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.bottom-banner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, #faf5f2 0%, rgba(250, 245, 242, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.bottom-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: bottomBannerZoom 20s ease-in-out infinite alternate;
}

@keyframes bottomBannerZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    position: relative;
  }
  .column-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .bottom-banner {
    height: 200px;
  }
  .desktop-only-btn {
    display: none;
  }
  .mobile-only-btn {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
  }
  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #6a4c9c;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 150;
  }
  .nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-size: 18px;
    padding: 20px 0;
  }
  .nav .divider {
    display: none;
  }
  .hero-title {
    font-size: 32px;
  }
  .sofia-title {
    font-size: 36px;
  }
  .concept-top-layout {
    flex-direction: column;
  }
  .concept-image-area {
    max-width: 100%;
    margin: 0 auto;
  }
  .feature-card, .feature-card.reverse {
    flex-direction: column;
    padding: 0;
    margin-bottom: 60px;
  }
  .feature-text {
    width: 100%;
    padding: 40px 20px !important;
  }
  .feature-img-wrapper {
    width: 90%;
    margin: -30px auto 0 !important;
  }
  .aroma-health {
    flex-direction: column;
    text-align: center;
  }
  .gallery-thumbnails {
    gap: 8px;
  }
  .gallery-main img {
    aspect-ratio: 4 / 3;
  }
  .story-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 10px;
    padding-bottom: 60px;
  }
  .story-img-bg {
    width: 140px;
    height: 168px;
  }
  .story-img-bg img {
    width: 90px;
  }
  .story-grid.js-scroll-fade {
    transform: translateY(20px);
  }
  .story-grid.js-scroll-fade.is-animated {
    transform: translateY(0);
  }
  .story-item {
    transform: none !important;
  }
  .story-item:nth-child(even) {
    transform: translateY(80px) !important;
  }
  .story-main-title::before,
  .story-main-title::after {
    width: 40px;
    margin: 0 15px;
  }
  .story-footer-main {
    font-size: 18px;
  }
  .story-footer-main .number {
    font-size: 40px;
  }
  .product-card {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
  .product-desc {
    text-align: left;
  }
  .product-badges {
    position: relative;
    top: 0;
    align-items: center;
    margin-bottom: 20px;
  }
  .btn-shop-large {
    max-width: 100%;
  }
  .lineup-intro {
    font-size: 18px;
  }
  .campaign-main-title {
    font-size: 28px;
    letter-spacing: 6px;
  }
  .campaign-year {
    font-size: 16px;
    letter-spacing: 6px;
  }
  .campaign-date-bar {
    font-size: 18px;
    padding: 10px;
  }
  .btn-campaign {
    padding: 15px 30px;
    font-size: 16px;
    width: 90%;
  }
}
