@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1rem 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ========================================
   NACS 共通スタイルシート
   作成日: 2025-08-26
   説明: すべてのページで使用される共通スタイル
   ======================================== */
/* ========================================
   CSS変数定義
   ======================================== */
:root {
  /* カラーパレット */
  --primary-color: #006b9f;
  --primary-hover: #004d73;
  --secondary-color: #f0f8ff;
  --danger-color: #dd0000;
  --warning-color: #b72726;
  --background-main: #daf1ff;
  --background-body: #f5e6d3;
  --background-white: #ffffff;
  --background-cream: #fcf8ec;
  --text-primary: #344147;
  --text-secondary: #006b9f;
  --text-white: #ffffff;
  --text-link: #0000ee;
  --border-gray: #d9d9d9;
  --shadow-light: rgba(41, 64, 75, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.2);
  /* フォント */
  --font-main: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  /* サイズ */
  --max-width: 375px;
  --header-height: 72px;
  /* スペーシング */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 40px;
  /* ボーダー半径 */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-full: 50%;
  --radius-button: 28px;
  /* トランジション */
  --transition-default: all 0.3s ease;
}

/* ========================================
   リセット・基本設定
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  background: #daf1ff; /* ページ全体の背景色 */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

body {
  font-family: var(--font-main);
  display: flex;
  flex-direction: column;
  width: 375px;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
}

/* フォーカスインジケーター（アクセシビリティ） */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* スキップリンク（アクセシビリティ） */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--text-white);
  padding: var(--spacing-sm);
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

a {
  color: var(--text-link);
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 1px solid var(--border-gray);
  margin: var(--spacing-md) 0;
}

/* ========================================
   共通レイアウトコンポーネント
   ======================================== */
/* ボディラッパー */
/* .body-wrapper {
    width: 375px !important;
    max-width: 375px !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
} */
/* ========================================
   メインコンテンツ
   ======================================== */
.main-content {
  flex: 1;
  background-image: url("../images/bg.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 12px 80px;
  color: var(--text-primary);
}

.container {
  padding: 0 12px 80px;
  color: var(--text-primary);
}

/* 白背景 */
.content-wrapper {
  background-color: #fff;
  padding: 0 10px;
  margin-top: 32px;
}

/* ========================================
   共通UIコンポーネント
   ======================================== */
/* ボタン */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-button);
  cursor: pointer;
  transition: var(--transition-default);
  text-decoration: none;
}

.button-primary {
  background: var(--background-white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button-primary:hover {
  background: var(--secondary-color);
}

.button-danger {
  background: var(--primary-color);
  color: var(--text-white);
}

.button-danger:hover {
  background: var(--primary-hover);
}

/* 次へボタン */
.next-button {
  width: 200px;
  height: 56px;
  background: var(--background-white);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-button);
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  cursor: pointer;
  transition: var(--transition-default);
  margin: var(--spacing-xxl) auto;
}

.next-button:hover,
.next-button:focus {
  background: var(--secondary-color);
}

/* アイコン */
.arrow-icon {
  width: 20px;
  height: 20px;
}

/* ========================================
   ポイントボックス（警告・情報）
   ======================================== */
.point-box {
  background: var(--background-white);
  border: 2px solid var(--danger-color);
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 8px var(--shadow-dark);
  padding: var(--spacing-sm) var(--spacing-md);
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

.point-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  top: -12px;
  left: 20px;
  background: var(--danger-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-weight: bold;
  font-size: 14px;
}

.point-icon::after {
  content: "!";
}

.point-text {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
}

/* ========================================
   説明セクション
   ======================================== */
.instruction-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-md);
  margin: 32px 0;
}
.instruction-section .click-icon-small {
  width: 32px;
  height: auto;
}
.instruction-section .instruction-text {
  font-weight: 500;
}

/* ========================================
   タイトル
   ======================================== */
.page-title {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 700;
  text-align: center;
  padding: 24px 0;
}

.subtitle {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 24px 0 16px;
}

/* ========================================
   情報セクション（共通）
   ======================================== */
.info-section {
  padding: 0;
  margin-bottom: 24px;
}
.info-section h2 {
  margin-bottom: 4px;
  color: var(--primary-color);
}
.info-section p {
  font-size: 14px;
}

.info-row {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}
.info-row .info-label {
  width: 120px;
  font-size: 12px;
}
.info-row .info-value {
  flex: 1;
  font-size: 12px;
}

.info-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  min-width: 100px;
}

.info-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 400;
  line-height: 1.5;
}

/* ========================================
   アニメーション
   ======================================== */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* パルスアニメーション適用クラス */
.pulse-animation {
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}

/* ========================================
   ユーティリティクラス
   ======================================== */
/* 表示・非表示 */
.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

/* テキスト装飾 */
.underline {
  text-decoration: underline;
}

.underline-red {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--danger-color);
          text-decoration-color: var(--danger-color);
  text-decoration-thickness: 2px;
}

/* スペーシング */
.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.mt-5 {
  margin-top: var(--spacing-xl);
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

/* テキスト配置 */
.text-center {
  text-align: center;
}

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

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

/* ========================================
   アクセシビリティ向上
   ======================================== */
/* スクリーンリーダー専用 */
.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;
}

/* フォーカス可視化の改善 */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
  :root {
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-dark: rgba(0, 0, 0, 0.5);
  }
}
/* ダークモード対応（将来の拡張用） */
@media (prefers-color-scheme: dark) {
  /* ダークモードのスタイルを追加可能 */
}
/* 動きの低減設定対応 */
@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ========================================
   ユーティリティCSS - インラインスタイル置き換え用
   作成日: 2025-08-26
   ======================================== */
/* ========================================
   ポジション関連のクラス
   ======================================== */
/* ========================================
   マージン調整用
   ======================================== */
.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.pt-16 {
  padding-top: 16px;
}

/* ========================================
   表示制御
   ======================================== */
.initially-hidden {
  display: none;
}

.initially-visible {
  display: block;
}

/* JavaScript で制御される要素用 */
.js-hidden {
  display: none !important;
}

.js-visible {
  display: block !important;
}

.fw-bold {
  font-weight: bold;
}

/* ========================================
   375px幅固定用スタイルシート
   作成日: 2025-08-26
   説明: 全要素を375px幅に制限するための追加スタイル
   ======================================== */
/* ========================================
   グローバル制限
   ======================================== */
/* 画像とメディア要素の制限 */
/* ========================================
   主要コンテナの幅固定
   ======================================== */
/* レビューセクション */
.review-section {
  width: 375px !important;
  max-width: 375px !important;
  margin: 0 auto;
}

/* コンテンツエリア */
.content-area {
  width: 351px !important;
  max-width: 351px !important;
  margin: 0 auto;
}

/* ポイントボックス */
.point-box {
  max-width: 330px !important;
}

/* 警告ボックス */
.warning-box,
.warning-box-red {
  width: 351px !important;
  max-width: 351px !important;
}

/* フォーム要素 */
.form-area,
.form-section {
  width: 100% !important;
  max-width: 375px !important;
}

/* テーブルとリスト */
table {
  width: 100% !important;
  max-width: 375px !important;
  table-layout: fixed;
}

/* ========================================
   絶対配置要素の制限
   ======================================== */
/* 絶対配置要素も375px内に収める */
[style*="position: absolute"],
[style*="position: fixed"] {
  max-width: 375px !important;
}

/* ポップアップとモーダル */
.popup,
.modal,
[role=dialog] {
  max-width: 350px !important;
}

/* ========================================
   レスポンシブ無効化
   ======================================== */
/* 画面サイズに関係なく375px固定 */
@media screen and (min-width: 376px) {
  html {
    background: #daf1ff; /* 周囲の背景色 */
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  body {
    width: 375px !important;
    max-width: 375px !important;
    margin: 0 !important;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  }
  /* スティッキーヘッダーの中央固定 */
  .header {
    position: -webkit-sticky !important;
    position: sticky !important;
    width: 375px !important;
    margin: 0 !important;
    left: auto !important;
    right: auto !important;
  }
  /* 絶対位置要素の制限 */
  [style*="position: absolute"],
[style*="position: fixed"] {
    max-width: 375px !important;
  }
}
/* タブレット・PC表示でも375px維持 */
@media screen and (min-width: 768px) {
  html {
    background: #daf1ff;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  body {
    width: 375px !important;
    max-width: 375px !important;
    margin: 0 !important;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  }
}
/* ========================================
   スクロールバー調整
   ======================================== */
/* 横スクロール完全無効化 */
html,
body {
  overflow-x: hidden !important;
}

/* コンテナ内の横スクロールも無効化 */
.main-content,
.body-wrapper,
.content-area {
  overflow-x: hidden !important;
}

/* ========================================
   エラー防止
   ======================================== */
/* 幅指定が100vwや100%の要素を修正 */
[style*="width: 100vw"],
[style*="width:100vw"] {
  width: 375px !important;
}

[style*="min-width: 100vw"],
[style*="min-width:100vw"] {
  min-width: 375px !important;
}

/* フルスクリーン要素も制限 */
.fullscreen,
.full-width {
  width: 375px !important;
  max-width: 375px !important;
}

.l-header {
  background: var(--background-white);
  box-shadow: 0px 2px 3px var(--shadow-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  margin: 0;
}
.l-header__inner {
  width: 100%;
  padding: 0 13px;
}
.l-header__text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

.l-footer {
  background: #006b9f;
  padding: 24px 0;
  text-align: center;
}
.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.l-footer__logo {
  width: 100px;
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__info {
  width: 100%;
}
.l-footer__text {
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.3px;
}

.p-fukidashi {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.p-fukidashi__wrap {
  padding: 16px 0;
}
.p-fukidashi__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.p-fukidashi__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-fukidashi__message {
  position: relative;
  flex: 1;
  background-color: var(--background-white);
  padding: 8px 16px;
  border-radius: 4px;
}
.p-fukidashi__message::after {
  content: "";
  position: absolute;
  left: -13px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 14px solid #fff;
  border-left: 0;
}
.p-fukidashi__text--bold {
  font-weight: bold;
}

.p-fukidashi--delayed {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease forwards;
          animation: fadeIn 0.8s ease forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.result-section--delayed {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease forwards;
          animation: fadeIn 0.8s ease forwards;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.p-chatBubble {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  gap: 20px;
  -webkit-animation: slideIn 0.3s ease-out;
          animation: slideIn 0.3s ease-out;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  /* ユーザーメッセージ用 */
}
.p-chatBubble.bot {
  flex-direction: row;
  align-items: flex-end;
}
.p-chatBubble.bot .message-content {
  position: relative;
  display: inline-block;
  background: #9ecf94;
  border-radius: 10px;
  padding: 8px 16px;
}
.p-chatBubble.bot .message-content::after {
  content: "";
  position: absolute;
  left: -13px;
  bottom: 14px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 14px solid #9ecf94;
  border-left: 0;
}
.p-chatBubble.bot .message-content img {
  width: 100%;
  margin-top: 8px;
}
.p-chatBubble.bot .message-content .message-text {
  position: static;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
}
.p-chatBubble.user {
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.p-chatBubble.user .message-content {
  position: relative;
  display: inline-block;
  max-width: 75%;
  margin-left: 0;
  margin-right: 8px;
  background: #e8e8e8;
  border-radius: 10px;
  padding: 8px 16px;
}
.p-chatBubble.user .message-content::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 8px;
  border-color: transparent transparent transparent #e8e8e8;
}
.p-chatBubble.user .message-text {
  position: static;
  color: #344147;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  word-wrap: break-word;
  word-break: keep-all;
  text-align: left;
}
.p-chatBubble.user .avatar {
  display: none;
}
.p-chatBubble .avatar {
  width: 40px;
  height: 40px;
  background: #d9d9d9;
  border-radius: 50%;
  flex-shrink: 0;
  background: url("../images/operator.png");
  background-size: cover;
}

@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 戻るボタン */
.c-buttonBack {
  text-align: center;
  padding: 56px 0 48px;
}
.c-buttonBack__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
  width: 200px;
  font-size: 16px;
  background: var(--background-white);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-default);
  cursor: pointer;
}
.c-buttonBack__link:hover {
  background: var(--primary-color);
  color: var(--background-white);
}
.c-buttonBack__link:hover img {
  filter: brightness(0) invert(1);
}
.c-buttonBack__link img {
  width: 20px !important;
  height: 20px;
}

/* 同意チェックボックス */
.c-checkbox {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.c-checkbox__label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
}
.c-checkbox__label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.c-checkbox__label input:checked ~ .checkmark {
  background-color: #006b9f;
  border-color: #006b9f;
}
.c-checkbox__label input:checked ~ .checkmark::after {
  display: block;
}
.c-checkbox__label .checkmark {
  display: block;
  height: 16px;
  width: 16px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
}
.c-checkbox__label .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-checkbox__text {
  font-size: 12px;
  color: #344147;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.pg-top {
  /* タイトル画像セクション */
  /* 説明セクション */
  /* CTAボタンセクション */
  /* 注意事項 */
}
.pg-top .title-section {
  width: 100%;
  text-align: center;
  margin: 32px auto 8px;
}
.pg-top .title-section .title-image {
  max-width: 100%;
}
.pg-top .description-section {
  text-align: center;
  width: 100%;
}
.pg-top .description-section .course-name-image {
  width: 350px;
  height: auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.pg-top .description-section .description-text {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  font-weight: bold;
}
.pg-top .cta-section {
  width: 100%;
  margin-top: 32px;
}
.pg-top .cta-section .cta-button {
  background: linear-gradient(to bottom, #006b9f 0%, #006b9f 70%, #00557f 100%);
  color: var(--text-white);
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 16px;
  box-shadow: 0 4px 10px rgba(0, 107, 159, 0.2);
}
.pg-top .cta-section .cta-button:hover {
  background: var(--primary-hover);
}
.pg-top .cta-section .button-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  flex: 1;
  font-weight: 500;
}
.pg-top .cta-section .button-arrow {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-top .notice-section {
  text-align: center;
  margin-top: 32px;
  font-weight: bold;
  line-height: 1.5;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.title-section,
.description-section,
.cta-section,
.notice-section {
  -webkit-animation: fadeIn 0.8s ease-out;
          animation: fadeIn 0.8s ease-out;
}

.description-section {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.cta-section {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.notice-section {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.pg-notes {
  /* 注意事項リスト */
}
.pg-notes .notes-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pg-notes .notes-list .note-item {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.pg-notes .notes-list .note-number {
  color: #006b9f;
  font-size: 16px;
  min-width: 20px;
}

.pg-banner {
  /* キャラクターセクション */
}
.pg-banner .character-image {
  width: 200px;
  margin: 32px auto 16px;
}
.pg-banner .character-image .sumire-img {
  width: 100%;
}
.pg-banner .banner-img {
  width: 100%;
  margin-top: 16px;
  transition: var(--transition-default);
}
.pg-banner .banner-img:hover {
  transform: scale(1.02);
}

.pg-lp {
  background-color: var(--background-white);
  font-family: "Noto Serif JP", serif;
  /* ヒーローセクション */
  /* 商品名セクション */
  /* グラデーションラッパー */
  /* 悩み解決セクション */
  /* ビフォーアフター */
  /* キャッチコピー */
  /* ランキングセクション */
  /* 嬉しいお声セクション */
  /* 商品紹介部分 */
  /* 使用方法セクション */
  /* 申し訳ありませんセクション */
  /* 注文殺到セクション */
  /* 今だけセクション */
  /* クーポン〜チャンスラッパー */
  /* ビフォーアフター2 */
  /* フッター商品 */
  /* 商品名3セクション */
  /* 価格セクション */
  /* 申し込みボタン */
}
.pg-lp .hero-section {
  position: relative;
  height: 500px;
}
.pg-lp .hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 375px;
  height: 500px;
}
.pg-lp .hero-section .hero-bg-image {
  width: 375px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pg-lp .hero-section .hero-product {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%) rotate(7.755deg);
}
.pg-lp .hero-section .hero-product-image {
  width: 300px;
  height: 420px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .product-name {
  text-align: center;
  margin: 48px auto;
}
.pg-lp .product-name-image {
  width: 350px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .gradient-wrapper {
  background: linear-gradient(to bottom, #ffffff 0%, #cee4f1 100%);
}
.pg-lp .problem-solution {
  text-align: center;
  margin: 0 auto;
}
.pg-lp .problem-solution .problem-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.pg-lp .problem-solution .solution-text {
  font-size: 18px;
  color: #4c1e1e;
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.pg-lp .problem-solution .solution-text .highlight-you {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.pg-lp .problem-solution .solution-text .highlight-you::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  width: 98px;
  height: 5px;
  background: #ffff00;
  margin: 0 auto;
  z-index: 0;
}
.pg-lp .before-after {
  padding: 32px 0;
  text-align: center;
}
.pg-lp .before-after img {
  width: 284px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .catchcopy {
  padding-bottom: 48px;
  text-align: center;
  color: #4c1e1e;
}
.pg-lp .catchcopy .small-text {
  font-size: 16px;
  margin-bottom: 10px;
}
.pg-lp .catchcopy .success-box {
  background: var(--background-white);
  border: 1px solid #aad5ee;
  box-shadow: 4px 4px 0px #aad5ee;
  padding: 4px 10px;
  display: inline-block;
}
.pg-lp .catchcopy .success-box p {
  font-size: 24px;
  font-weight: 500;
}
.pg-lp .ranking {
  background: linear-gradient(to bottom, rgba(255, 253, 221, 0.7019607843) 0%, rgba(255, 255, 255, 0.7019607843) 100%);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
}
.pg-lp .ranking .leaf-left,
.pg-lp .ranking .leaf-right {
  position: absolute;
  width: 25px;
  height: 75px;
  top: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .ranking .leaf-left {
  left: 27px;
}
.pg-lp .ranking .leaf-right {
  right: 26px;
}
.pg-lp .ranking .ranking-title {
  font-size: 20px;
  color: #4c1e1e;
  margin-bottom: 48px;
}
.pg-lp .ranking .ranking-images {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}
.pg-lp .ranking .ranking-images img {
  width: 150px;
  height: 139px;
}
.pg-lp .ranking .warning-text {
  color: #dd0000;
}
.pg-lp .testimonials {
  height: 250px;
  background: url("../images/bg-letter.jpg") center/cover no-repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-lp .testimonials-box {
  background: var(--background-white);
  border: 1px solid #aad5ee;
  box-shadow: 4px 4px 0px #aad5ee;
  padding: 15px 30px;
}
.pg-lp .testimonials-box p {
  font-size: 24px;
  color: #4c1e1e;
  font-weight: 500;
  line-height: 1.3;
}
.pg-lp .product-intro {
  background: #daf1ff;
  padding: 16px 0 0;
}
.pg-lp .product-intro-inner {
  width: 330px;
  background: #ffffff;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
}
.pg-lp .product-intro-inner .product-image-small {
  width: 100px;
  height: 149px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .product-intro-inner .product-name-image2 {
  width: 175px;
  height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .how-to-use {
  background: #ffffff;
  /* 使用方法ヘッダーコンテナ */
  /* ステップコンテナ */
}
.pg-lp .how-to-use-header-container {
  background: #daf1ff;
}
.pg-lp .how-to-use-header {
  background: #006b9f;
  color: #ffffff;
  padding: 8px 0;
  text-align: center;
  width: 330px;
  margin: 0 auto;
}
.pg-lp .how-to-use-header .header-small {
  font-size: 12px;
  margin-bottom: 5px;
}
.pg-lp .how-to-use-header h2 {
  font-size: 24px;
  font-weight: 500;
}
.pg-lp .how-to-use .steps-container {
  background: #daf1ff;
  padding-bottom: 16px;
}
.pg-lp .how-to-use .steps-container .steps-inner {
  width: 330px;
  background: var(--background-white);
  margin: 0 auto 8px;
  box-sizing: border-box;
}
.pg-lp .how-to-use .steps-container .steps-inner .step {
  padding: 16px 0;
  text-align: center;
}
.pg-lp .how-to-use .steps-container .steps-inner .step .step-number-image {
  width: 104px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}
.pg-lp .how-to-use .steps-container .steps-inner .step .step-woman {
  width: 200px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .how-to-use .steps-container .steps-inner .step .step-text {
  font-size: 15px;
  color: #4c1e1e;
}
.pg-lp .apology {
  width: 350px;
  margin: 48px auto;
  text-align: center;
}
.pg-lp .apology h2 {
  font-size: 32px;
  font-weight: 500;
  color: #4c1e1e;
  margin-bottom: 6px;
}
.pg-lp .apology .fukidashi-image {
  width: 100%;
}
.pg-lp .apology-message {
  margin: 8px auto 16px;
}
.pg-lp .apology-message p {
  background: #006b9f;
  padding: 5px;
  display: inline-block;
}
.pg-lp .apology-message .white-text {
  color: #ffffff;
  font-size: 14px;
}
.pg-lp .apology-message .yellow-text {
  color: #fffcbe;
  font-size: 18px;
}
.pg-lp .apology-message .large {
  font-size: 18px;
  margin-top: -1px;
}
.pg-lp .apology .stock-warning-text {
  color: #006b9f;
  font-weight: bold;
}
.pg-lp .apology .stock-warning {
  background: #ffff00;
  padding: 0 16px;
  display: inline-block;
  margin: 4px auto 24px;
}
.pg-lp .apology .stock-warning p {
  font-size: 20px;
  color: #4c1e1e;
  font-weight: bold;
}
.pg-lp .apology .stock-warning p .red-number {
  font-size: 32px;
  color: #dd0000;
}
.pg-lp .apology .stock-warning p .red-text {
  color: #dd0000;
}
.pg-lp .apology img {
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100px;
}
.pg-lp .order-rush {
  width: 350px;
  background: #fff4f4;
  padding: 33px 10px 24px;
  text-align: center;
  position: relative;
  margin: 73px auto 48px;
}
.pg-lp .order-rush .attention-icon {
  width: 50px;
  height: 50px;
  background: var(--danger-color);
  color: var(--background-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.pg-lp .order-rush h3 {
  color: var(--danger-color);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: bold;
}
.pg-lp .order-rush .order-rush-text {
  font-size: 14px;
  color: #4c1e1e;
  text-align: left;
}
.pg-lp .order-rush .order-rush-text .red-text {
  color: var(--danger-color);
}
.pg-lp .limited-time {
  background: #006b9f;
  padding: 16px 0;
  text-align: center;
  margin-bottom: 14px;
}
.pg-lp .limited-time-header {
  position: relative;
}
.pg-lp .limited-time-header .accent-left,
.pg-lp .limited-time-header .accent-right {
  position: absolute;
  width: 30px;
  height: 70px;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .limited-time-header .accent-left {
  left: 23px;
}
.pg-lp .limited-time-header .accent-right {
  right: 23px;
}
.pg-lp .limited-time .white-text {
  color: var(--background-white);
}
.pg-lp .limited-time .white-text.underlined {
  position: relative;
  display: inline-block;
}
.pg-lp .limited-time .white-text.underlined::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 198px;
  height: 3px;
  background: rgba(255, 255, 0, 0.5);
}
.pg-lp .limited-time .yellow-text {
  font-family: "Noto Serif JP", serif;
  color: #ffff00;
  font-size: 32px;
  font-weight: 500;
}
.pg-lp .coupon-chance-wrapper {
  background: linear-gradient(to bottom, #cee4f1 0%, #ffffff 100%);
  /* クーポンセクション */
  /* チャンスバナー */
}
.pg-lp .coupon-chance-wrapper .coupon {
  padding-top: 10px;
  text-align: center;
}
.pg-lp .coupon-chance-wrapper .coupon .coupon-text {
  color: #4c1e1e;
  margin-bottom: 24px;
}
.pg-lp .coupon-chance-wrapper .coupon img {
  width: 242px;
  height: 121px;
  margin-bottom: 16px;
}
.pg-lp .coupon-chance-wrapper .coupon .countdown-timer {
  width: 330px;
  margin: 0 auto;
  background: #ffff00;
  padding: 5px;
}
.pg-lp .coupon-chance-wrapper .coupon .countdown-timer .timer-label {
  font-size: 12px;
  color: #4c1e1e;
  margin-bottom: 5px;
  font-weight: bolder;
}
.pg-lp .coupon-chance-wrapper .coupon .countdown-timer .timer-text {
  font-size: 20px;
  color: #4c1e1e;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}
.pg-lp .coupon-chance-wrapper .coupon .countdown-timer .timer {
  font-size: 32px;
  color: var(--danger-color);
  font-weight: bold;
  display: inline-block;
}
.pg-lp .coupon-chance-wrapper .chance-banner {
  padding: 48px 0;
  text-align: center;
}
.pg-lp .coupon-chance-wrapper .chance-banner img {
  width: 350px;
  height: 184px;
}
.pg-lp .before-after-2 {
  text-align: center;
  margin-bottom: 48px;
}
.pg-lp .before-after-2 img {
  width: 200px;
  height: auto;
}
.pg-lp .before-after-2 .fukidashi-decoration,
.pg-lp .before-after-2 .line-decoration {
  width: 350px;
  margin: 0 auto;
  display: block;
  transform: scaleY(-1);
}
.pg-lp .before-after-2 .testimonial-text {
  color: #006b9f;
  font-weight: 500;
  margin: 16px 0;
}
.pg-lp .footer-product {
  position: relative;
  height: 289px;
  background: url("../images/footer-product-bg.png") center/cover no-repeat;
  overflow: hidden;
}
.pg-lp .footer-product-1, .pg-lp .footer-product-2 {
  position: absolute;
  -o-object-fit: contain;
     object-fit: contain;
}
.pg-lp .footer-product-1 {
  right: 45px;
  top: 13px;
  width: 174px;
  height: 258px;
}
.pg-lp .footer-product-2 {
  left: 93px;
  top: 20px;
  width: 160px;
  height: 240px;
  opacity: 0.8;
}
.pg-lp .footer-product-name {
  padding: 16px 0;
  text-align: center;
}
.pg-lp .footer-product-name-image {
  width: 175px;
}
.pg-lp .price {
  width: 350px;
  text-align: center;
  margin: 0 auto;
}
.pg-lp .price-note {
  color: #006b9f;
  font-size: 16px;
  margin-bottom: 8px;
  text-align: left;
}
.pg-lp img {
  width: 350px;
}
.pg-lp .order-button {
  padding: 16px 0 80px;
  text-align: center;
}
.pg-lp .order-button .apply-button-image-lp {
  max-width: 343px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.pg-lp .order-button .apply-button-image-lp:hover {
  opacity: 0.9;
}

.pg-chat {
  /* チャットコンテナ */
  /* フォームエリア - 白いカード */
  /* リンク */
  /* クーポンセクション */
  /* 最終画面
  .final-section {
      padding: 20px 0;
      text-align: center;
  }

  .success-message {
      background: #e8f5e9;
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 20px;
  }

  .success-icon {
      font-size: 48px;
      color: #4caf50;
      margin-bottom: 15px;
  }

  .success-message h2 {
      font-size: 20px;
      color: #333333;
      margin-bottom: 10px;
  }

  .success-text {
      font-size: 14px;
      color: #666666;
      line-height: 1.6;
  }

  .warning-section {
      background: #fff3cd;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 20px;
      border: 2px solid #ffc107;
  }

  .warning-title {
      font-size: 18px;
      color: #856404;
      margin-bottom: 15px;
  }

  .warning-content {
      margin-bottom: 20px;
  }

  .warning-content p {
      font-size: 14px;
      color: #856404;
      margin-bottom: 10px;
      line-height: 1.6;
  }

  .warning-list {
      list-style: none;
      text-align: left;
      display: inline-block;
  }

  .warning-list li {
      font-size: 13px;
      color: #856404;
      line-height: 1.8;
      padding-left: 20px;
      position: relative;
  }

  .warning-list li::before {
      content: "•";
      position: absolute;
      left: 8px;
      color: #ffc107;
  }

  .scam-points {
      background: #ffebee;
      padding: 15px;
      border-radius: 8px;
      text-align: left;
  }

  .scam-points h4 {
      font-size: 16px;
      color: #c62828;
      margin-bottom: 10px;
  }

  .scam-points ul {
      list-style: none;
  }

  .scam-points li {
      font-size: 13px;
      color: #c62828;
      line-height: 1.8;
      padding-left: 20px;
      position: relative;
  }

  .scam-points li::before {
      content: "⚠";
      position: absolute;
      left: 0;
      color: #c62828;
  }

  .btn-finish {
      padding: 12px 40px;
      background: #006b9f;
      color: #ffffff;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
      transition: background 0.3s ease;
  }

  .btn-finish:hover {
      background: #004d73;
  }
      */
}
.pg-chat .chat-container {
  margin: 32px 10px;
  background: var(--background-white);
  border-radius: 10px;
  box-shadow: 0px 2px 3px rgba(41, 64, 75, 0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 10px;
  /* 2つ目のチャットコンテナのスタイル */
}
.pg-chat .chat-container.second {
  margin-bottom: 80px;
}
.pg-chat .chat-container.second .message-text {
  font-size: 16px;
  font-weight: bold;
}
.pg-chat .chat-container.second .chat-message.bot .message-content {
  width: 100%;
}
.pg-chat .chat-container.second .message-content.coupon-message {
  max-width: none;
}
.pg-chat #chatContainer1 {
  min-height: 600px;
}
.pg-chat .form-area .form-step {
  display: none;
  /* 支払いオプション */
}
.pg-chat .form-area .form-step.active {
  display: block;
}
.pg-chat .form-area .form-step .form-section {
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  /* フォームラベル */
  /* フォーム行 */
  /* セレクトボックス */
  /* 入力フィールド */
  /* ボタン */
}
.pg-chat .form-area .form-step .form-section .form-label {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.pg-chat .form-area .form-step .form-section .form-sublabel {
  font-size: 12px;
  color: #000000;
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 4px;
  display: block;
}
.pg-chat .form-area .form-step .form-section .required {
  color: #b72726;
  font-size: 10px;
  font-weight: 500;
}
.pg-chat .form-area .form-step .form-section .form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.pg-chat .form-area .form-step .form-section .form-row.dob {
  align-items: baseline;
}
.pg-chat .form-area .form-step .form-section .form-row.dob .form-input {
  margin: 0 !important;
  width: 30%;
}
.pg-chat .form-area .form-step .form-section .form-select {
  flex: 1;
  padding: 6px 24px 6px 8px;
  border: 1px solid #b72726;
  background: #fcf8ec;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../images/unfold_more.png");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px 16px;
}
.pg-chat .form-area .form-step .form-section .form-input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #b72726;
  background: #fcf8ec;
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 8px;
}
.pg-chat .form-area .form-step .form-section .form-input.half {
  width: calc(50% - 4px);
}
.pg-chat .form-area .form-step .form-section .submit-btn {
  width: 100%;
  padding: 9px;
  background: #006b9f;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}
.pg-chat .form-area .form-step .form-section .submit-btn:hover {
  background: #004d73;
}
.pg-chat .form-area .form-step .payment-section {
  padding: 16px;
}
.pg-chat .form-area .form-step .payment-section .payment-options {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.pg-chat .form-area .form-step .payment-section .payment-options .payment-option {
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 4px;
}
.pg-chat .form-area .form-step .payment-section .payment-options .payment-option:hover {
  border-color: #006b9f;
}
.pg-chat .form-area .form-step .payment-section .payment-options .payment-option input[type=radio] {
  display: none;
}
.pg-chat .form-area .form-step .payment-section .payment-options .payment-option input[type=radio]:checked ~ .payment-image {
  border: 2px solid #006b9f;
  border-radius: 8px;
}
.pg-chat .form-area .form-step .payment-section .payment-options .payment-option .payment-image {
  width: 133px;
  height: 97px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.pg-chat .form-area .form-step .payment-section .form-payment-selected {
  background: var(--background-white);
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 8px 16px;
  margin-bottom: 16px;
}
.pg-chat .form-area .form-step .payment-section .form-payment-selected p {
  font-size: 14px;
  color: #344147;
  font-weight: 500;
}
.pg-chat .links-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.pg-chat .link-text {
  color: #0000ee;
  font-size: 12px;
  font-weight: 500;
  text-decoration: underline;
}
.pg-chat .coupon-buttons-in-bubble {
  margin-top: 8px;
  display: flex;
  gap: 8px;
}
.pg-chat .coupon-buttons-in-bubble .coupon-btn {
  flex: 1;
  padding: 8px 0;
  width: 116px;
  background: var(--background-white);
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000000;
}
.pg-chat .coupon-buttons-in-bubble .coupon-btn:hover {
  background: #f5f5f5;
}

.pg-fusa-episode {
  /* メールアイコン */
  /* メールコンテンツ */
  /* コンビニ支払い画像 */
  /* メールと商品のコンテナ */
}
.pg-fusa-episode .main-content {
  padding-top: 32px;
}
.pg-fusa-episode .mail-icon {
  width: 150px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg-fusa-episode .mail-icon img {
  width: 100%;
}
.pg-fusa-episode .mail-icon-small {
  width: 150px;
}
.pg-fusa-episode .mail-icon-small img {
  width: 100%;
}
.pg-fusa-episode .mail-content {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px 0;
  margin-bottom: 40px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pg-fusa-episode .mail-content .mail-title {
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}
.pg-fusa-episode .mail-content .mail-body {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  text-align: left;
  padding: 0 55px;
}
.pg-fusa-episode .mail-content .mail-body p {
  margin: 4px 0;
}
.pg-fusa-episode .conveni-payment {
  width: 200px;
  height: 163px;
  margin: 0 auto 24px;
}
.pg-fusa-episode .conveni-payment img {
  width: 100%;
}
.pg-fusa-episode .mail-product-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.pg-fusa-episode .mail-product-container .product-icon {
  width: 67px;
  height: 100px;
}
.pg-fusa-episode .mail-product-container .product-icon img {
  width: 100%;
}

.pg-toku-episode .mail-product-container {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pg-toku-episode .mail-product-container .product-icon {
  display: flex;
  justify-content: center;
}

.pg-disabled .message-bold {
  margin: 8px auto 16px;
  font-weight: bold;
}
.pg-disabled .character-image {
  text-align: center;
}
.pg-disabled .character-image img {
  width: 200px;
}

.pg-review .chat-container.second {
  margin: 0 0 56px;
}
.pg-review .chat-container.second .p-chatBubble {
  gap: 19px;
  margin-bottom: 32px;
  opacity: 0;
  -webkit-animation: slideIn 0.4s ease-out forwards;
          animation: slideIn 0.4s ease-out forwards;
}
.pg-review .chat-container.second .p-chatBubble:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.pg-review .chat-container.second .p-chatBubble:nth-of-type(2) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.pg-review .chat-container.second .p-chatBubble:nth-of-type(3) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.pg-review .container {
  padding: 0;
}
.pg-review .container .content-wrapper {
  padding-bottom: 16px;
}
.pg-review .coupon-buttons-in-bubble .coupon-btn {
  cursor: default;
}
.pg-review .links-container {
  margin: 0;
}
.pg-review .warning-bubble {
  font-size: 16px;
  font-weight: normal;
  color: var(--text-primary);
  background-color: #fff;
  padding: 8px 32px 8px 16px;
  border-radius: 10px;
  border: solid 2px var(--danger-color);
  position: absolute;
  width: 330px;
  font-family: var(--font-main);
}
.pg-review .warning-bubble__close {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--danger-color);
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.pg-review .warning-bubble::before, .pg-review .warning-bubble::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.pg-review .warning-bubble::before {
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 14px solid #fff;
  border-bottom: 0;
  bottom: -14px;
  z-index: 1;
}
.pg-review .warning-bubble::after {
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 18px solid var(--danger-color);
  border-bottom: 0;
  bottom: -18px;
}
.pg-review .click-on-button {
  position: relative;
  z-index: 10;
}
.pg-review .click-on-button .click-here-icon {
  width: 70px !important;
  position: absolute;
  cursor: pointer;
  opacity: 0.7;
}
.pg-review .click-on-button .click-here-icon:focus {
  outline: none;
}
.pg-review .price {
  width: auto;
}
.pg-review .price img {
  width: 100%;
}
.pg-review .form-area {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 10px 16px;
  font-family: var(--font-main);
}
.pg-review .section-header {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  margin-bottom: 8px;
}
.pg-review .section-content {
  margin-bottom: 24px;
}
.pg-review .section-content .course-name {
  color: var(--primary-color);
  margin-bottom: 8px;
}
.pg-review #click17_1 .click-here-icon {
  top: -580px;
  left: 40px;
}
.pg-review #click17_1 .warning-bubble {
  transform: translate(0%, -750%);
}
.pg-review #click17_1 .warning-bubble::before {
  left: 64px;
}
.pg-review #click17_1 .warning-bubble::after {
  left: 60px;
}
.pg-review #click17_2 .click-here-icon {
  top: -390px;
}
.pg-review #click17_2 .warning-bubble {
  transform: translate(0%, -280%);
}
.pg-review #click17_2 .warning-bubble::before {
  top: -14px;
  left: 34px;
  transform: rotate(180deg);
}
.pg-review #click17_2 .warning-bubble::after {
  top: -18px;
  left: 30px;
  transform: rotate(180deg);
}
.pg-review #click17_3 .click-here-icon {
  top: -160px;
}
.pg-review #click17_3 .warning-bubble {
  transform: translate(0%, -100%);
}
.pg-review #click17_3 .warning-bubble::before {
  top: -14px;
  left: 34px;
  transform: rotate(180deg);
}
.pg-review #click17_3 .warning-bubble::after {
  top: -18px;
  left: 30px;
  transform: rotate(180deg);
}
.pg-review #click17_4 .click-here-icon {
  top: -300px;
  right: 100px;
}
.pg-review #click17_4 .warning-bubble {
  transform: translate(0%, -570%);
}
.pg-review #click17_4 .warning-bubble::before {
  right: 104px;
}
.pg-review #click17_4 .warning-bubble::after {
  right: 100px;
}
.pg-review #click17_5 .click-here-icon {
  top: -60px;
  left: 30px;
}
.pg-review #click17_5 .warning-bubble {
  transform: translate(0%, 30%);
}
.pg-review #click17_5 .warning-bubble::before {
  top: -14px;
  left: 64px;
  transform: rotate(180deg);
}
.pg-review #click17_5 .warning-bubble::after {
  top: -18px;
  left: 60px;
  transform: rotate(180deg);
}
.pg-review #click17_6 .click-here-icon {
  top: -60px;
  right: 90px;
}
.pg-review #click17_6 .warning-bubble {
  transform: translate(6%, -250%);
}
.pg-review #click17_6 .warning-bubble::before {
  right: 114px;
}
.pg-review #click17_6 .warning-bubble::after {
  right: 110px;
}
.pg-review #click18_1 .click-here-icon {
  top: -60px;
}
.pg-review #click18_1 .warning-bubble {
  transform: translate(0%, -300%);
}
.pg-review #click18_1 .warning-bubble::before {
  left: 24px;
}
.pg-review #click18_1 .warning-bubble::after {
  left: 20px;
}
.pg-review #click18_2 .click-here-icon {
  top: -80px;
}
.pg-review #click18_2 .warning-bubble {
  transform: translate(0%, -320%);
}
.pg-review #click18_2 .warning-bubble::before {
  left: 24px;
}
.pg-review #click18_2 .warning-bubble::after {
  left: 20px;
}
.pg-review #click18_3 .click-here-icon {
  top: -230px;
}
.pg-review #click18_3 .warning-bubble {
  transform: translate(0%, -230%);
}
.pg-review #click18_3 .warning-bubble::before {
  top: -14px;
  left: 24px;
  transform: rotate(180deg);
}
.pg-review #click18_3 .warning-bubble::after {
  top: -18px;
  left: 20px;
  transform: rotate(180deg);
}
.pg-review #click19_1 .click-here-icon {
  top: -70px;
  right: 150px;
}
.pg-review #click19_1 .warning-bubble {
  transform: translate(0%, -200%);
}
.pg-review #click19_1 .warning-bubble::before {
  left: 134px;
}
.pg-review #click19_1 .warning-bubble::after {
  left: 130px;
}
.pg-review #click19_2 .click-here-icon {
  top: -120px;
}
.pg-review #click19_2 .warning-bubble {
  transform: translate(0%, -380%);
}
.pg-review #click19_2 .warning-bubble::before {
  left: 24px;
}
.pg-review #click19_2 .warning-bubble::after {
  left: 20px;
}
.pg-review #click19_3 .click-here-icon {
  top: -70px;
}
.pg-review #click19_3 .warning-bubble {
  transform: translate(0%, -170%);
}
.pg-review #click19_3 .warning-bubble::before {
  left: 24px;
}
.pg-review #click19_3 .warning-bubble::after {
  left: 20px;
}
.pg-review #click20_1 .click-here-icon {
  top: -60px;
}
.pg-review #click20_1 .warning-bubble {
  transform: translate(-22%, -180%);
}
.pg-review #click20_1 .warning-bubble::before {
  left: 104px;
}
.pg-review #click20_1 .warning-bubble::after {
  left: 100px;
}
.pg-review #click20_2 .click-here-icon {
  top: -35px;
}
.pg-review #click20_2 .warning-bubble {
  transform: translate(-54%, 30%);
}
.pg-review #click20_2 .warning-bubble::before {
  top: -14px;
  right: 104px;
  transform: rotate(180deg);
}
.pg-review #click20_2 .warning-bubble::after {
  top: -18px;
  right: 100px;
  transform: rotate(180deg);
}
.pg-review #click21_1 .click-here-icon {
  bottom: 120px;
  right: 50px;
}
.pg-review #click21_1 .warning-bubble {
  transform: translate(0%, -430%);
}
.pg-review #click21_1 .warning-bubble::before {
  right: 74px;
}
.pg-review #click21_1 .warning-bubble::after {
  right: 70px;
}
.pg-review #click21_2 .click-here-icon {
  bottom: 40px;
  right: 100px;
}
.pg-review #click21_2 .warning-bubble {
  transform: translate(0%, -400%);
}
.pg-review #click21_2 .warning-bubble::before {
  right: 124px;
}
.pg-review #click21_2 .warning-bubble::after {
  right: 120px;
}
.pg-review #click21_3 .click-here-icon {
  top: -55px;
}
.pg-review #click21_3 .warning-bubble {
  transform: translate(0%, 30%);
}
.pg-review #click21_3 .warning-bubble::before {
  top: -14px;
  left: 24px;
  transform: rotate(180deg);
}
.pg-review #click21_3 .warning-bubble::after {
  top: -18px;
  left: 20px;
  transform: rotate(180deg);
}
.pg-review #click22_1 .click-here-icon {
  top: -60px;
  left: 40px;
}
.pg-review #click22_1 .warning-bubble {
  transform: translate(0%, 30%);
}
.pg-review #click22_1 .warning-bubble::before {
  top: -14px;
  left: 64px;
  transform: rotate(180deg);
}
.pg-review #click22_1 .warning-bubble::after {
  top: -18px;
  left: 60px;
  transform: rotate(180deg);
}
.pg-review #click22_2 .click-here-icon {
  top: -80px;
}
.pg-review #click22_2 .warning-bubble {
  transform: translate(0%, -240%);
}
.pg-review #click22_2 .warning-bubble::before {
  left: 24px;
}
.pg-review #click22_2 .warning-bubble::after {
  left: 20px;
}
.pg-review .underline {
  position: relative;
  transition: all 0.3s ease;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.pg-review .underline.show {
  -webkit-text-decoration-color: var(--danger-color);
          text-decoration-color: var(--danger-color);
  text-decoration-thickness: 2px;
  -webkit-animation: underlineGlow 0.5s ease-in-out;
          animation: underlineGlow 0.5s ease-in-out;
}
@-webkit-keyframes underlineGlow {
  0% {
    text-decoration-thickness: 1px;
    opacity: 0.5;
  }
  50% {
    text-decoration-thickness: 3px;
    opacity: 1;
  }
  100% {
    text-decoration-thickness: 2px;
    opacity: 1;
  }
}
@keyframes underlineGlow {
  0% {
    text-decoration-thickness: 1px;
    opacity: 0.5;
  }
  50% {
    text-decoration-thickness: 3px;
    opacity: 1;
  }
  100% {
    text-decoration-thickness: 2px;
    opacity: 1;
  }
}

.pg-learning .container {
  padding: 0;
}
.pg-learning .subtitle {
  color: #b72726;
  padding: 0 0 12px;
}
.pg-learning .c-checkbox {
  padding: 12px 0;
}
.pg-learning .c-checkbox__label {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
}
.pg-learning .c-checkbox__label .checkmark {
  position: relative;
  top: 0;
  cursor: pointer;
}
.pg-learning .c-checkbox__label .checkmark::after {
  left: 4px;
  top: 0px;
}
.pg-learning .c-checkbox__label input:checked ~ .c-checkbox__text {
  color: var(--primary-color);
}
.pg-learning .c-checkbox__text {
  font-size: 16px;
  flex: 1;
}

.pg-end .main-content {
  padding: 32px 12px 56px;
}
.pg-end .main-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
}
.pg-end .p-fukidashi__wrap {
  padding: 32px 0 48px;
}
