@charset "utf-8";

/* ==========================================================================
   CSS カスタムプロパティ
   ========================================================================== */
:root {
  --orange:      #E8823A;
  --orange-light:#F4A96A;
  --yellowgreen: #d5e8b3;
  --pink:        #F28A9A;
  --pink-btn:    linear-gradient(90deg, #F4956A 0%, #EE7FA0 100%);
  --textbk:      #444;
  --text-mid:    #555;
  --wh:          #fff;
  --lightorange: #ffece3;
  --card-bg:     rgba(255, 255, 255, 0.92);
  --dot-color:   rgba(255, 255, 255, 0.7);
}
#contents {
    width: 100%;
    background: transparent !important;
    border: 0 !important;
}
#wrap2607 {
  color: var(--textbk);
}
#wrap2607 div:before {
    display: none;
}
@media (max-width: 768px) {
    .l-header {
        width: 100%
    }
}

/* ==========================================================================
   ユーティリティ
   ========================================================================== */
/* --- SP only 表示制御 --- */
.pcOnly { display: block !important;}
.spOnly { display: none !important;}
@media (max-width: 768px) {
  .pcOnly { display: none !important;}
  .spOnly { display: block !important;}
}
/* フェードイン */
.js-fadein {
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.js-fadein:not(.from-left):not(.from-right) { transform: translateY(30px); }
.js-fadein.from-left  { transform: translateX(-50px); }
.js-fadein.from-right { transform: translateX(50px);  }
.js-fadein.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* MV フェードアップ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   共通：アーチタイトル（.arch-title）
   ※ タイトルは画像のため、中央寄せのみ
   ========================================================================== */
.arch-title {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

/* h2 グローバルスタイルの打ち消し */
.arch-title__text {
  box-shadow: none !important;
  background-color: transparent !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  font-weight: inherit;
}

.arch-title__img {
/*
  height: clamp(27px, 4vw, 45px);
  width: auto;
*/
  display: block;
max-width: 480px;
    width: 100%;
    height: auto;
}
@media (max-width: 768px) {
.arch-title {
/*    margin-bottom: 10px;*/
}
}


/* ==========================================================================
   メインビジュアル（.mv）
   ========================================================================== */

.mv {
  position: relative;
  width: 100%;
}

.mv__bg,
.mv__triangle {
  position: absolute;
  top: 0;
  z-index: 0;
  object-fit: cover;
}

.mv__bg {
  left: 0;
  width: 100%;
  height: 100%;
}

.mv__triangle--left  { left: 0;  width: 15%; }
.mv__triangle--right { right: 0; width: 50%; }

.mv__catch {
  position: relative;
  max-width: 540px;
  margin: 0 auto 0.8em;
  padding: 0 !important;
  background: inherit !important;
  animation: fadeUp 0.7s ease both 0.1s;
}

.mv__catch img {
  width: 100%;
  margin: 0 auto;
}

.mv__bottom {
  display: flex;
  flex-direction: column;
}

/* ---------- PC：絶対配置＋vh固定 ---------- */
@media (min-width: 769px) {
  .mv {
    height: 100vh;
  }

  .mv__inner {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 55%;
    padding: 24px;
    box-sizing: border-box;
    z-index: 1;
  }
}

/* ---------- タブレット・SP：通常フローで高さ可変 ---------- */
@media (max-width: 768px) {
  img, .bx-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .mv {
    height: auto;
/*    padding: 40px 30px;*/
  }

  .mv__inner {
    position: relative;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }

  .mv__triangle--left  { width: 22%; }
  .mv__triangle--right { width: 70%; }

  .mv__bottom {
    flex-direction: column;
    gap: 16px;
  }

  .mv__catch {
    max-width: 25%;
    margin: 1em 2em 0 auto;
  }

  .mv__catch img {
    height: 100%;
  }
}

/* ---------- 480px以下：キャッチコピーのサイズだけ微調整 ---------- */
@media (max-width: 480px) {
  .mv__catch {
    max-width: 28%;
    margin: 0.6em 1.5em 0 auto;
  }
}

/* ==========================================================================
   サポートカード（.support-card）
   ========================================================================== */
.support-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  max-width: 620px;
  margin: 0 auto 1em;
  animation: fadeUp 0.7s ease both 0.28s;
}

/* --- エレメント --- */
.support-card__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.support-card__icon-block {
  display: flex;
  align-items: center;
  gap: 4px;
}
.support-card__icon-block img {
  width: clamp(44px, 5vw, 64px);
  height: clamp(44px, 5vw, 64px);
  object-fit: contain;
}

.support-card__label {
  font-size: clamp(13px, 1.1vw, 14px);
  color: var(--text-mid);
  text-align: left;
  line-height: 1.3;
  margin-left: 0.8em;
}

.support-card__plus {
  font-size: clamp(20px, 2.4vw, 32px);
  color: #ccc;
  font-weight: 300;
  line-height: 1;
  padding: 0 4px;
}

.support-card__text {
  font-size: clamp(16px, 1.4vw, 18px);
  font-weight: bold;
  color: var(--textbk);
  letter-spacing: 0.02em;
    text-align: center;
}
.support-card__text em {
  font-style: normal;
  color: var(--orange);
  font-weight: 700;
}

/* --- SP --- */
@media (max-width: 768px) {
  .support-card {
    width: 80%;
    margin: 0 auto 1.5em;
      padding: 20px;
  }
  .support-card__icon-block {
    flex-direction: row;
      gap: 10px;
  }
  .support-card__label {
    font-size: clamp(13px, 1.1vw, 14px);
    text-align: center;
    margin-left: 0;
  }
.support-card__text em {
    font-size: 1.65rem
    }
}
@media (max-width: 480px) {
    .support-card__icons {
        gap: 10px;
    }
    .support-card__icon-block {
        flex-direction: column;
        gap: 10px;
        width: 33%;
    }
}

/* ==========================================================================
   プレミアムセクション（.premium）
   ========================================================================== */
.premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeUp 0.7s ease both 0.44s;
}

/* --- エレメント --- */
.premium__label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-mid);
  font-size: clamp(11px, 1.1vw, 14px);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.premium__label::before,
.premium__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: #bbb;
}

.premium__title {
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--textbk);
  letter-spacing: 0.04em;
    margin: 0 0 0.2em;
}

.premium__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--pink-btn);
  color: var(--wh) !important;
  font-size: clamp(13px, 1.3vw, 15px);
/*  font-weight: 700;*/
  letter-spacing: 0.06em;
  padding: clamp(12px, 1.5vw, 16px) clamp(28px, 3.5vw, 44px);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(238, 127, 160, 0.38);
  transition: opacity 0.22s ease;
  cursor: pointer;
  border: none;
text-decoration: inherit !important;
}
.premium__btn:hover { opacity: 0.75; }

.premium__btn-arrow {
  font-size: 1.15em;
  line-height: 1;
}


/* ==========================================================================
   お悩みセクション（.worries）
   ========================================================================== */
.worries {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
  background: var(--wh);
}

/* --- エレメント --- */
.worries__inner {
  position: relative;
  margin: 0 auto;
  padding: 0 40px;
}

.worries__title {
  text-align: center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: bold;
  color: var(--textbk);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.6;
  /* グローバル h2 打ち消し */
  box-shadow: none !important;
  background-color: transparent !important;
  color: var(--textbk) !important;
  width: 100%;
  padding: 10px;
}

.worries__title-img {
  height: clamp(36px, 7vw, 100px);
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
  position: relative;
  top: -4px;
}

.worries__body {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 180px;
}

.worries__list {
  list-style: none;
/*  padding: 0 0 0 20%;*/
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 40%;
  position: relative;
  z-index: 1;
}

.worries__item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--textbk);
  letter-spacing: 0.03em;
}

.worries__check {
  width: clamp(24px, 3vw, 42px);
  height: auto;
  flex-shrink: 0;
}

.worries__illust {
  position: absolute;
  right: 117px;
  bottom: 150px;
  width: 20%;
  z-index: 2;
}
.worries__illust img {
  width: 100%;
  height: auto;
  display: block;
}

.worries__bg-triangle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.worries__bg-triangle img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .worries {
    padding: 5px 0 0;
  }
  .worries__inner {
    padding: 0 24px;
  }
  .worries__title {
    margin-bottom: 20px;
  }
  .worries__title-img {
    height: clamp(65px, 5vw, 38px);
  }
  .worries__body {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 150px;
  }
  .worries__list {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
    gap: 8px;
  }
  .worries__check {
    width: 28px;
  }
  .worries__illust {
    right: 0;
    bottom: auto;
    width: 36%;
    margin: 30px auto 0;
    align-self: center;
  }
}

/* --- SP --- */
@media (max-width: 480px) {
  .worries {
    padding: 10px 0 0;
  }
  .worries__inner {
    padding: 0 16px;
  }
  .worries__title {
    margin-bottom: 28px;
          padding: 0;
  }
  .worries__title-img {
    height: 50px;
  }
  .worries__body {
    padding-bottom: 50px;
  }
  .worries__list {
      width: 100%;
    padding-left: 0;
    gap: 5px;
  }
  .worries__item {
    gap: 14px;
  }
  .worries__check {
    width: 22px;
  }
  .worries__illust {
    position: relative;
    width: 45%;
    margin-right: 0;
    margin-top: -50px;
  }
.worries__illust img {
    width: 88%;
}
}


/* ==========================================================================
   解決セクション（.solution）
   ========================================================================== */
.solution {
  padding: 20px 0 0;
  background: var(--wh);
  overflow: hidden;
}

/* --- エレメント --- */
.solution__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.solution__body {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.solution__device {
  width: 55%;
  flex-shrink: 0;
}
.solution__device img {
  width: 85%;
  height: auto;
  display: block;
}

.solution__content {
  flex: 1;
}

.solution__callout {
  display: block;
  width: 100%;
  height: auto;
}
/* モディファイアで上下を区別（特別なスタイルが必要な場合のみ追加） */
.solution__callout--top {
    width: 30%;
    margin: 0 0 10px 0;
} 
.solution__callout--bottom {
    width: 30%;
    margin: 10px 0 0 0;
}

.solution__label {
  font-size: clamp(13px, 1.2vw, 15px);
  color: #666;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  padding: 2px 8px;
  background: var(--lightorange);
  display: inline-block;
}

.solution__premier {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.solution__premier span {
  font-size: clamp(16px, 2vw, 22px);
  color: var(--orange);
position: relative;
}
.solution__premier span .solution__premier-accentlines {
  position: absolute;
    top: -8px;
    left: -30px;
    width: 25px;
}
.solution__resolve {
  font-size: clamp(28px, 6vw, 80px);
  font-weight: 900;
  color: #8DC21F;
  letter-spacing: 0.02em;
  line-height: 1;
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.solution__exclaim {
  font-family: serif;
  display: inline-block;
  transform: rotate(5deg);
  transform-origin: bottom center;
  color: #8DC21F;
  margin-left: -18px;
}

.solution__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 10px;
}
.solution__arrow span {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid var(--orange);
  margin-bottom: 4px;
}

.solution__mechanism {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.solution__mechanism-text {
  display: inline-block;
/*  background: var(--orange);*/
    border-bottom: 2px solid var(--orange);
  color: var(--orange);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 20px;
/*  border-radius: 10px;*/
}

.solution__loop {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.solution__loop-bg {
  width: 87%;
  height: auto;
  display: block;
    margin: 0 auto;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .solution__body {
/*    flex-direction: column;*/
    flex-direction:row;
    gap: 5px;
  }
  .solution__device {
    width: 55%;
  }
  .solution__content {
/*    text-align: center;*/
    width: 40%;
  }
  .solution__resolve {
/*    justify-content: center;*/
  }
  .solution__exclaim {
    transform: rotate(14deg);
    margin-left: -6px;
  }
  .solution__arrow span {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--orange);
    margin-bottom: 5px;
  }
  .solution__mechanism {
    margin-bottom: 1px;
  }
  .solution__label {
/*      text-align: left;*/
    }
.solution__callout--top {
    width: 50%;
    margin: 0 0 10px 0;
}
.solution__callout--bottom {
    width: 50%;
    margin: 10px 0 0 0;
}
}

/* --- SP --- */
@media (max-width: 480px) {
  .solution__inner {
    padding: 0 16px;
  }
  .solution__loop-label {
    font-size: 15px;
  }
    .solution__body {
        flex-direction: column;
        gap: 5px;
    }
  .solution__device {
    width: 100%;
  }
.solution__device img {
    margin: 0 auto;
}

  .solution__content {
    width: 100%;
      text-align: center;
      margin-bottom: 16px;
  }
.solution__callout--top {
    display: none;
}
.solution__callout--bottom {
    display: none;
}
.solution__resolve {
    font-size: 46px;
    justify-content: center;
    gap: 1px;
}
}


/* ==========================================================================
   スキル定着（.skill）
   ========================================================================== */
.skill {
  padding: 30px 0 0;
  background: var(--wh);
  overflow: hidden;
}

/* --- エレメント --- */
.skill__inner {
  margin: 0 auto;
  padding: 0;
}

.skill__title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35%;
  margin: 0 auto 40px;
}

.skill__title-bg {
  width: clamp(300px, 55vw, 700px);
  height: auto;
  display: block;
}

/* 全幅スキル画像 */
.skill__img-wrap {
  width: 100%;
}
.skill__img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .skill__inner {
    padding: 0 0;
  }
  .skill__title-wrap {
    width: 45%;
  }
}

/* --- SP --- */
@media (max-width: 480px) {
  .skill__title-wrap {
    width: 90%;
  }
}


/* ==========================================================================
   featuresセクション（.features）
   ========================================================================== */
.features {
  padding: 40px 0 55px;
  position: relative;
  background-color: #f1f4e4;
  background-image: url(https://www.pc4353.net/images/premiere/grid_bg.png);
  background-position: 100% 0;
  background-repeat: repeat;
  background-size: calc(4.16327vw + 35.38776px) calc(4.16327vw + 35.38776px);
}

/* --- エレメント --- */
.features__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.features__item {
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 60px);
}

/* --- モディファイア --- */
.features__item--img-right {
  flex-direction: row-reverse;
}

/* --- エレメント（続き） --- */
.features__photo {
  flex-shrink: 0;
  width: 48%;
  position: relative;
}
/*
.features__photo::before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  background: var(--yellowgreen);
  border-radius: 16px;
  z-index: 0;
}
*/
#wrap2607 .features__photo::before {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  background: var(--yellowgreen);
  border-radius: 24px;
  z-index: 0;
  display: block; /* 明示的に上書き */
}
.features__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.features__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.features__balloon {
  display: inline-block;
  position: relative;
  background: var(--wh);
  border-radius: 10px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: bold;
  color: #555;
  padding: 4px 16px;
  letter-spacing: 0.06em;
  align-self: flex-start;
  box-shadow: 0 6px 0 var(--yellowgreen);
}
/* 吹き出し三角（影側・黄緑） */
.features__balloon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--yellowgreen);
}
/* 吹き出し三角（本体側・白） */
.features__balloon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--wh);
  z-index: 1;
}

/* グローバル h3 の打ち消し */
.features__heading {
  all: unset !important;
  display: block !important;
  margin: 0 0 10px !important;
}
.features__heading img {
  height: clamp(75px, 7vw, 88px);
  width: auto;
  max-width: 100%;
}

.features__lead {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
}

.features__body {
  font-size: clamp(13px, 1.2vw, 15px);
  color: #555;
  line-height: 1.8;
}
.features__body em {
  font-style: normal;
  font-weight: 700;
}

.features__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features__list li {
  font-size: clamp(13px, 1.2vw, 15px);
  color: #555;
  line-height: 1.8;
  padding-left: 1.4em;
  position: relative;
}
.features__list li::before {
  content: "\25CF";
  position: absolute;
  left: 0;
  color: #b5d98a;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .features {
    padding: 20px 0 50px;
  }
  .features__inner {
    padding: 0 20px;
    gap: 5px;
  }
  .features__item,
  .features__item--img-right {
/*    flex-direction: column;*/
/*      flex-direction: row;*/
  }   
  .features__photo {
    width: 40%;
  }
#wrap2607 .features__photo::before {
  bottom: -8px;
  right: -8px;
  border-radius: 22px;
}
  .features__content {
/*    margin-bottom: 20px;*/
  }
  .features__balloon {
    font-size: clamp(15px, 1.2vw, 18px);
    align-self: center;
  }
  .features__heading {
    margin: 0 auto !important;
  }
}

/* --- SP --- */
@media (max-width: 480px) {
  .features__inner {
    padding: 0 25px;
  }
.features__photo {
        width: 70%;
    }
  .features__photo::before {
    bottom: -8px;
    right: -8px;
  }
  .features__item,
  .features__item--img-right {
      flex-direction: column;
  }
}


/* ==========================================================================
   さらにセクション（.more）
   ========================================================================== */
.more {
  padding: 0 0 50px;
  position: relative;
  background-color: #e9efcb;
  background-image: url(https://www.pc4353.net/images/premiere/grid_bg.png);
  background-position: 100% 0;
  background-repeat: repeat;
  background-size: calc(4.16327vw + 35.38776px) calc(4.16327vw + 35.38776px);
}

/* --- エレメント --- */
.more__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px 0 36px;
}

.more__deco-plus {
  position: relative;
  width: clamp(45px, 5vw, 64px);
  height: auto;
  margin-top: -115px;
  display: inline-block;
}
.more__deco-plus img {
  width: 100%;
}

.more__deco-sarani {
  position: absolute;
  top: -22px;
  right: -60px;
  height: clamp(38px, 3.5vw, 44px);
  width: auto;
}

.more__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.more__box {
  background: var(--wh);
  border-radius: 20px;
  padding: clamp(20px, 5vw, 40px) clamp(18px, 5vw, 40px);
  display: flex;
  gap: 0;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.more__divider {
  flex-shrink: 0;
  width: 1px;
  background: #ddd;
  align-self: stretch;
  margin: 0 clamp(20px, 4vw, 50px);
}

.more__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.more__col-title {
  font-size: clamp(16px, 1.5vw, 22px) !important;
  font-weight: 700 !important;
  color: var(--textbk) !important;
  letter-spacing: 0.04em !important;
  text-align: center !important;
  margin-top: 6px !important;
  margin-bottom: 0 !important;
}

.more__balloon {
  display: inline-block;
  position: relative;
  background: #E9F1DB;
  border-radius: 10px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: bold;
  color: #555;
  padding: 4px 16px;
  letter-spacing: 0.06em;
  box-shadow: 0 6px 0 var(--yellowgreen);
  margin-bottom: 5px;
}
/* 吹き出し三角（影側・黄緑） */
.more__balloon::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid var(--yellowgreen);
}
/* 吹き出し三角（本体側・白） */
.more__balloon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 14px solid #E9F1DB;
  z-index: 1;
}

.more__dotline {
  display: block;
  width: 100%;
  height: 2px;
  background-image: radial-gradient(circle, #b5d98a 1.5px, transparent 1.5px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
}

.more__photo {
  width: 100%;
}
.more__photo img {
  width: 70%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.more__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.more__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--textbk);
  line-height: 1.7;
}

.more__check {
  width: clamp(18px, 2.2vw, 22px);
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.more__handwrite {
  margin-top: 8px;
  margin-bottom: 30px;
  text-align: center;
}
.more__handwrite img {
/*
  height: clamp(100px, 8vw, 130px);
  width: auto;
*/
    height: auto;
    width: 100%;
    max-width: 300px;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .more__inner {
    padding: 0 20px;
  }

}

/* --- SP --- */
@media (max-width: 480px) {
  .more__inner {
    padding: 0 12px;
  }
  .more__box {
    flex-direction: column;
    gap: 16px;
    padding: 10px 20px;
  }
  .more__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    background: #ddd;
    align-self: auto;
  }
  .more__col {
    width: 100%;
  }
}


/* ==========================================================================
   ボイスセクション（.voice）
   ========================================================================== */
.voice {
  position: relative;
  background: var(--wh);
  padding: 0 0 90px;
  overflow: hidden;
}

/* --- エレメント --- */
.voice__deco {
  position: absolute;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

/* --- モディファイア --- */
.voice__deco--tr {
  top: 0;
  right: 0;
  width: clamp(180px, 34vw, 400px);
}
.voice__deco--bl {
  bottom: 0;
  left: 0;
  width: clamp(140px, 25vw, 400px);
}

/* --- エレメント（続き） --- */
.voice__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
div.voice__inner:before {
    display: none;
}
div.voice__cards:before {
    display: none;
}
.voice__title-area {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.voice__logo {
/*
  height: clamp(60px, 20.5vw, 160px);
  width: auto;
*/
    max-width: 380px;
    height: auto;
}

.voice__sub {
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* カードグリッド：1行3枚 */
.voice__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: center;
}

/* gap 24px × 2 ÷ 3 = 16px を引く */
.voice__card {
  width: calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  position: relative;
}

.voice__card-deco {
  position: absolute;
  width: clamp(50px, 6vw, 80px);
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* --- モディファイア --- */
.voice__card-deco--tr { top: -10px;    right: -10px; }
.voice__card-deco--bl { bottom: -10px; left: -10px;  }

/* --- エレメント（続き） --- */
.voice__card-img-wrap {
  position: relative;
}

.voice__card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: 1;
}

.voice__card-body {
  background: #fff5ef;
  padding: clamp(16px, 2vw, 20px);
  border-radius: 0 0 12px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.voice__card-meta {
  font-size: clamp(13px, 1.1vw, 13px);
  color: #888;
  letter-spacing: 0.04em;
}

.voice__card-text {
  font-size: clamp(13px, 1.2vw, 15px);
  color: var(--textbk);
  line-height: 1.8;
}
.voice__card-text em {
  font-style: normal;
  color: #F4956A;
  font-weight: 700;
}

/* --- タブレット：2列 --- */
@media (max-width: 768px) {
  .voice {
    padding: 30px 20px;
  }
  .voice__inner {
    padding: 0 20px;
  }
.voice__title-area {
    margin-bottom: 30px;
    gap: 0px;
}
  .voice__cards {
    margin-bottom: 20px;
  }
 
  .voice__card {
    width: calc(50% - 12px);
  }
}

/* --- SP：1列 --- */
@media (max-width: 480px) {
  .voice {
    padding: 0 20px 50px;
  }
  .voice__inner {
    padding: 0 0 20px;
  }
  .voice__cards {
    gap: 40px 0;
  }
  .voice__card {
    width: 96%;
    flex-direction: row;
  }
    .voice__card-img-wrap {
        width: 38%;
        height: auto;
        overflow: hidden;
    }
.voice__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 0 0 12px;
}
    .voice__card-body {
    width: 30%;
    height: auto;
    border-radius: 0 12px 12px 0;
    }
}


/* ==========================================================================
   CTAセクション（.cta）
   ========================================================================== */
.cta {
  position: relative;
  padding: 100px 40px;
  overflow: hidden;
  background: #fff5f0;
margin-bottom: -30px;
}

/* --- エレメント --- */
.cta__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* --- モディファイア --- */
.cta__shape--1 {
  width: clamp(300px, 40vw, 560px);
  height: clamp(300px, 40vw, 560px);
  background: radial-gradient(circle, #FBBF8A, #F9A8C9);
  top: -100px;
  right: -80px;
}
.cta__shape--2 {
  width: clamp(240px, 32vw, 440px);
  height: clamp(240px, 32vw, 440px);
  background: radial-gradient(circle, #FAD4C0, #FDE8C8);
  bottom: -80px;
  left: -60px;
}
.cta__shape--3 {
  width: clamp(200px, 26vw, 360px);
  height: clamp(200px, 26vw, 360px);
  background: radial-gradient(circle, #F9C5D1, #FBBF8A);
  top: 30%;
  left: 30%;
  opacity: 0.3;
}

/* --- エレメント（続き） --- */
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.cta__box {
  position: relative;
  background: var(--wh);
  border-radius: 20px;
  padding: clamp(20px, 6vw, 24px) clamp(28px, 6vw, 32px);
  overflow: hidden;
  box-shadow: 0 0 25px -18px #5c4637;
}

.cta__box-deco {
  position: absolute;
  width: clamp(100px, 30vw, 225px);
  height: auto;
  pointer-events: none;
}

/* --- モディファイア --- */
.cta__box-deco--tl { top: 0em; left: 2em;  }
.cta__box-deco--tr { top: 0em; right: 2em; }

/* --- エレメント（続き） --- */
.cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.cta__title {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 700;
  color: var(--textbk);
  letter-spacing: 0.04em;
  line-height: 1.6;
  /* グローバル h2 打ち消し */
  box-shadow: none !important;
  background-color: transparent !important;
  color: var(--textbk) !important;
}
.cta__title em {
  font-style: normal;
  color: #F4956A;
}

.cta__text {
  font-size: clamp(13px, 1.3vw, 16px);
  color: #444;
  letter-spacing: 0.04em;
}

.cta__btns {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
width: 100%;
}
div.cta__btns:before {
    display: none;
}
.cta__btn {
  display: flex;
  align-items: center;
  gap: 16px;
/*  width: clamp(240px, 30vw, 360px);*/
  padding: clamp(14px, 2vw, 20px) clamp(20px, 2.5vw, 28px);
  border-radius: 14px;
  text-decoration: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
    width: 40%;
    margin: 0 auto;
}
.cta__btn:hover {
  opacity: 0.82;
  transform: translateY(-2px);
}

/* --- モディファイア --- */
.cta__btn--white {
  background: var(--wh);
  border: 2px solid #eee;
  color: var(--textbk) !important;
  text-decoration: none !important;
transition: 0.2s;
}
.cta__btn--white:hover {
  background: #fcdfc7;
  
}
.cta__btn--orange {
  background: linear-gradient(90deg, #F4956A 0%, #EE7FA0 100%);
  color: var(--wh) !important;
    text-decoration: none !important;
}
.cta__btn--orange:visited {
  color: var(--wh);
}

/* --- エレメント（続き） --- */
.cta__btn-icon {
  flex-shrink: 0;
  width: clamp(36px, 4vw, 50px);
  height: clamp(36px, 4vw, 50px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta__btn--white  .cta__btn-icon { background: #FDF4EE; }
.cta__btn--orange .cta__btn-icon { background: rgba(255, 255, 255, 0.25); }
.cta__btn-icon img {
  width: 100%;
  height: auto;
}

.cta__btn-texts {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  flex: 1;
  color: #333;
}

.cta__btn-sub {
  font-size: clamp(13px, 1vw, 13px);
  opacity: 0.75;
  letter-spacing: 0.04em;
}

.cta__btn-main {
  font-size: clamp(24px, 2.8vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--orange);
}

/* --- モディファイア --- */
.cta__btn-main--white {
  color: var(--wh) !important;
}

/* --- エレメント（続き） --- */
.cta__btn-arrow {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 300;
  opacity: 0.6;
  flex-shrink: 0;
}

/* --- タブレット --- */
@media (max-width: 768px) {
  .cta {
    padding: 60px 20px;
      margin-bottom: -30px;
  }
  .cta__box {
    padding: clamp(40px, 6vw, 70px) clamp(30px, 6vw, 80px);
  }
  .cta__box-deco {
    width: clamp(110px, 20vw, 225px);
  }
  .cta__box-deco--tl { top: 0; left: 3em;  }
  .cta__box-deco--tr { top: 0; right: 3em; }
  .cta__content {
    margin-bottom: 50px;
  }
  .cta__btn {
    width: 100%;
    max-width: 360px;
  }
}

/* --- SP --- */
@media (max-width: 480px) {
  .cta {
    padding: 50px 16px;
  }
  .cta__box {
    padding: 40px 20px;
  }
  .cta__content {
    margin-bottom: 5px;
  }
.cta__btns {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
/*    margin-bottom: 40px;*/
}
  .cta__box-deco--tl { top: -25px; left: 0.5em;  }
  .cta__box-deco--tr { top: -25px; right: 0.5em; }
}


/* ==========================================================================
   共通：セクションコンテナ（.sec-container）
   ========================================================================== */
.sec-container {
  padding: 100px 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}


/* ==========================================================================
   ブランド紹介（.brand）
   ========================================================================== */
.brand {
  background-color: var(--wh);
  background-image:
    linear-gradient(#F0F7FF 1px, transparent 2px),
    linear-gradient(90deg, #F0F7FF 1px, transparent 2px);
  background-size: 20px 20px;
  padding: 50px 15px 100px;
}

/* --- モディファイア --- */
.brand--other {
  background-color: #f8fdff;
  background-image: none;
  padding: 50px 15px 100px;
  margin-bottom: 20px;/* ★フッターにかぶらないように余白を調整しています */
}

/* --- エレメント --- */
.brand__title {
  font-size: 1.875rem;
  font-weight: 800;
  color: #2255A4;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
  text-align: center;
  width: auto;
  /* グローバル h2 打ち消し */
  box-shadow: none !important;
  background-color: transparent !important;
  color: #2255A4 !important;
  padding: 10px;
}

.brand--other .brand__title {
    font-size: 1.8rem;
  line-height: 1.2;
}
.brand--other .brand__title::before {
    top: -60px;
    left: -90px;
    width: 160px;
    height: 160px;
  }
.brand--other .brand__title::after {
    top: -45px;
    right: -90px;
    width: 120px;
    height: 120px;
  }
.brand--other .brand__title-sub {
  font-size: 1.3rem;
}

.brand__desc {
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.brand__notice {
  margin-bottom: 30px;
}

.brand__lineup {
  width: 100%;
    max-width: 1000px;
/*  display: flex;*/
/*  flex-direction: column;*/
    display: grid;
    grid-template-columns: repeat(2, 1fr);
flex-direction: row;
 gap: 30px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
    justify-content: flex-start;
}
.brand dl:before {
    display: none;
}
.brand__lineup .brand__item {
  display: block;
/*  width: 45%;*/
/*  margin: 0 auto 24px;*/
  text-decoration: none;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.brand__lineup dt,
.brand__lineup dd {
  margin: 0;
  padding: 0;
}

.brand__item-desc {
  font-weight: 600;
  text-align: center;
  color: #2255A4;
    font-size: 1.2rem !important;
    margin-bottom: 0.4rem !important;
        font-size: 1.375rem;
}
.brand__item-desc a {
    text-decoration: none !important;
}
.brand__lineup a:link, .brand__lineup a:visited {
    color: #222d82;
    text-decoration: none !important;
}

.brand__item-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand__item-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
    border-radius: 12px;
}
.brand__item:hover .brand__item-img {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(34, 85, 164, 0.15);
}
.brand__item:hover .brand__item-img img {
  filter: brightness(1.05);
  transition: filter 0.3s ease;
}

/* 紙吹雪アニメーション */
.brand__title::before,
.brand__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.8s;
}
.brand__title::before {
  background-image: url('https://www.pc4353.net/images/premiere/confetti_0.png');
  top: -60px;
  left: -90px;
  transform: translateY(20px) scale(0.8);
  width: 140px;
  height: 140px;
}
.brand__title::after {
  background-image: url('https://www.pc4353.net/images/premiere/confetti_1.png');
  top: -45px;
  right: -90px;
  transform: translateY(20px) scale(0.8);
  width: 100px;
  height: 100px;
}
.brand__title.is-visible::before,
.brand__title.is-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.brand__title.is-visible::before {
  animation: floating-confetti-l 4s ease-in-out infinite alternate 1.3s;
}
.brand__title.is-visible::after {
  animation: floating-confetti-r 4s ease-in-out infinite alternate 1.5s;
}
@keyframes floating-confetti-l {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-5px, -10px) rotate(-5deg); }
}
@keyframes floating-confetti-r {
  0%   { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(5px, -10px) rotate(5deg); }
}

/* --- SP --- */
@media (max-width: 786px) {
.brand__item-desc {
    font-size: 1rem !important;
    }
.brand {
    padding: 50px 24px 50px;
    /*margin-bottom: -20px;*//* ★フッターにかぶらないように余白を調整しています */
}
.brand__notice {
    margin-bottom: 30px;
    font-size: 0.8rem;
    line-height: 1.4;
}
    .brand__lineup {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 480px) {

    .brand__lineup .brand__item {
/*    width: 70%;*/
    }
/*
    .brand__lineup {
        grid-template-columns: repeat(1fr);
    }
*/
}