@charset "UTF-8";
/* ====================================
   GIFT Page Styles
   ==================================== */

/* ------------------------------------
   Reset (ローカル確認用)
------------------------------------ */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul, ol {
  list-style: none;
}

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

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

/* ------------------------------------
   Variables
------------------------------------ */
:root {
  --gift-primary: #05A5B9;
  --gift-primary-dark: #048a9a;
  --gift-dark: #1E1E1E;
  --gift-text: #333;
  --gift-text-light: #666;
  --gift-bg-light: #F0F9FA;
  --gift-bg-gray: #F5F5F5;
  --gift-white: #fff;
  --gift-border: #E0E0E0;
}

/* ------------------------------------
   Base
------------------------------------ */
.page-gift {
  font-family: "Noto Sans JP", "YakuHanJP", sans-serif;
  color: var(--gift-text);
  line-height: 1.8;
}

.page-gift * {
  box-sizing: border-box;
}

/* ------------------------------------
   Section Title
------------------------------------ */
.gift-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}

.gift-section-title .en {
  font-family: din-2014, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gift-primary);
}

.gift-section-title .jp {
  font-size: 28px;
  font-weight: 500;
  color: var(--gift-dark);
  letter-spacing: 0.05em;
}

.gift-section-title--white .en,
.gift-section-title--white .jp {
  color: var(--gift-white);
}

@media (max-width: 760px) {
  .gift-section-title {
    margin-bottom: 30px;
  }
  .gift-section-title .en {
    font-size: 12px;
  }
  .gift-section-title .jp {
    font-size: 22px;
  }
}

/* ------------------------------------
   Image Placeholder (デザイン確認用)
------------------------------------ */
.image-placeholder {
  background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.image-placeholder--square {
  aspect-ratio: 1 / 1;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 760px) {
  .image-placeholder {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
  .image-placeholder--square {
    aspect-ratio: 1 / 1;
    width: 60%;
    max-width: 250px;
  }
}

.image-placeholder--icon {
  aspect-ratio: 1 / 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
  color: var(--gift-white);
  background: linear-gradient(135deg, #FF6B6B, #FFC14D, #6BCB77, #4DB6FF, #A78BFA);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ====================================
   1. FV（ファーストビュー）
   ==================================== */
.gift-fv {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gift-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gift-fv__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.gift-fv__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #1a252f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 24px;
  letter-spacing: 0.2em;
}

.gift-fv__bg-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.gift-fv__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--gift-white);
}

.gift-fv__catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.gift-fv__catch-main {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.gift-fv__catch-logo {
  font-family: din-2014, sans-serif;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.gift-fv__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gift-text-light);
}

.gift-fv__scroll span {
  font-family: din-2014, sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
}

.gift-fv__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gift-text-light) 50%, transparent 50%);
  background-size: 1px 20px;
  animation: scroll-line 1.5s infinite;
}

@keyframes scroll-line {
  0% { background-position: 0 -20px; }
  100% { background-position: 0 20px; }
}

@media (max-width: 760px) {
  .gift-fv {
    height: auto;
    min-height: 0;
    max-height: none;
  }
  .gift-fv__bg {
    position: relative;
  }
  .gift-fv__bg-image {
    width: 100%;
    height: auto;
    object-fit: unset;
  }
  .gift-fv__catch-main {
    font-size: 16px;
  }
  .gift-fv__catch-logo {
    font-size: 60px;
  }
  .gift-fv__scroll {
    bottom: 30px;
  }
  .gift-fv__scroll-line {
    height: 40px;
  }
}

/* ====================================
   2. コンセプト
   ==================================== */
.gift-concept {
  padding: 120px 40px;
  background: var(--gift-white);
}

.gift-concept__header {
  text-align: center;
  margin-bottom: 100px;
}

.gift-concept__main-copy {
  font-size: 38px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--gift-dark);
  margin-top: 30px;
}

.gift-concept__block {
  max-width: 1100px;
  margin: 0 auto 100px;
}

.gift-concept__block:last-child {
  margin-bottom: 0;
}

.gift-concept__block-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 750px;
  margin: 0 auto;
}

.gift-concept__block--reverse .gift-concept__block-inner {
  flex-direction: row-reverse;
}

.gift-concept__block-text {
  flex: 1;
}

.gift-concept__block-image {
  flex: 1;
  max-width: 320px;
}

.gift-concept__image {
  width: 100%;
  height: auto;
  display: block;
}

.gift-concept__logo-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.gift-concept__sub-copy {
  font-size: 26px;
  font-weight: 500;
  color: var(--gift-primary);
  margin-bottom: 25px;
  line-height: 1.5;
}

.gift-concept__body {
  font-size: 16px;
  line-height: 2.2;
  color: var(--gift-text);
}

@media (max-width: 760px) {
  .gift-concept {
    padding: 80px 20px;
  }
  .gift-concept__header {
    margin-bottom: 60px;
  }
  .gift-concept__main-copy {
    font-size: 26px;
    margin-top: 20px;
  }
  .gift-concept__block {
    margin-bottom: 60px;
  }
  .gift-concept__block-inner {
    flex-direction: column;
    gap: 30px;
  }
  .gift-concept__block--reverse .gift-concept__block-inner {
    flex-direction: column;
  }
  .gift-concept__block-image {
    max-width: 100%;
  }
  .gift-concept__logo-image {
    max-width: 200px;
  }
  .gift-concept__sub-copy {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .gift-concept__body {
    font-size: 15px;
    line-height: 2;
  }
}

/* ====================================
   3. 深部リリースとは？
   ==================================== */
.gift-deep-release {
  padding: 120px 40px;
  background: var(--gift-bg-light);
}

.gift-deep-release__container {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-deep-release__headline {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: var(--gift-dark);
  margin-bottom: 80px;
}

.gift-deep-release__problem {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.gift-deep-release__problem-text {
  flex: 1;
  font-size: 18px;
  line-height: 2.2;
}

.gift-deep-release__problem-image {
  flex: 1;
  max-width: 320px;
}

.gift-deep-release__problem-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gift-deep-release__misconception {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  padding: 60px 40px;
  background: var(--gift-white);
  border-radius: 0;
  margin-bottom: 80px;
}

.gift-deep-release__misconception strong {
  color: var(--gift-primary);
  font-size: 22px;
}

.gift-deep-release__definition {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.gift-deep-release__definition-text {
  flex: 1;
}

.gift-deep-release__definition-lead {
  font-size: 24px;
  font-weight: 500;
  color: var(--gift-primary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.gift-deep-release__definition-text p:last-child {
  font-size: 16px;
  line-height: 2.2;
}

.gift-deep-release__definition-image {
  flex: 1;
  max-width: 320px;
}

.gift-deep-release__definition-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 比較表 */
.gift-deep-release__comparison {
  margin-bottom: 80px;
}

.gift-deep-release__comparison-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--gift-dark);
}

/* 旧div版の比較表CSS → table版に移行済み（下部セクション参照） */

.gift-deep-release__closing {
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}

.gift-deep-release__closing strong {
  color: var(--gift-primary);
  font-size: 24px;
}

@media (max-width: 760px) {
  .gift-deep-release {
    padding: 80px 20px;
  }
  .gift-deep-release__headline {
    font-size: 24px;
    margin-bottom: 50px;
  }
  .gift-deep-release__problem {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .gift-deep-release__problem-text {
    font-size: 16px;
  }
  .gift-deep-release__problem-image {
    max-width: 100%;
  }
  .gift-deep-release__misconception {
    font-size: 16px;
    padding: 40px 20px;
    margin-bottom: 50px;
  }
  .gift-deep-release__misconception strong {
    font-size: 18px;
  }
  .gift-deep-release__definition {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .gift-deep-release__definition-lead {
    font-size: 20px;
  }
  .gift-deep-release__definition-image {
    max-width: 100%;
  }
  .gift-deep-release__closing {
    font-size: 17px;
  }
  .gift-deep-release__closing strong {
    font-size: 20px;
  }
}

/* ====================================
   4. GIFT ─ 4つの原因分析
   ==================================== */
.gift-method {
  padding: 120px 40px;
  background: linear-gradient(135deg,
    rgba(255, 107, 107, 0.08) 0%,
    rgba(255, 193, 77, 0.08) 25%,
    rgba(107, 203, 119, 0.08) 50%,
    rgba(77, 182, 255, 0.08) 75%,
    rgba(167, 139, 250, 0.08) 100%
  );
  position: relative;
  overflow: hidden;
}

.gift-method::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(255, 193, 77, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 40% 80%, rgba(107, 203, 119, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(77, 182, 255, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 10% 60%, rgba(167, 139, 250, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.gift-method__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gift-method__headline {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--gift-dark);
}

.gift-method__lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--gift-text);
  margin-bottom: 60px;
}

/* GIFT概念図 */
.gift-method__concept {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.gift-method__concept-image {
  width: 100%;
  height: auto;
  display: block;
}

/* G/I/F/T カード */
.gift-method__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.gift-method__card {
  background: var(--gift-white);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.gift-method__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
}

/* G - オレンジ */
.gift-method__card--g::before {
  background: #F27A3D;
}
.gift-method__card--g .gift-method__card-letter {
  color: #F27A3D;
}

/* I - イエロー */
.gift-method__card--i::before {
  background: #F2C94C;
}
.gift-method__card--i .gift-method__card-letter {
  color: #F2C94C;
}

/* F - グリーン */
.gift-method__card--f::before {
  background: #6FCF97;
}
.gift-method__card--f .gift-method__card-letter {
  color: #6FCF97;
}

/* T - ブルー */
.gift-method__card--t::before {
  background: #5B7FDB;
}
.gift-method__card--t .gift-method__card-letter {
  color: #5B7FDB;
}

.gift-method__card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.gift-method__card-letter {
  font-family: din-2014, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
}

.gift-method__card-titles {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gift-method__card-en {
  font-family: din-2014, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gift-dark);
  letter-spacing: 0.05em;
}

.gift-method__card-jp {
  font-size: 14px;
  color: var(--gift-text-light);
}

.gift-method__card-body {
  display: flex;
  align-items: center;
  gap: 40px;
}

.gift-method__card-image {
  flex: 1;
  max-width: 350px;
}

.gift-method__card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gift-method__card-content {
  flex: 1;
}

.gift-method__card-desc {
  font-size: 18px;
  line-height: 1.8;
  color: var(--gift-text);
  margin-bottom: 25px;
}

.gift-method__card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gift-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid var(--gift-primary);
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 8px;
}

.gift-method__card-link:hover {
  background: var(--gift-primary);
  color: #fff;
}

.gift-method__card-link span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

/* まとめテキスト */
.gift-method__summary-text {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--gift-dark);
  margin-bottom: 60px;
}

/* ベネフィット図 */
.gift-method__benefit {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.gift-method__benefit-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 締めのテキスト */
.gift-method__closing-text {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--gift-dark);
}

@media (max-width: 760px) {
  .gift-method {
    padding: 80px 20px;
  }
  .gift-method__headline {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .gift-method__lead {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .gift-method__concept {
    margin-bottom: 50px;
  }
  .gift-method__cards {
    gap: 30px;
    margin-bottom: 50px;
  }
  .gift-method__card {
    padding: 25px 20px;
  }
  .gift-method__card-header {
    gap: 15px;
    margin-bottom: 20px;
  }
  .gift-method__card-letter {
    font-size: 40px;
  }
  .gift-method__card-en {
    font-size: 16px;
  }
  .gift-method__card-jp {
    font-size: 12px;
  }
  .gift-method__card-body {
    flex-direction: column;
    gap: 20px;
  }
  .gift-method__card-image {
    max-width: 100%;
    order: 1;
  }
  .gift-method__card-content {
    order: 2;
  }
  .gift-method__card-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .gift-method__summary-text {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .gift-method__benefit {
    margin-bottom: 40px;
  }
  .gift-method__closing-text {
    font-size: 16px;
  }
}

/* ====================================
   5. 3つのアプローチ
   ==================================== */
.gift-approach {
  padding: 120px 40px;
  background: var(--gift-white);
}

.gift-approach__container {
  max-width: 1100px;
  margin: 0 auto;
}

.gift-approach__headline {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--gift-dark);
}

.gift-approach__lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  color: var(--gift-text-light);
  margin-bottom: 80px;
}

.gift-approach__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.gift-approach__item {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.gift-approach__item--reverse {
  flex-direction: row-reverse;
}

.gift-approach__item-image {
  flex: 1;
  max-width: 450px;
}

.gift-approach__image {
  width: 100%;
  height: auto;
  display: block;
}

.gift-approach__item-content {
  flex: 1;
}

.gift-approach__item-num {
  font-family: din-2014, sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gift-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
}

.gift-approach__item-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--gift-dark);
  margin-bottom: 20px;
}

.gift-approach__item-catch {
  font-size: 17px;
  font-weight: 500;
  color: var(--gift-primary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.gift-approach__item-desc {
  font-size: 15px;
  line-height: 2;
  color: var(--gift-text);
  margin-bottom: 25px;
}

.gift-approach__item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gift-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border: 2px solid var(--gift-primary);
  border-radius: 4px;
  transition: all 0.3s;
  margin-top: 8px;
}

.gift-approach__item-link:hover {
  background: var(--gift-primary);
  color: #fff;
}

.gift-approach__item-link span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}

@media (max-width: 760px) {
  .gift-approach {
    padding: 80px 20px;
  }
  .gift-approach__headline {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .gift-approach__lead {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .gift-approach__list {
    gap: 60px;
  }
  .gift-approach__item {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .gift-approach__item--reverse {
    flex-direction: column;
  }
  .gift-approach__item-image {
    max-width: 100%;
    order: 2;
  }
  .gift-approach__item-content {
    text-align: left;
    order: 1;
  }
  .gift-approach__item-num {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .gift-approach__item-title {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .gift-approach__item-catch {
    font-size: 15px;
  }
  .gift-approach__item-desc {
    font-size: 14px;
  }
}

/* ====================================
   6. GIFTの約束
   ==================================== */
.gift-promise {
  padding: 120px 40px;
  background: var(--gift-bg-gray);
}

.gift-promise__container {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-promise__headline {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 60px;
  color: var(--gift-dark);
}

.gift-promise__content {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 80px;
}

.gift-promise__image {
  flex: 1;
  max-width: 450px;
}

.gift-promise__img {
  width: 100%;
  height: auto;
  display: block;
}

.gift-promise__text {
  flex: 1;
  font-size: 16px;
  line-height: 2.2;
}

.gift-promise__text strong {
  color: var(--gift-primary);
  font-size: 18px;
}

.gift-promise__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.gift-promise__item {
  background: var(--gift-white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gift-promise__item-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--gift-primary);
  margin-bottom: 15px;
}

.gift-promise__item-desc {
  font-size: 14px;
  color: var(--gift-text);
  line-height: 1.7;
}

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

.gift-promise__link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gift-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 15px 30px;
  border: 2px solid var(--gift-primary);
  border-radius: 50px;
  transition: all 0.3s;
}

.gift-promise__link a:hover {
  background: var(--gift-primary);
  color: var(--gift-white);
}

.gift-promise__link a span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .gift-promise {
    padding: 80px 20px;
  }
  .gift-promise__headline {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .gift-promise__content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .gift-promise__image {
    max-width: 100%;
  }
  .gift-promise__text {
    font-size: 15px;
  }
  .gift-promise__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .gift-promise__item {
    padding: 30px 20px;
  }
  .gift-promise__item-title {
    font-size: 18px;
  }
}

/* ====================================
   7. よくある質問（FAQ）
   ==================================== */
.gift-faq {
  padding: 120px 40px;
  background: var(--gift-white);
}

.gift-faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.gift-faq__list {
  margin-bottom: 50px;
}

.gift-faq__item {
  border-bottom: 1px solid var(--gift-border);
}

.gift-faq__question {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 40px 25px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--gift-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
}

.gift-faq__question::-webkit-details-marker {
  display: none;
}

.gift-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  font-weight: 300;
  color: var(--gift-primary);
  transition: transform 0.3s;
}

.gift-faq__item[open] .gift-faq__question::after {
  content: "−";
}

.gift-faq__q,
.gift-faq__a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: din-2014, sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
}

.gift-faq__q {
  background: var(--gift-primary);
  color: var(--gift-white);
}

.gift-faq__a {
  background: var(--gift-bg-gray);
  color: var(--gift-primary);
}

.gift-faq__answer {
  display: flex;
  gap: 15px;
  padding: 0 0 25px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gift-text);
}

.gift-faq__answer p {
  margin: 0;
  padding-top: 5px;
}

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

.gift-faq__more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gift-primary);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s;
}

.gift-faq__more a:hover {
  gap: 15px;
}

.gift-faq__more a span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--gift-primary);
  border-right: 2px solid var(--gift-primary);
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .gift-faq {
    padding: 80px 20px;
  }
  .gift-faq__question {
    font-size: 15px;
    padding: 20px 35px 20px 0;
  }
  .gift-faq__q,
  .gift-faq__a {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .gift-faq__answer {
    font-size: 14px;
    padding-bottom: 20px;
  }
}

/* ====================================
   8. CTA（コール・トゥ・アクション）
   ==================================== */
.gift-cta {
  position: relative;
  padding: 120px 40px;
  background: linear-gradient(135deg, #05A5B9 0%, #048a9a 100%);
  overflow: hidden;
}

.gift-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5"/></svg>');
  background-size: 200px;
}

.gift-cta__container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.gift-cta__headline {
  font-size: 36px;
  font-weight: 500;
  color: var(--gift-white);
  line-height: 1.6;
  margin-bottom: 50px;
}

.gift-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gift-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s;
}

.gift-cta__btn--primary {
  background: var(--gift-white);
  color: var(--gift-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.gift-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.gift-cta__btn--secondary {
  background: transparent;
  color: var(--gift-white);
  border: 2px solid var(--gift-white);
}

.gift-cta__btn--secondary:hover {
  background: var(--gift-white);
  color: var(--gift-primary);
}

@media (max-width: 760px) {
  .gift-cta {
    padding: 80px 20px;
  }
  .gift-cta__headline {
    font-size: 26px;
    margin-bottom: 40px;
  }
  .gift-cta__buttons {
    flex-direction: column;
    gap: 15px;
  }
  .gift-cta__btn {
    min-width: auto;
    width: 100%;
    padding: 18px 30px;
    font-size: 15px;
  }
}

/* ====================================
   Header & Footer (ローカル確認用)
   ==================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--gift-dark);
}

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

.header-logo p {
  font-size: 12px;
  margin: 0;
}

.global-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav a {
  font-size: 13px;
  color: var(--gift-dark);
  text-decoration: none;
  transition: color 0.3s;
}

.global-nav a:hover {
  color: var(--gift-primary);
}

.l-toggle {
  display: none;
}

.l-main {
  padding-top: 0;
}

.footer {
  background: var(--gift-dark);
  color: var(--gift-white);
  padding: 60px 40px 30px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 13px;
  margin: 5px 0;
  opacity: 0.8;
}

.footer-address {
  margin-bottom: 30px;
}

.footer-address p {
  font-size: 13px;
  margin: 0 0 10px;
  opacity: 0.8;
}

.footer-address a {
  font-size: 12px;
  color: var(--gift-primary);
  text-decoration: none;
}

.copyright {
  font-size: 11px;
  opacity: 0.6;
}

@media (max-width: 760px) {
  .header {
    padding: 12px 20px;
  }
  .header-logo p {
    display: none;
  }
  .header-logo img {
    height: 30px;
  }
  .global-nav {
    display: none;
  }
  .l-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  }
  .l-toggle div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .l-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gift-dark);
  }
  .l-toggle p {
    font-size: 10px;
    margin: 0;
  }
  .l-main {
    padding-top: 0;
  }
  .footer {
    padding: 40px 20px 20px;
  }
  .footer-logo img {
    height: 40px;
  }
  .footer-address p .sp {
    display: inline;
  }
}

@media (min-width: 761px) {
  .footer-address p .sp {
    display: none;
  }
}

/* ====================================
   AIO対策 追加スタイル
   ==================================== */

/* ------------------------------------
   パンくずリスト
------------------------------------ */
.gift-breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 13px;
}

.gift-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gift-breadcrumb__item + .gift-breadcrumb__item::before {
  content: ">";
  margin-right: 8px;
  color: #999;
}

.gift-breadcrumb__item a {
  color: var(--gift-primary, #2a7f62);
  text-decoration: underline;
}

.gift-breadcrumb__item[aria-current="page"] {
  color: #666;
}

/* ------------------------------------
   h1 ページ見出し（FV直下に視認可能な状態で配置）
------------------------------------ */
.gift-page-heading {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 0;
  text-align: center;
}

.gift-page-heading__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.gift-page-heading__sub {
  display: block;
  font-size: 15px;
  font-weight: 400;
  color: #777;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .gift-page-heading {
    padding: 28px 16px 0;
  }
  .gift-page-heading__title {
    font-size: 22px;
  }
  .gift-page-heading__sub {
    font-size: 13px;
  }
}

/* ------------------------------------
   要約ボックス（Answer First）
------------------------------------ */
.gift-summary {
  padding: 60px 20px;
  background: #f9f9f6;
}

.gift-summary__container {
  max-width: 900px;
  margin: 0 auto;
}

.gift-summary__heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}

.gift-summary__box {
  background: #fff;
  border-left: 4px solid var(--gift-primary);
  padding: 30px;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gift-summary__lead {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
  color: #333;
}

.gift-summary__desc {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}

.gift-summary__supervisor {
  font-size: 13px;
  color: #888;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

/* サマリーボックス アコーディオン（スマホ用） */
.gift-summary__details .gift-summary__desc {
  margin-top: 16px;
}

.gift-summary__toggle {
  font-size: 14px;
  color: var(--gift-primary);
  cursor: pointer;
  font-weight: 500;
  list-style: none;
  text-align: center;
  padding: 8px 0 0;
}

.gift-summary__toggle::-webkit-details-marker {
  display: none;
}

.gift-summary__toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.2s;
}

.gift-summary__details[open] .gift-summary__toggle::after {
  transform: rotate(180deg);
}

/* PC: summaryトグルを非表示（常にopen状態） */
@media (min-width: 761px) {
  .gift-summary__toggle {
    display: none;
  }
}

/* ------------------------------------
   比較テーブル（table要素版）
------------------------------------ */
.gift-deep-release__comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  font-size: 15px;
}

.gift-deep-release__comparison-table caption {
  text-align: left;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
}

.gift-deep-release__comparison-table thead th {
  background: var(--gift-primary);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
}

.gift-deep-release__comparison-table thead th:first-child {
  background: #555;
}

.gift-deep-release__comparison-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}

.gift-deep-release__comparison-table tbody td:first-child {
  font-weight: 600;
  background: #f5f5f5;
  text-align: left;
}

.gift-deep-release__comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

@media (max-width: 760px) {
  .gift-deep-release__comparison-table {
    font-size: 13px;
  }
  .gift-deep-release__comparison-table thead th,
  .gift-deep-release__comparison-table tbody td {
    padding: 10px 8px;
  }
}

/* ------------------------------------
   GIFTメソッド定義テキスト
------------------------------------ */
.gift-method__definition {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px 24px;
  background: #f0f7f4;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  text-align: center;
}

/* ------------------------------------
   信頼の実績（E-E-A-T）セクション
------------------------------------ */
.gift-trust {
  padding: 80px 20px;
  background: #f5f5f0;
}

.gift-trust__container {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-trust__numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.gift-trust__number-item {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.gift-trust__number-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--gift-primary);
  line-height: 1.2;
}

.gift-trust__number-unit {
  font-size: 14px;
  color: var(--gift-primary);
  font-weight: 600;
}

.gift-trust__number-label {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
}

/* 監修者プロフィール */
.gift-trust__supervisor {
  margin-top: 48px;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
}

.gift-trust__supervisor-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.gift-trust__supervisor-profile {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.gift-trust__supervisor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.gift-trust__supervisor-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gift-trust__supervisor-credential {
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  color: var(--gift-primary);
  margin-left: 8px;
}

.gift-trust__supervisor-role {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

.gift-trust__supervisor-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 760px) {
  .gift-trust__numbers {
    grid-template-columns: repeat(2, 1fr);
  }
  .gift-trust__number-value {
    font-size: 28px;
  }
  .gift-trust__supervisor-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ------------------------------------
   関連症状リンクセクション
------------------------------------ */
.gift-related {
  padding: 60px 20px;
  background: #fff;
}

.gift-related__container {
  max-width: 1000px;
  margin: 0 auto;
}

.gift-related__lead {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

.gift-related__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gift-related__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 16px;
  background: #f9f9f6;
  border: 1px solid #e0e0d8;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.gift-related__item:hover {
  background: var(--gift-primary);
  color: #fff;
  border-color: var(--gift-primary);
}

@media (max-width: 760px) {
  .gift-related__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ------------------------------------
   免責事項
------------------------------------ */
.gift-disclaimer {
  padding: 24px 20px;
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
}

.gift-disclaimer__container {
  max-width: 900px;
  margin: 0 auto;
}

.gift-disclaimer__text {
  font-size: 12px;
  line-height: 1.8;
  color: #888;
}

.gift-disclaimer__supervisor {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}
