@charset "utf-8";

/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
  /* 爽やかな青系をベースに */
  --primary-color: #008CB8;
  /* 少し落ち着いたブルー（酒造の信頼感と爽やかさ） */
  --secondary-color: #E1F5FE;
  --text-main: #333333;
  --text-muted: #666666;
  --bg-light: #F9F9F9;
  --bg-reasons: #F0F9FF;
  /* 理由・特徴セクションの背景色 */
  --border-color: #E0E0E0;
  --placeholder-bg: #EAEAEA;
  --font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-family);
  color: var(--text-main);
  line-height: 1.6;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   Utility Classes & Placeholders
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

@media (max-width: 768px) {
  .sp-only {
    display: block !important;
  }

  .pc-only {
    display: none !important;
  }

  br.sp-only,
  span.sp-only,
  img.sp-only {
    display: inline-block !important;
  }
}

.container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--primary-color);
}

.section-desc {
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: #FFF !important;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none !important;
  box-shadow: 0 4px 6px rgba(0, 140, 184, 0.2);
}

.btn:hover {
  background-color: #007399;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 140, 184, 0.3);
}

.btn-full {
  width: 100%;
  display: block;
  text-align: center;
}

.btn-outline {
  background-color: #FFF;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: #FFF !important;
}

/* ==========================================================================
   Header
   ========================================================================== */
.lp-header {
  border-bottom: 1px solid var(--border-color);
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header-logo {
  height: 60px;
  width: auto;
}

.header-nav {
  display: flex;
  gap: 2rem;
}

.header-nav a {
  font-size: 1rem;
  font-weight: 500;
}

.header-icons {
  display: flex;
  gap: 1.5rem;
}

.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.header-icon i {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .lp-header .container {
    height: 60px;
    padding: 0 15px;
  }

  .header-logo {
    height: 40px;
  }

  .header-icons {
    gap: 1rem;
  }

  .header-icon span {
    display: none;
  }
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.lp-hero {
  position: relative;
  width: 100%;
}

.lp-hero img {
  width: 100%;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-text-wrap {
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.2rem 1rem;
}

.hero-catch {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--primary-color);
  white-space: nowrap;
}

.hero-cta-wrap {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 10;
}

.hero-cta-wrap .btn {
  font-size: 1.1rem;
  padding: 1.2rem 0;
  width: 320px;
  text-align: center;
  border-radius: 50px;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .hero-content {
    top: calc(40% - 30px);
  }

  .hero-text-wrap {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.85);
  }

  .hero-catch {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.4;
    white-space: normal;
  }

  .hero-cta-wrap {
    position: static;
    transform: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .hero-cta-wrap .btn {
    width: 100%;
    max-width: 320px;
    padding: 1rem;
  }
}

/* ==========================================================================
   2. 共感・課題提起
   ========================================================================== */
.lp-empathy {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.empathy-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin: 0 auto;
}

.empathy-image {
  flex: 1;
}

.empathy-image img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.empathy-text {
  flex: 1;
  text-align: left;
}

.empathy-list {
  font-size: 1.1rem;
  line-height: 2;
  margin-bottom: 2rem;
  font-weight: 500;
}

.empathy-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.empathy-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.empathy-message {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-color);
  border-top: 2px dashed var(--border-color);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .empathy-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

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

  .empathy-list {
    font-size: 1rem;
    display: inline-block;
    text-align: left;
  }

  .empathy-message {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   3. はじめての日本酒は「シーン」で選ぶ
   ========================================================================== */
.lp-scenes {
  padding: 5rem 0;
}

.scenes-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.scenes-grid {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.scene-card {
  flex: 1 1 calc(25% - 1.5rem);
  min-width: 200px;
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.scene-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.scene-card img {
  width: 100%;
  height: auto;
}

.scene-card-content {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.scene-card-text {
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.scene-card-desc {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

@media (max-width: 768px) {
  .scene-card {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 140px;
  }

  .scene-card img {
    height: auto;
  }

  .scene-card-text {
    padding: 1rem 0.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .scene-card {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   4. タイプ別おすすめ商品
   ========================================================================== */
.lp-products {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.product-card {
  display: flex;
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.product-img {
  width: 40%;
}

.product-img a {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.product-img a:hover {
  opacity: 0.85;
}

.product-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-info {
  width: 60%;
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.product-type {
  display: inline-block;
  background: #f0f9ff;
  color: var(--primary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
}

.product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

.product-price span {
  font-size: 0.9rem;
  font-weight: normal;
}

.product-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-main);
}

.product-info .btn {
  width: 100%;
  max-width: 320px;
}

.product-card.special {
  border: 2px solid var(--primary-color);
  background-color: var(--bg-reasons);
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

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

  .product-info {
    width: 100%;
    padding: 2rem;
  }

  .product-info h3 {
    font-size: 1.3rem;
  }
}

/* ==========================================================================
   5. 日本酒の種類解説
   ========================================================================== */
.lp-sake-types {
  padding: 4rem 0;
  background-color: #fcfbf9; /* 全体のトーンに合わせたごく薄いアイボリー */
  border-top: 1px dashed var(--border-color);
  border-bottom: 1px dashed var(--border-color);
}

.sake-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.sake-type-card {
  background: #FFF;
  border-radius: 8px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}
.sake-type-card:hover {
  transform: translateY(-5px);
}

.sake-type-icon {
  width: 70px;
  height: 70px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-color);
  margin: 0 auto 1.5rem;
}

.sake-type-info h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.sake-type-tag {
  display: inline-block;
  background-color: var(--bg-light);
  color: var(--text-main);
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
}

.sake-type-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-align: left;
}

@media (max-width: 992px) {
  .sake-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sake-type-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5.5 比較表
   ========================================================================== */
.lp-comparison {
  padding: 4rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFF;
  min-width: 800px;
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  vertical-align: middle;
}

.comparison-table th {
  background: var(--bg-reasons);
  font-weight: bold;
}

.comparison-table .highlight {
  background-color: rgba(0, 140, 184, 0.05);
  border: 2px solid var(--primary-color);
  font-weight: bold;
}

.comparison-table .highlight td {
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.comparison-table .highlight td:first-child {
  border-left: 2px solid var(--primary-color);
}

.comparison-table .highlight td:last-child {
  border-right: 2px solid var(--primary-color);
}

.comparison-msg {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: 1.4rem;
  color: var(--primary-color);
  background-color: #f0f9ff;
  padding: 1rem 2rem;
  border-radius: 8px;
  display: inline-block;
  border: 2px solid var(--primary-color);
}

.btn-cta {
  background: linear-gradient(135deg, #ff7e5f, #feb47b) !important;
  color: #fff !important;
  font-size: 1.3rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4) !important;
  border: none !important;
}

.btn-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.6) !important;
}

/* ==========================================================================
   6. 【新設】まずは冷やして、グラスで気軽に
   ========================================================================== */
.lp-glass {
  padding: 6rem 0;
  /* 冷やした日本酒の透明感と涼やかさをイメージしたグラデーション */
  background: linear-gradient(135deg, var(--primary-color), #004b66);
  color: #FFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* グラスに当たる光の反射をイメージしたアクセント */
.lp-glass::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -10%;
  width: 120%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

/* もう一つの光の重なり */
.lp-glass::after {
  content: "";
  position: absolute;
  bottom: -40%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
  z-index: 0;
}

.glass-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.glass-image {
  flex: 1;
}

.glass-image img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.glass-content {
  flex: 1;
  text-align: left;
}

.glass-content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.glass-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.glass-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .glass-flex {
    flex-direction: column;
    gap: 2.5rem;
  }

  .glass-content {
    text-align: left;
  }

  .glass-content h2 {
    text-align: center;
  }
}

/* ==========================================================================
   7. コンビニおつまみ提案（カード化）
   ========================================================================== */
.lp-pairing {
  padding: 5rem 0;
  background: var(--bg-light);
}

.pairing-grid {
  display: flex;
  gap: 2rem;
}

.pairing-card {
  flex: 1;
  background: #FFF;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pairing-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0;
  display: block;
}

.pairing-card-body {
  padding: 1.5rem 2rem 2.5rem;
}

.pairing-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.pairing-card p {
  font-weight: bold;
}

.pairing-list {
  text-align: left;
  margin-top: 1rem;
}

.pairing-list li {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
  padding-left: 1rem;
}

.pairing-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.pairing-list strong {
  display: block;
  color: var(--text-main);
}

.pairing-list span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .pairing-grid {
    flex-direction: column;
  }
}

/* ==========================================================================
   8. はじめてでも選びやすい理由
   ========================================================================== */
.lp-reasons-trust {
  padding: 5rem 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.trust-image {
  flex: 1;
}

.trust-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-list {
  flex: 1;
}

.trust-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .trust-flex {
    flex-direction: column;
    gap: 3rem;
  }
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-reasons);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.trust-text p {
  color: var(--text-muted);
}

/* ==========================================================================
   9. よくある質問
   ========================================================================== */
.lp-faq {
  padding: 4rem 0;
  background: var(--bg-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFF;
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.faq-q {
  padding: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-left: 3.5rem;
  font-size: 1.15rem;
}

.faq-q::before {
  content: "Q.";
  position: absolute;
  left: 1.5rem;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.faq-a {
  padding: 0 1.5rem 1.5rem 3.5rem;
  color: var(--text-muted);
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-a::before {
  content: "A.";
  position: absolute;
  left: 1.5rem;
  color: #999;
  font-size: 1.2rem;
}

/* ==========================================================================
   10. クロージング（CTA）
   ========================================================================== */
.lp-cta {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
}

.cta-box {
  background: #FFF;
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
  color: #333;
}

.cta-message {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem auto 0;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 768px) {
  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .cta-box h2 {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.lp-footer {
  background: #333;
  color: #FFF;
  text-align: center;
  padding: 2rem 0;
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Overrides (Mobile)
   ========================================================================== */
@media (max-width: 768px) {
  /* セクション全体の余白を縮小 */
  .lp-empathy,
  .lp-scenes,
  .lp-products,
  .lp-sake-types,
  .lp-comparison,
  .lp-glass,
  .lp-pairing,
  .lp-reasons-trust,
  .lp-faq,
  .lp-cta {
    padding: 3rem 0;
  }

  /* セクションタイトルのフォントサイズ最適化 */
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .section-desc {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: left;
  }

  /* 比較表 横スクロールのヒント */
  .scroll-hint {
    text-align: right;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: blink 2s infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  /* 比較表 メッセージ */
  .comparison-msg {
    font-size: 1.15rem;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
    border-width: 1px;
  }

  /* ボタンの横幅100%化 */
  .hero-cta-wrap .btn,
  .btn, 
  .btn-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* FAQの余白と文字サイズ調整 */
  .faq-q {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 2.5rem;
  }

  .faq-q::before {
    left: 0.8rem;
  }

  .faq-a {
    font-size: 0.95rem;
    padding: 0 1rem 1rem 2.5rem;
  }

  .faq-a::before {
    left: 0.8rem;
  }

  /* Override Common Footer Styles (from mothers-day-sake) */
  #guide_bottom_wrap, #guide_bottom { width: 100% !important; min-width: 0 !important; padding: 0 10px; box-sizing: border-box; }
  .guide_bottom_L, .guide_bottom_C, .guide_bottom_R { float: none !important; width: 100% !important; margin-bottom: 2rem; display: block; }
  .guide_bottom_BOX { width: 100% !important; box-sizing: border-box; }
  #guide_bottom_wrap img { max-width: 100% !important; height: auto !important; }
  #footer, #footer_wrap { width: 100% !important; min-width: 0 !important; box-sizing: border-box; }
}