body {
  margin: 0;
  padding: 0;
  background-color: #eee;
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Meiryo', 'メイリオ', sans-serif;
}

.container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #ffffff;
  min-height: 100vh;
}

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

/* セクション共通 */
section {
  padding: 20px 20px;
}

section h2 {
  padding: 0 10px;
  font-size: 1.5em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: 800;
  /* color: #ae2775 */
}

h3 {
  /* color: #ae2775; */
}

.marker {
  background-color: #FFF056;
  padding: 2px 0;
}

.bold {
  font-weight: 600;
}

/* ファーストビュー */
.first-view {
  position: relative;
  /* 背景画像を設定 */
  background: url('assets/first-view-image.jpg') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding: 0;
  z-index: 0;
  overflow: hidden;
}

.first-view-image {
  width: 100%;
  height: auto;
}

.first-conversion {
  position: relative;
  font-weight: 800;
  margin-top: -40px;
  padding-top: 0;
}

.first-conversion .scroll-indicator {
  position: absolute;
  bottom: 20px; /* 必要に応じて調整 */
  right: 20px;  /* 必要に応じて調整 */
  width: 24px;  /* 画像の幅を指定、必要に応じて調整 */
  height: auto; /* アスペクト比を維持 */
  animation: scrollAnimation 1s infinite;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.first-conversion .btn {
  display: inline-flex;
  align-items: center;
  text-align: center;
  padding: 15px 30px;
  background-color: #f5cf00; /* アクセントカラー */
  color: #000000;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  transition: background-color 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  animation: shake-animation 3s infinite;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.first-conversion .btn:hover {
  opacity: 0.9;
}

.first-conversion .btn .arrow {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 4;
}

.first-conversion .btn .arrow path {
  stroke: #000000;
}

/* 問題セクション */
.problems ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.problems li {
  background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  color: #ffffff;
  margin: 10px auto;
  padding: 15px 20px;
  padding-left: 50px;
  position: relative;
}

.problems li::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #ffffff;
}

/* なぜスキキャリが選ばれるのか？ */
.why-choose {
  background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  padding-right: 30px;
  padding-left: 30px;
}

.why-choose h2 {
  color: #ffffff;
}

.reason {
  position: relative;
  background-color: #f9f9f9;
  padding: 30px 20px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 0 0 0 20px;
}

.reason .number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 120px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: bold;
  z-index: 0;
}

.reason h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.reason p {
  font-size: 1em;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.chart img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* コーチングを受けた方の声 */
.testimonials {
  background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  padding-right: 20px;
  padding-left: 20px;
}

.testimonials h2 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

/* testimonial 共通スタイル */
.testimonial {
  display: flex;
  align-items: flex-end;
  margin-bottom: 30px;
}

/* アバターコンテナのスタイルを調整 */
.testimonial .avatar {
  width: 60px;
  flex-shrink: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* アバター画像のスタイルを調整 */
.testimonial .avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimonial .avatar .initials {
  margin-top: 5px;
  font-size: 0.2em;
  color: #ffffff;
}

.testimonial .message {
  background-color: #f0f0f0;
  border-radius: 10px;
  padding: 15px;
  position: relative;
  flex: 1;
}

.testimonial .message p {
  margin: 0;
  font-size: 1em;
  line-height: 1.6;
}

/* 奇数番目（アバター左） */
.testimonial.left .message {
  margin-left: 10px;
}

.testimonial.left .message::before {
  content: '';
  position: absolute;
  top: 15px;
  left: -10px;
  border: 10px solid transparent;
  border-right-color: #f0f0f0;
}

/* 偶数番目（アバター右） */
.testimonial.right {
  flex-direction: row;
}

.testimonial.right .avatar {
  order: 2;
}

.testimonial.right .message {
  margin-right: 10px;
  order: 1;
}

.testimonial.right .message::before {
  content: '';
  position: absolute;
  top: 15px;
  right: -10px;
  border: 10px solid transparent;
  border-left-color: #f0f0f0;
}

.testimonials .footer {
  text-align: right;
  color: #ffffff;
}

/* コンバージョンエリア */
.conversion {
  background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.conversion h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.conversion .original-price {
  text-decoration: line-through;
  color: #ffffff;
}

.conversion .campaign {
  font-size: 1.4em;
  margin-bottom: 20px;
}

.conversion .campaign .discount {
  font-weight: bold;
}

.conversion .explanation {
  font-size: 0.9em;
  margin-bottom: 30px;
}

.conversion .btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background-color: #f5cf00; /* アクセントカラー */
  color: #000000;
  font-weight: 800;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  transition: background-color 0.3s;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  animation: shake-animation 3s infinite;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

.conversion .btn:hover {
  opacity: 0.9;
}

.conversion .btn .arrow {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}

.conversion .btn .arrow path {
  stroke: #000000;
}

/* 向いていない人・向いている人 */
.comparison .header {
  text-align: center;
  font-size: 1.2em;
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 20px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px; /* セル間のスペースを設定 */
}

.comparison-table thead th {
  font-size: 1.2em;
  padding: 15px;
  color: #ffffff;
}

.comparison-table tbody td {
  padding: 15px;
  vertical-align: top;
  font-size: 1em;
  line-height: 1.5;
}

/* セルの背景色 */
.comparison-table th.not-suitable,
.comparison-table td:nth-child(1) {
  background-color: #f0f0f0;
}

.comparison-table th.suitable,
.comparison-table td:nth-child(2) {
  background-color: #fe999f36; /* メインカラー */
}

.comparison-table thead th.not-suitable {
  background-color: #cccccc;
}

.comparison-table thead th.suitable {
  background-color: #E33A89; /* アクセントカラー */
}

.comparison-table thead th {
  font-weight: bold;
}

/* 行間の境界線を削除 */
.comparison-table tbody tr {
  border: none;
}


/* プログラムの詳細 */
.program-details {
  /* background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  padding: 40px 30px; */
}

.program-details .inner {
  background: #ffffff;
  border-radius: 0 0 0 20px;
  padding: 20px;
}

.program-details p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* 画像のスタイルを追加 */
.program-details img {
  max-width: 95%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding-top: 40px;
}

/* セッションの種類 */
.session-types {
  background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%);
  padding-right: 20px;
  padding-left: 20px;
}
.session-types h2 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: center;
}

.session {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 0 0 0 20px;
}

.session h3 {
  font-size: 1.3em;
  margin-top: 10px;
  margin-bottom: 15px;
  text-align: center;
}

.session p {
  font-size: 1em;
  line-height: 1.6;
}

/* 転職オプション */
.career-option {
  /* margin-top: 40px; */
}

.career-option .inner {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
}

.career-option h2 {
  font-size: 1.5em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.career-option h2 button {
  pointer-events: none; /* ボタン自体のクリックイベントを無効化 */
}

.career-option h2 .badge {
  background-color: #E33A89; /* アクセントカラー */
  color: #ffffff;
  padding: 5px 10px;
  font-size: 0.5em;
  margin-left: 10px;
}

.career-option p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.career-option .process h3 {
  font-size: 1.3em;
  margin-bottom: 20px;
}

.career-option .process ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
}

.career-option .process li {
  position: relative;
  background-color: #ffffff;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.career-option .process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #E33A89; /* アクセントカラー */
  color: #ffffff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
}

.career-option .process li strong {
  display: block;
  font-size: 1.1em;
  margin-bottom: 10px;
}

.career-option .process li p {
  margin: 0;
}

.career-option .note {
  display: inline-block;
  background-color: #ffe3ec;
  color: #E33A89; /* アクセントカラー */
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.9em;
  margin-top: 5px;
}

.career-option .small-note {
  display: block;
  font-size: 0.9em;
  color: #666666;
  margin-top: 10px;
}

#careerProcess {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#careerProcess.open {
  max-height: 2000px; /* 内容に合わせて十分な高さを設定 */
}

/* トグルボタンのスタイル */
.toggle-button {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5em;
  line-height: 1;
  padding: 0;
}

/* コーチ紹介 */
.coach-intro {
  /* background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%); */
}
.coach-intro h2 {
  /* color: #ffffff; */
}
.coach-intro .coach {
  background-color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 0 0 0 20px;
}

.coach-intro .coach img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.coach-intro .coach h3 {
  font-size: 1.3em;
  margin-bottom: 2px;
}

.coach-intro small {
  display: inline-block;
  margin-bottom: 20px;
}

.coach-intro .coach .roles {
  margin-bottom: 15px;
}

.coach-intro .coach .roles span {
  display: inline-block;
  background-color: #E33A89; /* アクセントカラー */
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.9em;
  margin: 0 5px;
}

.coach-intro .coach .roles span.consultant {
  background-color: #FEAE00; /* アクセントカラー */
}

.coach-intro .coach p {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 10px;
  text-align: left;
}

/* 料金プラン */
.pricing .pricing-table {
  width: 100%;
  border-collapse: separate;
  margin-bottom: 20px;
  border-spacing: 5px;
  table-layout: fixed; /* 追加 */
  font-size: 0.8em;
}

.pricing .pricing-table th,
.pricing .pricing-table td {
  background-color: #ffeaf5;
  padding: 6px;
  font-size: 0.9em;
  text-align: center;
}

.pricing .pricing-table th {
  background-color: #f9f9f9;
  font-weight: bold;
}

.pricing .pricing-table thead th {
  background-color: #f790c3; /* アクセントカラー */
  color: #ffffff;
  font-size: 1em;
  border-top: 10px solid #ffffff;
}

.pricing .pricing-table thead th:nth-child(1) {
  background-color: unset;
}

.pricing .pricing-table thead th.emphasis {
  background-color: #ff42a1; /* アクセントカラー */
  border: unset;
}

.pricing .pricing-table td small {
  display: block;
  margin-top: 5px;
  color: #E33A89; /* アクセントカラー */
  font-size: 0.8em;
}

.pricing .pricing-table tbody tr {
  border: none;
}

.pricing .pricing-table .note {
  font-size: 0.8em;
}

.pricing .notes {
  font-size: 0.8em;
  color: #555555;
  line-height: 1.5;
}

/* 返金保証 */
.guarantee {
  margin: 0 10px;
}

.guarantee .inner {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.guarantee h2 {
  padding: 0 10px;
  font-size: 1.5em;
  margin-bottom: 20px;
  text-align: center;
}

.guarantee p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: left;
}

.guarantee .refund-details h3 {
  font-size: 1.2em;
  margin-bottom: 15px;
  text-align: center;
}

.guarantee .refund-details ul {
  list-style: none;
  margin-bottom: 20px;
}

.guarantee .refund-details ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.guarantee .contact-email {
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
}

/* フッター */
footer {
  background-color: #333333;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
}

.footer-logo {
  width: 20%;
  max-width: 100px;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: inline-block;
  margin: 0 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9em;
}

/* CTAボタンのスタイル */
.cta-button {
  position: fixed;
  bottom: 20px;
  right: 20px; /* 初期値 */
  width: 180px;
  height: 180px;
  /* background: linear-gradient(310deg, #b22d8a 1.06%, #a71b51 96.56%); */
  /* background-color: #f5cf00; */
  background: linear-gradient(72deg, #fa9e03 1.06%, #ffe557 96.56%);
  color: #000000;
  font-weight: 800;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2;
  font-size: 24px;
  padding: 10px;
  text-decoration: none;
  box-sizing: border-box; /* ボックスサイズの計算にパディングを含める */
  z-index: 1000;
  display: flex;
  align-items: center; /* 垂直方向に中央揃え */
  justify-content: center; /* 水平方向に中央揃え */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);

  animation: shake-animation 3s infinite;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}

/* テキスト部分のスタイル */
.cta-button .cta-text {
  display: inline-block;
  text-align: center;
  letter-spacing: 2px;
}

/* 「予約する」とSVGを改行させない */
.cta-button .nowrap {
  white-space: nowrap;
}

/* 矢印アイコンのスタイル */
.cta-button .arrow {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  stroke: currentColor;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-button.hidden {
  display: none;
}

.cta-button:hover {
  /* background-color: #e33a89; */
  opacity: 0.9;
}

.sp-display {
  display: none;
}

/* スマートフォンでの文字サイズ調整 */
@media screen and (max-width: 480px) {
  .cta-button {
    width: 140px;
    height: 140px;
    font-size: 17px;
  }

  .sp-display {
    display: block;
  }
}

@keyframes shake-animation {
  0% {
    transform: translateX(0);
  }
  1%,
  3%,
  5%,
  7%,
  9% {
    transform: translateX(-2px);
  }
  2%,
  4%,
  6%,
  8% {
    transform: translateX(2px);
  }
  10% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

